Author: buildbot
Date: Tue May 28 05:27:31 2013
New Revision: 863399

Log:
Production update by buildbot for camel

Modified:
    websites/production/camel/content/book-component-appendix.html
    websites/production/camel/content/book-in-one-page.html
    websites/production/camel/content/cache/main.pageCache
    websites/production/camel/content/properties.html
    websites/production/camel/content/using-propertyplaceholder.html

Modified: websites/production/camel/content/book-component-appendix.html
==============================================================================
--- websites/production/camel/content/book-component-appendix.html (original)
+++ websites/production/camel/content/book-component-appendix.html Tue May 28 
05:27:31 2013
@@ -14240,6 +14240,26 @@ destination=mock:result
 
 <p>Notice how the hello bean is using pure Spring property placeholders using 
the ${ } notation. And in the Camel routes we use the Camel placeholder 
notation with {{ }}.</p>
 
+<h4><a shape="rect" 
name="BookComponentAppendix-ClashingSpringpropertyplaceholderswithCamelsSimplelanguage"></a>Clashing
 Spring property placeholders with Camels <a shape="rect" href="simple.html" 
title="Simple">Simple</a> language</h4>
+<p>Take notice when using Spring bridging placeholder then the spring ${ } 
syntax clashes with the <a shape="rect" href="simple.html" 
title="Simple">Simple</a> in Camel, and therefore take care. For example:</p>
+<div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
+<pre class="code-java">
+&lt;setHeader headerName=<span 
class="code-quote">"Exchange.FILE_NAME"</span>&gt;
+  &lt;simple&gt;{{file.rootdir}}/${in.header.CamelFileName}&lt;/simple&gt;
+&lt;/setHeader&gt;
+</pre>
+</div></div>
+<p>clashes with Spring property placeholders, and you should use $simple{ } to 
indicate using the <a shape="rect" href="simple.html" title="Simple">Simple</a> 
language in Camel.</p>
+<div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
+<pre class="code-java">
+&lt;setHeader headerName=<span 
class="code-quote">"Exchange.FILE_NAME"</span>&gt;
+  
&lt;simple&gt;{{file.rootdir}}/$simple{in.header.CamelFileName}&lt;/simple&gt;
+&lt;/setHeader&gt;
+</pre>
+</div></div>
+
+<p>An alternative is to configure the <tt>PropertyPlaceholderConfigurer</tt> 
with <tt>ignoreUnresolvablePlaceholders</tt> option to <tt>true</tt>.</p>
+
 
 <h3><a shape="rect" 
name="BookComponentAppendix-OverridingpropertiesfromCameltestkit"></a>Overriding
 properties from Camel test kit</h3>
 <p><b>Available as of Camel 2.10</b></p>

Modified: websites/production/camel/content/book-in-one-page.html
==============================================================================
--- websites/production/camel/content/book-in-one-page.html (original)
+++ websites/production/camel/content/book-in-one-page.html Tue May 28 05:27:31 
2013
@@ -35293,6 +35293,26 @@ destination=mock:result
 
 <p>Notice how the hello bean is using pure Spring property placeholders using 
the ${ } notation. And in the Camel routes we use the Camel placeholder 
notation with {{ }}.</p>
 
+<h4><a shape="rect" 
name="BookInOnePage-ClashingSpringpropertyplaceholderswithCamelsSimplelanguage"></a>Clashing
 Spring property placeholders with Camels <a shape="rect" href="simple.html" 
title="Simple">Simple</a> language</h4>
+<p>Take notice when using Spring bridging placeholder then the spring ${ } 
syntax clashes with the <a shape="rect" href="simple.html" 
title="Simple">Simple</a> in Camel, and therefore take care. For example:</p>
+<div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
+<pre class="code-java">
+&lt;setHeader headerName=<span 
class="code-quote">"Exchange.FILE_NAME"</span>&gt;
+  &lt;simple&gt;{{file.rootdir}}/${in.header.CamelFileName}&lt;/simple&gt;
+&lt;/setHeader&gt;
+</pre>
+</div></div>
+<p>clashes with Spring property placeholders, and you should use $simple{ } to 
indicate using the <a shape="rect" href="simple.html" title="Simple">Simple</a> 
language in Camel.</p>
+<div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
+<pre class="code-java">
+&lt;setHeader headerName=<span 
class="code-quote">"Exchange.FILE_NAME"</span>&gt;
+  
&lt;simple&gt;{{file.rootdir}}/$simple{in.header.CamelFileName}&lt;/simple&gt;
+&lt;/setHeader&gt;
+</pre>
+</div></div>
+
+<p>An alternative is to configure the <tt>PropertyPlaceholderConfigurer</tt> 
with <tt>ignoreUnresolvablePlaceholders</tt> option to <tt>true</tt>.</p>
+
 
 <h3><a shape="rect" 
name="BookInOnePage-OverridingpropertiesfromCameltestkit"></a>Overriding 
properties from Camel test kit</h3>
 <p><b>Available as of Camel 2.10</b></p>

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

Modified: websites/production/camel/content/properties.html
==============================================================================
--- websites/production/camel/content/properties.html (original)
+++ websites/production/camel/content/properties.html Tue May 28 05:27:31 2013
@@ -758,6 +758,26 @@ destination=mock:result
 
 <p>Notice how the hello bean is using pure Spring property placeholders using 
the ${ } notation. And in the Camel routes we use the Camel placeholder 
notation with {{ }}.</p>
 
+<h4><a shape="rect" 
name="Properties-ClashingSpringpropertyplaceholderswithCamelsSimplelanguage"></a>Clashing
 Spring property placeholders with Camels <a shape="rect" href="simple.html" 
title="Simple">Simple</a> language</h4>
+<p>Take notice when using Spring bridging placeholder then the spring ${ } 
syntax clashes with the <a shape="rect" href="simple.html" 
title="Simple">Simple</a> in Camel, and therefore take care. For example:</p>
+<div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
+<pre class="code-java">
+&lt;setHeader headerName=<span 
class="code-quote">"Exchange.FILE_NAME"</span>&gt;
+  &lt;simple&gt;{{file.rootdir}}/${in.header.CamelFileName}&lt;/simple&gt;
+&lt;/setHeader&gt;
+</pre>
+</div></div>
+<p>clashes with Spring property placeholders, and you should use $simple{ } to 
indicate using the <a shape="rect" href="simple.html" title="Simple">Simple</a> 
language in Camel.</p>
+<div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
+<pre class="code-java">
+&lt;setHeader headerName=<span 
class="code-quote">"Exchange.FILE_NAME"</span>&gt;
+  
&lt;simple&gt;{{file.rootdir}}/$simple{in.header.CamelFileName}&lt;/simple&gt;
+&lt;/setHeader&gt;
+</pre>
+</div></div>
+
+<p>An alternative is to configure the <tt>PropertyPlaceholderConfigurer</tt> 
with <tt>ignoreUnresolvablePlaceholders</tt> option to <tt>true</tt>.</p>
+
 
 <h3><a shape="rect" 
name="Properties-OverridingpropertiesfromCameltestkit"></a>Overriding 
properties from Camel test kit</h3>
 <p><b>Available as of Camel 2.10</b></p>

Modified: websites/production/camel/content/using-propertyplaceholder.html
==============================================================================
--- websites/production/camel/content/using-propertyplaceholder.html (original)
+++ websites/production/camel/content/using-propertyplaceholder.html Tue May 28 
05:27:31 2013
@@ -737,6 +737,26 @@ destination=mock:result
 
 <p>Notice how the hello bean is using pure Spring property placeholders using 
the ${ } notation. And in the Camel routes we use the Camel placeholder 
notation with {{ }}.</p>
 
+<h4><a shape="rect" 
name="UsingPropertyPlaceholder-ClashingSpringpropertyplaceholderswithCamelsSimplelanguage"></a>Clashing
 Spring property placeholders with Camels <a shape="rect" href="simple.html" 
title="Simple">Simple</a> language</h4>
+<p>Take notice when using Spring bridging placeholder then the spring ${ } 
syntax clashes with the <a shape="rect" href="simple.html" 
title="Simple">Simple</a> in Camel, and therefore take care. For example:</p>
+<div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
+<pre class="code-java">
+&lt;setHeader headerName=<span 
class="code-quote">"Exchange.FILE_NAME"</span>&gt;
+  &lt;simple&gt;{{file.rootdir}}/${in.header.CamelFileName}&lt;/simple&gt;
+&lt;/setHeader&gt;
+</pre>
+</div></div>
+<p>clashes with Spring property placeholders, and you should use $simple{ } to 
indicate using the <a shape="rect" href="simple.html" title="Simple">Simple</a> 
language in Camel.</p>
+<div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
+<pre class="code-java">
+&lt;setHeader headerName=<span 
class="code-quote">"Exchange.FILE_NAME"</span>&gt;
+  
&lt;simple&gt;{{file.rootdir}}/$simple{in.header.CamelFileName}&lt;/simple&gt;
+&lt;/setHeader&gt;
+</pre>
+</div></div>
+
+<p>An alternative is to configure the <tt>PropertyPlaceholderConfigurer</tt> 
with <tt>ignoreUnresolvablePlaceholders</tt> option to <tt>true</tt>.</p>
+
 
 <h3><a shape="rect" 
name="UsingPropertyPlaceholder-OverridingpropertiesfromCameltestkit"></a>Overriding
 properties from Camel test kit</h3>
 <p><b>Available as of Camel 2.10</b></p>


Reply via email to