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/12/13 08:43:36 UTC

svn commit: r842051 [1/5] - in /websites/production/camel/content: ./ cache/ management-example.data/ news.userimage/ route-throttling-example.data/

Author: buildbot
Date: Thu Dec 13 07:43:35 2012
New Revision: 842051

Log:
Production update by buildbot for camel

Added:
    websites/production/camel/content/cache/main.pageCache   (with props)
    websites/production/camel/content/camel-2103-release.html
    websites/production/camel/content/management-example.data/Camel-JMX-Console.png   (with props)
    websites/production/camel/content/news.userimage/
    websites/production/camel/content/news.userimage/0e406ed.jpg   (with props)
    websites/production/camel/content/news.userimage/davsclaus-43496-pp-claus-ibsen-head-shot2.png   (with props)
    websites/production/camel/content/news.userimage/dkulp-96982-pp-dan_kulp.jpg   (with props)
    websites/production/camel/content/news.userimage/muellerc-21094-pp-204.jpg   (with props)
    websites/production/camel/content/route-throttling-example.data/throttling-services.png   (with props)
Modified:
    websites/production/camel/content/async.html
    websites/production/camel/content/community.html
    websites/production/camel/content/component.html
    websites/production/camel/content/download-archives.html
    websites/production/camel/content/faq.html
    websites/production/camel/content/index.html
    websites/production/camel/content/news.html
    websites/production/camel/content/scala-dsl-eip.html
    websites/production/camel/content/siteindex.html
    websites/production/camel/content/sitemap.html
    websites/production/camel/content/using-camel-questions.html
    websites/production/camel/content/xml-reference.html

Modified: websites/production/camel/content/async.html
==============================================================================
--- websites/production/camel/content/async.html (original)
+++ websites/production/camel/content/async.html Thu Dec 13 07:43:35 2012
@@ -193,7 +193,7 @@ We send a request to fetch a web page an
 </span>from(<span class="code-quote">"direct:name"</span>).transform(constant(<span class="code-quote">"Claus"</span>)).to(<span class="code-quote">"mock:result"</span>);
 
 <span class="code-comment">// Simulate a slow http service (delaying 1 sec) we want to invoke async
-</span>from(<span class="code-quote">"jetty:http:<span class="code-comment">//0.0.0.0:"</span> + getPort() + <span class="code-quote">"/myservice"</span>)
+</span>fromF(<span class="code-quote">"jetty:http:<span class="code-comment">//0.0.0.0:%s/myservice"</span>, getPort())
 </span>    .delay(1000)
     .transform(constant(<span class="code-quote">"Bye World"</span>))
     .to(<span class="code-quote">"mock:result"</span>);
@@ -243,7 +243,7 @@ assertMockEndpointsSatisfied();
 </span>mock.expectedBodiesReceived(<span class="code-quote">"Bye World"</span>, <span class="code-quote">"Claus"</span>);
 
 <span class="code-comment">// Send a sync request/reply message to the http endpoint
-</span><span class="code-object">String</span> response = template.requestBody(<span class="code-quote">"http:<span class="code-comment">//0.0.0.0:9080/myservice"</span>, <span class="code-quote">"Hello World"</span>, <span class="code-object">String</span>.class);
+</span><span class="code-object">String</span> response = template.requestBody(<span class="code-quote">"http:<span class="code-comment">//0.0.0.0:"</span> + getPort() + <span class="code-quote">"/myservice"</span>, <span class="code-quote">"Hello World"</span>, <span class="code-object">String</span>.class);
 </span>assertEquals(<span class="code-quote">"Bye World"</span>, response);
 
 <span class="code-comment">// Send a sync request/reply message to the direct endpoint
