Author: buildbot
Date: Fri Apr  6 15:21:26 2012
New Revision: 811701

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/ibatis.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 Fri Apr  6 
15:21:26 2012
@@ -7149,9 +7149,13 @@ httpComponent.setHttpClientConfigurer(<s
 
 <p>The <b>ibatis:</b> component allows you to query, poll, insert, update and 
delete data in a relational database using <a shape="rect" 
class="external-link" href="http://ibatis.apache.org/";>Apache iBATIS</a>.</p>
 
+<div class="panelMacro"><table class="warningMacro"><colgroup span="1"><col 
span="1" width="24"><col span="1"></colgroup><tr><td colspan="1" rowspan="1" 
valign="top"><img align="middle" 
src="https://cwiki.apache.org/confluence/images/icons/emoticons/forbidden.gif"; 
width="16" height="16" alt="" border="0"></td><td colspan="1" 
rowspan="1"><b>Prefer MyBatis</b><br clear="none">The Apache iBatis project is 
no longer active. The project is moved outside Apache and is now know as the 
MyBatis project.<br clear="none">
+Therefore we encourage users to use <a shape="rect" href="mybatis.html" 
title="MyBatis">MyBatis</a> instead. This camel-ibatis component will be 
removed in Camel 3.0.</td></tr></table></div>
+
 <p>Maven users will need to add the following dependency to their 
<tt>pom.xml</tt> for this component:</p>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
-<pre class="code-xml"><span class="code-tag">&lt;dependency&gt;</span>
+<pre class="code-xml">
+<span class="code-tag">&lt;dependency&gt;</span>
     <span class="code-tag">&lt;groupId&gt;</span>org.apache.camel<span 
class="code-tag">&lt;/groupId&gt;</span>
     <span class="code-tag">&lt;artifactId&gt;</span>camel-ibatis<span 
class="code-tag">&lt;/artifactId&gt;</span>
     <span class="code-tag">&lt;version&gt;</span>x.x.x<span 
class="code-tag">&lt;/version&gt;</span>
@@ -7163,7 +7167,8 @@ httpComponent.setHttpClientConfigurer(<s
 <h3><a shape="rect" name="BookComponentAppendix-URIformat"></a>URI format</h3>
 
 <div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
-<pre class="code-java">ibatis:statementName[?options]
+<pre class="code-java">
+ibatis:statementName[?options]
 </pre>
 </div></div>
 
@@ -7203,7 +7208,8 @@ In Camel 2.2 you can configure this on t
 <p>For example if you wish to consume beans from a JMS queue and insert them 
into a database you could do the following:</p>
 
 <div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
-<pre class="code-java">from(<span 
class="code-quote">"activemq:queue:newAccount"</span>).
+<pre class="code-java">
+from(<span class="code-quote">"activemq:queue:newAccount"</span>).
   to(<span 
class="code-quote">"ibatis:insertAccount?statementType=Insert"</span>);
 </pre>
 </div></div>
@@ -7212,7 +7218,8 @@ In Camel 2.2 you can configure this on t
 
 <p>Where <b>insertAccount</b> is the iBatis ID in the SQL map file:</p>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
-<pre class="code-xml">  <span class="code-tag"><span 
class="code-comment">&lt;!-- Insert example, using the Account parameter class 
--&gt;</span></span>
+<pre class="code-xml">
+  <span class="code-tag"><span class="code-comment">&lt;!-- Insert example, 
using the Account parameter class --&gt;</span></span>
   <span class="code-tag">&lt;insert id=<span 
class="code-quote">"insertAccount"</span> parameterClass=<span 
class="code-quote">"Account"</span>&gt;</span>
     insert into ACCOUNT (
       ACC_ID,
@@ -7261,13 +7268,15 @@ When routing to an iBatis endpoint you w
 
 <p>In the sample below we poll the database, every 30 seconds using the <a 
shape="rect" href="timer.html" title="Timer">Timer</a> component and send the 
data to the JMS queue:</p>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
-<pre class="code-java">from(<span class="code-quote">"timer:<span 
class="code-comment">//pollTheDatabase?delay=30000"</span>).to(<span 
class="code-quote">"ibatis:selectAllAccounts?statementType=QueryForList"</span>).to(<span
 class="code-quote">"activemq:queue:allAccounts"</span>);</span>
+<pre class="code-java">
+from(<span class="code-quote">"timer:<span 
class="code-comment">//pollTheDatabase?delay=30000"</span>).to(<span 
class="code-quote">"ibatis:selectAllAccounts?statementType=QueryForList"</span>).to(<span
 class="code-quote">"activemq:queue:allAccounts"</span>);</span>
 </pre>
 </div></div>
 
 <p>And the iBatis SQL map file used:</p>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
-<pre class="code-xml">  <span class="code-tag"><span 
class="code-comment">&lt;!-- Select with no parameters using the result map for 
Account class. --&gt;</span></span>
+<pre class="code-xml">
+  <span class="code-tag"><span class="code-comment">&lt;!-- Select with no 
parameters using the result map for Account class. --&gt;</span></span>
   <span class="code-tag">&lt;select id=<span 
class="code-quote">"selectAllAccounts"</span> resultMap=<span 
class="code-quote">"AccountResult"</span>&gt;</span>
     select * from ACCOUNT
   <span class="code-tag">&lt;/select&gt;</span>
@@ -7300,6 +7309,8 @@ When routing to an iBatis endpoint you w
 <h3><a shape="rect" name="BookComponentAppendix-SeeAlso"></a>See Also</h3>
 <ul><li><a shape="rect" href="configuring-camel.html" title="Configuring 
Camel">Configuring Camel</a></li><li><a shape="rect" href="component.html" 
title="Component">Component</a></li><li><a shape="rect" href="endpoint.html" 
title="Endpoint">Endpoint</a></li><li><a shape="rect" 
href="getting-started.html" title="Getting Started">Getting 
Started</a></li></ul>
 
+<ul class="alternate" type="square"><li><a shape="rect" href="mybatis.html" 
title="MyBatis">MyBatis</a></li></ul>
+
 <h2><a shape="rect" name="BookComponentAppendix-IRCComponent"></a>IRC 
Component</h2>
 
 <p>The <b>irc</b> component implements an <a shape="rect" 
class="external-link" href="http://en.wikipedia.org/wiki/Internet_Relay_Chat"; 
rel="nofollow">IRC</a> (Internet Relay Chat) transport.</p>

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 Fri Apr  6 15:21:26 
2012
@@ -27310,9 +27310,13 @@ httpComponent.setHttpClientConfigurer(<s
 
 <p>The <b>ibatis:</b> component allows you to query, poll, insert, update and 
delete data in a relational database using <a shape="rect" 
class="external-link" href="http://ibatis.apache.org/";>Apache iBATIS</a>.</p>
 
+<div class="panelMacro"><table class="warningMacro"><colgroup span="1"><col 
span="1" width="24"><col span="1"></colgroup><tr><td colspan="1" rowspan="1" 
valign="top"><img align="middle" 
src="https://cwiki.apache.org/confluence/images/icons/emoticons/forbidden.gif"; 
width="16" height="16" alt="" border="0"></td><td colspan="1" 
rowspan="1"><b>Prefer MyBatis</b><br clear="none">The Apache iBatis project is 
no longer active. The project is moved outside Apache and is now know as the 
MyBatis project.<br clear="none">
+Therefore we encourage users to use <a shape="rect" href="mybatis.html" 
title="MyBatis">MyBatis</a> instead. This camel-ibatis component will be 
removed in Camel 3.0.</td></tr></table></div>
+
 <p>Maven users will need to add the following dependency to their 
<tt>pom.xml</tt> for this component:</p>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
-<pre class="code-xml"><span class="code-tag">&lt;dependency&gt;</span>
+<pre class="code-xml">
+<span class="code-tag">&lt;dependency&gt;</span>
     <span class="code-tag">&lt;groupId&gt;</span>org.apache.camel<span 
class="code-tag">&lt;/groupId&gt;</span>
     <span class="code-tag">&lt;artifactId&gt;</span>camel-ibatis<span 
class="code-tag">&lt;/artifactId&gt;</span>
     <span class="code-tag">&lt;version&gt;</span>x.x.x<span 
class="code-tag">&lt;/version&gt;</span>
@@ -27324,7 +27328,8 @@ httpComponent.setHttpClientConfigurer(<s
 <h3><a shape="rect" name="BookInOnePage-URIformat"></a>URI format</h3>
 
 <div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
-<pre class="code-java">ibatis:statementName[?options]
+<pre class="code-java">
+ibatis:statementName[?options]
 </pre>
 </div></div>
 
@@ -27364,7 +27369,8 @@ In Camel 2.2 you can configure this on t
 <p>For example if you wish to consume beans from a JMS queue and insert them 
into a database you could do the following:</p>
 
 <div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
-<pre class="code-java">from(<span 
class="code-quote">"activemq:queue:newAccount"</span>).
+<pre class="code-java">
+from(<span class="code-quote">"activemq:queue:newAccount"</span>).
   to(<span 
class="code-quote">"ibatis:insertAccount?statementType=Insert"</span>);
 </pre>
 </div></div>
@@ -27373,7 +27379,8 @@ In Camel 2.2 you can configure this on t
 
 <p>Where <b>insertAccount</b> is the iBatis ID in the SQL map file:</p>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
-<pre class="code-xml">  <span class="code-tag"><span 
class="code-comment">&lt;!-- Insert example, using the Account parameter class 
--&gt;</span></span>
+<pre class="code-xml">
+  <span class="code-tag"><span class="code-comment">&lt;!-- Insert example, 
using the Account parameter class --&gt;</span></span>
   <span class="code-tag">&lt;insert id=<span 
class="code-quote">"insertAccount"</span> parameterClass=<span 
class="code-quote">"Account"</span>&gt;</span>
     insert into ACCOUNT (
       ACC_ID,
@@ -27422,13 +27429,15 @@ When routing to an iBatis endpoint you w
 
 <p>In the sample below we poll the database, every 30 seconds using the <a 
shape="rect" href="timer.html" title="Timer">Timer</a> component and send the 
data to the JMS queue:</p>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
-<pre class="code-java">from(<span class="code-quote">"timer:<span 
class="code-comment">//pollTheDatabase?delay=30000"</span>).to(<span 
class="code-quote">"ibatis:selectAllAccounts?statementType=QueryForList"</span>).to(<span
 class="code-quote">"activemq:queue:allAccounts"</span>);</span>
+<pre class="code-java">
+from(<span class="code-quote">"timer:<span 
class="code-comment">//pollTheDatabase?delay=30000"</span>).to(<span 
class="code-quote">"ibatis:selectAllAccounts?statementType=QueryForList"</span>).to(<span
 class="code-quote">"activemq:queue:allAccounts"</span>);</span>
 </pre>
 </div></div>
 
 <p>And the iBatis SQL map file used:</p>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
-<pre class="code-xml">  <span class="code-tag"><span 
class="code-comment">&lt;!-- Select with no parameters using the result map for 
Account class. --&gt;</span></span>
+<pre class="code-xml">
+  <span class="code-tag"><span class="code-comment">&lt;!-- Select with no 
parameters using the result map for Account class. --&gt;</span></span>
   <span class="code-tag">&lt;select id=<span 
class="code-quote">"selectAllAccounts"</span> resultMap=<span 
class="code-quote">"AccountResult"</span>&gt;</span>
     select * from ACCOUNT
   <span class="code-tag">&lt;/select&gt;</span>
@@ -27461,6 +27470,8 @@ When routing to an iBatis endpoint you w
 <h3><a shape="rect" name="BookInOnePage-SeeAlso"></a>See Also</h3>
 <ul><li><a shape="rect" href="configuring-camel.html" title="Configuring 
Camel">Configuring Camel</a></li><li><a shape="rect" href="component.html" 
title="Component">Component</a></li><li><a shape="rect" href="endpoint.html" 
title="Endpoint">Endpoint</a></li><li><a shape="rect" 
href="getting-started.html" title="Getting Started">Getting 
Started</a></li></ul>
 
+<ul class="alternate" type="square"><li><a shape="rect" href="mybatis.html" 
title="MyBatis">MyBatis</a></li></ul>
+
 <h2><a shape="rect" name="BookInOnePage-IRCComponent"></a>IRC Component</h2>
 
 <p>The <b>irc</b> component implements an <a shape="rect" 
class="external-link" href="http://en.wikipedia.org/wiki/Internet_Relay_Chat"; 
rel="nofollow">IRC</a> (Internet Relay Chat) transport.</p>

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

Modified: websites/production/camel/content/ibatis.html
==============================================================================
--- websites/production/camel/content/ibatis.html (original)
+++ websites/production/camel/content/ibatis.html Fri Apr  6 15:21:26 2012
@@ -79,9 +79,13 @@
 
 <p>The <b>ibatis:</b> component allows you to query, poll, insert, update and 
delete data in a relational database using <a shape="rect" 
class="external-link" href="http://ibatis.apache.org/";>Apache iBATIS</a>.</p>
 
+<div class="panelMacro"><table class="warningMacro"><colgroup span="1"><col 
span="1" width="24"><col span="1"></colgroup><tr><td colspan="1" rowspan="1" 
valign="top"><img align="middle" 
src="https://cwiki.apache.org/confluence/images/icons/emoticons/forbidden.gif"; 
width="16" height="16" alt="" border="0"></td><td colspan="1" 
rowspan="1"><b>Prefer MyBatis</b><br clear="none">The Apache iBatis project is 
no longer active. The project is moved outside Apache and is now know as the 
MyBatis project.<br clear="none">
+Therefore we encourage users to use <a shape="rect" href="mybatis.html" 
title="MyBatis">MyBatis</a> instead. This camel-ibatis component will be 
removed in Camel 3.0.</td></tr></table></div>
+
 <p>Maven users will need to add the following dependency to their 
<tt>pom.xml</tt> for this component:</p>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
-<pre class="code-xml"><span class="code-tag">&lt;dependency&gt;</span>
+<pre class="code-xml">
+<span class="code-tag">&lt;dependency&gt;</span>
     <span class="code-tag">&lt;groupId&gt;</span>org.apache.camel<span 
class="code-tag">&lt;/groupId&gt;</span>
     <span class="code-tag">&lt;artifactId&gt;</span>camel-ibatis<span 
class="code-tag">&lt;/artifactId&gt;</span>
     <span class="code-tag">&lt;version&gt;</span>x.x.x<span 
class="code-tag">&lt;/version&gt;</span>
@@ -93,7 +97,8 @@
 <h3><a shape="rect" name="iBATIS-URIformat"></a>URI format</h3>
 
 <div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
-<pre class="code-java">ibatis:statementName[?options]
+<pre class="code-java">
+ibatis:statementName[?options]
 </pre>
 </div></div>
 
@@ -133,7 +138,8 @@ In Camel 2.2 you can configure this on t
 <p>For example if you wish to consume beans from a JMS queue and insert them 
into a database you could do the following:</p>
 
 <div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
-<pre class="code-java">from(<span 
class="code-quote">"activemq:queue:newAccount"</span>).
+<pre class="code-java">
+from(<span class="code-quote">"activemq:queue:newAccount"</span>).
   to(<span 
class="code-quote">"ibatis:insertAccount?statementType=Insert"</span>);
 </pre>
 </div></div>
@@ -142,7 +148,8 @@ In Camel 2.2 you can configure this on t
 
 <p>Where <b>insertAccount</b> is the iBatis ID in the SQL map file:</p>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
-<pre class="code-xml">  <span class="code-tag"><span 
class="code-comment">&lt;!-- Insert example, using the Account parameter class 
--&gt;</span></span>
+<pre class="code-xml">
+  <span class="code-tag"><span class="code-comment">&lt;!-- Insert example, 
using the Account parameter class --&gt;</span></span>
   <span class="code-tag">&lt;insert id=<span 
class="code-quote">"insertAccount"</span> parameterClass=<span 
class="code-quote">"Account"</span>&gt;</span>
     insert into ACCOUNT (
       ACC_ID,
@@ -191,13 +198,15 @@ When routing to an iBatis endpoint you w
 
 <p>In the sample below we poll the database, every 30 seconds using the <a 
shape="rect" href="timer.html" title="Timer">Timer</a> component and send the 
data to the JMS queue:</p>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
-<pre class="code-java">from(<span class="code-quote">"timer:<span 
class="code-comment">//pollTheDatabase?delay=30000"</span>).to(<span 
class="code-quote">"ibatis:selectAllAccounts?statementType=QueryForList"</span>).to(<span
 class="code-quote">"activemq:queue:allAccounts"</span>);</span>
+<pre class="code-java">
+from(<span class="code-quote">"timer:<span 
class="code-comment">//pollTheDatabase?delay=30000"</span>).to(<span 
class="code-quote">"ibatis:selectAllAccounts?statementType=QueryForList"</span>).to(<span
 class="code-quote">"activemq:queue:allAccounts"</span>);</span>
 </pre>
 </div></div>
 
 <p>And the iBatis SQL map file used:</p>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
-<pre class="code-xml">  <span class="code-tag"><span 
class="code-comment">&lt;!-- Select with no parameters using the result map for 
Account class. --&gt;</span></span>
+<pre class="code-xml">
+  <span class="code-tag"><span class="code-comment">&lt;!-- Select with no 
parameters using the result map for Account class. --&gt;</span></span>
   <span class="code-tag">&lt;select id=<span 
class="code-quote">"selectAllAccounts"</span> resultMap=<span 
class="code-quote">"AccountResult"</span>&gt;</span>
     select * from ACCOUNT
   <span class="code-tag">&lt;/select&gt;</span>
@@ -229,6 +238,8 @@ When routing to an iBatis endpoint you w
 
 <h3><a shape="rect" name="iBATIS-SeeAlso"></a>See Also</h3>
 <ul><li><a shape="rect" href="configuring-camel.html" title="Configuring 
Camel">Configuring Camel</a></li><li><a shape="rect" href="component.html" 
title="Component">Component</a></li><li><a shape="rect" href="endpoint.html" 
title="Endpoint">Endpoint</a></li><li><a shape="rect" 
href="getting-started.html" title="Getting Started">Getting 
Started</a></li></ul>
+
+<ul class="alternate" type="square"><li><a shape="rect" href="mybatis.html" 
title="MyBatis">MyBatis</a></li></ul>
 </div>
         </td>
         <td valign="top">


Reply via email to