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 2012/05/02 05:35:19 UTC

svn commit: r815381 [1/4] - in /websites/production/camel/content: ./ cache/

Author: buildbot
Date: Wed May  2 03:35:18 2012
New Revision: 815381

Log:
Production update by buildbot for camel

Added:
    websites/production/camel/content/cache/main.pageCache   (with props)
Modified:
    websites/production/camel/content/advicewith.html
    websites/production/camel/content/community.html
    websites/production/camel/content/component.html
    websites/production/camel/content/content-based-router.html
    websites/production/camel/content/cxf-bean-component.html
    websites/production/camel/content/exception-clause.html
    websites/production/camel/content/faq.html
    websites/production/camel/content/idempotent-consumer.html
    websites/production/camel/content/index.html
    websites/production/camel/content/jcr.html
    websites/production/camel/content/message-filter.html
    websites/production/camel/content/message-router.html
    websites/production/camel/content/news.html
    websites/production/camel/content/publish-subscribe-channel.html
    websites/production/camel/content/recipient-list.html
    websites/production/camel/content/restlet.html
    websites/production/camel/content/routes.html
    websites/production/camel/content/running-camel-standalone-and-have-it-keep-running.html
    websites/production/camel/content/selective-consumer.html
    websites/production/camel/content/siteindex.html
    websites/production/camel/content/sitemap.html
    websites/production/camel/content/spring-xml-extensions.html
    websites/production/camel/content/type-converter.html
    websites/production/camel/content/using-camel-questions.html

Modified: websites/production/camel/content/advicewith.html
==============================================================================
--- websites/production/camel/content/advicewith.html (original)
+++ websites/production/camel/content/advicewith.html Wed May  2 03:35:18 2012
@@ -353,52 +353,7 @@ context.getRouteDefinitions().get(0).adv
 <p><b>Available as of Camel 2.9</b><br clear="none">
 It is recommended to override the method <tt>isUseAdviceWith</tt> and return <tt>true</tt> to instruct Camel that you are using <tt>adviceWith</tt> in the unit tests. Then in your unit test methods, after you have done the <tt>adviceWith</tt> you <b>must</b> start <tt>CamelContext</tt> by invoke the <tt>start</tt> method on the <tt>context</tt> instance. In the following we have an example. The route is using <a shape="rect" href="activemq.html" title="ActiveMQ">ActiveMQ</a> to route messages. What we would like to do in a unit test is to test the route, but without having to set and use <a shape="rect" href="activemq.html" title="ActiveMQ">ActiveMQ</a>. We do not have <a shape="rect" href="activemq.html" title="ActiveMQ">ActiveMQ</a> on the classpath. So for that we need to advice the route and replace <a shape="rect" href="activemq.html" title="ActiveMQ">ActiveMQ</a> with for example a <a shape="rect" href="seda.html" title="SEDA">SEDA</a> endpoint instead. </p>
 
-<div class="code panel" style="border-width: 1px;"><div class="codeHeader panelHeader" style="border-bottom-width: 1px;"><b>isUseAdviceWith</b></div><div class="codeContent panelContent">
-<pre class="code-java"><span class="code-keyword">public</span> class IsUseAdviceWithJUnit4Test <span class="code-keyword">extends</span> org.apache.camel.test.junit4.CamelTestSupport {
-
-    @Test
-    <span class="code-keyword">public</span> void testIsUseAdviceWith() <span class="code-keyword">throws</span> Exception {
-        context.getRouteDefinitions().get(0).adviceWith(context, <span class="code-keyword">new</span> AdviceWithRouteBuilder() {
-            @Override
-            <span class="code-keyword">public</span> void configure() <span class="code-keyword">throws</span> Exception {
-                <span class="code-comment">// replace the from with seda:foo
-</span>                replaceFromWith(<span class="code-quote">"seda:foo"</span>);
-            }
-        });
-        <span class="code-comment">// we must manually start when we are done with all the advice with
-</span>        context.start();
-
-        getMockEndpoint(<span class="code-quote">"mock:result"</span>).expectedMessageCount(1);
-
-        template.sendBody(<span class="code-quote">"seda:foo"</span>, <span class="code-quote">"Hello World"</span>);
-
-        assertMockEndpointsSatisfied();
-    }
-
-    @Override
-    <span class="code-keyword">public</span> <span class="code-object">boolean</span> isUseAdviceWith() {
-        <span class="code-comment">// tell we are using advice with, which allows us to advice the route
-</span>        <span class="code-comment">// before Camel is being started, and thus can replace activemq with something <span class="code-keyword">else</span>.
-</span>        <span class="code-keyword">return</span> <span class="code-keyword">true</span>;
-    }
-
-    <span class="code-comment">// This is the route we want to test
-</span>    @Override
-    <span class="code-keyword">protected</span> RouteBuilder createRouteBuilder() <span class="code-keyword">throws</span> Exception {
-        <span class="code-keyword">return</span> <span class="code-keyword">new</span> RouteBuilder() {
-            @Override
-            <span class="code-keyword">public</span> void configure() <span class="code-keyword">throws</span> Exception {
-                <span class="code-comment">// we <span class="code-keyword">do</span> not have activemq on the classpath
-</span>                <span class="code-comment">// but the route has it included
-</span>                from(<span class="code-quote">"activemq:queue:foo"</span>)
-                    .to(<span class="code-quote">"mock:result"</span>);
-            }
-        };
-    }
-
-}
-</pre>
-</div></div></div>
+<div class="error"><span class="error">Error formatting macro: snippet: java.lang.IndexOutOfBoundsException: Index: 20, Size: 20</span> </div></div>
         </td>
         <td valign="top">
           <div class="navigation">

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

Propchange: websites/production/camel/content/cache/main.pageCache
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Modified: websites/production/camel/content/community.html
==============================================================================
--- websites/production/camel/content/community.html (original)
+++ websites/production/camel/content/community.html Wed May  2 03:35:18 2012
@@ -75,7 +75,7 @@
 	<tbody>
         <tr>
         <td valign="top" width="100%">
-<div class="wiki-content maincontent"><ul><li><a shape="rect" href="support.html" title="Support">Support</a></li><li><a shape="rect" href="faq.html" title="FAQ">FAQ</a><ul><li><a shape="rect" href="acknowledgment.html" title="Acknowledgment">Acknowledgment</a></li><li><a shape="rect" href="camel-endpoint-questions.html" title="Camel Endpoint Questions">Camel Endpoint Questions</a></li><li><a shape="rect" href="common-problems.html" title="Common Problems">Common Problems</a></li><li><a shape="rect" href="general-questions.html" title="General Questions">General Questions</a></li><li><a shape="rect" href="jms-questions.html" title="JMS Questions">JMS Questions</a></li><li><a shape="rect" href="logging-questions.html" title="Logging Questions">Logging Questions</a></li><li><a shape="rect" href="using-camel-questions.html" title="Using Camel Questions">Using Camel Questions</a></li></ul></li><li><a shape="rect" href="contributing.html" title="Contributing">Contributing</a></li
 ><li><a shape="rect" href="mailing-lists.html" title="Mailing Lists">Mailing Lists</a></li><li><a shape="rect" href="discussion-forums.html" title="Discussion Forums">Discussion Forums</a></li><li><a shape="rect" href="download.html" title="Download">Download</a><ul><li><a shape="rect" href="camel-100-release.html" title="Camel 1.0.0 Release">Camel 1.0.0 Release</a></li><li><a shape="rect" href="camel-110-release.html" title="Camel 1.1.0 Release">Camel 1.1.0 Release</a></li><li><a shape="rect" href="camel-120-release.html" title="Camel 1.2.0 Release">Camel 1.2.0 Release</a></li><li><a shape="rect" href="camel-130-release.html" title="Camel 1.3.0 Release">Camel 1.3.0 Release</a></li><li><a shape="rect" href="camel-140-release.html" title="Camel 1.4.0 Release">Camel 1.4.0 Release</a></li><li><a shape="rect" href="camel-150-release.html" title="Camel 1.5.0 Release">Camel 1.5.0 Release</a></li><li><a shape="rect" href="camel-160-release.html" title="Camel 1.6.0 Release">Camel 1.
 6.0 Release</a></li><li><a shape="rect" href="camel-161-release.html" title="Camel 1.6.1 Release">Camel 1.6.1 Release</a></li><li><a shape="rect" href="camel-162-release.html" title="Camel 1.6.2 Release">Camel 1.6.2 Release</a></li><li><a shape="rect" href="camel-163-release.html" title="Camel 1.6.3 Release">Camel 1.6.3 Release</a></li><li><a shape="rect" href="camel-164-release.html" title="Camel 1.6.4 Release">Camel 1.6.4 Release</a></li><li><a shape="rect" href="camel-200-release.html" title="Camel 2.0.0 Release">Camel 2.0.0 Release</a></li><li><a shape="rect" href="camel-20-m1-release.html" title="Camel 2.0-M1 Release">Camel 2.0-M1 Release</a></li><li><a shape="rect" href="camel-20-m2-release.html" title="Camel 2.0-M2 Release">Camel 2.0-M2 Release</a></li><li><a shape="rect" href="camel-20-m3-release.html" title="Camel 2.0-M3 Release">Camel 2.0-M3 Release</a></li><li><a shape="rect" href="camel-210-release.html" title="Camel 2.1.0 Release">Camel 2.1.0 Release</a></li><li
 ><a shape="rect" href="camel-220-release.html" title="Camel 2.2.0 Release">Camel 2.2.0 Release</a></li><li><a shape="rect" href="camel-230-release.html" title="Camel 2.3.0 Release">Camel 2.3.0 Release</a></li><li><a shape="rect" href="camel-240-release.html" title="Camel 2.4.0 Release">Camel 2.4.0 Release</a></li><li><a shape="rect" href="camel-250-release.html" title="Camel 2.5.0 Release">Camel 2.5.0 Release</a></li><li><a shape="rect" href="camel-260-release.html" title="Camel 2.6.0 Release">Camel 2.6.0 Release</a></li><li><a shape="rect" href="camel-270-release.html" title="Camel 2.7.0 Release">Camel 2.7.0 Release</a></li><li><a shape="rect" href="camel-271-release.html" title="Camel 2.7.1 Release">Camel 2.7.1 Release</a></li><li><a shape="rect" href="camel-272-release.html" title="Camel 2.7.2 Release">Camel 2.7.2 Release</a></li><li><a shape="rect" href="camel-273-release.html" title="Camel 2.7.3 Release">Camel 2.7.3 Release</a></li><li><a shape="rect" href="camel-274-re
 lease.html" title="Camel 2.7.4 Release">Camel 2.7.4 Release</a></li><li><a shape="rect" href="camel-275-release.html" title="Camel 2.7.5 Release">Camel 2.7.5 Release</a></li><li><a shape="rect" href="camel-280-release.html" title="Camel 2.8.0 Release">Camel 2.8.0 Release</a></li><li><a shape="rect" href="camel-281-release.html" title="Camel 2.8.1 Release">Camel 2.8.1 Release</a></li><li><a shape="rect" href="camel-282-release.html" title="Camel 2.8.2 Release">Camel 2.8.2 Release</a></li><li><a shape="rect" href="camel-283-release.html" title="Camel 2.8.3 Release">Camel 2.8.3 Release</a></li><li><a shape="rect" href="camel-284-release.html" title="Camel 2.8.4 Release">Camel 2.8.4 Release</a></li><li><a shape="rect" href="camel-290-release.html" title="Camel 2.9.0 Release">Camel 2.9.0 Release</a></li><li><a shape="rect" href="camel-291-release.html" title="Camel 2.9.1 Release">Camel 2.9.1 Release</a></li><li><a shape="rect" href="download-archives.html" title="Download Archive
 s">Download Archives</a></li></ul></li><li><a shape="rect" href="google-summerofcode.html" title="Google SummerOfCode">Google SummerOfCode</a><ul><li><a shape="rect" href="gsoc-2009.html" title="GSoC 2009">GSoC 2009</a></li></ul></li><li><a shape="rect" href="in-progress.html" title="In Progress">In Progress</a><ul><li><a shape="rect" href="camel-2100-release.html" title="Camel 2.10.0 Release">Camel 2.10.0 Release</a></li><li><a shape="rect" href="camel-xyz-release-template.html" title="Camel x.y.z Release (template)">Camel x.y.z Release (template)</a></li></ul></li><li><a shape="rect" href="news.html" title="News">News</a></li><li><a shape="rect" href="articles.html" title="Articles">Articles</a></li><li><a shape="rect" href="privacy-policy.html" title="Privacy Policy">Privacy Policy</a></li><li><a shape="rect" href="reports.html" title="Reports">Reports</a><ul></ul></li><li><a shape="rect" href="team.html" title="Team">Team</a></li><li><a shape="rect" href="user-stories.ht
 ml" title="User Stories">User Stories</a></li></ul> </div>
