You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by bu...@apache.org on 2013/02/10 04:29:13 UTC

svn commit: r850092 - in /websites/production/camel/content: book-dataformat-appendix.html book-in-one-page.html cache/main.pageCache csv.html

Author: buildbot
Date: Sun Feb 10 03:29:12 2013
New Revision: 850092

Log:
Production update by buildbot for camel

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

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 Sun Feb 10 03:29:12 2013
@@ -529,7 +529,7 @@ from(<span class="code-quote">"activemq:
 <h3><a shape="rect" name="BookDataFormatAppendix-Options"></a>Options</h3>
 
 <div class="table-wrap">
-<table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" class="confluenceTh"> Option </th><th colspan="1" rowspan="1" class="confluenceTh"> Type </th><th colspan="1" rowspan="1" class="confluenceTh"> Description </th></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> config </td><td colspan="1" rowspan="1" class="confluenceTd"> CSVConfig </td><td colspan="1" rowspan="1" class="confluenceTd"> Can be used to set a custom CSVConfig object. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> strategy </td><td colspan="1" rowspan="1" class="confluenceTd"> CSVStrategy </td><td colspan="1" rowspan="1" class="confluenceTd"> Camel uses by default <tt>CSVStrategy.DEFAULT_STRATEGY</tt>. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> autogenColumns </td><td colspan="1" rowspan="1" class="confluenceTd"> boolean </td><td colspan="1" rowspan="1" class="confluenceTd"> Is default true. By default, columns are autogenerated in the resulting C
 SV. Subsequent messages use the previously created columns with new fields being added at the end of the line. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> delimiter </td><td colspan="1" rowspan="1" class="confluenceTd"> String </td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 2.4:</b> Is default <tt>,</tt>. Can be used to configure the delimiter, if it's not the comma. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> skipFirstLine </td><td colspan="1" rowspan="1" class="confluenceTd"> boolean </td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 2.10:</b> Is default false. While unmarshalling can be used to skip the first line of a CSV input which contains the CSV headers. </td></tr></tbody></table>
+<table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" class="confluenceTh"> Option </th><th colspan="1" rowspan="1" class="confluenceTh"> Type </th><th colspan="1" rowspan="1" class="confluenceTh"> Description </th></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> config </td><td colspan="1" rowspan="1" class="confluenceTd"> CSVConfig </td><td colspan="1" rowspan="1" class="confluenceTd"> Can be used to set a custom <tt>CSVConfig</tt> object. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> strategy </td><td colspan="1" rowspan="1" class="confluenceTd"> CSVStrategy </td><td colspan="1" rowspan="1" class="confluenceTd"> Can be used to set a custom <tt>CSVStrategy</tt>; the default is <tt>CSVStrategy.DEFAULT_STRATEGY</tt>. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> autogenColumns </td><td colspan="1" rowspan="1" class="confluenceTd"> boolean </td><td colspan="1" rowspan="1" class="confluenceTd"> Whether or not column
 s are auto-generated in the resulting CSV. The default value is <tt>true</tt>; subsequent messages use the previously created columns with new fields being added at the end of the line. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> delimiter </td><td colspan="1" rowspan="1" class="confluenceTd"> String </td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 2.4:</b> The column delimiter to use; the default value is "<tt>,</tt>". </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> skipFirstLine </td><td colspan="1" rowspan="1" class="confluenceTd"> boolean </td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 2.10:</b> Whether or not to skip the first line of CSV input when unmarshalling (e.g. if the content has headers on the first line); the default value is <tt>false</tt>. </td></tr></tbody></table>
 </div>
 
 
@@ -665,7 +665,7 @@ from(<span class="code-quote">"direct:st
 <h3><a shape="rect" name="BookDataFormatAppendix-UsingautogenColumns%2CconfigRefandstrategyRefattributesinsideXMLDSL"></a>Using autogenColumns, configRef and strategyRef attributes inside XML DSL</h3>
 <p><b>Available as of Camel 2.9.2 / 2.10</b></p>
 
-<p>You can customize the CSV <a shape="rect" href="data-format.html" title="Data Format">Data Format</a> to make use of your own CVSConfig and/or CVSStrategy. Also note that the default value of the autogenColumns option is true. The following example should illustrate this customization.</p>
+<p>You can customize the CSV <a shape="rect" href="data-format.html" title="Data Format">Data Format</a> to make use of your own <tt>CSVConfig</tt> and/or <tt>CSVStrategy</tt>. Also note that the default value of the <tt>autogenColumns</tt> option is true. The following example should illustrate this customization.</p>
 
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
 <pre class="code-xml">
@@ -769,9 +769,9 @@ from(<span class="code-quote">"direct:st
 
 <h3><a shape="rect" name="BookDataFormatAppendix-Dependencies"></a>Dependencies</h3>
 
-<p>To use CSV in your camel routes you need to add the a dependency on <b>camel-csv</b> which implements this data format. </p>
+<p>To use CSV in your Camel routes you need to add a dependency on <b>camel-csv</b>, which implements this data format. </p>
 
-<p>If you use maven you could just add the following to your pom.xml, substituting the version number for the latest &amp; greatest release (see <a shape="rect" href="download.html" title="Download">the download page for the latest versions</a>).</p>
+<p>If you use Maven you can just add the following to your pom.xml, substituting the version number for the latest and greatest release (see <a shape="rect" href="download.html" title="Download">the download page for the latest versions</a>).</p>
 
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
 <pre class="code-java">

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 Sun Feb 10 03:29:12 2013
@@ -11551,7 +11551,7 @@ from(<span class="code-quote">"activemq:
 <h3><a shape="rect" name="BookInOnePage-Options"></a>Options</h3>
 
 <div class="table-wrap">
-<table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" class="confluenceTh"> Option </th><th colspan="1" rowspan="1" class="confluenceTh"> Type </th><th colspan="1" rowspan="1" class="confluenceTh"> Description </th></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> config </td><td colspan="1" rowspan="1" class="confluenceTd"> CSVConfig </td><td colspan="1" rowspan="1" class="confluenceTd"> Can be used to set a custom CSVConfig object. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> strategy </td><td colspan="1" rowspan="1" class="confluenceTd"> CSVStrategy </td><td colspan="1" rowspan="1" class="confluenceTd"> Camel uses by default <tt>CSVStrategy.DEFAULT_STRATEGY</tt>. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> autogenColumns </td><td colspan="1" rowspan="1" class="confluenceTd"> boolean </td><td colspan="1" rowspan="1" class="confluenceTd"> Is default true. By default, columns are autogenerated in the resulting C
 SV. Subsequent messages use the previously created columns with new fields being added at the end of the line. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> delimiter </td><td colspan="1" rowspan="1" class="confluenceTd"> String </td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 2.4:</b> Is default <tt>,</tt>. Can be used to configure the delimiter, if it's not the comma. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> skipFirstLine </td><td colspan="1" rowspan="1" class="confluenceTd"> boolean </td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 2.10:</b> Is default false. While unmarshalling can be used to skip the first line of a CSV input which contains the CSV headers. </td></tr></tbody></table>
+<table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" class="confluenceTh"> Option </th><th colspan="1" rowspan="1" class="confluenceTh"> Type </th><th colspan="1" rowspan="1" class="confluenceTh"> Description </th></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> config </td><td colspan="1" rowspan="1" class="confluenceTd"> CSVConfig </td><td colspan="1" rowspan="1" class="confluenceTd"> Can be used to set a custom <tt>CSVConfig</tt> object. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> strategy </td><td colspan="1" rowspan="1" class="confluenceTd"> CSVStrategy </td><td colspan="1" rowspan="1" class="confluenceTd"> Can be used to set a custom <tt>CSVStrategy</tt>; the default is <tt>CSVStrategy.DEFAULT_STRATEGY</tt>. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> autogenColumns </td><td colspan="1" rowspan="1" class="confluenceTd"> boolean </td><td colspan="1" rowspan="1" class="confluenceTd"> Whether or not column
 s are auto-generated in the resulting CSV. The default value is <tt>true</tt>; subsequent messages use the previously created columns with new fields being added at the end of the line. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> delimiter </td><td colspan="1" rowspan="1" class="confluenceTd"> String </td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 2.4:</b> The column delimiter to use; the default value is "<tt>,</tt>". </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> skipFirstLine </td><td colspan="1" rowspan="1" class="confluenceTd"> boolean </td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 2.10:</b> Whether or not to skip the first line of CSV input when unmarshalling (e.g. if the content has headers on the first line); the default value is <tt>false</tt>. </td></tr></tbody></table>
 </div>
 
 
@@ -11687,7 +11687,7 @@ from(<span class="code-quote">"direct:st
 <h3><a shape="rect" name="BookInOnePage-UsingautogenColumns%2CconfigRefandstrategyRefattributesinsideXMLDSL"></a>Using autogenColumns, configRef and strategyRef attributes inside XML DSL</h3>
 <p><b>Available as of Camel 2.9.2 / 2.10</b></p>
 
-<p>You can customize the CSV <a shape="rect" href="data-format.html" title="Data Format">Data Format</a> to make use of your own CVSConfig and/or CVSStrategy. Also note that the default value of the autogenColumns option is true. The following example should illustrate this customization.</p>
+<p>You can customize the CSV <a shape="rect" href="data-format.html" title="Data Format">Data Format</a> to make use of your own <tt>CSVConfig</tt> and/or <tt>CSVStrategy</tt>. Also note that the default value of the <tt>autogenColumns</tt> option is true. The following example should illustrate this customization.</p>
 
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
 <pre class="code-xml">
@@ -11791,9 +11791,9 @@ from(<span class="code-quote">"direct:st
 
 <h3><a shape="rect" name="BookInOnePage-Dependencies"></a>Dependencies</h3>
 
-<p>To use CSV in your camel routes you need to add the a dependency on <b>camel-csv</b> which implements this data format. </p>
+<p>To use CSV in your Camel routes you need to add a dependency on <b>camel-csv</b>, which implements this data format. </p>
 
-<p>If you use maven you could just add the following to your pom.xml, substituting the version number for the latest &amp; greatest release (see <a shape="rect" href="download.html" title="Download">the download page for the latest versions</a>).</p>
+<p>If you use Maven you can just add the following to your pom.xml, substituting the version number for the latest and greatest release (see <a shape="rect" href="download.html" title="Download">the download page for the latest versions</a>).</p>
 
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
 <pre class="code-java">

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

Modified: websites/production/camel/content/csv.html
==============================================================================
--- websites/production/camel/content/csv.html (original)
+++ websites/production/camel/content/csv.html Sun Feb 10 03:29:12 2013
@@ -82,7 +82,7 @@
 <h3><a shape="rect" name="CSV-Options"></a>Options</h3>
 
 <div class="table-wrap">
-<table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" class="confluenceTh"> Option </th><th colspan="1" rowspan="1" class="confluenceTh"> Type </th><th colspan="1" rowspan="1" class="confluenceTh"> Description </th></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> config </td><td colspan="1" rowspan="1" class="confluenceTd"> CSVConfig </td><td colspan="1" rowspan="1" class="confluenceTd"> Can be used to set a custom CSVConfig object. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> strategy </td><td colspan="1" rowspan="1" class="confluenceTd"> CSVStrategy </td><td colspan="1" rowspan="1" class="confluenceTd"> Camel uses by default <tt>CSVStrategy.DEFAULT_STRATEGY</tt>. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> autogenColumns </td><td colspan="1" rowspan="1" class="confluenceTd"> boolean </td><td colspan="1" rowspan="1" class="confluenceTd"> Is default true. By default, columns are autogenerated in the resulting C
 SV. Subsequent messages use the previously created columns with new fields being added at the end of the line. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> delimiter </td><td colspan="1" rowspan="1" class="confluenceTd"> String </td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 2.4:</b> Is default <tt>,</tt>. Can be used to configure the delimiter, if it's not the comma. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> skipFirstLine </td><td colspan="1" rowspan="1" class="confluenceTd"> boolean </td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 2.10:</b> Is default false. While unmarshalling can be used to skip the first line of a CSV input which contains the CSV headers. </td></tr></tbody></table>
+<table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" class="confluenceTh"> Option </th><th colspan="1" rowspan="1" class="confluenceTh"> Type </th><th colspan="1" rowspan="1" class="confluenceTh"> Description </th></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> config </td><td colspan="1" rowspan="1" class="confluenceTd"> CSVConfig </td><td colspan="1" rowspan="1" class="confluenceTd"> Can be used to set a custom <tt>CSVConfig</tt> object. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> strategy </td><td colspan="1" rowspan="1" class="confluenceTd"> CSVStrategy </td><td colspan="1" rowspan="1" class="confluenceTd"> Can be used to set a custom <tt>CSVStrategy</tt>; the default is <tt>CSVStrategy.DEFAULT_STRATEGY</tt>. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> autogenColumns </td><td colspan="1" rowspan="1" class="confluenceTd"> boolean </td><td colspan="1" rowspan="1" class="confluenceTd"> Whether or not column
 s are auto-generated in the resulting CSV. The default value is <tt>true</tt>; subsequent messages use the previously created columns with new fields being added at the end of the line. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> delimiter </td><td colspan="1" rowspan="1" class="confluenceTd"> String </td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 2.4:</b> The column delimiter to use; the default value is "<tt>,</tt>". </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> skipFirstLine </td><td colspan="1" rowspan="1" class="confluenceTd"> boolean </td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 2.10:</b> Whether or not to skip the first line of CSV input when unmarshalling (e.g. if the content has headers on the first line); the default value is <tt>false</tt>. </td></tr></tbody></table>
 </div>
 
 
@@ -218,7 +218,7 @@ from(<span class="code-quote">"direct:st
 <h3><a shape="rect" name="CSV-UsingautogenColumns%2CconfigRefandstrategyRefattributesinsideXMLDSL"></a>Using autogenColumns, configRef and strategyRef attributes inside XML DSL</h3>
 <p><b>Available as of Camel 2.9.2 / 2.10</b></p>
 
-<p>You can customize the CSV <a shape="rect" href="data-format.html" title="Data Format">Data Format</a> to make use of your own CVSConfig and/or CVSStrategy. Also note that the default value of the autogenColumns option is true. The following example should illustrate this customization.</p>
+<p>You can customize the CSV <a shape="rect" href="data-format.html" title="Data Format">Data Format</a> to make use of your own <tt>CSVConfig</tt> and/or <tt>CSVStrategy</tt>. Also note that the default value of the <tt>autogenColumns</tt> option is true. The following example should illustrate this customization.</p>
 
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
 <pre class="code-xml">
@@ -322,9 +322,9 @@ from(<span class="code-quote">"direct:st
 
 <h3><a shape="rect" name="CSV-Dependencies"></a>Dependencies</h3>
 
-<p>To use CSV in your camel routes you need to add the a dependency on <b>camel-csv</b> which implements this data format. </p>
+<p>To use CSV in your Camel routes you need to add a dependency on <b>camel-csv</b>, which implements this data format. </p>
 
-<p>If you use maven you could just add the following to your pom.xml, substituting the version number for the latest &amp; greatest release (see <a shape="rect" href="download.html" title="Download">the download page for the latest versions</a>).</p>
+<p>If you use Maven you can just add the following to your pom.xml, substituting the version number for the latest and greatest release (see <a shape="rect" href="download.html" title="Download">the download page for the latest versions</a>).</p>
 
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
 <pre class="code-java">