Author: buildbot
Date: Mon Jul 16 17:21:26 2012
New Revision: 826012

Log:
Production update by buildbot for camel

Modified:
    websites/production/camel/content/book-component-appendix.html
    websites/production/camel/content/book-in-one-page.html
    websites/production/camel/content/cache/main.pageCache
    websites/production/camel/content/xslt.html

Modified: websites/production/camel/content/book-component-appendix.html
==============================================================================
--- websites/production/camel/content/book-component-appendix.html (original)
+++ websites/production/camel/content/book-component-appendix.html Mon Jul 16 
17:21:26 2012
@@ -16937,7 +16937,7 @@ xslt:templateName[?options]
 <h3><a shape="rect" name="BookComponentAppendix-Options"></a>Options</h3>
 <div class="confluenceTableSmall"><div class="table-wrap">
 <table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" 
class="confluenceTh"> Name </th><th colspan="1" rowspan="1" 
class="confluenceTh"> Default Value </th><th colspan="1" rowspan="1" 
class="confluenceTh"> Description </th></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>converter</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>null</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> Option to override default <a shape="rect" 
class="external-link" 
href="http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/converter/jaxp/XmlConverter.html";>XmlConverter</a>.
 Will lookup for the converter in the <a shape="rect" href="registry.html" 
title="Registry">Registry</a>. The provided converted must be of type 
org.apache.camel.converter.jaxp.XmlConverter. </td></tr><tr><td colspan="1" 
rowspan="1" class="confluenceTd"> <tt>transformerFactory</tt> </td><td 
colspan="1" rowspan="1" class="confluenceTd"> <tt>null</tt> <
 /td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 1.6</b> Option 
to override default <a shape="rect" class="external-link" 
href="http://java.sun.com/j2se/1.5.0/docs/api/javax/xml/transform/TransformerFactory.html";
 rel="nofollow">TransformerFactory</a>. Will lookup for the transformerFactory 
in the <a shape="rect" href="registry.html" title="Registry">Registry</a>. The 
provided transformer factory must be of type 
javax.xml.transform.TransformerFactory. </td></tr><tr><td colspan="1" 
rowspan="1" class="confluenceTd"> <tt>transformerFactoryClass</tt> </td><td 
colspan="1" rowspan="1" class="confluenceTd"> <tt>null</tt> </td><td 
colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 1.6</b> Option to 
override default <a shape="rect" class="external-link" 
href="http://java.sun.com/j2se/1.5.0/docs/api/javax/xml/transform/TransformerFactory.html";
 rel="nofollow">TransformerFactory</a>. Will create a TransformerFactoryClass 
instance and set it to the converter. </td></tr><
 tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>uriResolver</tt> 
</td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>null</tt> </td><td 
colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 2.3</b>: Allows you to 
use a custom <tt>javax.xml.transformation.URIResolver</tt>. Camel will by 
default use its own implementation 
<tt>org.apache.camel.builder.xml.XsltUriResolver</tt> which is capable of 
loading from classpath. </td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>resultHandlerFactory</tt> </td><td colspan="1" 
rowspan="1" class="confluenceTd"> <tt>null</tt> </td><td colspan="1" 
rowspan="1" class="confluenceTd"> <b>Camel 2.3:</b> Allows you to use a custom 
<tt>org.apache.camel.builder.xml.ResultHandlerFactory</tt> which is capable of 
using custom <tt>org.apache.camel.builder.xml.ResultHandler</tt> types. 
</td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> 
<tt>failOnNullBody</tt> </td><td colspan="1" rowspan="1" class="confluence
 Td"> <tt>true</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> 
<b>Camel 2.3:</b> Whether or not to throw an exception if the input body is 
null. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> 
<tt>deleteOutputFile</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <b>Camel 2.6:</b> If you have <tt>output=file</tt> then 
this option dictates whether or not the output file should be deleted when the 
<a shape="rect" href="exchange.html" title="Exchange">Exchange</a> is done 
processing. For example suppose the output file is a temporary file, then it 
can be a good idea to delete it after use. </td></tr><tr><td colspan="1" 
rowspan="1" class="confluenceTd"> <tt>output</tt> </td><td colspan="1" 
rowspan="1" class="confluenceTd"> <tt>string</tt> </td><td colspan="1" 
rowspan="1" class="confluenceTd"> <b>Camel 2.3:</b> Option to specify which 
output type to use. Possible values are:
  <tt>string, bytes, DOM, file</tt>. The first three options are all in memory 
based, where as <tt>file</tt> is streamed directly to a <tt>java.io.File</tt>. 
For <tt>file</tt> you <b>must</b> specify the filename in the IN header with 
the key <tt>Exchange.XSLT_FILE_NAME</tt> which is also 
<tt>CamelXsltFileName</tt>. Also any paths leading to the filename must be 
created beforehand, otherwise an exception is thrown at runtime. 
</td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> 
<tt>contentCache</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> 
<tt>true</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 
2.6:</b> Cache for the resource content (the stylesheet file) when it is 
loaded. If set to <tt>false</tt> Camel will reload the stylesheet file on each 
message processing. This is good for development. <br clear="none">
-Note: from <b>Camel 2.9</b> a cached stylesheet can be forced to reload at 
runtime via JMX using the <tt>clearCachedStylesheet</tt> operation. 
</td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> 
<tt>allowStAX</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> 
<tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 
2.8.3/2.9:</b> Whether to allow using StAX as the 
<tt>javax.xml.transform.Source</tt>. </td></tr></tbody></table>
+Note: from <b>Camel 2.9</b> a cached stylesheet can be forced to reload at 
runtime via JMX using the <tt>clearCachedStylesheet</tt> operation. 
</td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> 
<tt>allowStAX</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> 
<tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 
2.8.3/2.9:</b> Whether to allow using StAX as the 
<tt>javax.xml.transform.Source</tt>. </td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>transformerCacheSize</tt> </td><td colspan="1" 
rowspan="1" class="confluenceTd"> <tt>0</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <b>Camel 2.9.3/2.10.1:</b>  The number of 
<tt>javax.xml.transform.Transformer</tt> object that are cached for reuse to 
avoid calls to <tt>Template.newTransformer()</tt>. </td></tr></tbody></table>
 </div>
 </div>
 

Modified: websites/production/camel/content/book-in-one-page.html
==============================================================================
--- websites/production/camel/content/book-in-one-page.html (original)
+++ websites/production/camel/content/book-in-one-page.html Mon Jul 16 17:21:26 
2012
@@ -37429,7 +37429,7 @@ xslt:templateName[?options]
 <h3><a shape="rect" name="BookInOnePage-Options"></a>Options</h3>
 <div class="confluenceTableSmall"><div class="table-wrap">
 <table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" 
class="confluenceTh"> Name </th><th colspan="1" rowspan="1" 
class="confluenceTh"> Default Value </th><th colspan="1" rowspan="1" 
class="confluenceTh"> Description </th></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>converter</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>null</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> Option to override default <a shape="rect" 
class="external-link" 
href="http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/converter/jaxp/XmlConverter.html";>XmlConverter</a>.
 Will lookup for the converter in the <a shape="rect" href="registry.html" 
title="Registry">Registry</a>. The provided converted must be of type 
org.apache.camel.converter.jaxp.XmlConverter. </td></tr><tr><td colspan="1" 
rowspan="1" class="confluenceTd"> <tt>transformerFactory</tt> </td><td 
colspan="1" rowspan="1" class="confluenceTd"> <tt>null</tt> <
 /td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 1.6</b> Option 
to override default <a shape="rect" class="external-link" 
href="http://java.sun.com/j2se/1.5.0/docs/api/javax/xml/transform/TransformerFactory.html";
 rel="nofollow">TransformerFactory</a>. Will lookup for the transformerFactory 
in the <a shape="rect" href="registry.html" title="Registry">Registry</a>. The 
provided transformer factory must be of type 
javax.xml.transform.TransformerFactory. </td></tr><tr><td colspan="1" 
rowspan="1" class="confluenceTd"> <tt>transformerFactoryClass</tt> </td><td 
colspan="1" rowspan="1" class="confluenceTd"> <tt>null</tt> </td><td 
colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 1.6</b> Option to 
override default <a shape="rect" class="external-link" 
href="http://java.sun.com/j2se/1.5.0/docs/api/javax/xml/transform/TransformerFactory.html";
 rel="nofollow">TransformerFactory</a>. Will create a TransformerFactoryClass 
instance and set it to the converter. </td></tr><
 tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>uriResolver</tt> 
</td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>null</tt> </td><td 
colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 2.3</b>: Allows you to 
use a custom <tt>javax.xml.transformation.URIResolver</tt>. Camel will by 
default use its own implementation 
<tt>org.apache.camel.builder.xml.XsltUriResolver</tt> which is capable of 
loading from classpath. </td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>resultHandlerFactory</tt> </td><td colspan="1" 
rowspan="1" class="confluenceTd"> <tt>null</tt> </td><td colspan="1" 
rowspan="1" class="confluenceTd"> <b>Camel 2.3:</b> Allows you to use a custom 
<tt>org.apache.camel.builder.xml.ResultHandlerFactory</tt> which is capable of 
using custom <tt>org.apache.camel.builder.xml.ResultHandler</tt> types. 
</td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> 
<tt>failOnNullBody</tt> </td><td colspan="1" rowspan="1" class="confluence
 Td"> <tt>true</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> 