+<div class="wiki-content maincontent"><ul><li><a shape="rect" href="support.html" title="Support">Support</a></li><li><a shape="rect" href="faq.html" title="FAQ">FAQ</a><ul><li><a shape="rect" href="acknowledgment.html" title="Acknowledgment">Acknowledgment</a></li><li><a shape="rect" href="camel-endpoint-questions.html" title="Camel Endpoint Questions">Camel Endpoint Questions</a></li><li><a shape="rect" href="common-problems.html" title="Common Problems">Common Problems</a></li><li><a shape="rect" href="general-questions.html" title="General Questions">General Questions</a></li><li><a shape="rect" href="jms-questions.html" title="JMS Questions">JMS Questions</a></li><li><a shape="rect" href="logging-questions.html" title="Logging Questions">Logging Questions</a></li><li><a shape="rect" href="using-camel-questions.html" title="Using Camel Questions">Using Camel Questions</a></li></ul></li><li><a shape="rect" href="contributing.html" title="Contributing">Contributing</a></li
 ><li><a shape="rect" href="mailing-lists.html" title="Mailing Lists">Mailing Lists</a></li><li><a shape="rect" href="discussion-forums.html" title="Discussion Forums">Discussion Forums</a></li><li><a shape="rect" href="download.html" title="Download">Download</a><ul><li><a shape="rect" href="camel-100-release.html" title="Camel 1.0.0 Release">Camel 1.0.0 Release</a></li><li><a shape="rect" href="camel-110-release.html" title="Camel 1.1.0 Release">Camel 1.1.0 Release</a></li><li><a shape="rect" href="camel-120-release.html" title="Camel 1.2.0 Release">Camel 1.2.0 Release</a></li><li><a shape="rect" href="camel-130-release.html" title="Camel 1.3.0 Release">Camel 1.3.0 Release</a></li><li><a shape="rect" href="camel-140-release.html" title="Camel 1.4.0 Release">Camel 1.4.0 Release</a></li><li><a shape="rect" href="camel-150-release.html" title="Camel 1.5.0 Release">Camel 1.5.0 Release</a></li><li><a shape="rect" href="camel-160-release.html" title="Camel 1.6.0 Release">Camel 1.
 6.0 Release</a></li><li><a shape="rect" href="camel-161-release.html" title="Camel 1.6.1 Release">Camel 1.6.1 Release</a></li><li><a shape="rect" href="camel-162-release.html" title="Camel 1.6.2 Release">Camel 1.6.2 Release</a></li><li><a shape="rect" href="camel-163-release.html" title="Camel 1.6.3 Release">Camel 1.6.3 Release</a></li><li><a shape="rect" href="camel-164-release.html" title="Camel 1.6.4 Release">Camel 1.6.4 Release</a></li><li><a shape="rect" href="camel-200-release.html" title="Camel 2.0.0 Release">Camel 2.0.0 Release</a></li><li><a shape="rect" href="camel-20-m1-release.html" title="Camel 2.0-M1 Release">Camel 2.0-M1 Release</a></li><li><a shape="rect" href="camel-20-m2-release.html" title="Camel 2.0-M2 Release">Camel 2.0-M2 Release</a></li><li><a shape="rect" href="camel-20-m3-release.html" title="Camel 2.0-M3 Release">Camel 2.0-M3 Release</a></li><li><a shape="rect" href="camel-210-release.html" title="Camel 2.1.0 Release">Camel 2.1.0 Release</a></li><li
 ><a shape="rect" href="camel-220-release.html" title="Camel 2.2.0 Release">Camel 2.2.0 Release</a></li><li><a shape="rect" href="camel-230-release.html" title="Camel 2.3.0 Release">Camel 2.3.0 Release</a></li><li><a shape="rect" href="camel-240-release.html" title="Camel 2.4.0 Release">Camel 2.4.0 Release</a></li><li><a shape="rect" href="camel-250-release.html" title="Camel 2.5.0 Release">Camel 2.5.0 Release</a></li><li><a shape="rect" href="camel-260-release.html" title="Camel 2.6.0 Release">Camel 2.6.0 Release</a></li><li><a shape="rect" href="camel-270-release.html" title="Camel 2.7.0 Release">Camel 2.7.0 Release</a></li><li><a shape="rect" href="camel-271-release.html" title="Camel 2.7.1 Release">Camel 2.7.1 Release</a></li><li><a shape="rect" href="camel-272-release.html" title="Camel 2.7.2 Release">Camel 2.7.2 Release</a></li><li><a shape="rect" href="camel-273-release.html" title="Camel 2.7.3 Release">Camel 2.7.3 Release</a></li><li><a shape="rect" href="camel-274-re
 lease.html" title="Camel 2.7.4 Release">Camel 2.7.4 Release</a></li><li><a shape="rect" href="camel-275-release.html" title="Camel 2.7.5 Release">Camel 2.7.5 Release</a></li><li><a shape="rect" href="camel-280-release.html" title="Camel 2.8.0 Release">Camel 2.8.0 Release</a></li><li><a shape="rect" href="camel-281-release.html" title="Camel 2.8.1 Release">Camel 2.8.1 Release</a></li><li><a shape="rect" href="camel-282-release.html" title="Camel 2.8.2 Release">Camel 2.8.2 Release</a></li><li><a shape="rect" href="camel-283-release.html" title="Camel 2.8.3 Release">Camel 2.8.3 Release</a></li><li><a shape="rect" href="camel-284-release.html" title="Camel 2.8.4 Release">Camel 2.8.4 Release</a></li><li><a shape="rect" href="camel-285-release.html" title="Camel 2.8.5 Release">Camel 2.8.5 Release</a></li><li><a shape="rect" href="camel-290-release.html" title="Camel 2.9.0 Release">Camel 2.9.0 Release</a></li><li><a shape="rect" href="camel-291-release.html" title="Camel 2.9.1 Rele
 ase">Camel 2.9.1 Release</a></li><li><a shape="rect" href="camel-292-release.html" title="Camel 2.9.2 Release">Camel 2.9.2 Release</a></li><li><a shape="rect" href="download-archives.html" title="Download Archives">Download Archives</a></li></ul></li><li><a shape="rect" href="google-summerofcode.html" title="Google SummerOfCode">Google SummerOfCode</a><ul><li><a shape="rect" href="gsoc-2009.html" title="GSoC 2009">GSoC 2009</a></li></ul></li><li><a shape="rect" href="in-progress.html" title="In Progress">In Progress</a><ul><li><a shape="rect" href="camel-2100-release.html" title="Camel 2.10.0 Release">Camel 2.10.0 Release</a></li><li><a shape="rect" href="camel-xyz-release-template.html" title="Camel x.y.z Release (template)">Camel x.y.z Release (template)</a></li></ul></li><li><a shape="rect" href="news.html" title="News">News</a></li><li><a shape="rect" href="articles.html" title="Articles">Articles</a></li><li><a shape="rect" href="privacy-policy.html" title="Privacy Poli
 cy">Privacy Policy</a></li><li><a shape="rect" href="reports.html" title="Reports">Reports</a><ul></ul></li><li><a shape="rect" href="team.html" title="Team">Team</a></li><li><a shape="rect" href="user-stories.html" title="User Stories">User Stories</a></li></ul> </div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/camel/content/component.html
==============================================================================
--- websites/production/camel/content/component.html (original)
+++ websites/production/camel/content/component.html Wed May  2 03:35:18 2012
@@ -239,7 +239,12 @@ file://nameOfFileOrDirectory
 <pre class="code-xml">
 flatpack:[fixed|delim]:configFile
 </pre>
