home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1999 November / PCONLINE_11_99.ISO / filesbbs / OS2 / APCHSSL2.ZIP / OS2HTTPD / jserv / org / openxml / openxml.properties < prev    next >
Encoding:
Text File  |  1999-05-16  |  2.9 KB  |  67 lines

  1. #  OpenXML Properties File
  2. #
  3. #  @version $Revision: 1.5 $ $Date: 1999/03/30 06:49:03 $
  4.  
  5.  
  6. #  Specifies the default document class for XML documents, as returned by
  7. #  XMLFactory.createDocument() when docClass is null. If this property is
  8. #  missing, a XMLDocument is created and returned. This property must specify
  9. #  the name of a class that extends org.w3c.dom.Document.
  10. #
  11. #  For example:
  12. #    openxml.document.class=org.openxml.XMLDocument
  13.  
  14.  
  15. #  Specifies the classes for XML, HTML and DTD parsers, as returned by
  16. #  XMLFactory.createParser(). Which parser is used depends on the document
  17. #  type specified by docClass, which is either an XML, HTML or DTD document.
  18. #  The exact parser type is obtained from the so named property; if the
  19. #  property is missing, the default is used. These properties must specify
  20. #  the name of classes that extend org.openxml.parser.Parser.
  21. #
  22. #  For example:
  23. #    openxml.parser.xml.class=org.openxml.io.XMLParser
  24. #    openxml.parser.html.class=org.openxml.io.HTMLParser
  25. #    openxml.parser.dtd.class=org.openxml.io.DTDParser
  26.  
  27.  
  28. #  Specifies the classes for XML, HTML and DTD printers, as returned by
  29. #  XMLFactory.createPrinter(). Which printer is used depends on the document
  30. #  type specified by docClass, which is either an XML, HTML or DTD document.
  31. #  The exact printer type is obtained from the so named property; if the
  32. #  property is missing, the default is used. These properties must specify
  33. #  the name of classes that extend org.openxml.io.Printer.
  34. #
  35. #  @deprecated
  36. #     These properties hav become obsolete in favor of the X3P Publisher
  37. #     and Producer APIs</a>. These properties are temporarily provided for
  38. #     backward compatibility but will not be included in release 1.1.
  39. #  For example:
  40. #    openxml.printer.xml.class=org.openxml.io.XMLPrinter
  41. #    openxml.printer.html.class=org.openxml.io.HTMLPrinter
  42. #    openxml.printer.dtd.class=org.openxml.io.DTDPrinter
  43.  
  44.  
  45. #  Specifies additional source holder factories. Source holders can fetch and
  46. #  cache documents through various access methods, be they network, file system,
  47. #  class loader, etc. New source holders are introduced by means of factories
  48. #  extending org.openxml.source.HolderFactory. Factories are specified by
  49. #  semicolon separate list of class names. The default factories are pre-
  50. #  registered in code.
  51. #
  52. #  For example:
  53. #  openxml.holder.factories=\
  54. #    org.openxml.source.URLHolderFactoryImpl;\
  55. #    org.openxml.source.FileHolderFactoryImpl
  56.  
  57.  
  58. #  Specifies additional entity catalogs (XCatalog). Catalogs are XML documents
  59. #  that map public identifiers to system identifiers and remap system identifiers.
  60. #  Catalogs are written based on the XCatalog DTD and are specified by semicolon
  61. #  separated list of document URIs. The default catalog is pre-loaded in code.
  62. #
  63. #  For example:
  64. #  openxml.holder.catalogs=\
  65. #    res:/org/openxml/source/dtd-catalog/Catalog.xml
  66.  
  67.