<b>Camel 2.3:</b> Whether or not to throw an exception if the input body is 
null. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> 
<tt>deleteOutputFile</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <b>Camel 2.6:</b> If you have <tt>output=file</tt> then 
this option dictates whether or not the output file should be deleted when the 
<a shape="rect" href="exchange.html" title="Exchange">Exchange</a> is done 
processing. For example suppose the output file is a temporary file, then it 
can be a good idea to delete it after use. </td></tr><tr><td colspan="1" 
rowspan="1" class="confluenceTd"> <tt>output</tt> </td><td colspan="1" 
rowspan="1" class="confluenceTd"> <tt>string</tt> </td><td colspan="1" 
rowspan="1" class="confluenceTd"> <b>Camel 2.3:</b> Option to specify which 
output type to use. Possible values are:
  <tt>string, bytes, DOM, file</tt>. The first three options are all in memory 
based, where as <tt>file</tt> is streamed directly to a <tt>java.io.File</tt>. 
For <tt>file</tt> you <b>must</b> specify the filename in the IN header with 
the key <tt>Exchange.XSLT_FILE_NAME</tt> which is also 
<tt>CamelXsltFileName</tt>. Also any paths leading to the filename must be 
created beforehand, otherwise an exception is thrown at runtime. 
</td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> 
<tt>contentCache</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> 
<tt>true</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 
2.6:</b> Cache for the resource content (the stylesheet file) when it is 
loaded. If set to <tt>false</tt> Camel will reload the stylesheet file on each 
message processing. This is good for development. <br clear="none">
-Note: from <b>Camel 2.9</b> a cached stylesheet can be forced to reload at 
runtime via JMX using the <tt>clearCachedStylesheet</tt> operation. 
</td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> 
<tt>allowStAX</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> 
<tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 
2.8.3/2.9:</b> Whether to allow using StAX as the 
<tt>javax.xml.transform.Source</tt>. </td></tr></tbody></table>
+Note: from <b>Camel 2.9</b> a cached stylesheet can be forced to reload at 
runtime via JMX using the <tt>clearCachedStylesheet</tt> operation. 
</td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> 
<tt>allowStAX</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> 
<tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 
2.8.3/2.9:</b> Whether to allow using StAX as the 
<tt>javax.xml.transform.Source</tt>. </td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>transformerCacheSize</tt> </td><td colspan="1" 
rowspan="1" class="confluenceTd"> <tt>0</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <b>Camel 2.9.3/2.10.1:</b>  The number of 
<tt>javax.xml.transform.Transformer</tt> object that are cached for reuse to 
avoid calls to <tt>Template.newTransformer()</tt>. </td></tr></tbody></table>
 </div>
 </div>
 

Modified: websites/production/camel/content/cache/main.pageCache
==============================================================================
Binary files - no diff available.

Modified: websites/production/camel/content/xslt.html
==============================================================================
--- websites/production/camel/content/xslt.html (original)
+++ websites/production/camel/content/xslt.html Mon Jul 16 17:21:26 2012
@@ -119,7 +119,7 @@ xslt:templateName[?options]
 <h3><a shape="rect" name="XSLT-Options"></a>Options</h3>
 <div class="confluenceTableSmall"><div class="table-wrap">
 <table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" 
class="confluenceTh"> Name </th><th colspan="1" rowspan="1" 
class="confluenceTh"> Default Value </th><th colspan="1" rowspan="1" 
class="confluenceTh"> Description </th></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>converter</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>null</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> Option to override default <a shape="rect" 
class="external-link" 
href="http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/converter/jaxp/XmlConverter.html";>XmlConverter</a>.
 Will lookup for the converter in the <a shape="rect" href="registry.html" 
title="Registry">Registry</a>. The provided converted must be of type 
org.apache.camel.converter.jaxp.XmlConverter. </td></tr><tr><td colspan="1" 
rowspan="1" class="confluenceTd"> <tt>transformerFactory</tt> </td><td 
colspan="1" rowspan="1" class="confluenceTd"> <tt>null</tt> <
 /td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 1.6</b> Option 