-</div></div> </td><td colspan="1" rowspan="1" class="confluenceTd"> Processing fixed width or delimited files or messages using the <a shape="rect" class="external-link" href="http://flatpack.sourceforge.net" rel="nofollow">FlatPack library</a> </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect" href="freemarker.html" title="FreeMarker">FreeMarker</a> / camel-freemarker
+</div></div> </td><td colspan="1" rowspan="1" class="confluenceTd"> Processing fixed width or delimited files or messages using the <a shape="rect" class="external-link" href="http://flatpack.sourceforge.net" rel="nofollow">FlatPack library</a> </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect" href="fop.html" title="FOP">FOP</a> / camel-fop
+<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
+<pre class="code-xml">
+fop:outputFormat
+</pre>
+</div></div> </td><td colspan="1" rowspan="1" class="confluenceTd"> Renders the message into different output formats using <a shape="rect" class="external-link" href="http://xmlgraphics.apache.org/fop/index.html">Apache FOP</a> </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect" href="freemarker.html" title="FreeMarker">FreeMarker</a> / camel-freemarker
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
 <pre class="code-xml">
 freemarker:someTemplateResource
@@ -311,12 +316,12 @@ http4://hostname[:port]
 <pre class="code-xml">
 ibatis://statementName
 </pre>
-</div></div> </td><td colspan="1" rowspan="1" class="confluenceTd"> Performs a query, poll, insert, update or delete in a relational database using <a shape="rect" class="external-link" href="http://ibatis.apache.org/">Apache iBATIS</a> </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect" href="mail.html" title="Mail">IMap</a> / camel-mail
+</div></div> </td><td colspan="1" rowspan="1" class="confluenceTd"> Performs a query, poll, insert, update or delete in a relational database using <a shape="rect" class="external-link" href="http://ibatis.apache.org/">Apache iBATIS</a> </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect" href="mail.html" title="Mail">IMAP</a> / camel-mail
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
 <pre class="code-xml">
 imap://hostname[:port]
 </pre>
-</div></div> </td><td colspan="1" rowspan="1" class="confluenceTd"> Receiving email using IMap </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect" href="irc.html" title="IRC">IRC</a> / camel-irc
+</div></div> </td><td colspan="1" rowspan="1" class="confluenceTd"> Receiving email using <a shape="rect" class="external-link" href="http://en.wikipedia.org/wiki/Internet_Message_Access_Protocol" rel="nofollow">IMAP</a> </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect" href="irc.html" title="IRC">IRC</a> / camel-irc
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
 <pre class="code-xml">
 irc:host[:port]/#room
@@ -366,7 +371,12 @@ jmx://platform?options
 <pre class="code-xml">
 jpa://entityName
 </pre>
-</div></div> </td><td colspan="1" rowspan="1" class="confluenceTd"> For using a database as a queue via the JPA specification for working with <a shape="rect" class="external-link" href="http://openjpa.apache.org/">OpenJPA</a>, <a shape="rect" class="external-link" href="http://www.hibernate.org/" rel="nofollow">Hibernate</a> or TopLink </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect" href="jt400.html" title="JT400">JT/400 </a> / camel-jt400
+</div></div> </td><td colspan="1" rowspan="1" class="confluenceTd"> For using a database as a queue via the JPA specification for working with <a shape="rect" class="external-link" href="http://openjpa.apache.org/">OpenJPA</a>, <a shape="rect" class="external-link" href="http://www.hibernate.org/" rel="nofollow">Hibernate</a> or TopLink </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect" href="jsch.html" title="Jsch">Jsch</a> / camel-jsch
+<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
+<pre class="code-xml">
+scp://localhost/destination
+</pre>
+</div></div> </td><td colspan="1" rowspan="1" class="confluenceTd"> Support for the scp protocol </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect" href="jt400.html" title="JT400">JT/400 </a> / camel-jt400
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
 <pre class="code-xml">
 jt400://user:pwd@system/<span class="code-tag">&lt;path_to_dtaq&gt;</span>
@@ -509,7 +519,7 @@ routebox:routeboxName[?options]
 <pre class="code-xml">
 rss:uri
 </pre>
-</div></div> </td><td colspan="1" rowspan="1" class="confluenceTd"> Working with <a shape="rect" class="external-link" href="https://rome.dev.java.net" rel="nofollow">ROME</a> for RSS integration, such as consuming an RSS feed. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect" href="seda.html" title="SEDA">SEDA</a> / camel-core
+</div></div> </td><td colspan="1" rowspan="1" class="confluenceTd"> Working with <a shape="rect" class="external-link" href="http://rometools.org/" rel="nofollow">ROME</a> for RSS integration, such as consuming an RSS feed. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect" href="seda.html" title="SEDA">SEDA</a> / camel-core
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
 <pre class="code-xml">
 seda:name
@@ -630,7 +640,12 @@ velocity:someTemplateResource
 <pre class="code-xml">
 vm:name
 </pre>
-</div></div> </td><td colspan="1" rowspan="1" class="confluenceTd"> Asynchronous call to another endpoint in the same JVM </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect" href="xmpp.html" title="XMPP and Jabber support">XMPP</a> / camel-xmpp
+</div></div> </td><td colspan="1" rowspan="1" class="confluenceTd"> Asynchronous call to another endpoint in the same JVM </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect" href="websocket.html" title="Websocket">Websocket</a> / camel-websocket
+<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
+<pre class="code-xml">
+websocket://host:port/path
+</pre>
+</div></div> </td><td colspan="1" rowspan="1" class="confluenceTd"> Communicating with <a shape="rect" class="external-link" href="http://wiki.eclipse.org/Jetty/Feature/WebSockets" rel="nofollow">Websocket</a> clients </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect" href="xmpp.html" title="XMPP and Jabber support">XMPP</a> / camel-xmpp
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
 <pre class="code-xml">
 xmpp://host:port/room

Modified: websites/production/camel/content/content-based-router.html
==============================================================================
--- websites/production/camel/content/content-based-router.html (original)
+++ websites/production/camel/content/content-based-router.html Wed May  2 03:35:18 2012
@@ -89,14 +89,14 @@
     <span class="code-keyword">public</span> void configure() {
         errorHandler(deadLetterChannel(<span class="code-quote">"mock:error"</span>));
 
-        from(<span class="code-quote">"seda:a"</span>)
+        from(<span class="code-quote">"direct:a"</span>)
             .choice()
                 .when(header(<span class="code-quote">"foo"</span>).isEqualTo(<span class="code-quote">"bar"</span>))
-                    .to(<span class="code-quote">"seda:b"</span>)
+                    .to(<span class="code-quote">"direct:b"</span>)
                 .when(header(<span class="code-quote">"foo"</span>).isEqualTo(<span class="code-quote">"cheese"</span>))
-                    .to(<span class="code-quote">"seda:c"</span>)
+                    .to(<span class="code-quote">"direct:c"</span>)
                 .otherwise()
-                    .to(<span class="code-quote">"seda:d"</span>);
+                    .to(<span class="code-quote">"direct:d"</span>);
     }
 };
 </pre>
@@ -106,18 +106,18 @@
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
 <pre class="code-xml"><span class="code-tag">&lt;camelContext errorHandlerRef=<span class="code-quote">"errorHandler"</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">"seda:a"</span>/&gt;</span>
+        <span class="code-tag">&lt;from uri=<span class="code-quote">"direct:a"</span>/&gt;</span>
         <span class="code-tag">&lt;choice&gt;</span>
             <span class="code-tag">&lt;when&gt;</span>
                 <span class="code-tag">&lt;xpath&gt;</span>$foo = 'bar'<span class="code-tag">&lt;/xpath&gt;</span>
-                <span class="code-tag">&lt;to uri=<span class="code-quote">"seda:b"</span>/&gt;</span>
+                <span class="code-tag">&lt;to uri=<span class="code-quote">"direct:b"</span>/&gt;</span>
             <span class="code-tag">&lt;/when&gt;</span>
             <span class="code-tag">&lt;when&gt;</span>
                 <span class="code-tag">&lt;xpath&gt;</span>$foo = 'cheese'<span class="code-tag">&lt;/xpath&gt;</span>
-                <span class="code-tag">&lt;to uri=<span class="code-quote">"seda:c"</span>/&gt;</span>
+                <span class="code-tag">&lt;to uri=<span class="code-quote">"direct:c"</span>/&gt;</span>
             <span class="code-tag">&lt;/when&gt;</span>
             <span class="code-tag">&lt;otherwise&gt;</span>
-                <span class="code-tag">&lt;to uri=<span class="code-quote">"seda:d"</span>/&gt;</span>
+                <span class="code-tag">&lt;to uri=<span class="code-quote">"direct:d"</span>/&gt;</span>
             <span class="code-tag">&lt;/otherwise&gt;</span>
         <span class="code-tag">&lt;/choice&gt;</span>
     <span class="code-tag">&lt;/route&gt;</span>

Modified: websites/production/camel/content/cxf-bean-component.html
==============================================================================
--- websites/production/camel/content/cxf-bean-component.html (original)
+++ websites/production/camel/content/cxf-bean-component.html Wed May  2 03:35:18 2012
@@ -114,6 +114,7 @@ cxfbean:serviceBeanRef
 <pre class="code-xml"><span class="code-tag">&lt;route&gt;</span>
 	<span class="code-tag">&lt;from ref=<span class="code-quote">"ep1"</span> /&gt;</span>
 	<span class="code-tag">&lt;to uri=<span class="code-quote">"cxfbean:customerServiceBean"</span> /&gt;</span>
+	<span class="code-tag">&lt;to uri=<span class="code-quote">"mock:endpointA"</span> /&gt;</span>
 <span class="code-tag">&lt;/route&gt;</span>
 </pre>
 </div></div>

Modified: websites/production/camel/content/exception-clause.html
==============================================================================
--- websites/production/camel/content/exception-clause.html (original)
+++ websites/production/camel/content/exception-clause.html Wed May  2 03:35:18 2012
@@ -790,7 +790,7 @@ This is demonstrated in the sample below
 </span><span class="code-comment">// where we defined at most 1 redelivery attempt. Here we will <span class="code-keyword">continue</span> until
 </span><span class="code-comment">// the predicate returns <span class="code-keyword">false</span>
 </span>onException(MyFunctionalException.class)
-        .retryWhile(bean(<span class="code-quote">"myRetryHandler"</span>))
+        .retryWhile(method(<span class="code-quote">"myRetryHandler"</span>))
         .handled(<span class="code-keyword">true</span>)
         .transform().constant(<span class="code-quote">"Sorry"</span>);
 </pre>

Modified: websites/production/camel/content/faq.html
==============================================================================
--- websites/production/camel/content/faq.html (original)
+++ websites/production/camel/content/faq.html Wed May  2 03:35:18 2012
@@ -93,7 +93,7 @@
 
 <p>Questions on using Apache Camel</p>
 
