stefano 00/07/21 13:10:08
Modified: src/org/apache/cocoon cocoon.properties Log: added pool and FP properties WARNING: updated SQL taglib, this will create back incompatibility with your previous SQL taglib, make sure you update your configuration file!!!! Revision Changes Path 1.36 +37 -8 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.35 retrieving revision 1.36 diff -u -r1.35 -r1.36 --- cocoon.properties 2000/07/20 00:14:13 1.35 +++ cocoon.properties 2000/07/21 20:10:07 1.36 @@ -119,13 +119,13 @@ processor.xsp.languages = java # Default encoding to be used for code generation and compilation -# If omitted, the platform's default encoding will be used -# This encoding should be used in: -# - The XSP document <?xml?> declaration -# - The XSLT stylesheet <xsl:output> "encoding" attribute -# - Cocoon's default formatter "encoding" configuration property -### Example: Russian uses "Cp1251" -### processor.xsp.encoding = Cp1251 +# If omitted, the platform's default encoding will be used +# This encoding should be used in: +# - The XSP document <?xml?> declaration +# - The XSLT stylesheet <xsl:output> "encoding" attribute +# - Cocoon's default formatter "encoding" configuration property +# Example: Russian uses "Cp1251" +# processor.xsp.encoding = Cp1251 # support for the java language processor.xsp.java.processor = org.apache.cocoon.processor.xsp.language.java.XSPJavaProcessor @@ -154,7 +154,36 @@ processor.xsp.logicsheet.response.java = resource://org/apache/cocoon/processor/xsp/library/java/response.xsl processor.xsp.logicsheet.session.java = resource://org/apache/cocoon/processor/xsp/library/java/session.xsl processor.xsp.logicsheet.util.java = resource://org/apache/cocoon/processor/xsp/library/java/util.xsl -processor.xsp.logicsheet.sql.java = resource://org/apache/cocoon/processor/xsp/library/java/sql.xsl +processor.xsp.logicsheet.sql.java = resource://org/apache/cocoon/processor/xsp/library/sql/sql.xsl +processor.xsp.logicsheet.fp.java = resource://org/apache/cocoon/processor/xsp/library/fp/fp.xsl + +# Turbine DB Connection Pool +############################ + +# These are your database settings, look in the +# org.apache.turbine.util.db.pool.* package for more information. +processor.xsp.pool.database.default.driver=oracle.jdbc.driver.OracleDriver +processor.xsp.pool.database.default.url=jdbc:oracle:thin:@localhost:1521:ORCL +processor.xsp.pool.database.default.username=dbUser +processor.xsp.pool.database.default.password=dbPass +processor.xsp.pool.database.default.maxConnections=3 +processor.xsp.pool.database.default.expiryTime=3600000 + +# These are the supported jdbc-drivers and their adaptors. +# These properties are used by the DBFactory. +processor.xsp.pool.database.adaptor=DBWeblogic,DBOracle,DBInstantDB,DBPostgres,DBSybase,DBInformix +processor.xsp.pool.database.adaptor.DBWeblogic=weblogic.jdbc.pool.Driver +processor.xsp.pool.database.adaptor.DBOracle=oracle.jdbc.driver.OracleDriver +processor.xsp.pool.database.adaptor.DBInstantDB=org.enhydra.instantdb.jdbc.idbDriver +processor.xsp.pool.database.adaptor.DBPostgres=postgresql.Driver +processor.xsp.pool.database.adaptor.DBInformix=com.informix.jdbc.IfxDriver +processor.xsp.pool.database.adaptor.DBSybase=com.sybase.jdbc.SybDriver + +# The full path name to a pool log file +# if not given, commands to log events using org.apache.turbine.util.Log will be ignored. +# This file must already exist and be writable. +# Default: none +#processor.xsp.pool.logfile=/opt/apache/var/log/dbPool.log #### !!!!WARNING!!!! ###########
