Lines Matching refs:comments

5135 	"application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml": "comments",
5136 "application/vnd.ms-excel.comments": "comments",
5276 comments: { /* Comments */ class in CT_LIST
5277 xlsx: "application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml",
5278 xlsb: "application/vnd.ms-excel.comments"
5309 rels:[], strs:[], comments:[], threadedcomments:[], links:[],
5409 f3('comments');
5428 CMNT: "http://schemas.openxmlformats.org/officeDocument/2006/relationships/comments",
12104 function write_vml(rId/*:number*/, comments) { argument
12115 var _comments = comments || [];
12160 function sheet_insert_comments(sheet, comments/*:Array<RawComment>*/, threaded/*:boolean*/, people/… argument
12163 comments.forEach(function(comment) {
12186 /* threaded comments always override */
12201 if(data.match(/<(?:\w+:)?comments *\/>/)) return [];
12231 var o = [XML_HEADER, writextag('comments', null, { 'xmlns': XMLNS_main[0] })];
12273 if(o.length>2) { o[o.length] = ('</comments>'); o[1]=o[1].replace("/>",">"); }
12309 default: if(!pass && opts.WTF) throw new Error('unrecognized ' + y[0] + ' in threaded comments');
12316 function write_tcmnt_xml(comments, people, opts) { argument
12318 comments.forEach(function(carr) {
12361 default: if(!pass && opts.WTF) throw new Error('unrecognized ' + y[0] + ' in threaded comments');
15500 if(cell.c) ws['!comments'].push([ref, cell.c]);
15798 ws['!comments'] = [];
15883 if(ws['!comments'].length > 0) {
16708 if(cell.c) ws['!comments'].push([encode_cell(o), cell.c]);
16820 if(ws['!comments'].length > 0) {
16891 ws['!comments'] = [];
18111 var comments/*:Array<Comment>*/ = [], comment/*:Comment*/ = ({}/*:any*/); variable
18132 if(comments.length > 0) cell.c = comments;
18171 comments = [];
18334 comments.push(comment);
18996 function write_ws_xlml_comment(comments/*:Array<any>*/)/*:string*/ { argument
18997 return comments.map(function(c) {
21448 var comments = [];
21459 if(b8 && cell.c) comments.push([ref, cell.c]);
21464 …// if(b8) comments.forEach(function(comment) { write_biff_rec(ba, 0x001c /* Note */, write_NoteSh(…
22112 var comments/*:Array<Comment>*/ = [], comment/*:Comment*/ = ({}/*:any*/); variable
22195 comments = []; comment = ({}/*:any*/);
22250 if(comments.length > 0) { q.c = comments; comments = []; }
22295 comments.push(comment);
25106 /* scan rels for comments and threaded comments */
25107 var comments = [], tcomments = [];
25112 comments = parse_cmnt(getzipdata(zip, dfile, true), dfile, opts);
25113 if(!comments || !comments.length) return;
25114 sheet_insert_comments(_ws, comments, false);
25439 var comments = ws['!comments'];
25442 if(comments && comments.length > 0) {
25443 cf = "xl/comments" + rId + "." + wbext;
25444 zip_add_file(zip, cf, write_comments_bin(comments, opts));
25445 ct.comments.push(cf);
25446 add_rels(wsrels, -1, "../comments" + rId + "." + wbext, RELS.CMNT);
25450 …vml) zip_add_file(zip, "xl/drawings/vmlDrawing" + (rId) + ".vml", write_vml(rId, ws['!comments']));
25452 delete ws['!comments'];
25577 var comments = ws['!comments'];
25580 if(comments && comments.length > 0) {
25582 comments.forEach(function(carr) {
25587 zip_add_file(zip, cf, write_tcmnt_xml(comments, people, opts));
25592 cf = "xl/comments" + rId + "." + wbext;
25593 zip_add_file(zip, cf, write_comments_xml(comments, opts));
25594 ct.comments.push(cf);
25595 add_rels(wsrels, -1, "../comments" + rId + "." + wbext, RELS.CMNT);
25599 …vml) zip_add_file(zip, "xl/drawings/vmlDrawing" + (rId) + ".vml", write_vml(rId, ws['!comments']));
25601 delete ws['!comments'];
26339 /* add to cell comments */