Commit | Line | Data |
---|---|---|
629a09ae DV |
1 | /** |
2 | * This is the main container for the XMLDOC handler. | |
3 | * @namespace | |
4 | * @author Brett Fattori (bfattori@fry.com) | |
5 | * @version $Revision: 498 $ | |
6 | */ | |
7 | XMLDOC = { | |
8 | ||
9 | }; | |
10 | ||
11 | /** The current version string of this application. */ | |
12 | XMLDOC.VERSION = "1.0"; | |
13 | ||
14 | /** Include the library necessary to handle XML files */ | |
15 | IO.includeDir("handlers/XMLDOC/"); | |
16 | ||
17 | /** | |
18 | * @type Symbol[] | |
19 | */ | |
20 | XMLDOC.handle = function(srcFile, src) { | |
21 | ||
22 | }; | |
23 | ||
24 | XMLDOC.publish = function(symbolgroup) { | |
25 | ||
26 | } |