to override default <a shape="rect" class="external-link" 
href="http://java.sun.com/j2se/1.5.0/docs/api/javax/xml/transform/TransformerFactory.html";
 rel="nofollow">TransformerFactory</a>. Will lookup for the transformerFactory 
in the <a shape="rect" href="registry.html" title="Registry">Registry</a>. The 
provided transformer factory must be of type 
javax.xml.transform.TransformerFactory. </td></tr><tr><td colspan="1" 
rowspan="1" class="confluenceTd"> <tt>transformerFactoryClass</tt> </td><td 
colspan="1" rowspan="1" class="confluenceTd"> <tt>null</tt> </td><td 
colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 1.6</b> Option to 
override default <a shape="rect" class="external-link" 
href="http://java.sun.com/j2se/1.5.0/docs/api/javax/xml/transform/TransformerFactory.html";
 rel="nofollow">TransformerFactory</a>. Will create a TransformerFactoryClass 
instance and set it to the converter. </td></tr><
 tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>uriResolver</tt> 
</td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>null</tt> </td><td 
colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 2.3</b>: Allows you to 
use a custom <tt>javax.xml.transformation.URIResolver</tt>. Camel will by 
default use its own implementation 
<tt>org.apache.camel.builder.xml.XsltUriResolver</tt> which is capable of 
loading from classpath. </td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>resultHandlerFactory</tt> </td><td colspan="1" 
rowspan="1" class="confluenceTd"> <tt>null</tt> </td><td colspan="1" 
rowspan="1" class="confluenceTd"> <b>Camel 2.3:</b> Allows you to use a custom 
<tt>org.apache.camel.builder.xml.ResultHandlerFactory</tt> which is capable of 
using custom <tt>org.apache.camel.builder.xml.ResultHandler</tt> types. 
</td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> 
<tt>failOnNullBody</tt> </td><td colspan="1" rowspan="1" class="confluence
 Td"> <tt>true</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> 
<b>Camel 2.3:</b> Whether or not to throw an exception if the input body is 
null. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> 
<tt>deleteOutputFile</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <b>Camel 2.6:</b> If you have <tt>output=file</tt> then 
this option dictates whether or not the output file should be deleted when the 
<a shape="rect" href="exchange.html" title="Exchange">Exchange</a> is done 
processing. For example suppose the output file is a temporary file, then it 
can be a good idea to delete it after use. </td></tr><tr><td colspan="1" 
rowspan="1" class="confluenceTd"> <tt>output</tt> </td><td colspan="1" 
rowspan="1" class="confluenceTd"> <tt>string</tt> </td><td colspan="1" 
rowspan="1" class="confluenceTd"> <b>Camel 2.3:</b> Option to specify which 
output type to use. Possible values are:
  <tt>string, bytes, DOM, file</tt>. The first three options are all in memory 
based, where as <tt>file</tt> is streamed directly to a <tt>java.io.File</tt>. 
For <tt>file</tt> you <b>must</b> specify the filename in the IN header with 
the key <tt>Exchange.XSLT_FILE_NAME</tt> which is also 
<tt>CamelXsltFileName</tt>. Also any paths leading to the filename must be 
created beforehand, otherwise an exception is thrown at runtime. 
</td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> 
<tt>contentCache</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> 
<tt>true</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 
2.6:</b> Cache for the resource content (the stylesheet file) when it is 
loaded. If set to <tt>false</tt> Camel will reload the stylesheet file on each 
message processing. This is good for development. <br clear="none">
-Note: from <b>Camel 2.9</b> a cached stylesheet can be forced to reload at 
runtime via JMX using the <tt>clearCachedStylesheet</tt> operation. 
</td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> 
<tt>allowStAX</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> 
<tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 
2.8.3/2.9:</b> Whether to allow using StAX as the 
<tt>javax.xml.transform.Source</tt>. </td></tr></tbody></table>
+Note: from <b>Camel 2.9</b> a cached stylesheet can be forced to reload at 
runtime via JMX using the <tt>clearCachedStylesheet</tt> operation. 
</td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> 
<tt>allowStAX</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> 
<tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 
2.8.3/2.9:</b> Whether to allow using StAX as the 
<tt>javax.xml.transform.Source</tt>. </td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>transformerCacheSize</tt> </td><td colspan="1" 
rowspan="1" class="confluenceTd"> <tt>0</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <b>Camel 2.9.3/2.10.1:</b>  The number of 
<tt>javax.xml.transform.Transformer</tt> object that are cached for reuse to 
avoid calls to <tt>Template.newTransformer()</tt>. </td></tr></tbody></table>
 </div>
 </div>
 


Reply via email to