mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-22 00:16:15 -04:00
first-commit
This commit is contained in:
commit
325c322a27
207 changed files with 35989 additions and 0 deletions
16
doc/jsdoc-toolkit/app/handlers/XMLDOC/XMLDoc.js
Executable file
16
doc/jsdoc-toolkit/app/handlers/XMLDOC/XMLDoc.js
Executable file
|
@ -0,0 +1,16 @@
|
|||
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);
|
||||
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue