git commit: CAMEL-7947 Support to set SSLContext in the camel-restlet

2014-10-31 Thread ningjiang
Repository: camel
Updated Branches:
  refs/heads/master c8e2b3e21 - ec78c692b


CAMEL-7947 Support to set SSLContext in the camel-restlet


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/ec78c692
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/ec78c692
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/ec78c692

Branch: refs/heads/master
Commit: ec78c692b655922a78f8c2584253707c80dc887d
Parents: c8e2b3e
Author: Willem Jiang willem.ji...@gmail.com
Authored: Fri Oct 31 16:47:49 2014 +0800
Committer: Willem Jiang willem.ji...@gmail.com
Committed: Fri Oct 31 16:48:15 2014 +0800

--
 .../component/restlet/RestletComponent.java |  76 ++
 .../component/restlet/RestletEndpoint.java  |  10 ++
 ...estletHttpsWithSSLContextParametersTest.java | 103 +++
 .../src/test/resources/jsse/localhost.ks| Bin 0 - 1265 bytes
 4 files changed, 189 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/camel/blob/ec78c692/components/camel-restlet/src/main/java/org/apache/camel/component/restlet/RestletComponent.java
--
diff --git 
a/components/camel-restlet/src/main/java/org/apache/camel/component/restlet/RestletComponent.java
 
b/components/camel-restlet/src/main/java/org/apache/camel/component/restlet/RestletComponent.java
index c5f582a..2d62bf0 100644
--- 
a/components/camel-restlet/src/main/java/org/apache/camel/component/restlet/RestletComponent.java
+++ 
b/components/camel-restlet/src/main/java/org/apache/camel/component/restlet/RestletComponent.java
@@ -16,13 +16,19 @@
  */
 package org.apache.camel.component.restlet;
 
+import java.io.IOException;
 import java.net.URI;
+import java.security.GeneralSecurityException;
+import java.security.InvalidParameterException;
 import java.util.ArrayList;
 import java.util.HashMap;
 import java.util.List;
 import java.util.Locale;
 import java.util.Map;
 
+import javax.net.ssl.SSLContext;
+import javax.net.ssl.SSLEngine;
+
 import org.apache.camel.CamelContext;
 import org.apache.camel.Consumer;
 import org.apache.camel.Endpoint;
@@ -35,6 +41,7 @@ import org.apache.camel.util.HostUtils;
 import org.apache.camel.util.ObjectHelper;
 import org.apache.camel.util.URISupport;
 import org.apache.camel.util.UnsafeUriCharactersEncoder;
+import org.apache.camel.util.jsse.SSLContextParameters;
 import org.restlet.Component;
 import org.restlet.Restlet;
 import org.restlet.Server;
@@ -236,6 +243,67 @@ public class RestletComponent extends 
HeaderFilterStrategyComponent implements R
 protected Server createServer(RestletEndpoint endpoint) {
 return new Server(component.getContext().createChildContext(), 
Protocol.valueOf(endpoint.getProtocol()), endpoint.getPort());
 }
