forked from sheetjs/sheetjs
SheetJS
085150db3b
- merged DBF from js-harb (fixes #407 h/t @joefreire) - updated codepage to 1.8.0 - stub for macro/dialog sheet parsing (fixes #292 h/t @GenoD) - XLSB/XLSM write vbaraw (fixes #606 h/t @johnothetree) - phantomjs demo (fixes #184 h/t @machinewu)
9 lines
428 B
JavaScript
9 lines
428 B
JavaScript
RELS.DS = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/dialogsheet";
|
|
RELS.MS = "http://schemas.microsoft.com/office/2006/relationships/xlMacrosheet";
|
|
|
|
/* macro and dialog sheet stubs */
|
|
function parse_ds_bin() { return {'!type':'dialog'}; }
|
|
function parse_ds_xml() { return {'!type':'dialog'}; }
|
|
function parse_ms_bin() { return {'!type':'macro'}; }
|
|
function parse_ms_xml() { return {'!type':'macro'}; }
|