You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@cocoon.apache.org by st...@locus.apache.org on 2000/01/05 17:10:45 UTC

cvs commit: xml-cocoon/src/org/apache/cocoon cocoon.properties

stefano     00/01/05 08:10:44

  Modified:    src/org/apache/cocoon cocoon.properties
  Log:
  refer to the new resources
  
  Revision  Changes    Path
  1.9       +15 -14    xml-cocoon/src/org/apache/cocoon/cocoon.properties
  
  Index: cocoon.properties
  ===================================================================
  RCS file: /home/cvs/xml-cocoon/src/org/apache/cocoon/cocoon.properties,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- cocoon.properties	2000/01/05 13:50:32	1.8
  +++ cocoon.properties	2000/01/05 16:10:44	1.9
  @@ -111,10 +111,14 @@
   # eXtensible Server Pages Processor (XSP)
   processor.type.xsp = org.apache.cocoon.processor.xsp.XSPProcessor
   
  -# Set the repository where the generated XSP pages are stored
  +# sets the repository where the compiled pages are stored.
   # NOTE: make sure the directory is readable. This directory is usually
   # relative to the web server's or to the servlet engine's. In case you're not
  -# sure, make it absolute but be careful not to make this open to everyone.
  +# sure, use an absolute location.
  +# WARNING: since this repository may contain information you want to remain
  +# secret, we highly suggest that you protect the repository from untrusted
  +# access, even read-only. Only Cocoon and the system administrators should
  +# have access here.
   processor.xsp.repository = ./repository
   
   # Set the libraries associated with the given namespace.
  @@ -122,14 +126,16 @@
   #   processor.xsp.library.<namespace-tag>.<language> = URL to file
   # where "URL to file" is usually starting with file:/// if you locate 
   # your custom library in your file system.
  -processor.xsp.library.context.java = cocoon://resources/lib/java/context.xsl
  -processor.xsp.library.cookie.java = cocoon://resources/lib/java/cookie.xsl
  -processor.xsp.library.global.java = cocoon://resources/lib/java/global.xsl
  -processor.xsp.library.request.java = cocoon://resources/lib/java/request.xsl
  -processor.xsp.library.response.java = cocoon://resources/lib/java/response.xsl
  -processor.xsp.library.session.java = cocoon://resources/lib/java/session.xsl
  -processor.xsp.library.util.java = cocoon://resources/lib/java/util.xsl
  +#processor.xsp.library.servlet.java = resource://resources/libraries/java/example/servlet-java.xsl
  +processor.xsp.library.context.java = resource://resources/libraries/java/context.xsl
  +processor.xsp.library.cookie.java = resource://resources/libraries/java/cookie.xsl
  +processor.xsp.library.global.java = resource://resources/libraries/java/global.xsl
  +processor.xsp.library.request.java = resource://resources/libraries/java/request.xsl
  +processor.xsp.library.response.java = resource://resources/libraries/java/response.xsl
  +processor.xsp.library.session.java = resource://resources/libraries/java/session.xsl
  +processor.xsp.library.util.java = resource://resources/libraries/java/util.xsl
   
  +
   ##########################################
   # XML Formatters                         #
   ##########################################
  @@ -179,10 +185,6 @@
   # the default object storage
   store = org.apache.cocoon.store.MemoryStore
   
  -# NOTE to previous users: the persistent part of the storage system
  -# has been removed since not currently used. It will come back in later
  -# releases when support for compiled server pages is added.
  -
   # Indicate the minimum amount of memory (in bytes) that should be always 
   # available to the jvm. If your JVM contains less than 300Kb free when it 
   # starts you may either:
  @@ -192,7 +194,6 @@
   #  - (java 1.1) add -ms<size> as command line argument
   #  - (java 1.2) add -Xms<size> as command line argument
   store.memory = 200000
  -