home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1999 November / PCONLINE_11_99.ISO / filesbbs / OS2 / APCHSSL2.ZIP / OS2HTTPD / conf / cocoon.properties < prev    next >
Encoding:
Text File  |  1999-05-31  |  3.7 KB  |  118 lines

  1. ################################################################################
  2. # Cocoon Configuration file
  3. ################################################################################
  4.  
  5. ################################################################################
  6. # Browser agents
  7. ################################################################################
  8.  
  9. # NOTE: numbers indicate the search order. This is very important since
  10. # some words may be found in more than one browser description. (MSIE is
  11. # presented as "Mozilla/4.0 (Compatible; MSIE 4.01; ..." which tells you A LOT
  12. # about M$ attitude to screw things up for their own pleasure)
  13. #
  14. # for example, the "explorer=MSIE" tag indicates that the XSL stylesheet
  15. # associated to the media type "explorer" should be mapped to those browsers
  16. # that have the string "MSIE" in their "user-Agent" HTTP header.
  17.  
  18. browser.0 = explorer=MSIE
  19. browser.1 = netscape=Mozilla
  20. browser.2 = lynx=Lynx
  21. browser.3 = opera=Opera
  22. browser.4 = java=Java
  23.  
  24. ################################################################################
  25. # Class definitions
  26. ################################################################################
  27.  
  28. # These properties allow the tuning of Cocoon for your particular environment
  29. # since its architecture is completely abstracted from actual DOM parsing
  30. # processing implementations
  31.  
  32. # DOM parser encapsulation classes
  33. #############################################
  34.  
  35. #
  36. # OpenXML parser (http://www.openxml.org/)
  37. parser = org.apache.cocoon.parser.OpenXMLParser
  38.  
  39. #
  40. # IBM XML4J Parser (http://www.alphaworks.ibm.com/)
  41. #parser = org.apache.cocoon.parser.IBMXMLParser
  42.  
  43. #
  44. # SUN ProjectX Parser (http://developers.java.sun.com/)
  45. #parser = org.apache.cocoon.parser.SunXMLParser
  46.  
  47. # DOM processor encapsulation classes
  48. ##########################################
  49.  
  50. # NOTE: these configurations define the processor pipeline. You may have
  51. # any number of processor and the document will be filtered thru each one
  52. # of them following the order number you choose.
  53.  
  54. #
  55. # XSL:P processor (http://www.clc-marketing.com/xslp/)
  56. processor.0 = org.apache.cocoon.processor.XSLPProcessor
  57.  
  58. #
  59. # Lotus XSL processor (http://www.alphaworks.ibm.com/)
  60. #processor.0 = org.apache.cocoon.processor.LotusXSLProcessor
  61.  
  62. #
  63. # DOM printer encapsulation classes
  64. ############################################
  65.  
  66. #
  67. # OpenXML DOM printer
  68. printer = org.apache.cocoon.printer.OpenXMLPrinter
  69.  
  70. # Specifies the stream type.
  71. # Valid options are:
  72. #  - html (default)
  73. #  - xhtml
  74. #  - xml
  75. printer.stream.type = html
  76.  
  77. # Specifies the stream format
  78. # Valid options are:
  79. #  - normal (default)
  80. #  - compact
  81. #  - pretty
  82. printer.stream.format = normal
  83.  
  84. # The numbers of characters at which to wrap lines
  85. printer.line.wrap = 120
  86.  
  87. # The number of spaces to indent when descending the DOM tree
  88. printer.indent.spaces = 1
  89.  
  90. #
  91. # Sun ProjectX DOM printer
  92. # printer = org.apache.cocoon.printer.SunPrinter
  93.  
  94. #
  95. # Cache manager
  96. ############################################
  97.  
  98. # The caching implementation. Current choices are:
  99.  
  100. #
  101. # CheckDateCache - checks the date of the base XML file and (optionally)
  102. # the XSL stylesheet to determine the freshness of the cache
  103. cache = org.apache.cocoon.cache.CheckDateCache
  104. cache.checkxsl = false
  105.  
  106. #
  107. # ForeverCache - never expires pages unless the cache is full
  108. # cache = org.apache.cocoon.cache.ForeverCache
  109.  
  110. #
  111. # DoNothingCache - never store pages in the cache
  112. # cache = org.apache.cocoon.cache.DoNothingCache
  113.  
  114. # Cache management parameters - all caching implementations except
  115. # DoNothingCache use these (well, _this_ right now!) parameters
  116. # memsize - the number of pages to store in the in memory table (0 is no limit)
  117. cache.memsize = 100
  118.