-<ul><li><a shape="rect" href="classloader-issue-of-servicemix-camel-component.html" title="Classloader issue of servicemix-camel component">Classloader issue of servicemix-camel component</a></li><li><a shape="rect" href="ho-do-i-specify-which-method-to-use-when-using-beans-in-routes.html" title="Ho do I specify which method to use when using beans in routes?">Ho do I specify which method to use when using beans in routes?</a></li><li><a shape="rect" href="how-can-i-create-a-custom-component-or-endpoint.html" title="How can I create a custom component or endpoint">How can I create a custom component or endpoint</a></li><li><a shape="rect" href="how-can-i-get-the-remote-connection-ip-address-from-the-camel-cxf-consumer-.html" title="How can I get the remote connection IP address from the camel-cxf consumer ?">How can I get the remote connection IP address from the camel-cxf consumer ?</a></li><li><a shape="rect" href="how-can-i-stop-a-route-from-a-route.html" title="How can I
  stop a route from a route">How can I stop a route from a route</a></li><li><a shape="rect" href="how-can-webservice-clients-see-remote-faults-with-stacktraces-when-using-camel-cxf.html" title="How can webservice clients see remote faults with stacktraces when using camel-cxf">How can webservice clients see remote faults with stacktraces when using camel-cxf</a></li><li><a shape="rect" href="how-does-camel-look-up-beans-and-endpoints.html" title="How does Camel look up beans and endpoints">How does Camel look up beans and endpoints</a></li><li><a shape="rect" href="how-do-i-add-a-component.html" title="How do I add a component">How do I add a component</a></li><li><a shape="rect" href="how-do-i-change-the-logging.html" title="How do I change the logging">How do I change the logging</a></li><li><a shape="rect" href="how-do-i-configure-endpoints.html" title="How do I configure endpoints">How do I configure endpoints</a></li><li><a shape="rect" href="how-do-i-configure-the-defa
 ult-maximum-cache-size-for-producercache-or-producertemplate.html" title="How do I configure the default maximum cache size for ProducerCache or ProducerTemplate">How do I configure the default maximum cache size for ProducerCache or ProducerTemplate</a></li><li><a shape="rect" href="how-do-i-configure-the-maximum-endpoint-cache-size-for-camelcontext.html" title="How do I configure the maximum endpoint cache size for CamelContext">How do I configure the maximum endpoint cache size for CamelContext</a></li><li><a shape="rect" href="how-do-i-debug-my-route.html" title="How do I debug my route">How do I debug my route</a></li><li><a shape="rect" href="how-do-i-disable-jmx.html" title="How do I disable JMX">How do I disable JMX</a></li><li><a shape="rect" href="how-do-i-enable-streams-when-debug-logging-messages-in-camel.html" title="How do I enable streams when debug logging messages in Camel">How do I enable streams when debug logging messages in Camel</a></li><li><a shape="re
 ct" href="how-do-i-handle-failures-when-consuming-for-example-from-a-ftp-server.html" title="How do I handle failures when consuming for example from a FTP server">How do I handle failures when consuming for example from a FTP server</a></li><li><a shape="rect" href="how-do-i-import-routes-from-other-xml-files.html" title="How do I import routes from other XML files">How do I import routes from other XML files</a></li><li><a shape="rect" href="how-do-i-let-jetty-match-wildcards.html" title="How do I let Jetty match wildcards">How do I let Jetty match wildcards</a></li><li><a shape="rect" href="how-do-i-name-my-routes.html" title="How do I name my routes?">How do I name my routes?</a></li><li><a shape="rect" href="how-do-i-restart-camelcontext.html" title="How do I restart CamelContext">How do I restart CamelContext</a></li><li><a shape="rect" href="how-do-i-retrieve-the-thrown-exception-during-processing-an-exchange.html" title="How do I retrieve the thrown Exception during 
 processing an Exchange">How do I retrieve the thrown Exception during processing an Exchange</a></li><li><a shape="rect" href="how-do-i-retry-failed-messages-forever.html" title="How do I retry failed messages forever">How do I retry failed messages forever</a></li><li><a shape="rect" href="how-do-i-reuse-the-contexttestsupport-class-in-my-unit-tests.html" title="How do I reuse the ContextTestSupport class in my unit tests">How do I reuse the ContextTestSupport class in my unit tests</a></li><li><a shape="rect" href="how-do-i-run-activemq-and-camel-in-jboss.html" title="How do I run ActiveMQ and Camel in JBoss">How do I run ActiveMQ and Camel in JBoss</a></li><li><a shape="rect" href="how-do-i-set-the-max-chars-when-debug-logging-messages-in-camel.html" title="How do I set the max chars when debug logging messages in Camel">How do I set the max chars when debug logging messages in Camel</a></li><li><a shape="rect" href="how-do-i-specify-time-period-in-a-human-friendly-syntax
 .html" title="How do I specify time period in a human friendly syntax">How do I specify time period in a human friendly syntax</a></li><li><a shape="rect" href="how-do-i-use-a-big-uber-jar.html" title="How do I use a big (uber) JAR?">How do I use a big (uber) JAR?</a></li><li><a shape="rect" href="how-do-i-use-camel-inside-servicemix.html" title="How do I use Camel inside ServiceMix">How do I use Camel inside ServiceMix</a></li><li><a shape="rect" href="how-do-i-use-dynamic-uri-in-to.html" title="How do I use dynamic URI in To">How do I use dynamic URI in To</a></li><li><a shape="rect" href="how-do-i-use-spring-property-placeholder-with-camel-xml.html" title="How do I use Spring Property Placeholder with Camel XML">How do I use Spring Property Placeholder with Camel XML</a></li><li><a shape="rect" href="how-do-i-use-uris-with-parameters-in-xml.html" title="How do I use URIs with parameters in XML">How do I use URIs with parameters in XML</a></li><li><a shape="rect" href="how
 -do-i-write-a-custom-processor-which-sends-multiple-messages.html" title="How do I write a custom Processor which sends multiple messages">How do I write a custom Processor which sends multiple messages</a></li><li><a shape="rect" href="how-should-i-invoke-my-pojos-or-spring-services.html" title="How should I invoke my POJOs or Spring Services">How should I invoke my POJOs or Spring Services</a></li><li><a shape="rect" href="how-should-i-package-applications-using-camel-and-activemq.html" title="How should I package applications using Camel and ActiveMQ">How should I package applications using Camel and ActiveMQ</a></li><li><a shape="rect" href="how-to-avoid-importing-bunch-of-cxf-packages-when-start-up-the-camel-cxf-endpoint-from-osgi-platform-.html" title="How to avoid importing bunch of cxf packages when start up the camel-cxf endpoint from OSGi platform ?">How to avoid importing bunch of cxf packages when start up the camel-cxf endpoint from OSGi platform ?</a></li><li><
 a shape="rect" href="how-to-define-a-static-camel-converter-method-in-scala.html" title="How to define a static camel converter method in Scala">How to define a static camel converter method in Scala</a></li><li><a shape="rect" href="how-to-remove-the-http-protocol-headers-in-the-camel-message.html" title="How to remove the http protocol headers in the camel message?">How to remove the http protocol headers in the camel message?</a></li><li><a shape="rect" href="how-to-send-the-same-message-to-multiple-endpoints.html" title="How to send the same message to multiple endpoints">How to send the same message to multiple endpoints</a></li><li><a shape="rect" href="how-to-switch-the-cxf-consumer-between-http-and-https-without-touching-the-spring-configuration.html" title="How to switch the CXF consumer between HTTP and HTTPS without touching the Spring configuration">How to switch the CXF consumer between HTTP and HTTPS without touching the Spring configuration</a></li><li><a shap
 e="rect" href="how-to-use-extra-camel-componets-in-servicemix-camel.html" title="How to use extra camel componets in servicemix-camel">How to use extra camel componets in servicemix-camel</a></li><li><a shape="rect" href="how-to-validate-the-camel-1x-context-xml-from-apache-camel-web-site.html" title="How to validate the camel-1.x context xml from Apache Camel web site?">How to validate the camel-1.x context xml from Apache Camel web site?</a></li><li><a shape="rect" href="is-there-an-ide.html" title="Is there an IDE">Is there an IDE</a></li><li><a shape="rect" href="should-i-deploy-camel-inside-the-activemq-broker-or-in-another-application.html" title="Should I deploy Camel inside the ActiveMQ broker or in another application">Should I deploy Camel inside the ActiveMQ broker or in another application</a></li><li><a shape="rect" href="using-camel-core-testsjar.html" title="Using camel-core-tests.jar">Using camel-core-tests.jar</a></li><li><a shape="rect" href="using-getin-or
 -getout-methods-on-exchange.html" title="Using getIn or getOut methods on Exchange">Using getIn or getOut methods on Exchange</a></li><li><a shape="rect" href="why-can-i-not-use-when-or-otherwise-in-a-java-camel-route.html" title="Why can I not use when or otherwise in a Java Camel route">Why can I not use when or otherwise in a Java Camel route</a></li><li><a shape="rect" href="why-does-ftp-component-not-download-any-files.html" title="Why does FTP component not download any files?">Why does FTP component not download any files?</a></li><li><a shape="rect" href="why-do-my-message-lose-its-headers-during-routing.html" title="Why do my message lose its headers during routing?">Why do my message lose its headers during routing?</a></li><li><a shape="rect" href="why-is-my-processor-not-showing-up-in-jconsole.html" title="Why is my processor not showing up in JConsole">Why is my processor not showing up in JConsole</a></li><li><a shape="rect" href="why-use-multiple-camelcontext.
 html" title="Why use multiple CamelContext">Why use multiple CamelContext</a></li></ul>
