bruno 2003/05/02 08:28:07
Modified: src/webapp/WEB-INF cocoon.xconf
Log:
Disable incremental-processing by default.
Removed incremental-processing parameter from XSLTC since it doesn't support
it anyway.
Added warning about bug 13186 and some other blah blah.
Revision Changes Path
1.17 +10 -3 cocoon-2.1/src/webapp/WEB-INF/cocoon.xconf
Index: cocoon.xconf
===================================================================
RCS file: /home/cvs/cocoon-2.1/src/webapp/WEB-INF/cocoon.xconf,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- cocoon.xconf 2 May 2003 06:03:50 -0000 1.16
+++ cocoon.xconf 2 May 2003 15:28:07 -0000 1.17
@@ -325,10 +325,18 @@
| processor to start the output of the transformation as soon as
possible.
| if set to false, the transforer waits until the end of the
| transformation to deliver the output.
+ | WARNING: * if you enable incremental-processing, you should be aware
of
+ | the following bug:
+ | http://nagoya.apache.org/bugzilla/show_bug.cgi?id=13186
+ | * incremental-processing creates an additional, non-pooled
thread.
+ | * using incremental-processing does not save memory, the
input
+ | tree will still be build completely.
+ | * incremental processing is a 'static' thing in Xalan: if
you
+ | enable it on one xslt-processor, enable it on all.
+-->
<xslt-processor logger="core.xslt-processor">
<parameter name="use-store" value="false"/>
- <parameter name="incremental-processing" value="true"/>
+ <parameter name="incremental-processing" value="false"/>
</xslt-processor>
<!--+
@@ -340,7 +348,6 @@
role="org.apache.excalibur.xml.xslt.XSLTProcessor/xsltc"
class="org.apache.excalibur.xml.xslt.XSLTProcessorImpl">
<parameter name="use-store" value="false"/>
- <parameter name="incremental-processing" value="true"/>
<parameter name="transformer-factory"
value="org.apache.xalan.xsltc.trax.TransformerFactoryImpl"/>
</component>
@@ -351,7 +358,7 @@
role="org.apache.excalibur.xml.xslt.XSLTProcessor/xalan"
class="org.apache.excalibur.xml.xslt.XSLTProcessorImpl">
<parameter name="use-store" value="false"/>
- <parameter name="incremental-processing" value="true"/>
+ <parameter name="incremental-processing" value="false"/>
<parameter name="transformer-factory"
value="org.apache.xalan.processor.TransformerFactoryImpl"/>
</component>