+
+protected String stringArrayToString(String[] strings) {
+StringBuffer result = new StringBuffer();
+for (String str : strings) {
+result.append(str);
+result.append( );
+}
+return result.toString();
+}
+
+protected void setupServerWithSSLContext(SeriesParameter params, 
SSLContextParameters scp) throws GeneralSecurityException, IOException {
+// set the SSLContext parameters
+params.add(sslContextFactory,
+org.restlet.engine.ssl.DefaultSslContextFactory);
+
+SSLContext context = scp.createSSLContext();
+SSLEngine engine = context.createSSLEngine();
+
+params.add(enabledProtocols, 
stringArrayToString(engine.getEnabledProtocols()));
+params.add(enabledCipherSuites, 
stringArrayToString(engine.getEnabledCipherSuites()));
+
+if (scp.getSecureSocketProtocol() != null) {
+params.add(protocol, scp.getSecureSocketProtocol());
+}
+if (scp.getServerParameters() != null  
scp.getServerParameters().getClientAuthentication() != null) {
+boolean b = 
!scp.getServerParameters().getClientAuthentication().equals(NONE);
+params.add(needClientAuthentication, String.valueOf(b));
+}
+if (scp.getKeyManagers() != null) { 
+if (scp.getKeyManagers().getAlgorithm() != null) {
+params.add(keyManagerAlgorithm, 
scp.getKeyManagers().getAlgorithm());
+}
+if (scp.getKeyManagers().getKeyPassword() != null) {
+params.add(keyPassword, 
scp.getKeyManagers().getKeyPassword());
+}
+if (scp.getKeyManagers().getKeyStore().getResource() != null) {
+params.add(keyStorePath, 
scp.getKeyManagers().getKeyStore().getResource());
+}
+if (scp.getKeyManagers().getKeyStore().getPassword() != null) {
+params.add(keyStorePassword, 

[1/4] Revert [maven-release-plugin] rollback the release of camel-2.13.3

2014-10-31 Thread cmueller
Repository: camel
Updated Branches:
  refs/heads/camel-2.13.x a13eaa9e9 - c280b27de


http://git-wip-us.apache.org/repos/asf/camel/blob/06c48b2c/tooling/maven/camel-maven-plugin/pom.xml
--
diff --git a/tooling/maven/camel-maven-plugin/pom.xml 
b/tooling/maven/camel-maven-plugin/pom.xml
index 7ee92eb..8d0ac4d 100644
--- a/tooling/maven/camel-maven-plugin/pom.xml
+++ b/tooling/maven/camel-maven-plugin/pom.xml
@@ -21,7 +21,7 @@
   parent
 groupIdorg.apache.camel/groupId
 artifactIdmaven-plugins/artifactId
-version2.13.3-SNAPSHOT/version
+version2.13.4-SNAPSHOT/version
   /parent
 
   artifactIdcamel-maven-plugin/artifactId

http://git-wip-us.apache.org/repos/asf/camel/blob/06c48b2c/tooling/maven/camel-package-maven-plugin/pom.xml
--
diff --git a/tooling/maven/camel-package-maven-plugin/pom.xml 
b/tooling/maven/camel-package-maven-plugin/pom.xml
index be1220b..b9e5224 100644
--- a/tooling/maven/camel-package-maven-plugin/pom.xml
+++ b/tooling/maven/camel-package-maven-plugin/pom.xml
@@ -21,7 +21,7 @@
   parent
 groupIdorg.apache.camel/groupId
 artifactIdmaven-plugins/artifactId
-version2.13.3-SNAPSHOT/version
+version2.13.4-SNAPSHOT/version
   /parent
 
   artifactIdcamel-package-maven-plugin/artifactId

http://git-wip-us.apache.org/repos/asf/camel/blob/06c48b2c/tooling/maven/guice-maven-plugin/pom.xml
--
diff --git a/tooling/maven/guice-maven-plugin/pom.xml 
b/tooling/maven/guice-maven-plugin/pom.xml
index af1a632..9a377bb 100644
--- a/tooling/maven/guice-maven-plugin/pom.xml
+++ b/tooling/maven/guice-maven-plugin/pom.xml
@@ -21,7 +21,7 @@
   parent
 groupIdorg.apache.camel/groupId
 artifactIdmaven-plugins/artifactId
-version2.13.3-SNAPSHOT/version
+version2.13.4-SNAPSHOT/version
   /parent
 
   artifactIdguice-maven-plugin/artifactId

http://git-wip-us.apache.org/repos/asf/camel/blob/06c48b2c/tooling/maven/pom.xml
--
diff --git a/tooling/maven/pom.xml b/tooling/maven/pom.xml
index 3af3621..6479e31 100644
--- a/tooling/maven/pom.xml
+++ b/tooling/maven/pom.xml
@@ -21,7 +21,7 @@
   parent
 groupIdorg.apache.camel/groupId
 artifactIdtooling/artifactId
-version2.13.3-SNAPSHOT/version
+version2.13.4-SNAPSHOT/version
   /parent
 
   artifactIdmaven-plugins/artifactId

http://git-wip-us.apache.org/repos/asf/camel/blob/06c48b2c/tooling/pom.xml
--
diff --git a/tooling/pom.xml b/tooling/pom.xml
index fefcbe9..17cd100 100644
--- a/tooling/pom.xml
+++ b/tooling/pom.xml
@@ -21,7 +21,7 @@
   parent
 groupIdorg.apache.camel/groupId
 artifactIdcamel-parent/artifactId
-version2.13.3-SNAPSHOT/version
+version2.13.4-SNAPSHOT/version
 relativePath../parent/relativePath
   /parent
 

http://git-wip-us.apache.org/repos/asf/camel/blob/06c48b2c/tooling/spi-annotations/pom.xml
--
diff --git a/tooling/spi-annotations/pom.xml b/tooling/spi-annotations/pom.xml
index 8c0cf97..0393653 100644
--- a/tooling/spi-annotations/pom.xml
+++ b/tooling/spi-annotations/pom.xml
@@ -22,7 +22,7 @@
   parent
 groupIdorg.apache.camel/groupId
 artifactIdtooling/artifactId
-version2.13.3-SNAPSHOT/version
+version2.13.4-SNAPSHOT/version
   /parent
 
   !-- should not be OSGi bundle as we shade this component into camel-core --



[4/4] git commit: fixed the Maven version numbers

2014-10-31 Thread cmueller
fixed the Maven version numbers


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/c280b27d
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/c280b27d
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/c280b27d

Branch: refs/heads/camel-2.13.x
Commit: c280b27de5955278ddba445db6caff013b40b283
Parents: 06c48b2
Author: Christian Mueller cmuel...@apache.org
Authored: Fri Oct 31 21:57:29 2014 +0100
Committer: Christian Mueller cmuel...@apache.org
Committed: Fri Oct 31 21:57:29 2014 +0100

--
 etc/pom.xml   | 2 +-
 tests/camel-itest-karaf/pom.xml   | 2 +-
 tests/camel-itest-osgi/pom.xml| 2 +-
 tests/camel-itest-performance/pom.xml | 2 +-
 tests/camel-performance/pom.xml   | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/camel/blob/c280b27d/etc/pom.xml
--
diff --git a/etc/pom.xml b/etc/pom.xml
index c759593..638b572 100755
--- a/etc/pom.xml
+++ b/etc/pom.xml
@@ -23,7 +23,7 @@
   parent
 groupIdorg.apache.camel/groupId
 artifactIdcamel-parent/artifactId
-version2.13.3-SNAPSHOT/version
+version2.13.4-SNAPSHOT/version
 relativePath../parent/relativePath
   /parent
 

http://git-wip-us.apache.org/repos/asf/camel/blob/c280b27d/tests/camel-itest-karaf/pom.xml
--
diff --git a/tests/camel-itest-karaf/pom.xml b/tests/camel-itest-karaf/pom.xml
index c423882..1e97e5b 100644
--- a/tests/camel-itest-karaf/pom.xml
+++ b/tests/camel-itest-karaf/pom.xml
@@ -23,7 +23,7 @@
 parent
 groupIdorg.apache.camel/groupId
 artifactIdtests/artifactId
-version2.13.3-SNAPSHOT/version
+version2.13.4-SNAPSHOT/version
 /parent
 
 artifactIdcamel-itest-karaf/artifactId

http://git-wip-us.apache.org/repos/asf/camel/blob/c280b27d/tests/camel-itest-osgi/pom.xml
--
diff --git a/tests/camel-itest-osgi/pom.xml b/tests/camel-itest-osgi/pom.xml
index 7b1fb46..6ac47b1 100644
--- a/tests/camel-itest-osgi/pom.xml
+++ b/tests/camel-itest-osgi/pom.xml
@@ -22,7 +22,7 @@
   parent
 groupIdorg.apache.camel/groupId
 artifactIdtests/artifactId
-version2.13.3-SNAPSHOT/version
+version2.13.4-SNAPSHOT/version
   /parent
 
   artifactIdcamel-itest-osgi/artifactId

http://git-wip-us.apache.org/repos/asf/camel/blob/c280b27d/tests/camel-itest-performance/pom.xml
--
diff --git a/tests/camel-itest-performance/pom.xml 
b/tests/camel-itest-performance/pom.xml
index 0e2b837..f23ff54 100644
--- a/tests/camel-itest-performance/pom.xml
+++ b/tests/camel-itest-performance/pom.xml
@@ -22,7 +22,7 @@
   parent
 groupIdorg.apache.camel/groupId
 artifactIdtests/artifactId
-version2.13.3-SNAPSHOT/version
+version2.13.4-SNAPSHOT/version
   /parent
 
   artifactIdcamel-itest-performance/artifactId

http://git-wip-us.apache.org/repos/asf/camel/blob/c280b27d/tests/camel-performance/pom.xml
--
diff --git a/tests/camel-performance/pom.xml b/tests/camel-performance/pom.xml
index fa41124..1e4ea84 100644
--- a/tests/camel-performance/pom.xml
+++ b/tests/camel-performance/pom.xml
@@ -22,7 +22,7 @@
   parent
 groupIdorg.apache.camel/groupId
 artifactIdtests/artifactId
-version2.13.3-SNAPSHOT/version
+version2.13.4-SNAPSHOT/version
   /parent
 
   artifactIdcamel-performance/artifactId



[2/4] Revert [maven-release-plugin] rollback the release of camel-2.13.3

2014-10-31 Thread cmueller
http://git-wip-us.apache.org/repos/asf/camel/blob/06c48b2c/components/camel-salesforce/pom.xml
--
diff --git a/components/camel-salesforce/pom.xml 
b/components/camel-salesforce/pom.xml
index 680db4c..b308825 100644
--- a/components/camel-salesforce/pom.xml
+++ b/components/camel-salesforce/pom.xml
@@ -22,7 +22,7 @@
 parent
 groupIdorg.apache.camel/groupId
 artifactIdcomponents/artifactId
-version2.13.3-SNAPSHOT/version
+version2.13.4-SNAPSHOT/version
 /parent
 
 artifactIdcamel-salesforce-parent/artifactId

http://git-wip-us.apache.org/repos/asf/camel/blob/06c48b2c/components/camel-sap-netweaver/pom.xml
--
diff --git a/components/camel-sap-netweaver/pom.xml 
b/components/camel-sap-netweaver/pom.xml
index 78e0612..6afc468 100644
--- a/components/camel-sap-netweaver/pom.xml
+++ b/components/camel-sap-netweaver/pom.xml
@@ -21,7 +21,7 @@
 parent
 artifactIdcomponents/artifactId
 groupIdorg.apache.camel/groupId
-version2.13.3-SNAPSHOT/version
+version2.13.4-SNAPSHOT/version
 /parent
 
 groupIdorg.apache.camel/groupId

http://git-wip-us.apache.org/repos/asf/camel/blob/06c48b2c/components/camel-saxon/pom.xml
--
diff --git a/components/camel-saxon/pom.xml b/components/camel-saxon/pom.xml
index ba51897..2b178de 100644
--- a/components/camel-saxon/pom.xml
+++ b/components/camel-saxon/pom.xml
@@ -21,7 +21,7 @@
   parent
 groupIdorg.apache.camel/groupId
 artifactIdcomponents/artifactId
-version2.13.3-SNAPSHOT/version
+version2.13.4-SNAPSHOT/version
   /parent
 
   artifactIdcamel-saxon/artifactId

http://git-wip-us.apache.org/repos/asf/camel/blob/06c48b2c/components/camel-scala/pom.xml
--
diff --git a/components/camel-scala/pom.xml b/components/camel-scala/pom.xml
index 01b68e8..b8de3d4 100644
--- a/components/camel-scala/pom.xml
+++ b/components/camel-scala/pom.xml
@@ -21,7 +21,7 @@
 parent
 groupIdorg.apache.camel/groupId
 artifactIdcomponents/artifactId
-version2.13.3-SNAPSHOT/version
+version2.13.4-SNAPSHOT/version
 /parent
 
 artifactIdcamel-scala/artifactId

http://git-wip-us.apache.org/repos/asf/camel/blob/06c48b2c/components/camel-script/pom.xml
--
diff --git a/components/camel-script/pom.xml b/components/camel-script/pom.xml
index 259a5bc..24b33c2 100644
--- a/components/camel-script/pom.xml
+++ b/components/camel-script/pom.xml
@@ -21,7 +21,7 @@
 parent
 groupIdorg.apache.camel/groupId
 artifactIdcomponents/artifactId
-version2.13.3-SNAPSHOT/version
+version2.13.4-SNAPSHOT/version
 /parent
 
 artifactIdcamel-script/artifactId

http://git-wip-us.apache.org/repos/asf/camel/blob/06c48b2c/components/camel-servlet/pom.xml
--
diff --git a/components/camel-servlet/pom.xml b/components/camel-servlet/pom.xml
index 443664f..d88393b 100644
--- a/components/camel-servlet/pom.xml
+++ b/components/camel-servlet/pom.xml
@@ -21,7 +21,7 @@
 parent
 groupIdorg.apache.camel/groupId
 artifactIdcomponents/artifactId
-version2.13.3-SNAPSHOT/version
+version2.13.4-SNAPSHOT/version
 /parent
 
   groupIdorg.apache.camel/groupId

http://git-wip-us.apache.org/repos/asf/camel/blob/06c48b2c/components/camel-servletlistener/pom.xml
--
diff --git a/components/camel-servletlistener/pom.xml 
b/components/camel-servletlistener/pom.xml
index 77419bc..7a918c7 100644
--- a/components/camel-servletlistener/pom.xml
+++ b/components/camel-servletlistener/pom.xml
@@ -21,7 +21,7 @@
 parent
 groupIdorg.apache.camel/groupId
 artifactIdcomponents/artifactId
-version2.13.3-SNAPSHOT/version
+version2.13.4-SNAPSHOT/version
 /parent
 
   groupIdorg.apache.camel/groupId

http://git-wip-us.apache.org/repos/asf/camel/blob/06c48b2c/components/camel-shiro/pom.xml
--
diff --git a/components/camel-shiro/pom.xml b/components/camel-shiro/pom.xml
index 96d90a0..b13208d 100644
--- a/components/camel-shiro/pom.xml
+++ b/components/camel-shiro/pom.xml
@@ -21,7 +21,7 @@
parent
artifactIdcomponents/artifactId
groupIdorg.apache.camel/groupId
-   version2.13.3-SNAPSHOT/version
+   version2.13.4-SNAPSHOT/version
/parent
 
artifactIdcamel-shiro/artifactId

http://git-wip-us.apache.org/repos/asf/camel/blob/06c48b2c/components/camel-sip/pom.xml

[3/4] git commit: Revert [maven-release-plugin] rollback the release of camel-2.13.3

2014-10-31 Thread cmueller
Revert [maven-release-plugin] rollback the release of camel-2.13.3

This reverts commit 2f2dde16c6b954ce77eda4921e1fddbf0d39268f.


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/06c48b2c
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/06c48b2c
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/06c48b2c

Branch: refs/heads/camel-2.13.x
Commit: 06c48b2c456aa7e90e948e4750e31fa734d30945
Parents: a13eaa9
Author: Christian Mueller cmuel...@apache.org
Authored: Fri Oct 31 21:53:24 2014 +0100
Committer: Christian Mueller cmuel...@apache.org
Committed: Fri Oct 31 21:53:24 2014 +0100

--
 apache-camel/pom.xml   | 2 +-
 buildingtools/pom.xml  | 2 +-
 camel-core/pom.xml | 2 +-
 components/camel-ahc/pom.xml   | 2 +-
 components/camel-amqp/pom.xml  | 2 +-
 components/camel-apns/pom.xml  | 2 +-
 components/camel-atom/pom.xml  | 2 +-
 components/camel-avro/pom.xml  | 2 +-
 components/camel-aws/pom.xml   | 2 +-
 components/camel-bam/pom.xml   | 2 +-
 components/camel-base64/pom.xml| 2 +-
 components/camel-bean-validator/pom.xml| 2 +-
 components/camel-beanio/pom.xml| 2 +-
 components/camel-bindy/pom.xml | 2 +-
 components/camel-blueprint/pom.xml | 2 +-
 components/camel-cache/pom.xml | 2 +-
 components/camel-castor/pom.xml| 2 +-
 components/camel-cdi/pom.xml   | 2 +-
 components/camel-cmis/pom.xml  | 2 +-
 components/camel-cometd/pom.xml| 2 +-
 components/camel-context/pom.xml   | 2 +-
 components/camel-core-osgi/pom.xml | 2 +-
 components/camel-core-xml/pom.xml  | 2 +-
 components/camel-couchdb/pom.xml   | 2 +-
 components/camel-crypto/pom.xml| 2 +-
 components/camel-csv/pom.xml   | 2 +-
 components/camel-cxf-transport/pom.xml | 2 +-
 components/camel-cxf/pom.xml   | 2 +-
 components/camel-disruptor/pom.xml | 2 +-
 components/camel-dns/pom.xml   | 2 +-
 components/camel-dozer/pom.xml | 2 +-
 components/camel-eclipse/pom.xml   | 2 +-
 components/camel-ejb/pom.xml   | 2 +-
 components/camel-elasticsearch/pom.xml | 2 +-
 components/camel-eventadmin/pom.xml| 2 +-
 components/camel-exec/pom.xml  | 2 +-
 components/camel-facebook/pom.xml  | 2 +-
 components/camel-flatpack/pom.xml  | 2 +-
 components/camel-fop/pom.xml   | 2 +-
 components/camel-freemarker/pom.xml| 2 +-
 components/camel-ftp/pom.xml   | 2 +-
 components/camel-gae/pom.xml   | 2 +-
 components/camel-geocoder/pom.xml  | 2 +-
 components/camel-groovy/pom.xml| 2 +-
 components/camel-gson/pom.xml  | 2 +-
 components/camel-guava-eventbus/pom.xml| 2 +-
 components/camel-guice/pom.xml | 2 +-
 components/camel-hawtdb/pom.xml| 2 +-
 components/camel-hazelcast/pom.xml | 2 +-
 components/camel-hbase/pom.xml | 2 +-
 components/camel-hdfs/pom.xml  | 2 +-
 components/camel-hdfs2/pom.xml | 2 +-
 components/camel-hl7/pom.xml   | 2 +-
 components/camel-http/pom.xml  | 2 +-
 components/camel-http4/pom.xml | 2 +-
 components/camel-ibatis/pom.xml| 2 +-
 components/camel-ical/pom.xml  

svn commit: r6978 - /release/camel/apache-camel/2.13.3/

2014-10-31 Thread cmueller
Author: cmueller
Date: Fri Oct 31 21:14:20 2014
New Revision: 6978

Log:
Apache Camel 2.13.3 release distro placeholder.

Added:
release/camel/apache-camel/2.13.3/



svn commit: r927558 - in /websites/production/camel/content: cache/main.pageCache camel-2133.html community.html download-archives.html download.html

2014-10-31 Thread buildbot
Author: buildbot
Date: Fri Oct 31 21:19:06 2014
New Revision: 927558

Log:
Production update by buildbot for camel

Added:
websites/production/camel/content/camel-2133.html
Modified:
websites/production/camel/content/cache/main.pageCache
websites/production/camel/content/community.html
websites/production/camel/content/download-archives.html
websites/production/camel/content/download.html

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

Added: websites/production/camel/content/camel-2133.html
==
--- websites/production/camel/content/camel-2133.html (added)
+++ websites/production/camel/content/camel-2133.html Fri Oct 31 21:19:06 2014
@@ -0,0 +1,176 @@
+!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=//camel.apache.org/styles/site.css rel=stylesheet 
type=text/css
+link href=//camel.apache.org/styles/type-settings.css rel=stylesheet 
type=text/css
+script src=//camel.apache.org/styles/prototype.js 
type=text/javascript/script
+script src=//camel.apache.org/styles/rico.js 
type=text/javascript/script
+script src=//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]--
+
+
+  link href='//camel.apache.org/styles/highlighter/styles/shCoreCamel.css' 
rel='stylesheet' type='text/css' /
+  link href='//camel.apache.org/styles/highlighter/styles/shThemeCamel.css' 
rel='stylesheet' type='text/css' /
+  script src='//camel.apache.org/styles/highlighter/scripts/shCore.js' 
type='text/javascript'/script
+  script src='//camel.apache.org/styles/highlighter/scripts/shBrushJava.js' 
type='text/javascript'/script
+  script src='//camel.apache.org/styles/highlighter/scripts/shBrushXml.js' 
type='text/javascript'/script
+  
+  script type=text/javascript
+  SyntaxHighlighter.defaults['toolbar'] = false;
+  SyntaxHighlighter.all();
+  /script
+
+title
+Apache Camel: Camel 2.13.3
+/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-contentdiv 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.htmlApache Camel/anbsp;gt;nbsp;a 
href=community.htmlCommunity/anbsp;gt;nbsp;a 
href=download.htmlDownload/anbsp;gt;nbsp;a 
href=camel-2133.htmlCamel 2.13.3/a
+  /div
+  !-- Quicklinks --
+div id=site-quicklinkspa shape=rect href=download.htmlDownload/a 
| a shape=rect href=javadoc.htmlJavaDoc/a | a shape=rect 
href=source.htmlSource/a | a shape=rect 
href=discussion-forums.htmlForums/a | a shape=rect 
href=support.htmlSupport/a/p/div
+  !-- Quicklinks --
+/div
+
+   table border=0
+   tbody
+tr
+td valign=top width=100%
+div class=wiki-content maincontenth1 
id=Camel2.13.3-Camel2.13.3releaseCamel 2.13.3 release/h1div 
style=padding-right:20px;float:left;margin-left:-20px;pimg 
class=confluence-embedded-image confluence-external-resource 

svn commit: r6979 - /release/camel/apache-camel/2.13.2/

2014-10-31 Thread cmueller
Author: cmueller
Date: Fri Oct 31 21:22:16 2014
New Revision: 6979

Log:
Removed the old release

Removed:
release/camel/apache-camel/2.13.2/



svn commit: r6980 - /release/camel/apache-camel/2.13.3/

2014-10-31 Thread cmueller
Author: cmueller
Date: Fri Oct 31 21:29:19 2014
New Revision: 6980

Log:
Apache Camel 2.13.3 released artifacts.

Added:
release/camel/apache-camel/2.13.3/apache-camel-2.13.3-src.zip   (with props)
release/camel/apache-camel/2.13.3/apache-camel-2.13.3-src.zip.asc
release/camel/apache-camel/2.13.3/apache-camel-2.13.3-src.zip.md5
release/camel/apache-camel/2.13.3/apache-camel-2.13.3-src.zip.sha1
release/camel/apache-camel/2.13.3/apache-camel-2.13.3.pom
release/camel/apache-camel/2.13.3/apache-camel-2.13.3.pom.asc
release/camel/apache-camel/2.13.3/apache-camel-2.13.3.pom.md5
release/camel/apache-camel/2.13.3/apache-camel-2.13.3.pom.sha1
release/camel/apache-camel/2.13.3/apache-camel-2.13.3.tar.gz   (with props)
release/camel/apache-camel/2.13.3/apache-camel-2.13.3.tar.gz.asc
release/camel/apache-camel/2.13.3/apache-camel-2.13.3.tar.gz.md5
release/camel/apache-camel/2.13.3/apache-camel-2.13.3.tar.gz.sha1
release/camel/apache-camel/2.13.3/apache-camel-2.13.3.zip   (with props)
release/camel/apache-camel/2.13.3/apache-camel-2.13.3.zip.asc
release/camel/apache-camel/2.13.3/apache-camel-2.13.3.zip.md5
release/camel/apache-camel/2.13.3/apache-camel-2.13.3.zip.sha1

Added: release/camel/apache-camel/2.13.3/apache-camel-2.13.3-src.zip
==
Binary file - no diff available.

Propchange: release/camel/apache-camel/2.13.3/apache-camel-2.13.3-src.zip
--
svn:mime-type = application/octet-stream

Added: release/camel/apache-camel/2.13.3/apache-camel-2.13.3-src.zip.asc
==
--- release/camel/apache-camel/2.13.3/apache-camel-2.13.3-src.zip.asc (added)
+++ release/camel/apache-camel/2.13.3/apache-camel-2.13.3-src.zip.asc Fri Oct 
31 21:29:19 2014
@@ -0,0 +1,18 @@
+-BEGIN PGP SIGNATURE-
+Version: GnuPG/MacGPG2 v2.0.22 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABAgAGBQJUT3jGAAoJEImh9lEqI5wsV1YP/3hdTWMNstj2fCJMQBINHMH6
+/1EpdmYEj1CMSCiP1lkXQB0LtyYqdDQWNRPZENpeFcwOOWhY5cjCRoUX8ELSCBnw
+n9qw7V738Ftk6fH2aJqI4o5HLb7pBUEFHSWAy967AHLNfgMbqDwsLGECWTODiPtg
+C7HSCNZfvJQeI2v1NwKBW/VxqGazU/4nSs5QBng3+qmcwKfQUs5E/gSajk7LJV+J
+6AhwbVH1kzJJwEUKM63nxIpEJ+3x2YTFqLhfMdvVgpTpGE/SAlQkM8Kxgk9iuMk+
+iR6BgIFbPC8pExW9XjtRP1xBREfO4dwhXMUSS71aGoc4FYH/JPR4QMmIqhZfKoki
+6AA18bsJqMySC4FSimR90NrrM6qgFw9MuwayFKfuov7KCRNGGm7am58Y8dqmR9gR
+VuZVnIrXsLDMWP/Lu8++uj3ZvjJN0liKNkHifjZt4VirXQ22f3DuH0nCsA1l6hjX
+6Vtsv8X9N3vZpksXzGm5Pklu0a29zAVLZCNRVdb3qiDW0OfaceZXj58CHQpYlDG6
+vdQUPVXxcWWCOpcib9R+KYTEgJApzoiaaEP7MErdtnCDnzU0asgQjEfyJY2NtAgW
+uIQNalrcHbul+lUsCr9zio/yZHYpF1F3mvuqfuYdDr6mxPO9F1+aQXIo+pSKa+Wc
+wA0A0OBw0voKrw29kl8h
+=/5wB
+-END PGP SIGNATURE-

Added: release/camel/apache-camel/2.13.3/apache-camel-2.13.3-src.zip.md5
==
--- release/camel/apache-camel/2.13.3/apache-camel-2.13.3-src.zip.md5 (added)
+++ release/camel/apache-camel/2.13.3/apache-camel-2.13.3-src.zip.md5 Fri Oct 
31 21:29:19 2014
@@ -0,0 +1 @@
+481960f5a5da6497bdb0453d88ffc408
\ No newline at end of file

Added: release/camel/apache-camel/2.13.3/apache-camel-2.13.3-src.zip.sha1
==
--- release/camel/apache-camel/2.13.3/apache-camel-2.13.3-src.zip.sha1 (added)
+++ release/camel/apache-camel/2.13.3/apache-camel-2.13.3-src.zip.sha1 Fri Oct 
31 21:29:19 2014
@@ -0,0 +1 @@
+4d318d4689921d885a801f3d43c052022c65c8e0
\ No newline at end of file

Added: release/camel/apache-camel/2.13.3/apache-camel-2.13.3.pom
==
--- release/camel/apache-camel/2.13.3/apache-camel-2.13.3.pom (added)
+++ release/camel/apache-camel/2.13.3/apache-camel-2.13.3.pom Fri Oct 31 
21:29:19 2014
@@ -0,0 +1,857 @@
+?xml version=1.0 encoding=UTF-8?
+!--
+  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.
+--
+project xmlns=http://maven.apache.org/POM/4.0.0; 
xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; 
xsi:schemaLocation=http://maven.apache.org/POM/4.0.0 

svn commit: r927562 [5/5] - in /websites/production/camel/content/schema: blueprint/ cxf/ spring-security/ spring/ spring/integration/

2014-10-31 Thread cmueller
Added: 
websites/production/camel/content/schema/spring/integration/camel-spring-integration-2.13.3.xsd
==
--- 
websites/production/camel/content/schema/spring/integration/camel-spring-integration-2.13.3.xsd
 (added)
+++ 
websites/production/camel/content/schema/spring/integration/camel-spring-integration-2.13.3.xsd
 Fri Oct 31 21:49:07 2014
@@ -0,0 +1,65 @@
+?xml version=1.0 encoding=UTF-8?
+!--
+  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.
+--
+xsd:schema xmlns=http://camel.apache.org/schema/spring/integration;
+  xmlns:xsd=http://www.w3.org/2001/XMLSchema;
+  xmlns:beans=http://www.springframework.org/schema/beans;
+  xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
+  xmlns:camel-spring=http://camel.apache.org/schema/spring;
+  targetNamespace=http://camel.apache.org/schema/spring/integration;
+  elementFormDefault=qualified
+  attributeFormDefault=unqualified
+
+  xsd:import namespace=http://www.springframework.org/schema/beans; 
schemaLocation=http://www.springframework.org/schema/beans/spring-beans.xsd/
+  xsd:import namespace=http://camel.apache.org/schema/spring; 
schemaLocation=http://camel.apache.org/schema/spring/camel-spring.xsd/
+
+  xsd:complexType name=camelEndpointType
+   xsd:sequence
+   xsd:element ref=camel-spring:camelContext minOccurs=0 /
+   xsd:element name=camelContextRef type=xsd:string 
minOccurs=0 /
+   /xsd:sequence
+   xsd:attribute name=id type=xsd:ID use=required /
+   xsd:attribute name=camelEndpointUri type=xsd:string /
+   xsd:attribute name=replyChannel type=xsd:string /
+   xsd:attribute name=expectReply type=xsd:boolean default=true/
+  /xsd:complexType
+
+  xsd:element name=camelSource
+ xsd:complexType
+xsd:annotation
+   xsd:documentation
+ Defines a camel-source for handling the Camel context message 
in Spring Integration message bus.
+   /xsd:documentation
+   /xsd:annotation
+xsd:complexContent
+  xsd:extension base=camelEndpointType
+   xsd:attribute name=requestChannel type=xsd:string 
use=required /   
+ /xsd:extension
+   /xsd:complexContent
+ /xsd:complexType
+  /xsd:element
+
+  xsd:element name=camelTarget type=camelEndpointType
+xsd:annotation
+   xsd:documentation
+ Defines a camel-target to feed Spring Integration message to 
the Camel context.
+   /xsd:documentation
+   /xsd:annotation
+  /xsd:element
+/xsd:schema




svn commit: r927562 [4/5] - in /websites/production/camel/content/schema: blueprint/ cxf/ spring-security/ spring/ spring/integration/

2014-10-31 Thread cmueller
Added: websites/production/camel/content/schema/spring/camel-spring-2.13.3.xsd
==
--- websites/production/camel/content/schema/spring/camel-spring-2.13.3.xsd 
(added)
+++ websites/production/camel/content/schema/spring/camel-spring-2.13.3.xsd Fri 
Oct 31 21:49:07 2014
@@ -0,0 +1,3221 @@
+?xml version=1.0 encoding=UTF-8 standalone=yes?
+xs:schema elementFormDefault=qualified version=1.0 
targetNamespace=http://camel.apache.org/schema/spring; 
xmlns:tns=http://camel.apache.org/schema/spring; 
xmlns:xs=http://www.w3.org/2001/XMLSchema;
+
+  xs:element name=aggregate type=tns:aggregateDefinition/
+
+  xs:element name=aop type=tns:aopDefinition/
+
+  xs:element name=avro type=tns:avroDataFormat/
+
+  xs:element name=base64 type=tns:base64DataFormat/
+
+  xs:element name=batchResequencerConfig type=tns:batchResequencerConfig/
+
+  xs:element name=bean type=tns:beanDefinition/
+
+  xs:element name=beanPostProcessor type=tns:camelBeanPostProcessor/
+
+  xs:element name=beanio type=tns:beanioDataFormat/
+
+  xs:element name=bindy type=tns:bindyDataFormat/
+
+  xs:element name=camelContext type=tns:camelContextFactoryBean/
+
+  xs:element name=castor type=tns:castorDataFormat/
+
+  xs:element name=choice type=tns:choiceDefinition/
+
+  xs:element name=constant type=tns:constantExpression/
+
+  xs:element name=consumerTemplate 
type=tns:camelConsumerTemplateFactoryBean/
+
+  xs:element name=contextScan type=tns:contextScanDefinition/
+
+  xs:element name=convertBodyTo type=tns:convertBodyDefinition/
+
+  xs:element name=crypto type=tns:cryptoDataFormat/
+
+  xs:element name=csv type=tns:csvDataFormat/
+
+  xs:element name=customDataFormat type=tns:customDataFormat/
+
+  xs:element name=customLoadBalancer 
type=tns:customLoadBalancerDefinition/
+
+  xs:element name=dataFormats type=tns:dataFormatsDefinition/
+
+  xs:element name=delay type=tns:delayDefinition/
+
+  xs:element name=description type=tns:descriptionDefinition/
+
+  xs:element name=doCatch type=tns:catchDefinition/
+
+  xs:element name=doFinally type=tns:finallyDefinition/
+
+  xs:element name=doTry type=tns:tryDefinition/
+
+  xs:element name=dynamicRouter type=tns:dynamicRouterDefinition/
+
+  xs:element name=el type=tns:elExpression/
+
+  xs:element name=endpoint type=tns:camelEndpointFactoryBean/
+
+  xs:element name=enrich type=tns:enrichDefinition/
+
+  xs:element name=errorHandler type=tns:errorHandlerDefinition/
+
+  xs:element name=export type=tns:camelServiceExporterDefinition/
+
+  xs:element name=expression type=tns:expressionSubElementDefinition/
+
+  xs:element name=expressionDefinition type=tns:expression/
+
+  xs:element name=failover type=tns:failoverLoadBalancerDefinition/
+
+  xs:element name=filter type=tns:filterDefinition/
+
+  xs:element name=flatpack type=tns:flatpackDataFormat/
+
+  xs:element name=from type=tns:fromDefinition/
+
+  xs:element name=groovy type=tns:groovyExpression/
+
+  xs:element name=gzip type=tns:gzipDataFormat/
+
+  xs:element name=header type=tns:headerExpression/
+
+  xs:element name=hl7 type=tns:hl7DataFormat/
+
+  xs:element name=idempotentConsumer 
type=tns:idempotentConsumerDefinition/
+
+  xs:element name=inOnly type=tns:inOnlyDefinition/
+
+  xs:element name=inOut type=tns:inOutDefinition/
+
+  xs:element name=intercept type=tns:interceptDefinition/
+
+  xs:element name=interceptFrom type=tns:interceptFromDefinition/
+
+  xs:element name=interceptToEndpoint 
type=tns:interceptSendToEndpointDefinition/
+
+  xs:element name=javaScript type=tns:javaScriptExpression/
+
+  xs:element name=jaxb type=tns:jaxbDataFormat/
+
+  xs:element name=jibx type=tns:jibxDataFormat/
+
+  xs:element name=jmxAgent type=tns:camelJMXAgentDefinition/
+
+  xs:element name=json type=tns:jsonDataFormat/
+
+  xs:element name=jsonpath type=tns:jsonPathExpression/
+
+  xs:element name=jxpath type=tns:jxPathExpression/
+
+  xs:element name=keyStoreParameters 
type=tns:keyStoreParametersFactoryBean/
+
+  xs:element name=language type=tns:languageExpression/
+
+  xs:element name=loadBalance type=tns:loadBalanceDefinition/
+
+  xs:element name=log type=tns:logDefinition/
+
+  xs:element name=loop type=tns:loopDefinition/
+
+  xs:element name=marshal type=tns:marshalDefinition/
+
+  xs:element name=method type=tns:methodCallExpression/
+
+  xs:element name=multicast type=tns:multicastDefinition/
+
+  xs:element name=mvel type=tns:mvelExpression/
+
+  xs:element name=ognl type=tns:ognlExpression/
+
+  xs:element name=onCompletion type=tns:onCompletionDefinition/
+
+  xs:element name=onException type=tns:onExceptionDefinition/
+
+  xs:element name=optimisticLockRetryPolicy 
type=tns:optimisticLockRetryPolicyDefinition/
+
+  xs:element name=otherwise type=tns:otherwiseDefinition/
+
+  xs:element name=packageScan type=tns:packageScanDefinition/
+
+  xs:element name=pgp type=tns:pgpDataFormat/
+
+  xs:element name=php type=tns:phpExpression/
+
+  xs:element 

svn commit: r927562 [2/5] - in /websites/production/camel/content/schema: blueprint/ cxf/ spring-security/ spring/ spring/integration/

2014-10-31 Thread cmueller

Added: 
websites/production/camel/content/schema/blueprint/camel-blueprint-2.13.3.xsd
==
--- 
websites/production/camel/content/schema/blueprint/camel-blueprint-2.13.3.xsd 
(added)
+++ 
websites/production/camel/content/schema/blueprint/camel-blueprint-2.13.3.xsd 
Fri Oct 31 21:49:07 2014
@@ -0,0 +1,3214 @@
+?xml version=1.0 encoding=UTF-8 standalone=yes?
+xs:schema elementFormDefault=qualified version=1.0 
targetNamespace=http://camel.apache.org/schema/blueprint; 
xmlns:tns=http://camel.apache.org/schema/blueprint; 
xmlns:xs=http://www.w3.org/2001/XMLSchema;
+
+  xs:element name=aggregate type=tns:aggregateDefinition/
+
+  xs:element name=aop type=tns:aopDefinition/
+
+  xs:element name=avro type=tns:avroDataFormat/
+
+  xs:element name=base64 type=tns:base64DataFormat/
+
+  xs:element name=batchResequencerConfig type=tns:batchResequencerConfig/
+
+  xs:element name=bean type=tns:beanDefinition/
+
+  xs:element name=beanio type=tns:beanioDataFormat/
+
+  xs:element name=bindy type=tns:bindyDataFormat/
+
+  xs:element name=camelContext type=tns:camelContextFactoryBean/
+
+  xs:element name=castor type=tns:castorDataFormat/
+
+  xs:element name=choice type=tns:choiceDefinition/
+
+  xs:element name=constant type=tns:constantExpression/
+
+  xs:element name=consumerTemplate 
type=tns:camelConsumerTemplateFactoryBean/
+
+  xs:element name=contextScan type=tns:contextScanDefinition/
+
+  xs:element name=convertBodyTo type=tns:convertBodyDefinition/
+
+  xs:element name=crypto type=tns:cryptoDataFormat/
+
+  xs:element name=csv type=tns:csvDataFormat/
+
+  xs:element name=customDataFormat type=tns:customDataFormat/
+
+  xs:element name=customLoadBalancer 
type=tns:customLoadBalancerDefinition/
+
+  xs:element name=dataFormats type=tns:dataFormatsDefinition/
+
+  xs:element name=delay type=tns:delayDefinition/
+
+  xs:element name=description type=tns:descriptionDefinition/
+
+  xs:element name=doCatch type=tns:catchDefinition/
+
+  xs:element name=doFinally type=tns:finallyDefinition/
+
+  xs:element name=doTry type=tns:tryDefinition/
+
+  xs:element name=dynamicRouter type=tns:dynamicRouterDefinition/
+
+  xs:element name=el type=tns:elExpression/
+
+  xs:element name=endpoint type=tns:camelEndpointFactoryBean/
+
+  xs:element name=enrich type=tns:enrichDefinition/
+
+  xs:element name=errorHandler type=tns:camelErrorHandlerFactoryBean/
+
+  xs:element name=export type=tns:camelServiceExporterDefinition/
+
+  xs:element name=expression type=tns:expressionSubElementDefinition/
+
+  xs:element name=expressionDefinition type=tns:expression/
+
+  xs:element name=failover type=tns:failoverLoadBalancerDefinition/
+
+  xs:element name=filter type=tns:filterDefinition/
+
+  xs:element name=flatpack type=tns:flatpackDataFormat/
+
+  xs:element name=from type=tns:fromDefinition/
+
+  xs:element name=groovy type=tns:groovyExpression/
+
+  xs:element name=gzip type=tns:gzipDataFormat/
+
+  xs:element name=header type=tns:headerExpression/
+
+  xs:element name=hl7 type=tns:hl7DataFormat/
+
+  xs:element name=idempotentConsumer 
type=tns:idempotentConsumerDefinition/
+
+  xs:element name=inOnly type=tns:inOnlyDefinition/
+
+  xs:element name=inOut type=tns:inOutDefinition/
+
+  xs:element name=intercept type=tns:interceptDefinition/
+
+  xs:element name=interceptFrom type=tns:interceptFromDefinition/
+
+  xs:element name=interceptToEndpoint 
type=tns:interceptSendToEndpointDefinition/
+
+  xs:element name=javaScript type=tns:javaScriptExpression/
+
+  xs:element name=jaxb type=tns:jaxbDataFormat/
+
+  xs:element name=jibx type=tns:jibxDataFormat/
+
+  xs:element name=jmxAgent type=tns:camelJMXAgentDefinition/
+
+  xs:element name=json type=tns:jsonDataFormat/
+
+  xs:element name=jsonpath type=tns:jsonPathExpression/
+
+  xs:element name=jxpath type=tns:jxPathExpression/
+
+  xs:element name=keyStoreParameters 
type=tns:keyStoreParametersFactoryBean/
+
+  xs:element name=language type=tns:languageExpression/
+
+  xs:element name=loadBalance type=tns:loadBalanceDefinition/
+
+  xs:element name=log type=tns:logDefinition/
+
+  xs:element name=loop type=tns:loopDefinition/
+
+  xs:element name=marshal type=tns:marshalDefinition/
+
+  xs:element name=method type=tns:methodCallExpression/
+
+  xs:element name=multicast type=tns:multicastDefinition/
+
+  xs:element name=mvel type=tns:mvelExpression/
+
+  xs:element name=ognl type=tns:ognlExpression/
+
+  xs:element name=onCompletion type=tns:onCompletionDefinition/
+
+  xs:element name=onException type=tns:onExceptionDefinition/
+
+  xs:element name=optimisticLockRetryPolicy 
type=tns:optimisticLockRetryPolicyDefinition/
+
+  xs:element name=otherwise type=tns:otherwiseDefinition/
+
+  xs:element name=packageScan type=tns:packageScanDefinition/
+
+  xs:element name=pgp type=tns:pgpDataFormat/
+
+  xs:element name=php type=tns:phpExpression/
+
+  xs:element name=pipeline type=tns:pipelineDefinition/
+
+  

svn commit: r927562 [3/5] - in /websites/production/camel/content/schema: blueprint/ cxf/ spring-security/ spring/ spring/integration/

2014-10-31 Thread cmueller
Added: 
websites/production/camel/content/schema/cxf/camel-cxf-2.13.3-blueprint.xsd
==
--- websites/production/camel/content/schema/cxf/camel-cxf-2.13.3-blueprint.xsd 
(added)
+++ websites/production/camel/content/schema/cxf/camel-cxf-2.13.3-blueprint.xsd 
Fri Oct 31 21:49:07 2014
@@ -0,0 +1,176 @@
+?xml version=1.0 encoding=UTF-8?
+!--
+  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.
+--
+xsd:schema xmlns=http://camel.apache.org/schema/blueprint/cxf;
+xmlns:xsd=http://www.w3.org/2001/XMLSchema;
+xmlns:beans=http://www.osgi.org/xmlns/blueprint/v1.0.0;
+xmlns:cxf-beans=http://cxf.apache.org/configuration/beans;
+xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
+targetNamespace=http://camel.apache.org/schema/blueprint/cxf;
+elementFormDefault=qualified
+attributeFormDefault=unqualified
+xsi:schemaLocation=http://www.osgi.org/xmlns/blueprint/v1.0.0 
http://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd;
+
+  xsd:import namespace=http://www.osgi.org/xmlns/blueprint/v1.0.0; 
schemaLocation=http://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd/
+  xsd:import namespace=http://cxf.apache.org/configuration/beans; 
schemaLocation=http://cxf.apache.org/schemas/configuration/cxf-beans.xsd/
+
+  xsd:element name=cxfEndpoint
+xsd:complexType
+  xsd:complexContent
+xsd:extension base=beans:Tcomponent
+  xsd:all
+xsd:element name=binding type=xsd:anyType minOccurs=0/
+xsd:element name=dataBinding type=xsd:anyType minOccurs=0/
+xsd:element name=features type=xsd:anyType minOccurs=0/
+xsd:element name=inInterceptors type=xsd:anyType 
minOccurs=0/
+xsd:element name=inFaultInterceptors type=xsd:anyType 
minOccurs=0/
+xsd:element name=outInterceptors type=xsd:anyType 
minOccurs=0/
+xsd:element name=outFaultInterceptors type=xsd:anyType 
minOccurs=0/
+xsd:element name=handlers type=xsd:anyType minOccurs=0/
+xsd:element name=properties type=beans:Tmap minOccurs=0/
+xsd:element name=schemaLocations type=schemasType 
minOccurs=0/
+xsd:element name=serviceBean type=xsd:anyType minOccurs=0/
+xsd:element name=serviceFactory type=xsd:anyType 
minOccurs=0/
+  /xsd:all
+  !-- xsd:attributeGroup ref=cxf-beans:beanAttributes/--
+  xsd:attribute name=address type=xsd:string/
+  xsd:attribute name=bindingId type=xsd:string/
+  xsd:attribute name=bus type=xsd:string/
+  xsd:attribute name=serviceClass type=xsd:string/
+  xsd:attribute name=transportId type=xsd:string/
+  xsd:attribute name=wsdlURL type=xsd:string/
+  xsd:attribute name=endpointName type=xsd:QName/
+  xsd:attribute name=serviceName type=xsd:QName/
+  xsd:attribute name=loggingFeatureEnabled type=xsd:boolean/
+  xsd:attribute name=loggingSizeLimit type=xsd:integer /
+/xsd:extension
+  /xsd:complexContent
+/xsd:complexType
+  /xsd:element
+
+  xsd:element name=rsServer
+xsd:complexType
+  xsd:complexContent
+xsd:extension base=beans:Tcomponent
+  xsd:all
+xsd:element name=executor type=xsd:anyType minOccurs=0/
+xsd:element name=features type=xsd:anyType minOccurs=0/
+xsd:element name=binding type=xsd:anyType minOccurs=0/
+xsd:element name=inInterceptors type=xsd:anyType 
minOccurs=0/
+xsd:element name=inFaultInterceptors type=xsd:anyType 
minOccurs=0/
+xsd:element name=invoker type=xsd:anyType minOccurs=0/
+xsd:element name=outInterceptors type=xsd:anyType 
minOccurs=0/
+xsd:element name=outFaultInterceptors type=xsd:anyType 
minOccurs=0/
+xsd:element name=properties type=beans:Tmap minOccurs=0/
+xsd:element name=serviceBeans type=xsd:anyType minOccurs=0/
+xsd:element name=modelBeans type=xsd:anyType minOccurs=0/
+xsd:element name=model type=model minOccurs=0/
+xsd:element name=providers type=xsd:anyType minOccurs=0/
+

svn commit: r927562 [1/5] - in /websites/production/camel/content/schema: blueprint/ cxf/ spring-security/ spring/ spring/integration/

2014-10-31 Thread cmueller
Author: cmueller
Date: Fri Oct 31 21:49:07 2014
New Revision: 927562

Log:
Uploading released schemas for camel-2.13.3

Added:

websites/production/camel/content/schema/blueprint/camel-blueprint-2.13.3.xsd
websites/production/camel/content/schema/cxf/camel-cxf-2.13.3-blueprint.xsd
websites/production/camel/content/schema/cxf/camel-cxf-2.13.3-spring.xsd

websites/production/camel/content/schema/spring-security/camel-spring-security-2.13.3.xsd
websites/production/camel/content/schema/spring/camel-spring-2.13.3.xsd

websites/production/camel/content/schema/spring/integration/camel-spring-integration-2.13.3.xsd



git commit: add the release version number to the spring.schemas files

2014-10-31 Thread cmueller
Repository: camel
Updated Branches:
  refs/heads/camel-2.13.x c280b27de - aa0a75f34


add the release version number to the spring.schemas files


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/aa0a75f3
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/aa0a75f3
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/aa0a75f3

Branch: refs/heads/camel-2.13.x
Commit: aa0a75f34dd66468685490cb244461d5a3d1a7ad
Parents: c280b27
Author: Christian Mueller cmuel...@apache.org
Authored: Fri Oct 31 23:15:38 2014 +0100
Committer: Christian Mueller cmuel...@apache.org
Committed: Fri Oct 31 23:15:38 2014 +0100

--
 components/camel-cxf/src/main/resources/META-INF/spring.schemas| 1 +
 .../src/main/resources/META-INF/spring.schemas | 1 +
 .../src/main/resources/META-INF/spring.schemas | 1 +
 components/camel-spring/src/main/resources/META-INF/spring.schemas | 2 ++
 4 files changed, 5 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/camel/blob/aa0a75f3/components/camel-cxf/src/main/resources/META-INF/spring.schemas
--
diff --git a/components/camel-cxf/src/main/resources/META-INF/spring.schemas 
b/components/camel-cxf/src/main/resources/META-INF/spring.schemas
index 9f71194..fd1bf63 100644
--- a/components/camel-cxf/src/main/resources/META-INF/spring.schemas
+++ b/components/camel-cxf/src/main/resources/META-INF/spring.schemas
@@ -73,4 +73,5 @@ 
http\://camel.apache.org/schema/cxf/camel-cxf-2.12.4.xsd=schema/cxfEndpoint.xsd
 http\://camel.apache.org/schema/cxf/camel-cxf-2.13.0.xsd=schema/cxfEndpoint.xsd
 http\://camel.apache.org/schema/cxf/camel-cxf-2.13.1.xsd=schema/cxfEndpoint.xsd
 http\://camel.apache.org/schema/cxf/camel-cxf-2.13.2.xsd=schema/cxfEndpoint.xsd
+http\://camel.apache.org/schema/cxf/camel-cxf-2.13.3.xsd=schema/cxfEndpoint.xsd
 
http\://camel.apache.org/schema/cxf/camel-cxf-${project.version}.xsd=schema/cxfEndpoint.xsd

http://git-wip-us.apache.org/repos/asf/camel/blob/aa0a75f3/components/camel-spring-integration/src/main/resources/META-INF/spring.schemas
--
diff --git 
a/components/camel-spring-integration/src/main/resources/META-INF/spring.schemas
 
b/components/camel-spring-integration/src/main/resources/META-INF/spring.schemas
index b7643ef..d5e41d3 100644
--- 
a/components/camel-spring-integration/src/main/resources/META-INF/spring.schemas
+++ 
b/components/camel-spring-integration/src/main/resources/META-INF/spring.schemas
@@ -70,4 +70,5 @@ 
http\://camel.apache.org/schema/spring/integration/camel-spring-integration-2.12
 
http\://camel.apache.org/schema/spring/integration/camel-spring-integration-2.13.0.xsd=schema/camel-spring-integration.xsd
 
http\://camel.apache.org/schema/spring/integration/camel-spring-integration-2.13.1.xsd=schema/camel-spring-integration.xsd
 
http\://camel.apache.org/schema/spring/integration/camel-spring-integration-2.13.2.xsd=schema/camel-spring-integration.xsd
+http\://camel.apache.org/schema/spring/integration/camel-spring-integration-2.13.3.xsd=schema/camel-spring-integration.xsd
 
http\://camel.apache.org/schema/spring/integration/camel-spring-integration-${project.version}.xsd=schema/camel-spring-integration.xsd
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/camel/blob/aa0a75f3/components/camel-spring-security/src/main/resources/META-INF/spring.schemas
--
diff --git 
a/components/camel-spring-security/src/main/resources/META-INF/spring.schemas 
b/components/camel-spring-security/src/main/resources/META-INF/spring.schemas
index efaf72a..736fd4b 100644
--- 
a/components/camel-spring-security/src/main/resources/META-INF/spring.schemas
+++ 
b/components/camel-spring-security/src/main/resources/META-INF/spring.schemas
@@ -64,4 +64,5 @@ 
http\://camel.apache.org/schema/spring-security/camel-spring-security-2.12.4.xsd
 
http\://camel.apache.org/schema/spring-security/camel-spring-security-2.13.0.xsd=schema/camel-spring-security.xsd
 
http\://camel.apache.org/schema/spring-security/camel-spring-security-2.13.1.xsd=schema/camel-spring-security.xsd
 
http\://camel.apache.org/schema/spring-security/camel-spring-security-2.13.2.xsd=schema/camel-spring-security.xsd
+http\://camel.apache.org/schema/spring-security/camel-spring-security-2.13.3.xsd=schema/camel-spring-security.xsd
 
http\://camel.apache.org/schema/spring-security/camel-spring-security-${project.version}.xsd=schema/camel-spring-security.xsd
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/camel/blob/aa0a75f3/components/camel-spring/src/main/resources/META-INF/spring.schemas

svn commit: r927564 - /websites/production/camel/content/cache/main.pageCache

2014-10-31 Thread cmueller
Author: cmueller
Date: Fri Oct 31 22:17:28 2014
New Revision: 927564

Log:
trigger full site export because of a new blog post

Removed:
websites/production/camel/content/cache/main.pageCache



svn commit: r927571 [2/3] - in /websites/production/camel/content: ./ 2014/10/31/ cache/

2014-10-31 Thread buildbot
Modified: websites/production/camel/content/sitemap.html
==
--- websites/production/camel/content/sitemap.html (original)
+++ websites/production/camel/content/sitemap.html Fri Oct 31 23:22:24 2014
@@ -79,7 +79,7 @@
 ul class=childpages-macrolia shape=rect 
href=architecture.htmlArchitecture/aul class=childpages-macrolia 
shape=rect href=dozer-type-conversion.htmlDozer Type 
Conversion/a/lilia shape=rect href=aop.htmlAOP/a/lilia 
shape=rect href=async.htmlAsync/a/lilia shape=rect 
href=bam.htmlBAM/a/lilia shape=rect 
href=batch-consumer.htmlBatch Consumer/a/lilia shape=rect 
href=browsableendpoint.htmlBrowsableEndpoint/a/lilia shape=rect 
href=camelcontext.htmlCamelContext/a/lilia shape=rect 
href=camel-core.htmlCamel-Core/a/lilia shape=rect 
href=component.htmlComponent/a/lilia shape=rect 
href=data-format.htmlData Format/aul class=childpages-macrolia 
shape=rect href=serialization.htmlSerialization/a/lilia 
shape=rect href=jaxb.htmlJAXB/a/lilia shape=rect 
href=xmlbeans.htmlXmlBeans/a/lilia shape=rect 
href=xstream.htmlXStream
 /a/lilia shape=rect href=csv.htmlCSV/a/lilia shape=rect 
href=string.htmlString/a/lilia shape=rect 
href=hl7-dataformat.htmlHL7 DataFormat/a/lilia shape=rect 
href=edi.htmlEDI/a/lilia shape=rect 
href=flatpack-dataformat.htmlFlatpack DataFormat/a/lilia shape=rect 
href=json.htmlJSON/a/lilia shape=rect 
href=zip-dataformat.htmlZip DataFormat/a/lilia shape=rect 
href=tidymarkup.htmlTidyMarkup/a/lilia shape=rect 
href=bindy.htmlBindy/a/lilia shape=rect 
href=xmlsecurity-dataformat.htmlXMLSecurity DataFormat/a/lilia 
shape=rect href=gzip-data-format.htmlGZip data format/a/lilia 
shape=rect href=castor.htmlCastor/a/lilia shape=rect 
href=protobuf.htmlProtobuf/a/lilia shape=rect 
href=soap.htmlSOAP/a/lilia shape=rect 
href=crypto.htmlCrypto/a/lilia shape=rect 
href=syslog.htmlSyslog/a/lilia shape=rect href=
 jibx.htmlJiBX/a/lilia shape=rect 
href=custom-dataformat.htmlCustom DataFormat/a/lilia shape=rect 
href=ical.htmlICal/a/lilia shape=rect 
href=barcode-data-format.htmlBarcode Data Format/a/lilia shape=rect 
href=base64.htmlBase64/a/lilia shape=rect 
href=beanio.htmlBeanIO/a/lilia shape=rect 
href=xmljson.htmlXmlJson/a/li/ul/lilia shape=rect 
href=debugger.htmlDebugger/a/lilia shape=rect 
href=delay-interceptor.htmlDelay Interceptor/a/lilia shape=rect 
href=dependency-injection.htmlDependency Injection/a/lilia 
shape=rect href=dsl.htmlDSL/aul class=childpages-macrolia 
shape=rect href=exception-clause.htmlException Clause/a/lilia 
shape=rect href=fluent-builders.htmlFluent Builders/a/lilia 
shape=rect href=java-dsl.htmlJava DSL/a/lilia shape=rect 
href=rest-dsl.htmlRest DSL/a/lilia shape=rect href=try-catch-finall
 y.htmlTry Catch Finally/a/li/ul/lilia shape=rect 
href=endpoint.htmlEndpoint/a/lilia shape=rect 
href=error-handler.htmlError Handler/aul class=childpages-macrolia 
shape=rect href=defaulterrorhandler.htmlDefaultErrorHandler/a/lilia 
shape=rect href=redeliverypolicy.htmlRedeliveryPolicy/a/lilia 
shape=rect 
href=transactionerrorhandler.htmlTransactionErrorHandler/a/li/ul/lilia
 shape=rect href=exchange.htmlExchange/a/lilia shape=rect 
href=exchange-pattern.htmlExchange Pattern/a/lilia shape=rect 
href=expression.htmlExpression/a/lilia shape=rect 
href=injector.htmlInjector/a/lilia shape=rect 
href=intercept.htmlIntercept/a/lilia shape=rect 
href=inversion-of-control-with-smart-defaults.htmlInversion Of Control With 
Smart Defaults/a/lilia shape=rect 
href=languages.htmlLanguages/aul class=childpages-macrolia 
shape=rect href=bean-la
 nguage.htmlBean Language/a/lilia shape=rect 
href=constant.htmlConstant/a/lilia shape=rect 
href=el.htmlEL/a/lilia shape=rect href=file-language.htmlFile 
Language/a/lilia shape=rect href=groovy-dsl.htmlGroovy 
DSL/a/lilia shape=rect href=header.htmlHeader/a/lilia 
shape=rect href=jsonpath.htmlJSonPath/a/lilia shape=rect 
href=jxpath.htmlJXPath/a/lilia shape=rect 
href=mvel.htmlMvel/a/lilia shape=rect 
href=ognl.htmlOGNL/a/lilia shape=rect 
href=property.htmlProperty/a/lilia shape=rect 
href=ref-language.htmlRef Language/a/lilia shape=rect 
href=scala-dsl.htmlScala DSL/aul class=childpages-macrolia 
shape=rect href=scala-dsl-eip.htmlScala DSL - EIP/a/lilia 
shape=rect href=scala-dsl-getting-started.htmlScala DSL - Getting 
Started/a/lilia shape=rect 
href=scala-dsl-supported-languages.htmlScala DSL - Supported langua
 ges/a/li/ul/lilia shape=rect 
href=scripting-languages.htmlScripting Languages/aul 
class=childpages-macrolia shape=rect 
href=beanshell.htmlBeanShell/a/lilia shape=rect 
href=groovy.htmlGroovy/a/lilia shape=rect 
href=javascript.htmlJavaScript/a/lilia shape=rect 
href=php.htmlPHP/a/lilia shape=rect 
href=python.htmlPython/a/lilia shape=rect 
href=ruby.htmlRuby/a/lilia shape=rect 
href=scripting-languages-context.htmlScripting Languages 
Context/a/li/ul/lilia shape=rect 
href=simple.htmlSimple/a/lilia shape=rect 
href=spel.htmlSpEL/a/lilia shape=rect 

svn commit: r927571 [3/3] - in /websites/production/camel/content: ./ 2014/10/31/ cache/

2014-10-31 Thread buildbot
Modified: websites/production/camel/content/user-guide.html
==
--- websites/production/camel/content/user-guide.html (original)
+++ websites/production/camel/content/user-guide.html Fri Oct 31 23:22:24 2014
@@ -76,11 +76,11 @@
 tr
 td valign=top width=100%
 div class=wiki-content maincontenth2 id=UserGuide-UserGuideUser 
Guide/h2pIf you want to get more familiar with what Apache Camel has to 
offer, please try the following resources:/ppstyle 
type=text/css/*![CDATA[*/
-div.rbtoc1414527909145 {padding: 0px;}
-div.rbtoc1414527909145 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1414527909145 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1414797570982 {padding: 0px;}
+div.rbtoc1414797570982 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1414797570982 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]*//style/pdiv class=toc-macro rbtoc1414527909145
+/*]]*//style/pdiv class=toc-macro rbtoc1414797570982
 ul class=toc-indentationlia shape=rect 
href=#UserGuide-WikipagesWiki pages/a/lilia shape=rect 
href=#UserGuide-PDFPDF/a/lilia shape=rect 
href=#UserGuide-OtherResources.Other Resources./a/li/ul
 /divh3 id=UserGuide-WikipagesWiki pages/h3ullia shape=rect 
href=getting-started.htmlGetting Started/a/lilia shape=rect 
href=book-getting-started.htmlLonger Getting Started Guide/a/lilia 
shape=rect href=camel-jar-dependencies.htmlCamel jar 
dependencies/a/lilia shape=rect href=spring.htmlWorking with Camel 
and Spring/a/lilia shape=rect href=guice.htmlWorking with Camel and 
Guice/a/lilia shape=rect href=karaf.htmlWorking with Camel and 
Karaf/a/lilia shape=rect href=how-do-i-configure-endpoints.htmlHow 
do I configure endpoints/a/lilia shape=rect 
href=bean-integration.htmlBean Integration/a/lilia shape=rect 
href=configuring-camel.htmlConfiguring Camel/a/lilia shape=rect 
href=configuring-route-startup-ordering-and-autostartup.htmlConfiguring 
route startup ordering and autostartup/a/lilia shape=rect 
href=graceful-shutdown.htmlGraceful Shutdown/a/lil
 ia shape=rect href=error-handling-in-camel.htmlError handling in 
Camel/a/lilia shape=rect href=using-propertyplaceholder.htmlHow to 
use Camel property placeholders/a/lilia shape=rect 
href=tutorials.htmlTutorials/a/lilia shape=rect 
href=examples.htmlExamples/a/lilia shape=rect 
href=testing.htmlTesting/a/lilia shape=rect 
href=xml-configuration.htmlXml Configuration/a/lilia shape=rect 
href=using-camelproxy.htmlUsing CamelProxy/a for how to use proxies for 
clients to easily invoke camel routes without them knowing/lilia 
shape=rect href=camel-maven-plugin.htmlCamel Maven Plugin/a for running 
Camel from a Maven goal/lilia shape=rect 
href=guice-maven-plugin.htmlGuice Maven Plugin/a for working with a 
shape=rect href=guice.htmlGuice/a/lilia shape=rect 
href=camel-maven-archetypes.htmlCamel Maven Archetypes/a/lilia 
shape=rect href=creating-a-new-spring-based-cam
 el-route.htmlCreating a new Spring based Camel Route/a/lilia 
shape=rect href=camel-jmx.htmlCamel JMX/a/lilia shape=rect 
href=how-to-run-camel-in-a-osgi-container.htmlHow to run Camel in a osgi 
container/a/lilia shape=rect 
href=using-osgi-blueprint-with-camel.htmlUsing OSGi blueprint with 
Camel/a/lilia shape=rect href=karaf.htmlKaraf/a for working with 
a shape=rect class=external-link href=http://karaf.apache.org/;Apache 
Karaf/a/li/ulh3 id=UserGuide-PDFPDF/h3pYou can try the a 
shape=rect href=manual.htmlManual/a if you want to get a PDF of this 
documentation./ph3 id=UserGuide-OtherResources.Other 
Resources./h3pThe a shape=rect class=external-link 
href=http://architects.dzone.com/articles/apache-camel-integration; 
rel=nofollowApache Camel: Integration Nirvana/a article by Jonathan 
Anstey, a great place to start your journey./ppThe a shape=rect 
href=books.htmlCamel in Action
 /a book./ppThe Camel Components Poster - a shape=rect 
class=external-link 
href=http://gliesian.com/camel/ApacheCamelComponents.pdf; rel=nofollowFree 
PDF/a, a shape=rect class=external-link 
href=http://fineartamerica.com/featured/apache-camel-2122-components-poster-robert-liguori.html;
 rel=nofollow36x24 Print/a/ppTry these online a shape=rect 
href=articles.htmlArticles/a and a shape=rect 
href=tutorials.htmlTutorials/a./p/div
 /td

Modified: websites/production/camel/content/xml-reference.html
==
--- websites/production/camel/content/xml-reference.html (original)
+++ websites/production/camel/content/xml-reference.html Fri Oct 31 23:22:24 
2014
@@ -84,7 +84,7 @@
tbody
 tr
 td valign=top width=100%

[... 6 lines stripped ...]



svn commit: r927571 [1/3] - in /websites/production/camel/content: ./ 2014/10/31/ cache/

2014-10-31 Thread buildbot
Author: buildbot
Date: Fri Oct 31 23:22:24 2014
New Revision: 927571

Log:
Production update by buildbot for camel

Added:
websites/production/camel/content/2014/10/31/
websites/production/camel/content/2014/10/31/apache-camel-2133-released.html
websites/production/camel/content/cache/main.pageCache   (with props)
Modified:
websites/production/camel/content/book-component-appendix.html
websites/production/camel/content/book-in-one-page.html
websites/production/camel/content/book-tutorials.html
websites/production/camel/content/camel-30-ideas.html
websites/production/camel/content/camel-jmx.html
websites/production/camel/content/cxf.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/tutorial-axis-camel.html
websites/production/camel/content/tutorial-jmsremoting.html
websites/production/camel/content/user-guide.html
websites/production/camel/content/xml-reference.html

Added: 
websites/production/camel/content/2014/10/31/apache-camel-2133-released.html
==
--- 
websites/production/camel/content/2014/10/31/apache-camel-2133-released.html 
(added)
+++ 
websites/production/camel/content/2014/10/31/apache-camel-2133-released.html 
Fri Oct 31 23:22:24 2014
@@ -0,0 +1,147 @@
+!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=//camel.apache.org/styles/site.css rel=stylesheet 
type=text/css
+link href=//camel.apache.org/styles/type-settings.css rel=stylesheet 
type=text/css
+script src=//camel.apache.org/styles/prototype.js 
type=text/javascript/script
+script src=//camel.apache.org/styles/rico.js 
type=text/javascript/script
+script src=//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: Apache Camel 2.13.3 released
+/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-contentdiv 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.htmlApache 
Camel/anbsp;gt;nbsp;2014nbsp;gt;nbsp;10nbsp;gt;nbsp;31nbsp;gt;nbsp;a
 href=apache-camel-2133-released.htmlApache Camel 2.13.3 released/a
+  /div
+  !-- Quicklinks --
+div id=site-quicklinkspa shape=rect href=download.htmlDownload/a 
| a shape=rect href=javadoc.htmlJavaDoc/a | a shape=rect 
href=source.htmlSource/a | a shape=rect 
href=discussion-forums.htmlForums/a | a shape=rect 
href=support.htmlSupport/a/p/div
+  !-- Quicklinks --
+/div
+
+   table border=0
+   tbody
+tr
+td valign=top width=100%
+div class=wiki-content maincontentpThe Camel community announces the 
immediate availability of the new patch release Camel 2.13.3. This bug fix 
release is issued after more than 3 months of intense efforts of the Camel 
2.13.x maintenance branch and resolves 103 issues in total./ppThe artifacts