+<ul><li><a shape="rect" href="classloader-issue-of-servicemix-camel-component.html" title="Classloader issue of servicemix-camel component">Classloader issue of servicemix-camel component</a></li><li><a shape="rect" href="ho-do-i-specify-which-method-to-use-when-using-beans-in-routes.html" title="Ho do I specify which method to use when using beans in routes?">Ho do I specify which method to use when using beans in routes?</a></li><li><a shape="rect" href="how-can-i-create-a-custom-component-or-endpoint.html" title="How can I create a custom component or endpoint">How can I create a custom component or endpoint</a></li><li><a shape="rect" href="how-can-i-get-the-remote-connection-ip-address-from-the-camel-cxf-consumer-.html" title="How can I get the remote connection IP address from the camel-cxf consumer ?">How can I get the remote connection IP address from the camel-cxf consumer ?</a></li><li><a shape="rect" href="how-can-i-stop-a-route-from-a-route.html" title="How can I
  stop a route from a route">How can I stop a route from a route</a></li><li><a shape="rect" href="how-can-webservice-clients-see-remote-faults-with-stacktraces-when-using-camel-cxf.html" title="How can webservice clients see remote faults with stacktraces when using camel-cxf">How can webservice clients see remote faults with stacktraces when using camel-cxf</a></li><li><a shape="rect" href="how-does-camel-look-up-beans-and-endpoints.html" title="How does Camel look up beans and endpoints">How does Camel look up beans and endpoints</a></li><li><a shape="rect" href="how-do-i-add-a-component.html" title="How do I add a component">How do I add a component</a></li><li><a shape="rect" href="how-do-i-change-the-logging.html" title="How do I change the logging">How do I change the logging</a></li><li><a shape="rect" href="how-do-i-configure-endpoints.html" title="How do I configure endpoints">How do I configure endpoints</a></li><li><a shape="rect" href="how-do-i-configure-the-defa
 ult-maximum-cache-size-for-producercache-or-producertemplate.html" title="How do I configure the default maximum cache size for ProducerCache or ProducerTemplate">How do I configure the default maximum cache size for ProducerCache or ProducerTemplate</a></li><li><a shape="rect" href="how-do-i-configure-the-maximum-endpoint-cache-size-for-camelcontext.html" title="How do I configure the maximum endpoint cache size for CamelContext">How do I configure the maximum endpoint cache size for CamelContext</a></li><li><a shape="rect" href="how-do-i-debug-my-route.html" title="How do I debug my route">How do I debug my route</a></li><li><a shape="rect" href="how-do-i-disable-jmx.html" title="How do I disable JMX">How do I disable JMX</a></li><li><a shape="rect" href="how-do-i-enable-streams-when-debug-logging-messages-in-camel.html" title="How do I enable streams when debug logging messages in Camel">How do I enable streams when debug logging messages in Camel</a></li><li><a shape="re
 ct" href="how-do-i-handle-failures-when-consuming-for-example-from-a-ftp-server.html" title="How do I handle failures when consuming for example from a FTP server">How do I handle failures when consuming for example from a FTP server</a></li><li><a shape="rect" href="how-do-i-import-routes-from-other-xml-files.html" title="How do I import routes from other XML files">How do I import routes from other XML files</a></li><li><a shape="rect" href="how-do-i-let-jetty-match-wildcards.html" title="How do I let Jetty match wildcards">How do I let Jetty match wildcards</a></li><li><a shape="rect" href="how-do-i-name-my-routes.html" title="How do I name my routes?">How do I name my routes?</a></li><li><a shape="rect" href="how-do-i-restart-camelcontext.html" title="How do I restart CamelContext">How do I restart CamelContext</a></li><li><a shape="rect" href="how-do-i-retrieve-the-thrown-exception-during-processing-an-exchange.html" title="How do I retrieve the thrown Exception during 
 processing an Exchange">How do I retrieve the thrown Exception during processing an Exchange</a></li><li><a shape="rect" href="how-do-i-retry-failed-messages-forever.html" title="How do I retry failed messages forever">How do I retry failed messages forever</a></li><li><a shape="rect" href="how-do-i-reuse-the-contexttestsupport-class-in-my-unit-tests.html" title="How do I reuse the ContextTestSupport class in my unit tests">How do I reuse the ContextTestSupport class in my unit tests</a></li><li><a shape="rect" href="how-do-i-run-activemq-and-camel-in-jboss.html" title="How do I run ActiveMQ and Camel in JBoss">How do I run ActiveMQ and Camel in JBoss</a></li><li><a shape="rect" href="how-do-i-set-the-max-chars-when-debug-logging-messages-in-camel.html" title="How do I set the max chars when debug logging messages in Camel">How do I set the max chars when debug logging messages in Camel</a></li><li><a shape="rect" href="how-do-i-specify-time-period-in-a-human-friendly-syntax
 .html" title="How do I specify time period in a human friendly syntax">How do I specify time period in a human friendly syntax</a></li><li><a shape="rect" href="how-do-i-use-a-big-uber-jar.html" title="How do I use a big (uber) JAR?">How do I use a big (uber) JAR?</a></li><li><a shape="rect" href="how-do-i-use-camel-inside-servicemix.html" title="How do I use Camel inside ServiceMix">How do I use Camel inside ServiceMix</a></li><li><a shape="rect" href="how-do-i-use-dynamic-uri-in-to.html" title="How do I use dynamic URI in To">How do I use dynamic URI in To</a></li><li><a shape="rect" href="how-do-i-use-spring-property-placeholder-with-camel-xml.html" title="How do I use Spring Property Placeholder with Camel XML">How do I use Spring Property Placeholder with Camel XML</a></li><li><a shape="rect" href="how-do-i-use-uris-with-parameters-in-xml.html" title="How do I use URIs with parameters in XML">How do I use URIs with parameters in XML</a></li><li><a shape="rect" href="how
 -do-i-write-a-custom-processor-which-sends-multiple-messages.html" title="How do I write a custom Processor which sends multiple messages">How do I write a custom Processor which sends multiple messages</a></li><li><a shape="rect" href="how-should-i-invoke-my-pojos-or-spring-services.html" title="How should I invoke my POJOs or Spring Services">How should I invoke my POJOs or Spring Services</a></li><li><a shape="rect" href="how-should-i-package-applications-using-camel-and-activemq.html" title="How should I package applications using Camel and ActiveMQ">How should I package applications using Camel and ActiveMQ</a></li><li><a shape="rect" href="how-to-avoid-importing-bunch-of-cxf-packages-when-start-up-the-camel-cxf-endpoint-from-osgi-platform-.html" title="How to avoid importing bunch of cxf packages when start up the camel-cxf endpoint from OSGi platform ?">How to avoid importing bunch of cxf packages when start up the camel-cxf endpoint from OSGi platform ?</a></li><li><
 a shape="rect" href="how-to-define-a-static-camel-converter-method-in-scala.html" title="How to define a static camel converter method in Scala">How to define a static camel converter method in Scala</a></li><li><a shape="rect" href="how-to-remove-the-http-protocol-headers-in-the-camel-message.html" title="How to remove the http protocol headers in the camel message?">How to remove the http protocol headers in the camel message?</a></li><li><a shape="rect" href="how-to-send-the-same-message-to-multiple-endpoints.html" title="How to send the same message to multiple endpoints">How to send the same message to multiple endpoints</a></li><li><a shape="rect" href="how-to-switch-the-cxf-consumer-between-http-and-https-without-touching-the-spring-configuration.html" title="How to switch the CXF consumer between HTTP and HTTPS without touching the Spring configuration">How to switch the CXF consumer between HTTP and HTTPS without touching the Spring configuration</a></li><li><a shap
 e="rect" href="how-to-use-extra-camel-componets-in-servicemix-camel.html" title="How to use extra camel componets in servicemix-camel">How to use extra camel componets in servicemix-camel</a></li><li><a shape="rect" href="how-to-validate-the-camel-1x-context-xml-from-apache-camel-web-site.html" title="How to validate the camel-1.x context xml from Apache Camel web site?">How to validate the camel-1.x context xml from Apache Camel web site?</a></li><li><a shape="rect" href="is-there-an-ide.html" title="Is there an IDE">Is there an IDE</a></li><li><a shape="rect" href="should-i-deploy-camel-inside-the-activemq-broker-or-in-another-application.html" title="Should I deploy Camel inside the ActiveMQ broker or in another application">Should I deploy Camel inside the ActiveMQ broker or in another application</a></li><li><a shape="rect" href="using-camel-core-testsjar.html" title="Using camel-core-tests.jar">Using camel-core-tests.jar</a></li><li><a shape="rect" href="using-getin-or
 -getout-methods-on-exchange.html" title="Using getIn or getOut methods on Exchange">Using getIn or getOut methods on Exchange</a></li><li><a shape="rect" href="why-can-i-not-use-when-or-otherwise-in-a-java-camel-route.html" title="Why can I not use when or otherwise in a Java Camel route">Why can I not use when or otherwise in a Java Camel route</a></li><li><a shape="rect" href="why-does-ftp-component-not-download-any-files.html" title="Why does FTP component not download any files?">Why does FTP component not download any files?</a></li><li><a shape="rect" href="why-do-my-file-consumer-not-pickup-the-file-and-how-do-i-let-the-file-consumer-use-the-camel-error-handler.html" title="Why do my file consumer not pickup the file, and how do I let the file consumer use the Camel error handler">Why do my file consumer not pickup the file, and how do I let the file consumer use the Camel error handler</a></li><li><a shape="rect" href="why-do-my-message-lose-its-headers-during-routin
 g.html" title="Why do my message lose its headers during routing?">Why do my message lose its headers during routing?</a></li><li><a shape="rect" href="why-is-my-processor-not-showing-up-in-jconsole.html" title="Why is my processor not showing up in JConsole">Why is my processor not showing up in JConsole</a></li><li><a shape="rect" href="why-use-multiple-camelcontext.html" title="Why use multiple CamelContext">Why use multiple CamelContext</a></li></ul>
 
 <h3><a shape="rect" name="FAQ-LoggingQuestions"></a><a shape="rect" href="logging-questions.html" title="Logging Questions">Logging Questions</a></h3>
 

Modified: websites/production/camel/content/idempotent-consumer.html
==============================================================================
--- websites/production/camel/content/idempotent-consumer.html (original)
+++ websites/production/camel/content/idempotent-consumer.html Wed May  2 03:35:18 2012
@@ -107,10 +107,10 @@ On completion Camel will remove the mess
     <span class="code-keyword">public</span> void configure() {
         errorHandler(deadLetterChannel(<span class="code-quote">"mock:error"</span>));
 
-        from(<span class="code-quote">"seda:a"</span>)
+        from(<span class="code-quote">"direct:a"</span>)
             .idempotentConsumer(header(<span class="code-quote">"myMessageId"</span>),
                     MemoryIdempotentRepository.memoryIdempotentRepository(200))
-            .to(<span class="code-quote">"seda:b"</span>);
+            .to(<span class="code-quote">"direct:b"</span>);
     }
 };
 </pre>

Modified: websites/production/camel/content/index.html
==============================================================================
--- websites/production/camel/content/index.html (original)
+++ websites/production/camel/content/index.html Wed May  2 03:35:18 2012
@@ -110,6 +110,31 @@ There's a great discussion about Camel a
                <img class="userLogo logo" src="https://cwiki.apache.org/confluence/download/attachments/72923/0e406ed.jpg?version=1&amp;modificationDate=1334889126000" alt="User icon: hadrian@apache.org" title="hadrian@apache.org">
            </a>            </span>
             <span class="blogHeading">
