XMLDOC.js 456 B

1234567891011121314151617181920212223242526
  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. /** The current version string of this application. */
  10. XMLDOC.VERSION = "1.0";
  11. /** Include the library necessary to handle XML files */
  12. IO.includeDir("handlers/XMLDOC/");
  13. /**
  14. * @type Symbol[]
  15. */
  16. XMLDOC.handle = function(srcFile, src) {
  17. };
  18. XMLDOC.publish = function(symbolgroup) {
  19. }