mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-23 13:46:09 +03:00
17 lines
465 B
JavaScript
Executable File
17 lines
465 B
JavaScript
Executable File
LOG.inform("XMLDOC.symbolize loaded");
|
|
|
|
/**
|
|
* Convert the source file to a set of symbols
|
|
*/
|
|
XMLDOC.symbolize = function(srcFile, src) {
|
|
|
|
LOG.inform("Symbolizing file '" + srcFile + "'");
|
|
|
|
// XML files already have a defined structure, so we don't need to
|
|
// do anything but parse them. The DOM reader can create a symbol
|
|
// table from the parsed XML.
|
|
var dr = new XMLDOC.DomReader(XMLDOC.Parser.parse(src));
|
|
return dr.getSymbols(srcFile);
|
|
|
|
};
|