+                </span><div class="page-metadata not-personal"><a shape="rect" class="url fn confluence-userlink" href="https://cwiki.apache.org/confluence/confluence/display/~hadrian@apache.org">Hadrian Zbarcea</a> posted on May 01, 2012</div>
+                <a shape="rect" class="blogHeading" href="https://cwiki.apache.org/confluence/confluence/display/CAMEL/2012/05/01/Apache+Camel+2.8.5+Released">Apache Camel 2.8.5 Released</a>
+            
+        </div>
+    
+    <div class="wiki-content">
+        <p>We are a bit late with announcing the 2.8.5 release which was actually available in the public repos for a few days now. The 2.8.5 release comes with 46 issues fixed. While the 2.8.x and 2.9.x branches are still actively supported, we will now focus on getting 2.10.0 out the door.</p>
+
+<p>The artifacts are published and ready for you to <a shape="rect" href="download.html" title="Download">download</a> either from the Apache mirrors or from the Central Maven repository. For more details please take a look at the <a shape="rect" href="camel-285-release.html" title="Camel 2.8.5 Release">release notes</a>.</p>
+
+<p>Thanks everybody for the continued support.<br clear="none">
+Hadrian</p>
+    </div>
+    
+        
+    </div>
+    
+        
+<div class="blog-post-listing">
+            <div class="logo-heading-block">
+            <span class="logoBlock">
+                <a shape="rect" class="userLogoLink" href="https://cwiki.apache.org/confluence/confluence/display/~hadrian@apache.org">
+               <img class="userLogo logo" src="https://cwiki.apache.org/confluence/download/attachments/72923/0e406ed.jpg?version=1&amp;modificationDate=1334889126000" alt="User icon: hadrian@apache.org" title="hadrian@apache.org">
+           </a>            </span>
+            <span class="blogHeading">
                 </span><div class="page-metadata not-personal"><a shape="rect" class="url fn confluence-userlink" href="https://cwiki.apache.org/confluence/confluence/display/~hadrian@apache.org">Hadrian Zbarcea</a> posted on Apr 18, 2012</div>
                 <a shape="rect" class="blogHeading" href="https://cwiki.apache.org/confluence/confluence/display/CAMEL/2012/04/18/Apache+Camel+2.9.2+Released">Apache Camel 2.9.2 Released</a>
             
@@ -208,37 +233,6 @@ For more details please take a look at t
                              Labels:           <a shape="rect" class="label" rel="nofollow" href="/confluence/label/release">release</a>                </div>
     </div>
     
-        
-<div class="blog-post-listing">
-            <div class="logo-heading-block">
-            <span class="logoBlock">
-                <a shape="rect" class="userLogoLink" href="https://cwiki.apache.org/confluence/confluence/display/~muellerc">
-               <img class="userLogo logo" src="https://cwiki.apache.org/confluence/download/attachments/8552585/muellerc-21094-pp-204.jpg?version=1&amp;modificationDate=1331244486000" alt="User icon: muellerc" title="muellerc">
-           </a>            </span>
-            <span class="blogHeading">
-                </span><div class="page-metadata not-personal"><a shape="rect" class="url fn confluence-userlink" href="https://cwiki.apache.org/confluence/confluence/display/~muellerc">Christian Mueller</a> posted on Jan 17, 2012</div>
-                <a shape="rect" class="blogHeading" href="https://cwiki.apache.org/confluence/confluence/display/CAMEL/2012/01/17/Welcome+Babak+Vahdat+as+the+newest+Camel+Rider">Welcome Babak Vahdat as the newest Camel Rider</a>
-            
-        </div>
-    
-    <div class="wiki-content">
-        <p>Today the Camel PMC voted another one of the very active and talented contributors to become a committer.</p>
-
-<p>Babak Vahdat was actively involved with Apache Camel for about ten month contributing code and helping other users. In the past two months his activity reached a new level. Babak proactively improved our code base, provided patches for broken builds and tested our new releases. In recognition of his work, the PMC only had to take care of the simple task of making that official. Stay tuned for his first official commit. <img align="middle" class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/smile.gif" height="20" width="20" alt="" border="0"></p>
-
-<p>On behalf of the Camel PMC, Babak, welcome aboard!<br clear="none">
-Christian</p>
-    </div>
-    
-        
-        <div class="endsection">
-        
-                    <a shape="rect" href="https://cwiki.apache.org/confluence/confluence/display/CAMEL/2012/01/17/Welcome+Babak+Vahdat+as+the+newest+Camel+Rider">
-            1
-                            Comment</a>
-                                            </div>
-    </div>
-    
 
 <p><a shape="rect" class="external-link" href="https://cwiki.apache.org/confluence/createrssfeed.action?types=blogpost&amp;spaces=CAMEL&amp;title=Apache+Camel+News&amp;sort=modified&amp;maxResults=10&amp;timeSpan=60&amp;showContent=true&amp;confirm=Create+RSS+Feed">RSS Feed</a></p>
 

Modified: websites/production/camel/content/jcr.html
==============================================================================
--- websites/production/camel/content/jcr.html (original)
+++ websites/production/camel/content/jcr.html Wed May  2 03:35:18 2012
@@ -111,11 +111,7 @@ jcr:<span class="code-comment">//user:pa
 
 <h3><a shape="rect" name="JCR-Example"></a>Example</h3>
 <p>The snippet below creates a node named <tt>node</tt> under the <tt>/home/test</tt> node in the content repository.  One additional attribute is added to the node as well: <tt>my.contents.property</tt> which will contain the body of the message being sent.</p>
-<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-java">from(<span class="code-quote">"direct:a"</span>).setProperty(JcrConstants.JCR_NODE_NAME, constant(<span class="code-quote">"node"</span>))
-    .setProperty(<span class="code-quote">"my.contents.property"</span>, body()).to(<span class="code-quote">"jcr:<span class="code-comment">//user:pass@repository/home/test"</span>);</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="JCR-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>

Modified: websites/production/camel/content/message-filter.html
==============================================================================
--- websites/production/camel/content/message-filter.html (original)
+++ websites/production/camel/content/message-filter.html Wed May  2 03:35:18 2012
@@ -89,9 +89,9 @@
     <span class="code-keyword">public</span> void configure() {
         errorHandler(deadLetterChannel(<span class="code-quote">"mock:error"</span>));
 
-        from(<span class="code-quote">"seda:a"</span>)
+        from(<span class="code-quote">"direct:a"</span>)
             .filter(header(<span class="code-quote">"foo"</span>).isEqualTo(<span class="code-quote">"bar"</span>))
-                .to(<span class="code-quote">"seda:b"</span>);
+                .to(<span class="code-quote">"direct:b"</span>);
     }
 };
 </pre>
@@ -126,10 +126,10 @@ from(<span class="code-quote">"direct:st
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
 <pre class="code-xml"><span class="code-tag">&lt;camelContext errorHandlerRef=<span class="code-quote">"errorHandler"</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">"seda:a"</span>/&gt;</span>
+        <span class="code-tag">&lt;from uri=<span class="code-quote">"direct:a"</span>/&gt;</span>
         <span class="code-tag">&lt;filter&gt;</span>
             <span class="code-tag">&lt;xpath&gt;</span>$foo = 'bar'<span class="code-tag">&lt;/xpath&gt;</span>
-            <span class="code-tag">&lt;to uri=<span class="code-quote">"seda:b"</span>/&gt;</span>
+            <span class="code-tag">&lt;to uri=<span class="code-quote">"direct:b"</span>/&gt;</span>
         <span class="code-tag">&lt;/filter&gt;</span>
     <span class="code-tag">&lt;/route&gt;</span>
 <span class="code-tag">&lt;/camelContext&gt;</span>

Modified: websites/production/camel/content/message-router.html
==============================================================================
--- websites/production/camel/content/message-router.html (original)
+++ websites/production/camel/content/message-router.html Wed May  2 03:35:18 2012
@@ -89,14 +89,14 @@
     <span class="code-keyword">public</span> void configure() {
         errorHandler(deadLetterChannel(<span class="code-quote">"mock:error"</span>));
 
-        from(<span class="code-quote">"seda:a"</span>)
+        from(<span class="code-quote">"direct:a"</span>)
             .choice()
                 .when(header(<span class="code-quote">"foo"</span>).isEqualTo(<span class="code-quote">"bar"</span>))
-                    .to(<span class="code-quote">"seda:b"</span>)
+                    .to(<span class="code-quote">"direct:b"</span>)
                 .when(header(<span class="code-quote">"foo"</span>).isEqualTo(<span class="code-quote">"cheese"</span>))
-                    .to(<span class="code-quote">"seda:c"</span>)
+                    .to(<span class="code-quote">"direct:c"</span>)
                 .otherwise()
-                    .to(<span class="code-quote">"seda:d"</span>);
+                    .to(<span class="code-quote">"direct:d"</span>);
     }
 };
 </pre>
@@ -106,18 +106,18 @@
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
 <pre class="code-xml"><span class="code-tag">&lt;camelContext errorHandlerRef=<span class="code-quote">"errorHandler"</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">"seda:a"</span>/&gt;</span>
+        <span class="code-tag">&lt;from uri=<span class="code-quote">"direct:a"</span>/&gt;</span>
         <span class="code-tag">&lt;choice&gt;</span>
             <span class="code-tag">&lt;when&gt;</span>
                 <span class="code-tag">&lt;xpath&gt;</span>$foo = 'bar'<span class="code-tag">&lt;/xpath&gt;</span>
-                <span class="code-tag">&lt;to uri=<span class="code-quote">"seda:b"</span>/&gt;</span>
+                <span class="code-tag">&lt;to uri=<span class="code-quote">"direct:b"</span>/&gt;</span>
             <span class="code-tag">&lt;/when&gt;</span>
             <span class="code-tag">&lt;when&gt;</span>
                 <span class="code-tag">&lt;xpath&gt;</span>$foo = 'cheese'<span class="code-tag">&lt;/xpath&gt;</span>
-                <span class="code-tag">&lt;to uri=<span class="code-quote">"seda:c"</span>/&gt;</span>
+                <span class="code-tag">&lt;to uri=<span class="code-quote">"direct:c"</span>/&gt;</span>
             <span class="code-tag">&lt;/when&gt;</span>
             <span class="code-tag">&lt;otherwise&gt;</span>
