Author: buildbot
Date: Wed May 16 14:21:01 2012
New Revision: 817929

Log:
Production update by buildbot for camel

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

Modified: websites/production/camel/content/bindy.html
==============================================================================
--- websites/production/camel/content/bindy.html (original)
+++ websites/production/camel/content/bindy.html Wed May 16 14:21:01 2012
@@ -1022,11 +1022,11 @@ Claus,Ibsen,Camel in Action 4,2014,35</p
 
 <p>The next step consists in instantiating the DataFormat <em>bindy</em> class 
associated with this record type and providing Java package name(s) as 
parameter.</p>
 
-<p>For example the following uses the class CsvBindyFormat (who correspond to 
the class associated with the CSV record type) which is configured with 
"com.acme.model"<br clear="none">
+<p>For example the following uses the class <tt>BindyCsvDataFormat</tt> (who 
correspond to the class associated with the CSV record type) which is 
configured with "com.acme.model"<br clear="none">
 package name to initialize the model objects configured in this package.</p>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
 <pre class="code-java">
-DataFormat bindy = <span class="code-keyword">new</span> 
CsvBindyDataFormat(<span class="code-quote">"com.acme.model"</span>);
+DataFormat bindy = <span class="code-keyword">new</span> 
BindyCsvDataFormat(<span class="code-quote">"com.acme.model"</span>);
 </pre>
 </div></div>
 

Modified: websites/production/camel/content/book-dataformat-appendix.html
==============================================================================
--- websites/production/camel/content/book-dataformat-appendix.html (original)
+++ websites/production/camel/content/book-dataformat-appendix.html Wed May 16 
14:21:01 2012
@@ -375,31 +375,7 @@ You can setup which encoding to use when
 
 <h3><a shape="rect" 
name="BookDataFormatAppendix-UsingacustomNamespacePrefixMapper"></a>Using a 
custom NamespacePrefixMapper</h3>
 <p>Starting with Camel 2.9.3, you can use a custom 
<tt>com.sun.xml.bind.marshaller.NamespacePrefixMapper</tt> to define the 
namespace prefix for a given namespace uri. This feature is may only available 
in the JAXB RI!</p>
-<div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
-<pre class="code-xml"><span class="code-tag">&lt;camelContext id=<span 
class="code-quote">"camel"</span> xmlns=<span 
class="code-quote">"http://camel.apache.org/schema/spring";</span>&gt;</span>
-  <span class="code-tag">&lt;route&gt;</span>
-    <span class="code-tag">&lt;from uri=<span 
class="code-quote">"direct:marshall1"</span>/&gt;</span>
-    <span class="code-tag">&lt;marshal&gt;</span>
-      <span class="code-tag">&lt;jaxb prettyPrint=<span 
class="code-quote">"true"</span> contextPath=<span 
class="code-quote">"org.apache.camel.example"</span> 
nameSpacePrefixMapper=<span 
class="code-quote">"org.apache.camel.jaxb.MyNameSpacePrefixMapper"</span>/&gt;</span>
-    <span class="code-tag">&lt;/marshal&gt;</span>
-    <span class="code-tag">&lt;to uri=<span 
class="code-quote">"mock:marshall"</span>/&gt;</span>
-  <span class="code-tag">&lt;/route&gt;</span>
-
-  <span class="code-tag">&lt;route&gt;</span>
-    <span class="code-tag">&lt;from uri=<span 
class="code-quote">"direct:marshall2"</span>/&gt;</span>
-    <span class="code-tag">&lt;marshal ref=<span 
class="code-quote">"myJaxb"</span>/&gt;</span>
-    <span class="code-tag">&lt;to uri=<span 
class="code-quote">"mock:marshall"</span>/&gt;</span>
-  <span class="code-tag">&lt;/route&gt;</span>
-<span class="code-tag">&lt;/camelContext&gt;</span>
-
-<span class="code-tag">&lt;bean id=<span class="code-quote">"myJaxb"</span> 
class=<span 
class="code-quote">"org.apache.camel.converter.jaxb.JaxbDataFormat"</span>&gt;</span>
-  <span class="code-tag">&lt;property name=<span 
class="code-quote">"contextPath"</span> value=<span 
class="code-quote">"org.apache.camel.example"</span>/&gt;</span>
-  <span class="code-tag">&lt;property name=<span 
class="code-quote">"nameSpacePrefixMapper"</span>&gt;</span>
-      <span class="code-tag">&lt;bean class=<span 
class="code-quote">"org.apache.camel.jaxb.MyNameSpacePrefixMapper"</span> 
/&gt;</span>
-  <span class="code-tag">&lt;/property&gt;</span>
-<span class="code-tag">&lt;/bean&gt;</span>
-</pre>
-</div></div>
+<div class="error"><span class="error">Error formatting macro: snippet: 
java.lang.IndexOutOfBoundsException: Index: 20, Size: 20</span> </div>
 
 <h3><a shape="rect" 
name="BookDataFormatAppendix-Dependencies"></a>Dependencies</h3>
 
@@ -2115,11 +2091,11 @@ Claus,Ibsen,Camel in Action 4,2014,35</p
 
 <p>The next step consists in instantiating the DataFormat <em>bindy</em> class 
associated with this record type and providing Java package name(s) as 
parameter.</p>
 
-<p>For example the following uses the class CsvBindyFormat (who correspond to 
the class associated with the CSV record type) which is configured with 
"com.acme.model"<br clear="none">
+<p>For example the following uses the class <tt>BindyCsvDataFormat</tt> (who 
correspond to the class associated with the CSV record type) which is 
configured with "com.acme.model"<br clear="none">
 package name to initialize the model objects configured in this package.</p>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
 <pre class="code-java">
-DataFormat bindy = <span class="code-keyword">new</span> 
CsvBindyDataFormat(<span class="code-quote">"com.acme.model"</span>);
+DataFormat bindy = <span class="code-keyword">new</span> 
BindyCsvDataFormat(<span class="code-quote">"com.acme.model"</span>);
 </pre>
 </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 Wed May 16 14:21:01 
2012
@@ -12915,11 +12915,11 @@ Claus,Ibsen,Camel in Action 4,2014,35</p
 
 <p>The next step consists in instantiating the DataFormat <em>bindy</em> class 
associated with this record type and providing Java package name(s) as 
parameter.</p>
 
-<p>For example the following uses the class CsvBindyFormat (who correspond to 
the class associated with the CSV record type) which is configured with 
"com.acme.model"<br clear="none">
+<p>For example the following uses the class <tt>BindyCsvDataFormat</tt> (who 
correspond to the class associated with the CSV record type) which is 
configured with "com.acme.model"<br clear="none">
 package name to initialize the model objects configured in this package.</p>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
 <pre class="code-java">
-DataFormat bindy = <span class="code-keyword">new</span> 
CsvBindyDataFormat(<span class="code-quote">"com.acme.model"</span>);
+DataFormat bindy = <span class="code-keyword">new</span> 
BindyCsvDataFormat(<span class="code-quote">"com.acme.model"</span>);
 </pre>
 </div></div>
 

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


Reply via email to