@@ -277,7 +277,10 @@ assertMockEndpointsSatisfied();
  */
 <span class="code-keyword">private</span> <span class="code-keyword">static</span> class MyCallback <span class="code-keyword">extends</span> SynchronizationAdapter {
 
-    <span class="code-keyword">private</span> <span class="code-keyword">final</span> List&lt;<span class="code-object">String</span>&gt; data = <span class="code-keyword">new</span> ArrayList&lt;<span class="code-object">String</span>&gt;();
+    <span class="code-comment">// below the <span class="code-object">String</span> elements are added in the context of different threads so that we should make
+</span>    <span class="code-comment">// sure that <span class="code-keyword">this</span>'s done in a thread-safe manner, that's no two threads should call the data.add()
+</span>    <span class="code-comment">// method below concurrently, so why we use Vector here and not e.g. ArrayList
+</span>    <span class="code-keyword">private</span> <span class="code-keyword">final</span> List&lt;<span class="code-object">String</span>&gt; data = <span class="code-keyword">new</span> Vector&lt;<span class="code-object">String</span>&gt;();
 
     @Override
     <span class="code-keyword">public</span> void onComplete(Exchange exchange) {

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

Added: websites/production/camel/content/camel-2103-release.html
==============================================================================
--- websites/production/camel/content/camel-2103-release.html (added)
+++ websites/production/camel/content/camel-2103-release.html Thu Dec 13 07:43:35 2012
@@ -0,0 +1,244 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<!--
+
+    Licensed to the Apache Software Foundation (ASF) under one or more
+    contributor license agreements.  See the NOTICE file distributed with
+    this work for additional information regarding copyright ownership.
+    The ASF licenses this file to You under the Apache License, Version 2.0
+    (the "License"); you may not use this file except in compliance with
+    the License.  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License.
+-->
+<html>
+<head>
+    <link href="http://camel.apache.org/styles/site.css" rel="stylesheet" type="text/css">
+    <link href="http://camel.apache.org/styles/type-settings.css" rel="stylesheet" type="text/css">
+    <script src="http://camel.apache.org/styles/prototype.js" type="text/javascript"></script>
+    <script src="http://camel.apache.org/styles/rico.js" type="text/javascript"></script>    
+    <script src="http://camel.apache.org/styles/site.js" type="text/javascript"></script>
+
+    <meta http-equiv="Content-type" content="text/html;charset=UTF-8">
+
+    <style type="text/css">
+      .maincontent { overflow:hidden; }
+    </style>
+    <!--[if IE]>
+    <style type="text/css">
+      .maincontent { width:100%; }
+    </style>
+    <![endif]-->
+
+    <title>
+    Apache Camel: Camel 2.10.3 Release
+    </title>
+</head>
+<body>
+<div class="white_box">
+<div class="header">
+  <div class="header_l">
+    <div class="header_r">
+    </div>
+  </div>
+</div>
+<div class="content">
+  <div class="content_l">
+    <div class="content_r">
+      <div>
+          <!-- Banner -->
+<div id="banner-content">
+	<div id="asf_logo">
+	<div id="activemq_logo" style="height:108px; background:transparent url(banner.data/apache-camel-7.png) no-repeat scroll left top;">
+            <a shape="rect" style="float:left; width:310px;display:block;text-indent:-5000px;text-decoration:none;line-height:140px; margin-top:20px; margin-left:18px;" href="http://camel.apache.org/">Camel</a>
+            <a shape="rect" style="float:right; width:180px;display:block;text-indent:-5000px;text-decoration:none;line-height:80px; margin-top:45px; margin-right:10px;" href="http://www.apache.org">Apache</a>
+	</div>
+        </div>
+</div>
+          <!-- Banner -->
+        <div class="top_red_bar">
+          <div id="site-breadcrumbs">
+                <!-- Breadcrumbs -->
+<a href="index.html">Apache Camel</a>&nbsp;&gt;&nbsp;<a href="community.html">Community</a>&nbsp;&gt;&nbsp;<a href="download.html">Download</a>&nbsp;&gt;&nbsp;<a href="camel-2103-release.html">Camel 2.10.3 Release</a>
+          </div>
+          <!-- Quicklinks -->
+<div id="site-quicklinks"><p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" href="javadoc.html" title="JavaDoc">JavaDoc</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" href="discussion-forums.html" title="Discussion Forums">Forums</a> | <a shape="rect" href="support.html" title="Support">Support</a></p></div>
+          <!-- Quicklinks -->
+        </div>
+
+	<table border="0">
+	<tbody>
+        <tr>
+        <td valign="top" width="100%">
+<div class="wiki-content maincontent"><h1><a shape="rect" name="Camel2.10.3Release-Camel2.10.3release"></a>Camel 2.10.3 release</h1>
+
+<div style="padding-right:20px;float:left;margin-left:-20px;"><p><span class="image-wrap" style=""><img src="http://camel.apache.org/download.data/camel-box-v1.0-150x200.png" style="border: 0px solid black"></span></p></div>
+<div style="min-height:200px"></div>
+
+<h2><a shape="rect" name="Camel2.10.3Release-NewandNoteworthy"></a>New and Noteworthy</h2>
+
+<p>Welcome to the 2.10.2 release which is mainly a bug fix release with 71 issues resolved. </p>
+
+<p>For more details see the <a shape="rect" class="external-link" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311211&amp;version=12323366">JIRA tickets</a></p>
+
+<h2><a shape="rect" name="Camel2.10.3Release-KnownIssues"></a>Known Issues</h2>
+
+<ul><li>See <a shape="rect" href="camel-2100-release.html" title="Camel 2.10.0 Release">Camel 2.10.0 Release</a></li></ul>
+
+
+<h2><a shape="rect" name="Camel2.10.3Release-Importantchangestoconsiderwhenupgrading"></a>Important changes to consider when upgrading</h2>
+
+<ul><li>See <a shape="rect" href="camel-2100-release.html" title="Camel 2.10.0 Release">Camel 2.10.0 Release</a></li></ul>
+
+
+<h2><a shape="rect" name="Camel2.10.3Release-Notice"></a>Notice</h2>
+
+<ul><li>See <a shape="rect" href="camel-2100-release.html" title="Camel 2.10.0 Release">Camel 2.10.0 Release</a></li></ul>
+
+
+<h2><a shape="rect" name="Camel2.10.3Release-GettingtheDistributions"></a>Getting the Distributions</h2>
+
+<h3><a shape="rect" name="Camel2.10.3Release-BinaryDistributions"></a>Binary Distributions</h3>
+
+<div class="table-wrap">
+<table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" class="confluenceTh"> Description </th><th colspan="1" rowspan="1" class="confluenceTh"> Download Link </th><th colspan="1" rowspan="1" class="confluenceTh"> PGP Signature file of download </th></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> Windows Distribution </td><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect" class="external-link" href="http://www.apache.org/dyn/closer.cgi/camel/apache-camel/2.10.3/apache-camel-2.10.3.zip">apache-camel-2.10.3.zip</a> </td><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect" class="external-link" href="http://www.apache.org/dist/camel/apache-camel/2.10.3/apache-camel-2.10.3.zip.asc">apache-camel-2.10.3.zip.asc</a> </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> Unix/Linux/Cygwin Distribution </td><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect" class="external-link" href="http://www.apache.org/d
 yn/closer.cgi/camel/apache-camel/2.10.3/apache-camel-2.10.3.tar.gz">apache-camel-2.10.3.tar.gz</a> </td><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect" class="external-link" href="http://www.apache.org/dist/camel/apache-camel/2.10.3/apache-camel-2.10.3.tar.gz.asc">apache-camel-2.10.3.tar.gz.asc</a> </td></tr></tbody></table>
+</div>
+
+<div class="panelMacro"><table class="infoMacro"><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/information.gif" width="16" height="16" alt="" border="0"></td><td colspan="1" rowspan="1"><b>The above URLs use redirection</b><br clear="none">The above URLs use the Apache Mirror system to redirect you to a suitable mirror for your download. Some users have experienced issues with some versions of browsers (e.g. some Safari browsers). If the download doesn't seem to work for you from the above URL then try using <a shape="rect" class="external-link" href="http://www.mozilla.com/en-US/firefox/" rel="nofollow">FireFox</a></td></tr></table></div>
+
+<h3><a shape="rect" name="Camel2.10.3Release-SourceDistributions"></a>Source Distributions</h3>
+
+<div class="table-wrap">
+<table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" class="confluenceTh"> Description </th><th colspan="1" rowspan="1" class="confluenceTh"> Download Link </th><th colspan="1" rowspan="1" class="confluenceTh"> PGP Signature file of download </th></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> Source (zip) </td><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect" class="external-link" href="http://www.apache.org/dyn/closer.cgi/camel/apache-camel/2.10.3/apache-camel-2.10.3-src.zip">apache-camel-2.10.3-src.zip</a> </td><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect" class="external-link" href="http://www.apache.org/dist/camel/apache-camel/2.10.3/apache-camel-2.10.3-src.zip.asc">apache-camel-2.10.3-src.zip.asc</a> </td></tr></tbody></table>
+</div>
+
+
+<h3><a shape="rect" name="Camel2.10.3Release-GettingtheBinariesusingMaven2"></a>Getting the Binaries using Maven 2</h3>
+
+<p>To use this release in your maven project, the proper dependency configuration that you should use in your <a shape="rect" class="external-link" href="http://maven.apache.org/guides/introduction/introduction-to-the-pom.html">Maven POM</a> is:</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>
+  <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-core<span class="code-tag">&lt;/artifactId&gt;</span>
+  <span class="code-tag">&lt;version&gt;</span>2.10.3<span class="code-tag">&lt;/version&gt;</span>
+<span class="code-tag">&lt;/dependency&gt;</span>
+</pre>
+</div></div>
+
+<h3><a shape="rect" name="Camel2.10.3Release-SVNTagCheckout"></a>SVN Tag Checkout</h3>
+
+<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
+<pre class="code-java">
+svn co http:<span class="code-comment">//svn.apache.org/repos/asf/camel/tags/camel-2.10.3</span>
+</pre>
+</div></div>
+
+<h2><a shape="rect" name="Camel2.10.3Release-Changelog"></a>Changelog</h2>
+
+<p>For a more detailed view of new features and bug fixes, see the:</p>
+<ul><li><a shape="rect" class="external-link" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311211&amp;version=12323366">release notes for 2.10.3</a></li></ul>
+</div>
+        </td>
+        <td valign="top">
+          <div class="navigation">
+            <div class="navigation_top">
+                <!-- NavigationBar -->
+<div class="navigation_bottom" id="navigation_bottom"><h3><a shape="rect" name="Navigation-Overview"></a><a shape="rect" href="overview.html" title="Overview">Overview</a></h3>
+
+<ul class="alternate" type="square"><li><a shape="rect" href="index.html" title="Index">Home</a></li><li><a shape="rect" href="download.html" title="Download">Download</a></li><li><a shape="rect" href="getting-started.html" title="Getting Started">Getting Started</a></li><li><a shape="rect" href="faq.html" title="FAQ">FAQ</a></li></ul>
+
+
+<h3><a shape="rect" name="Navigation-Documentation"></a><a shape="rect" href="documentation.html" title="Documentation">Documentation</a></h3>
+
+<ul class="alternate" type="square"><li><a shape="rect" href="user-guide.html" title="User Guide">User Guide</a></li><li><a shape="rect" href="manual.html" title="Manual">Manual</a></li><li><a shape="rect" href="books.html" title="Books">Books</a></li><li><a shape="rect" href="tutorials.html" title="Tutorials">Tutorials</a></li><li><a shape="rect" href="examples.html" title="Examples">Examples</a></li><li><a shape="rect" href="cookbook.html" title="Cookbook">Cookbook</a></li><li><a shape="rect" href="enterprise-integration-patterns.html" title="Enterprise Integration Patterns">Enterprise Integration Patterns</a></li><li><a shape="rect" href="architecture.html" title="Architecture">Architecture</a></li><li><a shape="rect" href="components.html" title="Components">Components</a></li><li><a shape="rect" href="data-format.html" title="Data Format">Data Format</a></li><li><a shape="rect" href="languages.html" title="Languages">Languages</a></li><li><a shape="rect" href="security.
 html" title="Security">Security</a></li></ul>
+
+
+<h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
+
+
+<form enctype="application/x-www-form-urlencoded" method="get" id="cse-search-box" action="http://www.google.com/cse">
+  <div>
+    <input type="hidden" name="cx" value="007878419884033443453:m5nhvy4hmyq">
+    <input type="hidden" name="ie" value="UTF-8">
+    <input type="text" name="q" size="21">
+    <input type="submit" name="sa" value="Search">
+  </div>
+</form>
+<script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&amp;lang=en"></script>
+
+
+<h3><a shape="rect" name="Navigation-Community"></a><a shape="rect" href="community.html" title="Community">Community</a></h3>
+
+<ul class="alternate" type="square"><li><a shape="rect" href="support.html" title="Support">Support</a></li><li><a shape="rect" href="contributing.html" title="Contributing">Contributing</a></li><li><a shape="rect" href="discussion-forums.html" title="Discussion Forums">Discussion Forums</a></li><li><a shape="rect" href="mailing-lists.html" title="Mailing Lists">Mailing Lists</a></li><li><a shape="rect" href="user-stories.html" title="User Stories">User Stories</a></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="site.html" title="Site">Site</a></li><li><a shape="rect" href="team.html" title="Team">Team</a></li><li><a shape="rect" class="external-link" href="http://camel-extra.googlecode.com/" rel="nofollow">Camel Extra</a></li></ul>
+
+
+<h3><a shape="rect" name="Navigation-Developers"></a><a shape="rect" href="developers.html" title="Developers">Developers</a></h3>
+
+<ul class="alternate" type="square"><li><a shape="rect" href="developers.html" title="Developers">Developer Guide</a></li><li><a shape="rect" href="source.html" title="Source">Source</a></li><li><a shape="rect" href="building.html" title="Building">Building</a></li><li><a shape="rect" href="javadoc.html" title="JavaDoc">JavaDoc</a></li><li><a shape="rect" href="irc-room.html" title="IRC Room">IRC Room</a></li></ul>
+
+
+<h3><a shape="rect" name="Navigation-ApacheSoftwareFoundation"></a>Apache Software Foundation</h3>
+
+<ul class="alternate" type="square"><li><a shape="rect" class="external-link" href="http://www.apache.org/licenses/">License</a></li><li><a shape="rect" class="external-link" href="http://www.apache.org/foundation/sponsorship.html">Sponsorship</a></li><li><a shape="rect" class="external-link" href="http://www.apache.org/foundation/thanks.html">Thanks</a></li><li><a shape="rect" class="external-link" href="http://www.apache.org/security/">Security</a></li></ul>
+</div>
+                <!-- NavigationBar -->
+            </div>
+          </div>
+        </td>
+        </tr>
+	</tbody>
+        </table>
+
+
+        <div class="bottom_red_bar"></div>
+      </div>
+    </div>
+  </div>
+</div>
+<div class="black_box">
+<div class="footer">
+  <div class="footer_l">
+    <div class="footer_r">
+      <div>
+        <a href="$base/privacy-policy.html">Privacy Policy</a> -
+        (<a href="https://cwiki.apache.org/confluence/pages/editpage.action?pageId=30744962">edit page</a>)
+   	 (<a href="https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=30744962&amp;showComments=true&amp;showCommentArea=true#addcomment">add comment</a>)
+      </div>
+    </div>
+  </div>
+</div>
+</div>
+</div>
+<div class="design_attribution">
+&copy; 2004-2011 The Apache Software Foundation.
+<br>          
+Apache Camel, Camel, Apache, the Apache feather logo, and the Apache Camel project logo are trademarks of The Apache Software Foundation.  All other marks mentioned may be trademarks or registered trademarks of their respective owners.
+<br>
+<a href="http://hiramchirino.com">Graphic Design By Hiram</a>
+</div>
+
+<!-- Camel committers that would like access to the Analytics, send a note to private@camel.apache.org -->
+<script type="text/javascript">
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-25976253-1']);
+  _gaq.push(['_trackPageview']);
+
+  (function() {
+    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+  })();
+
+</script>
+
+</body>
+</html>
+
+

Modified: websites/production/camel/content/community.html
==============================================================================
--- websites/production/camel/content/community.html (original)
+++ websites/production/camel/content/community.html Thu Dec 13 07:43:35 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-285-release.html" title="Camel 2.8.5 Release">Camel 2.8.5 Release</a></li><li><a shape="rect" href="camel-286-release.html" title="Camel 2.8.6 Release">Camel 2.8.6 Release</a></li><li><a shape="rect" href="camel-290-release.html" title="Camel 2.9.0 Rele
 ase">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="camel-292-release.html" title="Camel 2.9.2 Release">Camel 2.9.2 Release</a></li><li><a shape="rect" href="camel-293-release.html" title="Camel 2.9.3 Release">Camel 2.9.3 Release</a></li><li><a shape="rect" href="camel-294-release.html" title="Camel 2.9.4 Release">Camel 2.9.4 Release</a></li><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-2101-release.html" title="Camel 2.10.1 Release">Camel 2.10.1 Release</a></li><li><a shape="rect" href="camel-2102-release.html" title="Camel 2.10.2 Release">Camel 2.10.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 Summer
 OfCode</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-2110-release.html" title="Camel 2.11.0 Release">Camel 2.11.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.html" 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-286-release.html" title="Camel 2.8.6 Release">Camel 2.8.6 Release</a></li><li><a shape="rect" href="camel-290-release.html" title="Camel 2.9.0 Rele
 ase">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="camel-292-release.html" title="Camel 2.9.2 Release">Camel 2.9.2 Release</a></li><li><a shape="rect" href="camel-293-release.html" title="Camel 2.9.3 Release">Camel 2.9.3 Release</a></li><li><a shape="rect" href="camel-294-release.html" title="Camel 2.9.4 Release">Camel 2.9.4 Release</a></li><li><a shape="rect" href="camel-295-release.html" title="Camel 2.9.5 Release">Camel 2.9.5 Release</a></li><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-2101-release.html" title="Camel 2.10.1 Release">Camel 2.10.1 Release</a></li><li><a shape="rect" href="camel-2102-release.html" title="Camel 2.10.2 Release">Camel 2.10.2 Release</a></li><li><a shape="rect" href="camel-2103-release.html" title="Camel 2.10.3 Release">Camel 2.10.3 Releas
 e</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-2110-release.html" title="Camel 2.11.0 Release">Camel 2.11.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" h
 ref="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 Thu Dec 13 07:43:35 2012
@@ -112,7 +112,12 @@ atom:uri
 <pre class="code-xml">
 avro:http://hostname[:port][?options]
 </pre>
-</div></div> </td><td colspan="1" rowspan="1" class="confluenceTd"> Working with <a shape="rect" class="external-link" href="http://avro.apache.org/">Apache Avro</a> for data serialization. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect" href="aws-ddb.html" title="AWS-DDB">AWS-DDB</a> / <a shape="rect" href="aws.html" title="AWS">camel-aws</a>
+</div></div> </td><td colspan="1" rowspan="1" class="confluenceTd"> Working with <a shape="rect" class="external-link" href="http://avro.apache.org/">Apache Avro</a> for data serialization. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect" href="aws-cw.html" title="AWS-CW">AWS-CW</a> / <a shape="rect" href="aws.html" title="AWS">camel-aws</a>
+<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
+<pre class="code-xml">
+aws-cw://namespace[?options]
+</pre>
+</div></div> </td><td colspan="1" rowspan="1" class="confluenceTd"> For working with <a shape="rect" class="external-link" href="http://aws.amazon.com/cloudwatch/" rel="nofollow">Amazon's CloudWatch (CW)</a>. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect" href="aws-ddb.html" title="AWS-DDB">AWS-DDB</a> / <a shape="rect" href="aws.html" title="AWS">camel-aws</a>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
 <pre class="code-xml">
 aws-ddb://tableName[?options]

Modified: websites/production/camel/content/download-archives.html
==============================================================================
--- websites/production/camel/content/download-archives.html (original)
+++ websites/production/camel/content/download-archives.html Thu Dec 13 07:43:35 2012
@@ -85,7 +85,7 @@
 
 <p>All time Apache Camel releases notes:</p>
 
-<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-2100-release.html" title="Camel 2.10.0 Release">Camel 2.10.0 Release</a></li><li><a shape="rect" href="camel-2101-release.html" title="Camel 2.10.1 Release">Camel 2.10.1 Release</a></li><li><a shape="rect" href="camel-2102-release.htm
 l" title="Camel 2.10.2 Release">Camel 2.10.2 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">Ca
 mel 2.7.3 Release</a></li><li><a shape="rect" href="camel-274-release.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-286-release.html" title="Camel 2.8.6 Release">Camel 2.8.6 Release</a></li><li><a sh
 ape="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="camel-292-release.html" title="Camel 2.9.2 Release">Camel 2.9.2 Release</a></li><li><a shape="rect" href="camel-293-release.html" title="Camel 2.9.3 Release">Camel 2.9.3 Release</a></li><li><a shape="rect" href="camel-294-release.html" title="Camel 2.9.4 Release">Camel 2.9.4 Release</a></li><li><a shape="rect" href="download-archives.html" title="Download Archives">Download Archives</a></li></ul></div>
+<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-2100-release.html" title="Camel 2.10.0 Release">Camel 2.10.0 Release</a></li><li><a shape="rect" href="camel-2101-release.html" title="Camel 2.10.1 Release">Camel 2.10.1 Release</a></li><li><a shape="rect" href="camel-2102-release.htm
 l" title="Camel 2.10.2 Release">Camel 2.10.2 Release</a></li><li><a shape="rect" href="camel-2103-release.html" title="Camel 2.10.3 Release">Camel 2.10.3 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-release.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-286-release.html" title="Camel 2.8.6 Release">Camel 2.8.6 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="camel-292-release.html" title="Camel 2.9.2 Release">Camel 2.9.2 Release</a></li><li><a shape="rect" href="camel-293-release.html" title="Camel 2.9.3 Release">Camel 2.9.3 Release</a></li><li><a shape="rect" href="camel-294-release.html" title="Camel 2.9.4 Release">Camel 2.9.4 Release</a></li><li><a shape="rect" href="camel-295-release.html" title="Camel 2.9.5 Release">Camel 2.9.5 Release</a></li><li><a shape="rect" href="download-archives.html" title="Download Archives">Download Archives</a></li></ul></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/camel/content/faq.html
==============================================================================
--- websites/production/camel/content/faq.html (original)
+++ websites/production/camel/content/faq.html Thu Dec 13 07:43:35 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-retry-processing-a-message-from-a-certain-point-back-or-an-entire-route.html" title="How do I retry processing a message from a certain point back or an entire route">How do I retry processing a message from a certain point back or an entire route</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 P
 laceholder 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 shape="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 Act
 iveMQ 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-does-my-file-consumer-not-pick-up-the-file-and-how-do-i-let-the-file-consumer-use-the-camel-error-handler.html" title="Why d
 oes my file consumer not pick up the file, and how do I let the file consumer use the Camel error handler?">Why does my file consumer not pick up the file, and how do I let the file consumer use the Camel error handler?</a></li><li><a shape="rect" href="why-does-useoriginalmessage-with-error-handler-not-work-as-expected.html" title="Why does useOriginalMessage with error handler not work as expected?">Why does useOriginalMessage with error handler not work as expected?</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-is-the-exception-null-when-i-use-onexception.html" title="Why is the exception null when
  I use onException">Why is the exception null when I use onException</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-retry-processing-a-message-from-a-certain-point-back-or-an-entire-route.html" title="How do I retry processing a message from a certain point back or an entire route">How do I retry processing a message from a certain point back or an entire route</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 P
 laceholder 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 shape="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 Act
 iveMQ 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-does-my-file-consumer-not-pick-up-the-file-and-how-do-i-let-the-file-consumer-use-the-camel-error-handler.html" title="Why d
 oes my file consumer not pick up the file, and how do I let the file consumer use the Camel error handler?">Why does my file consumer not pick up the file, and how do I let the file consumer use the Camel error handler?</a></li><li><a shape="rect" href="why-does-useoriginalmessage-with-error-handler-not-work-as-expected.html" title="Why does useOriginalMessage with error handler not work as expected?">Why does useOriginalMessage with error handler not work as expected?</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-message-body-empty.html" title="Why is my message body empty?">Why is my message body empty?</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 i
 n JConsole</a></li><li><a shape="rect" href="why-is-the-exception-null-when-i-use-onexception.html" title="Why is the exception null when I use onException">Why is the exception null when I use onException</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/index.html
==============================================================================
--- websites/production/camel/content/index.html (original)
+++ websites/production/camel/content/index.html Thu Dec 13 07:43:35 2012
@@ -106,6 +106,30 @@ There's a great discussion about Camel a
 <div class="blog-post-listing">
             <div class="logo-heading-block">
             <span class="logoBlock">
+                <a shape="rect" class="userLogoLink" href="https://cwiki.apache.org/confluence/display/~hadrian@apache.org">
+               <img class="userLogo logo" src="index.userimage/0e406ed.jpg" 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/display/~hadrian@apache.org">Hadrian Zbarcea</a> posted on Dec 13, 2012</div>
+                <a shape="rect" class="blogHeading" href="https://cwiki.apache.org/confluence/display/CAMEL/2012/12/13/Apache+Camel+2.10.3+and+2.9.5+Released">Apache Camel 2.10.3 and 2.9.5 Released</a>
+            
+        </div>
+    
+    <div class="wiki-content">
+        <p>The Camel community announces the immediate availability of two new minor releases camel-2.9.5 and camel-2.10.3. This announcement is actually one week late, as the official releases took place last week.</p>
+
+<p>The artifacts are published (for a week now) 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 release notes for the respective versions <a shape="rect" href="camel-2103-release.html" title="Camel 2.10.3 Release">2.10.3</a> and <a shape="rect" href="camel-295-release.html" title="Camel 2.9.5 Release">2.9.5</a>.</p>
+
+<p>Many thanks to the Camel community for the hard work and the two new releases.</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/display/~muellerc">
                <img class="userLogo logo" src="index.userimage/muellerc-21094-pp-204.jpg" alt="User icon: muellerc" title="muellerc">
            </a>            </span>
@@ -242,49 +266,6 @@ Christian</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/display/~davsclaus">
-               <img class="userLogo logo" src="index.userimage/davsclaus-43496-pp-claus-ibsen-head-shot2.png" alt="User icon: davsclaus" title="davsclaus">
-           </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/display/~davsclaus">Claus Ibsen</a> posted on Jul 20, 2012</div>
-                <a shape="rect" class="blogHeading" href="https://cwiki.apache.org/confluence/display/CAMEL/2012/07/20/Happy+5+years+birthday+Apache+Camel">Happy 5 years birthday Apache Camel</a>
-            
-        </div>
-    
-    <div class="wiki-content">
-        <p>Apache Camel turned 5 years old, on the 2nd of July 2012. Happy Birthday.</p>
-
-<p><span class="image-wrap" style="display: block; text-align: center"><img src="index.data/5-years2.jpg" style="border: 1px solid black"></span></p>
-
-<p>On that day 5 years ago Apache Camel 1.0 was released, just about 3.5 months after James Strachan did the very <a shape="rect" class="external-link" href="http://svn.apache.org/viewvc/activemq/camel/trunk/?pathrev=519901">first commit</a> of what became the Apache Camel codebase.</p>
-
-<p>Every since the first release Camel has gone from strength to strength, with many new releases since</p>
-<ul><li>A total of 11 release of the Camel 1.x series.</li><li>And so far 23 releases (and 3 milestones, and 1 RC) of the Camel 2.x series.</li></ul>
-
-
-<p>Just to name a few noteworthy highlights in the last five years:</p>
-<ul><li>First commit on March 19th 2007</li><li>Camel 1.0 was released on July 2th 2007, which was a <a shape="rect" class="external-link" href="http://java.dzone.com/articles/apache-camel-was-awesome-v10?mz=62823-enterprise-integration" rel="nofollow">very fantastic start</a>.</li><li>Camel 2.0 was released in August 2009</li><li>Apache Camel became Top Level Project in January 2009</li><li><a shape="rect" href="books.html" title="Books">Camel in Action book</a> published in January 2010</li><li>Camel <a shape="rect" href="team.html" title="Team">Team</a> has grown from 7 to 34 committers</li><li>The codebase has grown more than 10x since the 1.0 release</li><li>Number of components has grown from 18 to more than 120</li><li>And just recently Apache Camel 2.10 was released, including many new components contributed by the community</li></ul>
-
-
-<p>The Camel community is a very active community with a lot of collaboration around the Apache Camel project. Most noticeable is the fact the community builds many custom Camel <a shape="rect" href="components.html" title="Components">Components</a> and donate these to the project. That is why the project have grown from 18 to more than 120 components in these five years. As we write this there is new components on the way for Redis, CMIS, and more to come in the next 2.11 release.</p>
-
-<p>The word of the Apache Camel project is also spread with the fantastic help of the community. We have people write articles for both print and online magazines, as well the increasing number of <a shape="rect" href="articles.html" title="Articles">blog posts</a> about Apache Camel. We also see Apache Camel being presented at an increasing number of Java conferences, and not only by people from the Camel <a shape="rect" href="team.html" title="Team">Team</a> but also people from the community.</p>
-
-<p>There is also a growing number of people and posts on the various Camel forums such as the <a shape="rect" href="mailing-lists.html" title="Mailing Lists">mailing list</a>. And as well on 3rd party sites such as <a shape="rect" class="external-link" href="http://stackoverflow.com/questions/tagged/apache-camel" rel="nofollow">Stackoverflow</a>, as shown by the next couple of graphs:<br clear="none">
-<span class="image-wrap" style="float: left"><img src="index.data/Screen+Shot+2012-07-20+at+2.21.57+PM.png" style="border: 1px solid black"></span></p>
-
-<p><span class="image-wrap" style="float: left"><img src="index.data/Screen+Shot+2012-07-20+at+2.22.04+PM.png" style="border: 1px solid black"></span></p>
-
-<p>All together 5 fantastic first years. Cheers for another great years to come ahead.</p>
-    </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>
 

Added: websites/production/camel/content/management-example.data/Camel-JMX-Console.png
==============================================================================
Binary file - no diff available.

Propchange: websites/production/camel/content/management-example.data/Camel-JMX-Console.png
------------------------------------------------------------------------------
    svn:mime-type = image/png