-                <span class="code-tag">&lt;to uri=<span class="code-quote">"seda:d"</span>/&gt;</span>
+                <span class="code-tag">&lt;to uri=<span class="code-quote">"direct:d"</span>/&gt;</span>
             <span class="code-tag">&lt;/otherwise&gt;</span>
         <span class="code-tag">&lt;/choice&gt;</span>
     <span class="code-tag">&lt;/route&gt;</span>

Modified: websites/production/camel/content/news.html
==============================================================================
--- websites/production/camel/content/news.html (original)
+++ websites/production/camel/content/news.html Wed May  2 03:35:18 2012
@@ -85,7 +85,58 @@
             <div class="logo-heading-block">
             <span class="logoBlock">
                 <a shape="rect" class="userLogoLink" href="https://cwiki.apache.org/confluence/confluence/display/~hadrian@apache.org">
-               <img class="userLogo logo" src="https://cwiki.apache.org/confluence/images/icons/profilepics/default.gif" alt="User icon: hadrian@apache.org" title="hadrian@apache.org">
+               <img class="userLogo logo" src="https://cwiki.apache.org/confluence/download/attachments/72923/0e406ed.jpg?version=1&amp;modificationDate=1334889126000" alt="User icon: hadrian@apache.org" title="hadrian@apache.org">
+           </a>            </span>
+            <span class="blogHeading">
+                </span><div class="page-metadata not-personal"><a shape="rect" class="url fn confluence-userlink" href="https://cwiki.apache.org/confluence/confluence/display/~hadrian@apache.org">Hadrian Zbarcea</a> posted on May 01, 2012</div>
+                <a shape="rect" class="blogHeading" href="https://cwiki.apache.org/confluence/confluence/display/CAMEL/2012/05/01/Apache+Camel+2.8.5+Released">Apache Camel 2.8.5 Released</a>
+            
+        </div>
+    
+    <div class="wiki-content">
+        <p>We are a bit late with announcing the 2.8.5 release which was actually available in the public repos for a few days now. The 2.8.5 release comes with 46 issues fixed. While the 2.8.x and 2.9.x branches are still actively supported, we will now focus on getting 2.10.0 out the door.</p>
+
+<p>The artifacts are published and ready for you to <a shape="rect" href="download.html" title="Download">download</a> either from the Apache mirrors or from the Central Maven repository. For more details please take a look at the <a shape="rect" href="camel-285-release.html" title="Camel 2.8.5 Release">release notes</a>.</p>
+
+<p>Thanks everybody for the continued support.<br clear="none">
+Hadrian</p>
+    </div>
+    
+        
+    </div>
+    
+        
+<div class="blog-post-listing">
+            <div class="logo-heading-block">
+            <span class="logoBlock">
+                <a shape="rect" class="userLogoLink" href="https://cwiki.apache.org/confluence/confluence/display/~hadrian@apache.org">
+               <img class="userLogo logo" src="https://cwiki.apache.org/confluence/download/attachments/72923/0e406ed.jpg?version=1&amp;modificationDate=1334889126000" alt="User icon: hadrian@apache.org" title="hadrian@apache.org">
+           </a>            </span>
+            <span class="blogHeading">
+                </span><div class="page-metadata not-personal"><a shape="rect" class="url fn confluence-userlink" href="https://cwiki.apache.org/confluence/confluence/display/~hadrian@apache.org">Hadrian Zbarcea</a> posted on Apr 18, 2012</div>
+                <a shape="rect" class="blogHeading" href="https://cwiki.apache.org/confluence/confluence/display/CAMEL/2012/04/18/Apache+Camel+2.9.2+Released">Apache Camel 2.9.2 Released</a>
+            
+        </div>
+    
+    <div class="wiki-content">
+        <p>The Camel community continues its efforts to issue patch releases on a predictable schedule. Today we are proud to announce a new patch release Apache Camel 2.9.2. This release comes with 58 issues fixed, about 6 weeks after the previous release - camel-2.9.1. Development continues as strong as ever, with a release to follow shortly for the still supported 2.8.x branch. The trunk already contains an impressive number of fixes, improvements and new features and it won't be long before camel-2.10.0 will be available as well.</p>
+
+<p>The artifacts are now published and are ready for you to <a shape="rect" href="download.html" title="Download">download</a> either from the Apache mirrors or from the Central Maven repository.<br clear="none">
+For more details please take a look at the <a shape="rect" href="camel-292-release.html" title="Camel 2.9.2 Release">release notes</a>.</p>
+
+<p>Many thanks to all contributors for making this release possible.</p>
+
+    </div>
+    
+        
+    </div>
+    
+        
+<div class="blog-post-listing">
+            <div class="logo-heading-block">
+            <span class="logoBlock">
+                <a shape="rect" class="userLogoLink" href="https://cwiki.apache.org/confluence/confluence/display/~hadrian@apache.org">
+               <img class="userLogo logo" src="https://cwiki.apache.org/confluence/download/attachments/72923/0e406ed.jpg?version=1&amp;modificationDate=1334889126000" alt="User icon: hadrian@apache.org" title="hadrian@apache.org">
            </a>            </span>
             <span class="blogHeading">
                 </span><div class="page-metadata not-personal"><a shape="rect" class="url fn confluence-userlink" href="https://cwiki.apache.org/confluence/confluence/display/~hadrian@apache.org">Hadrian Zbarcea</a> posted on Mar 06, 2012</div>
@@ -136,7 +187,7 @@ Christian</p>
             <div class="logo-heading-block">
             <span class="logoBlock">
                 <a shape="rect" class="userLogoLink" href="https://cwiki.apache.org/confluence/confluence/display/~hadrian@apache.org">
-               <img class="userLogo logo" src="https://cwiki.apache.org/confluence/images/icons/profilepics/default.gif" alt="User icon: hadrian@apache.org" title="hadrian@apache.org">
+               <img class="userLogo logo" src="https://cwiki.apache.org/confluence/download/attachments/72923/0e406ed.jpg?version=1&amp;modificationDate=1334889126000" alt="User icon: hadrian@apache.org" title="hadrian@apache.org">
            </a>            </span>
             <span class="blogHeading">
                 </span><div class="page-metadata not-personal"><a shape="rect" class="url fn confluence-userlink" href="https://cwiki.apache.org/confluence/confluence/display/~hadrian@apache.org">Hadrian Zbarcea</a> posted on Jan 30, 2012</div>
@@ -222,7 +273,7 @@ For the release notes we suggest to take
             <div class="logo-heading-block">
             <span class="logoBlock">
                 <a shape="rect" class="userLogoLink" href="https://cwiki.apache.org/confluence/confluence/display/~hadrian@apache.org">
-               <img class="userLogo logo" src="https://cwiki.apache.org/confluence/images/icons/profilepics/default.gif" alt="User icon: hadrian@apache.org" title="hadrian@apache.org">
+               <img class="userLogo logo" src="https://cwiki.apache.org/confluence/download/attachments/72923/0e406ed.jpg?version=1&amp;modificationDate=1334889126000" alt="User icon: hadrian@apache.org" title="hadrian@apache.org">
            </a>            </span>
             <span class="blogHeading">
                 </span><div class="page-metadata not-personal"><a shape="rect" class="url fn confluence-userlink" href="https://cwiki.apache.org/confluence/confluence/display/~hadrian@apache.org">Hadrian Zbarcea</a> posted on Jan 01, 2012</div>
@@ -305,7 +356,7 @@ For the release notes we suggest to take
             <div class="logo-heading-block">
             <span class="logoBlock">
                 <a shape="rect" class="userLogoLink" href="https://cwiki.apache.org/confluence/confluence/display/~hadrian@apache.org">
-               <img class="userLogo logo" src="https://cwiki.apache.org/confluence/images/icons/profilepics/default.gif" alt="User icon: hadrian@apache.org" title="hadrian@apache.org">
+               <img class="userLogo logo" src="https://cwiki.apache.org/confluence/download/attachments/72923/0e406ed.jpg?version=1&amp;modificationDate=1334889126000" alt="User icon: hadrian@apache.org" title="hadrian@apache.org">
            </a>            </span>
             <span class="blogHeading">
                 </span><div class="page-metadata not-personal"><a shape="rect" class="url fn confluence-userlink" href="https://cwiki.apache.org/confluence/confluence/display/~hadrian@apache.org">Hadrian Zbarcea</a> posted on Nov 02, 2011</div>
@@ -378,7 +429,7 @@ This release resolved over 100 JIRA issu
             <div class="logo-heading-block">
             <span class="logoBlock">
                 <a shape="rect" class="userLogoLink" href="https://cwiki.apache.org/confluence/confluence/display/~hadrian@apache.org">
-               <img class="userLogo logo" src="https://cwiki.apache.org/confluence/images/icons/profilepics/default.gif" alt="User icon: hadrian@apache.org" title="hadrian@apache.org">
+               <img class="userLogo logo" src="https://cwiki.apache.org/confluence/download/attachments/72923/0e406ed.jpg?version=1&amp;modificationDate=1334889126000" alt="User icon: hadrian@apache.org" title="hadrian@apache.org">
            </a>            </span>
             <span class="blogHeading">
                 </span><div class="page-metadata not-personal"><a shape="rect" class="url fn confluence-userlink" href="https://cwiki.apache.org/confluence/confluence/display/~hadrian@apache.org">Hadrian Zbarcea</a> posted on Jul 25, 2011</div>
@@ -486,7 +537,7 @@ Claus Ibsen</p>
             <div class="logo-heading-block">
             <span class="logoBlock">
                 <a shape="rect" class="userLogoLink" href="https://cwiki.apache.org/confluence/confluence/display/~hadrian@apache.org">
-               <img class="userLogo logo" src="https://cwiki.apache.org/confluence/images/icons/profilepics/default.gif" alt="User icon: hadrian@apache.org" title="hadrian@apache.org">
+               <img class="userLogo logo" src="https://cwiki.apache.org/confluence/download/attachments/72923/0e406ed.jpg?version=1&amp;modificationDate=1334889126000" alt="User icon: hadrian@apache.org" title="hadrian@apache.org">
            </a>            </span>
             <span class="blogHeading">
                 </span><div class="page-metadata not-personal"><a shape="rect" class="url fn confluence-userlink" href="https://cwiki.apache.org/confluence/confluence/display/~hadrian@apache.org">Hadrian Zbarcea</a> posted on Jul 01, 2011</div>
@@ -518,7 +569,7 @@ Hadrian</p>
             <div class="logo-heading-block">
             <span class="logoBlock">
                 <a shape="rect" class="userLogoLink" href="https://cwiki.apache.org/confluence/confluence/display/~hadrian@apache.org">
-               <img class="userLogo logo" src="https://cwiki.apache.org/confluence/images/icons/profilepics/default.gif" alt="User icon: hadrian@apache.org" title="hadrian@apache.org">
+               <img class="userLogo logo" src="https://cwiki.apache.org/confluence/download/attachments/72923/0e406ed.jpg?version=1&amp;modificationDate=1334889126000" alt="User icon: hadrian@apache.org" title="hadrian@apache.org">
            </a>            </span>
             <span class="blogHeading">
                 </span><div class="page-metadata not-personal"><a shape="rect" class="url fn confluence-userlink" href="https://cwiki.apache.org/confluence/confluence/display/~hadrian@apache.org">Hadrian Zbarcea</a> posted on Jun 04, 2011</div>
@@ -543,7 +594,7 @@ Hadrian</p>
             <div class="logo-heading-block">
             <span class="logoBlock">
                 <a shape="rect" class="userLogoLink" href="https://cwiki.apache.org/confluence/confluence/display/~hadrian@apache.org">
-               <img class="userLogo logo" src="https://cwiki.apache.org/confluence/images/icons/profilepics/default.gif" alt="User icon: hadrian@apache.org" title="hadrian@apache.org">
+               <img class="userLogo logo" src="https://cwiki.apache.org/confluence/download/attachments/72923/0e406ed.jpg?version=1&amp;modificationDate=1334889126000" alt="User icon: hadrian@apache.org" title="hadrian@apache.org">
            </a>            </span>
             <span class="blogHeading">
                 </span><div class="page-metadata not-personal"><a shape="rect" class="url fn confluence-userlink" href="https://cwiki.apache.org/confluence/confluence/display/~hadrian@apache.org">Hadrian Zbarcea</a> posted on May 19, 2011</div>
@@ -568,7 +619,7 @@ Hadrian</p>
             <div class="logo-heading-block">
             <span class="logoBlock">
                 <a shape="rect" class="userLogoLink" href="https://cwiki.apache.org/confluence/confluence/display/~hadrian@apache.org">
-               <img class="userLogo logo" src="https://cwiki.apache.org/confluence/images/icons/profilepics/default.gif" alt="User icon: hadrian@apache.org" title="hadrian@apache.org">
+               <img class="userLogo logo" src="https://cwiki.apache.org/confluence/download/attachments/72923/0e406ed.jpg?version=1&amp;modificationDate=1334889126000" alt="User icon: hadrian@apache.org" title="hadrian@apache.org">
            </a>            </span>
             <span class="blogHeading">
                 </span><div class="page-metadata not-personal"><a shape="rect" class="url fn confluence-userlink" href="https://cwiki.apache.org/confluence/confluence/display/~hadrian@apache.org">Hadrian Zbarcea</a> posted on May 02, 2011</div>
@@ -588,63 +639,6 @@ VP, Apache Camel</p>
         
     </div>
     
-        
-<div class="blog-post-listing">
-            <div class="logo-heading-block">
-            <span class="logoBlock">
-                <a shape="rect" class="userLogoLink" href="https://cwiki.apache.org/confluence/confluence/display/~hadrian@apache.org">
-               <img class="userLogo logo" src="https://cwiki.apache.org/confluence/images/icons/profilepics/default.gif" alt="User icon: hadrian@apache.org" title="hadrian@apache.org">
-           </a>            </span>
-            <span class="blogHeading">
-                </span><div class="page-metadata not-personal"><a shape="rect" class="url fn confluence-userlink" href="https://cwiki.apache.org/confluence/confluence/display/~hadrian@apache.org">Hadrian Zbarcea</a> posted on Apr 13, 2011</div>
-                <a shape="rect" class="blogHeading" href="https://cwiki.apache.org/confluence/confluence/display/CAMEL/2011/04/13/Camel+2.7.1+Released">Camel 2.7.1 Released</a>
-            
-        </div>
-    
-    <div class="wiki-content">
-        <p>The Camel PMC is glad to announce the availability of apache-camel version 2.7.1. This is a patch release binary compatible with apache-camel-2.7.0. This release targets better usability in OSGi environments and compatibility with a wider range of versions of dependent libraries.</p>
-
-<p>The <a shape="rect" class="external-link" href="http://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311211&amp;version=12316352&amp;styleName=Html">12 issues</a> fixed in this release are also available on trunk. The development of the upcoming version 2.8.0 is going strong and we expect it to be released on the usual quarterly schedule. </p>
-
-<p><a shape="rect" href="download.html" title="Download">Download</a> Camel now, check out the <a shape="rect" href="camel-271-release.html" title="Camel 2.7.1 Release">release notes</a> and enjoy the ride!<br clear="none">
-Hadrian</p>
-    </div>
-    
-        
-    </div>
-    
-        
-<div class="blog-post-listing">
-            <div class="logo-heading-block">
-            <span class="logoBlock">
-                <a shape="rect" class="userLogoLink" href="https://cwiki.apache.org/confluence/confluence/display/~hadrian@apache.org">
-               <img class="userLogo logo" src="https://cwiki.apache.org/confluence/images/icons/profilepics/default.gif" alt="User icon: hadrian@apache.org" title="hadrian@apache.org">
-           </a>            </span>
-            <span class="blogHeading">
-                </span><div class="page-metadata not-personal"><a shape="rect" class="url fn confluence-userlink" href="https://cwiki.apache.org/confluence/confluence/display/~hadrian@apache.org">Hadrian Zbarcea</a> posted on Mar 22, 2011</div>
-                <a shape="rect" class="blogHeading" href="https://cwiki.apache.org/confluence/confluence/display/CAMEL/2011/03/22/Camel+2.7.0+Released">Camel 2.7.0 Released</a>
-            
-        </div>
-    
-    <div class="wiki-content">
-        <p>The Apache Camel 2.7.0 release is finally out. It is a bit earlier than the usual quarterly schedule and it comes with about 169 issues resolved, many of them coming as contributions from our community. Thank you for your contributions and continued support.</p>
-
-<p>This release is a bit special as it drops support for older technologies, as <a shape="rect" href="https://cwiki.apache.org/confluence/confluence/display/CAMEL/2011/02/09/Camel+2.7.0+drops+support+for+java+1.5" title="Camel 2.7.0 drops support for java 1.5">announced</a> last month. More specifically, Java 5 and Spring 2.5.6 are no longer supported starting with this version.</p>
-
-<p>Among the issues resolved in this release you can find (in no particular order):</p>
-<ul><li>Added 4 new components: <a shape="rect" href="context.html" title="Context">Context</a>, <a shape="rect" href="hazelcast-component.html" title="Hazelcast Component">Hazelcast Component</a>, <a shape="rect" href="dns.html" title="DNS">DNS</a> and <a shape="rect" href="mybatis.html" title="MyBatis">MyBatis</a></li><li>Switched to using slf4j as the logger instead of commons logging</li><li>Added support for <a shape="rect" href="mdc-logging.html" title="MDC logging">MDC logging</a> with Camel</li><li><a shape="rect" href="dsl.html" title="DSL">DSL</a> improvements</li><li>Improvements for a few components like <a shape="rect" href="jms.html" title="JMS">JMS</a>, <a shape="rect" href="http4.html" title="HTTP4">HTTP</a>, <a shape="rect" href="file2.html" title="File2">File</a>, <a shape="rect" href="quartz.html" title="Quartz">Quartz</a></li><li>Improvements of the test kit and <a shape="rect" href="mock.html" title="Mock">Mock</a> component</li><li>... and much, much mo
 re.</li></ul>
-
-
-<p><a shape="rect" href="download.html" title="Download">Download</a> Camel now, check out the <a shape="rect" href="camel-270-release.html" title="Camel 2.7.0 Release">release notes</a> and enjoy the ride!<br clear="none">
-Hadrian</p>
-    </div>
-    
-        
-        <div class="endsection">
-        
-                             Labels:           <a shape="rect" class="label" rel="nofollow" href="/confluence/label/camel">camel</a>,  <a shape="rect" class="label" rel="nofollow" href="/confluence/label/release">release</a>                </div>
-    </div>
-    
 </div>
         </td>
         <td valign="top">

Modified: websites/production/camel/content/publish-subscribe-channel.html
==============================================================================
--- websites/production/camel/content/publish-subscribe-channel.html (original)
+++ websites/production/camel/content/publish-subscribe-channel.html Wed May  2 03:35:18 2012
@@ -94,8 +94,8 @@
     <span class="code-keyword">public</span> void configure() {
         errorHandler(deadLetterChannel(<span class="code-quote">"mock:error"</span>));
 
-        from(<span class="code-quote">"seda:a"</span>)
-            .multicast().to(<span class="code-quote">"seda:b"</span>, <span class="code-quote">"seda:c"</span>, <span class="code-quote">"seda:d"</span>);
+        from(<span class="code-quote">"direct:a"</span>)
+            .multicast().to(<span class="code-quote">"direct:b"</span>, <span class="code-quote">"direct:c"</span>, <span class="code-quote">"direct:d"</span>);
     }
 };
 </pre>
@@ -105,11 +105,11 @@
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
 <pre class="code-xml"><span class="code-tag">&lt;camelContext errorHandlerRef=<span class="code-quote">"errorHandler"</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">"seda:a"</span>/&gt;</span>
+        <span class="code-tag">&lt;from uri=<span class="code-quote">"direct:a"</span>/&gt;</span>
         <span class="code-tag">&lt;multicast&gt;</span>
-            <span class="code-tag">&lt;to uri=<span class="code-quote">"seda:b"</span>/&gt;</span>
-            <span class="code-tag">&lt;to uri=<span class="code-quote">"seda:c"</span>/&gt;</span>
-            <span class="code-tag">&lt;to uri=<span class="code-quote">"seda:d"</span>/&gt;</span>
+            <span class="code-tag">&lt;to uri=<span class="code-quote">"direct:b"</span>/&gt;</span>
+            <span class="code-tag">&lt;to uri=<span class="code-quote">"direct:c"</span>/&gt;</span>
+            <span class="code-tag">&lt;to uri=<span class="code-quote">"direct:d"</span>/&gt;</span>
         <span class="code-tag">&lt;/multicast&gt;</span>
     <span class="code-tag">&lt;/route&gt;</span>
 <span class="code-tag">&lt;/camelContext&gt;</span>