[2/3] camel git commit: CAMEL-9272. Add appid param as the user key is required since 9/10/2015 to access the openweathermap service

2015-10-29 Thread davsclaus
CAMEL-9272. Add appid param as the user key is required since 9/10/2015 to 
access the openweathermap service


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

Branch: refs/heads/camel-2.16.x
Commit: 9e9ff70d3be5df13944bfdbbc612d2f243f510ea
Parents: 3c613a6
Author: Claus Ibsen 
Authored: Fri Oct 30 07:45:41 2015 +0100
Committer: Claus Ibsen 
Committed: Fri Oct 30 07:45:59 2015 +0100

--
 .../org/apache/camel/component/weather/WeatherConfiguration.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/camel/blob/9e9ff70d/components/camel-weather/src/main/java/org/apache/camel/component/weather/WeatherConfiguration.java
--
diff --git 
a/components/camel-weather/src/main/java/org/apache/camel/component/weather/WeatherConfiguration.java
 
b/components/camel-weather/src/main/java/org/apache/camel/component/weather/WeatherConfiguration.java
index e0c87d6..c079552 100644
--- 
a/components/camel-weather/src/main/java/org/apache/camel/component/weather/WeatherConfiguration.java
+++ 
b/components/camel-weather/src/main/java/org/apache/camel/component/weather/WeatherConfiguration.java
@@ -38,6 +38,8 @@ public class WeatherConfiguration {
 
 @UriPath(description = "The name value is not used.") @Metadata(required = 
"true")
 private String name;
+@UriParam @Metadata(required = "true")
+private String appid;
 @UriParam
 private String location = "";
 @UriParam
@@ -52,8 +54,6 @@ public class WeatherConfiguration {
 private WeatherUnits units = METRIC;
 @UriParam
 private String headerName;
-@UriParam
-private String appid;
 
 public WeatherConfiguration(WeatherComponent component) {
 this.component = notNull(component, "component");



[3/3] camel git commit: CAMEL-9272. Add appid param as the user key is required since 9/10/2015 to access the openweathermap service

2015-10-29 Thread davsclaus
CAMEL-9272. Add appid param as the user key is required since 9/10/2015 to 
access the openweathermap service


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

Branch: refs/heads/camel-2.15.x
Commit: 9cb4de7fbf2b228dac40494ebcfeb458c5d552dd
Parents: 594e11a
Author: Claus Ibsen 
Authored: Fri Oct 30 07:45:41 2015 +0100
Committer: Claus Ibsen 
Committed: Fri Oct 30 07:46:11 2015 +0100

--
 .../org/apache/camel/component/weather/WeatherConfiguration.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/camel/blob/9cb4de7f/components/camel-weather/src/main/java/org/apache/camel/component/weather/WeatherConfiguration.java
--
diff --git 
a/components/camel-weather/src/main/java/org/apache/camel/component/weather/WeatherConfiguration.java
 
b/components/camel-weather/src/main/java/org/apache/camel/component/weather/WeatherConfiguration.java
index 14793eb..44f95a6 100644
--- 
a/components/camel-weather/src/main/java/org/apache/camel/component/weather/WeatherConfiguration.java
+++ 
b/components/camel-weather/src/main/java/org/apache/camel/component/weather/WeatherConfiguration.java
@@ -38,6 +38,8 @@ public class WeatherConfiguration {
 
 @UriPath(description = "The name value is not used.") @Metadata(required = 
"true")
 private String name;
+@UriParam @Metadata(required = "true")
+private String appid;
 @UriParam
 private String location = "";
 @UriParam
@@ -52,8 +54,6 @@ public class WeatherConfiguration {
 private WeatherUnits units = METRIC;
 @UriParam
 private String headerName;
-@UriParam
-private String appid;
 
 public WeatherConfiguration(WeatherComponent component) {
 this.component = notNull(component, "component");



[1/3] camel git commit: CAMEL-9272. Add appid param as the user key is required since 9/10/2015 to access the openweathermap service

2015-10-29 Thread davsclaus
Repository: camel
Updated Branches:
  refs/heads/camel-2.15.x 594e11a49 -> 9cb4de7fb
  refs/heads/camel-2.16.x 3c613a666 -> 9e9ff70d3
  refs/heads/master c07f0cb93 -> 79f61e3dd


CAMEL-9272. Add appid param as the user key is required since 9/10/2015 to 
access the openweathermap service


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

Branch: refs/heads/master
Commit: 79f61e3dd3b9484473f01aa67d16a818a5a04d91
Parents: c07f0cb
Author: Claus Ibsen 
Authored: Fri Oct 30 07:45:41 2015 +0100
Committer: Claus Ibsen 
Committed: Fri Oct 30 07:45:41 2015 +0100

--
 .../org/apache/camel/component/weather/WeatherConfiguration.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/camel/blob/79f61e3d/components/camel-weather/src/main/java/org/apache/camel/component/weather/WeatherConfiguration.java
--
diff --git 
a/components/camel-weather/src/main/java/org/apache/camel/component/weather/WeatherConfiguration.java
 
b/components/camel-weather/src/main/java/org/apache/camel/component/weather/WeatherConfiguration.java
index e0c87d6..c079552 100644
--- 
a/components/camel-weather/src/main/java/org/apache/camel/component/weather/WeatherConfiguration.java
+++ 
b/components/camel-weather/src/main/java/org/apache/camel/component/weather/WeatherConfiguration.java
@@ -38,6 +38,8 @@ public class WeatherConfiguration {
 
 @UriPath(description = "The name value is not used.") @Metadata(required = 
"true")
 private String name;
+@UriParam @Metadata(required = "true")
+private String appid;
 @UriParam
 private String location = "";
 @UriParam
@@ -52,8 +54,6 @@ public class WeatherConfiguration {
 private WeatherUnits units = METRIC;
 @UriParam
 private String headerName;
-@UriParam
-private String appid;
 
 public WeatherConfiguration(WeatherComponent component) {
 this.component = notNull(component, "component");



[2/2] camel git commit: CAMEL-9272. Add appid param as the user key is required since 9/10/2015 to access the openweathermap service

2015-10-29 Thread davsclaus
CAMEL-9272. Add appid param as the user key is required since 9/10/2015 to 
access the openweathermap service


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

Branch: refs/heads/camel-2.15.x
Commit: 594e11a490dc2e6beafbd4c0e8f16d2f19d5c243
Parents: 7b84f41
Author: Charles Moulliard 
Authored: Thu Oct 29 17:52:28 2015 +0100
Committer: Claus Ibsen 
Committed: Fri Oct 30 07:42:12 2015 +0100

--
 .../component/weather/WeatherConfiguration.java | 20 +++-
 .../CurrentWeatherMadridProducerTest.java   |  4 +++-
 2 files changed, 22 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/camel/blob/594e11a4/components/camel-weather/src/main/java/org/apache/camel/component/weather/WeatherConfiguration.java
--
diff --git 
a/components/camel-weather/src/main/java/org/apache/camel/component/weather/WeatherConfiguration.java
 
b/components/camel-weather/src/main/java/org/apache/camel/component/weather/WeatherConfiguration.java
index 2c9d3ef..14793eb 100644
--- 
a/components/camel-weather/src/main/java/org/apache/camel/component/weather/WeatherConfiguration.java
+++ 
b/components/camel-weather/src/main/java/org/apache/camel/component/weather/WeatherConfiguration.java
@@ -52,6 +52,8 @@ public class WeatherConfiguration {
 private WeatherUnits units = METRIC;
 @UriParam
 private String headerName;
+@UriParam
+private String appid;
 
 public WeatherConfiguration(WeatherComponent component) {
 this.component = notNull(component, "component");
@@ -129,6 +131,18 @@ public class WeatherConfiguration {
 public void setLon(String lon) {
 this.lon = lon;
 }
+
+/**
+ * APPID ID used to authenticate the user connected to the API Server
+ */
+public void setAppid(String appid) {
+this.appid = appid;
+}
+
+public String getAppid() {
+return appid;
+}
+
 
 public String getQuery() throws Exception {
 return getQuery(getLocation());
@@ -145,7 +159,7 @@ public class WeatherConfiguration {
 // assuming the location is a town or country
 location = "q=" + location;
 }
-
+
 if (isEmpty(getPeriod())) {
 answer += "weather?" + location;
 } else {
@@ -162,6 +176,10 @@ public class WeatherConfiguration {
 answer += "&mode=" + getMode().name().toLowerCase();
 }
 
+if (getAppid() != null) {
+answer += "&APPID=" + getAppid();
+}
+
 return answer;
 }
 

http://git-wip-us.apache.org/repos/asf/camel/blob/594e11a4/components/camel-weather/src/test/java/org/apache/camel/component/weather/CurrentWeatherMadridProducerTest.java
--
diff --git 
a/components/camel-weather/src/test/java/org/apache/camel/component/weather/CurrentWeatherMadridProducerTest.java
 
b/components/camel-weather/src/test/java/org/apache/camel/component/weather/CurrentWeatherMadridProducerTest.java
index 9592513..61b7dc6 100644
--- 
a/components/camel-weather/src/test/java/org/apache/camel/component/weather/CurrentWeatherMadridProducerTest.java
+++ 
b/components/camel-weather/src/test/java/org/apache/camel/component/weather/CurrentWeatherMadridProducerTest.java
@@ -86,8 +86,10 @@ public class CurrentWeatherMadridProducerTest extends 
BaseWeatherConsumerTest {
 return new RouteBuilder() {
 @Override
 public void configure() throws Exception {
+
+/* The Camel Route uses the apache-camel appid to access the 
openweathermap service */
 from("direct:start")
-.to("weather:foo?location=Madrid,Spain")
+
.to("weather:foo?location=Madrid,Spain&appid=9162755b2efa555823cfe0451d7fff38")
 .to("mock:result");
 }
 };



[1/2] camel git commit: CAMEL-9272. Add appid param as the user key is required since 9/10/2015 to access the openweathermap service

2015-10-29 Thread davsclaus
Repository: camel
Updated Branches:
  refs/heads/camel-2.15.x 7b84f410e -> 594e11a49
  refs/heads/camel-2.16.x 2d83364ac -> 3c613a666


CAMEL-9272. Add appid param as the user key is required since 9/10/2015 to 
access the openweathermap service


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

Branch: refs/heads/camel-2.16.x
Commit: 3c613a666d7b5ff3213a9ee3f0f2568d8f1bba7b
Parents: 2d83364
Author: Charles Moulliard 
Authored: Thu Oct 29 17:52:28 2015 +0100
Committer: Claus Ibsen 
Committed: Fri Oct 30 07:41:45 2015 +0100

--
 .../component/weather/WeatherConfiguration.java | 20 +++-
 .../CurrentWeatherMadridProducerTest.java   |  4 +++-
 2 files changed, 22 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/camel/blob/3c613a66/components/camel-weather/src/main/java/org/apache/camel/component/weather/WeatherConfiguration.java
--
diff --git 
a/components/camel-weather/src/main/java/org/apache/camel/component/weather/WeatherConfiguration.java
 
b/components/camel-weather/src/main/java/org/apache/camel/component/weather/WeatherConfiguration.java
index c77f5f1..e0c87d6 100644
--- 
a/components/camel-weather/src/main/java/org/apache/camel/component/weather/WeatherConfiguration.java
+++ 
b/components/camel-weather/src/main/java/org/apache/camel/component/weather/WeatherConfiguration.java
@@ -52,6 +52,8 @@ public class WeatherConfiguration {
 private WeatherUnits units = METRIC;
 @UriParam
 private String headerName;
+@UriParam
+private String appid;
 
 public WeatherConfiguration(WeatherComponent component) {
 this.component = notNull(component, "component");
@@ -155,6 +157,18 @@ public class WeatherConfiguration {
 public void setLon(String lon) {
 this.lon = lon;
 }
+
+/**
+ * APPID ID used to authenticate the user connected to the API Server
+ */
+public void setAppid(String appid) {
+this.appid = appid;
+}
+
+public String getAppid() {
+return appid;
+}
+
 
 public String getQuery() throws Exception {
 return getQuery(getLocation());
@@ -171,7 +185,7 @@ public class WeatherConfiguration {
 // assuming the location is a town or country
 location = "q=" + location;
 }
-
+
 if (isEmpty(getPeriod())) {
 answer += "weather?" + location;
 } else {
@@ -188,6 +202,10 @@ public class WeatherConfiguration {
 answer += "&mode=" + getMode().name().toLowerCase();
 }
 
+if (getAppid() != null) {
+answer += "&APPID=" + getAppid();
+}
+
 return answer;
 }
 

http://git-wip-us.apache.org/repos/asf/camel/blob/3c613a66/components/camel-weather/src/test/java/org/apache/camel/component/weather/CurrentWeatherMadridProducerTest.java
--
diff --git 
a/components/camel-weather/src/test/java/org/apache/camel/component/weather/CurrentWeatherMadridProducerTest.java
 
b/components/camel-weather/src/test/java/org/apache/camel/component/weather/CurrentWeatherMadridProducerTest.java
index 9592513..61b7dc6 100644
--- 
a/components/camel-weather/src/test/java/org/apache/camel/component/weather/CurrentWeatherMadridProducerTest.java
+++ 
b/components/camel-weather/src/test/java/org/apache/camel/component/weather/CurrentWeatherMadridProducerTest.java
@@ -86,8 +86,10 @@ public class CurrentWeatherMadridProducerTest extends 
BaseWeatherConsumerTest {
 return new RouteBuilder() {
 @Override
 public void configure() throws Exception {
+
+/* The Camel Route uses the apache-camel appid to access the 
openweathermap service */
 from("direct:start")
-.to("weather:foo?location=Madrid,Spain")
+
.to("weather:foo?location=Madrid,Spain&appid=9162755b2efa555823cfe0451d7fff38")
 .to("mock:result");
 }
 };



svn commit: r970688 - in /websites/production/camel/content: cache/main.pageCache release-guide.html

2015-10-29 Thread buildbot
Author: buildbot
Date: Thu Oct 29 21:18:46 2015
New Revision: 970688

Log:
Production update by buildbot for camel

Modified:
websites/production/camel/content/cache/main.pageCache
websites/production/camel/content/release-guide.html

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

Modified: websites/production/camel/content/release-guide.html
==
--- websites/production/camel/content/release-guide.html (original)
+++ websites/production/camel/content/release-guide.html Thu Oct 29 21:18:46 
2015
@@ -186,7 +186,7 @@ Certificate information:
Fingerprint: bc:5f:40:92:fd:6a:49:aa:f8:b8:35:0d:ed:27:5e:a6:64:c1:7a:1b
 (R)eject, accept (t)emporarily or accept (p)ermanently?
 
-Copy 
$CAMEL_ROOT/trunk/etc/scripts/release-website.sh to your home 
directory on people.apache.orgExecute this script, e.g: 
./release-website.sh 2.10.0It will download the XML Schema files and 
the Camel manual for the given release versionAt the end you have to 
commit these changes manually to SVN (simply follow the 
instructions)Update the Xml Reference page with a link to the 
XSD'sUpdate the Manual page 
with a link to the PDF/HTML if it's a new major/minor 
versionMail the mailto:d...@camel.apache.org"; rel="nofollow">dev, mailto:u...@camel.apache.org"; 
rel="nofollow">user & mailto:annou...@apache.org"; rel="nofollow">announce
  listshttps://cwiki.apache.org/confluence/pages/createblogpost.action?spaceKey=CAMEL";>Post
 a news entry in the wiki which links to the release page so 
folks can download it!perform a full export of the Camel WIKI sites to 
see your blog on the Camel index site. To do this, you have to remove the 
main.pageCache file in the content/cache sub directory:execute: svn rm 
https://svn.apache.org/repos/infra/websites/production/camel/content/cache/main.pageCache";>https://svn.apache.org/repos/infra/websites/production/camel/content/cache/main.pageCacheAdd
 the release version number to the following spring.schemas file 
located in src/main/resources/META-INF directory of the following 
components: camel-cxf camel-spring camel-spring-integration 
camel-spring-security
 Have a beer! https://cwiki.apache.org/confluence/s/en_GB/5982/f2b47fb3d636c8bc9fd0b11c0ec6d0ae18646be7.1/_/images/icons/emoticons/smile.png";
 data-emoticon-name="smile" alt="(smile)">Create a new maintenance 
branchThis section is out 
of date.This section just for creating a 
maintenance branch in camel svn repo, it is much easy to create a new branch 
after camel repo is switched to Git. When we 
finish the major version release, we need to create a maintenance branch to 
holds the bug fixes. Here are the steps for it.Create a branch 
from trunk remotely
+Update the Xml Reference page with a link to the 
XSD'sUpdate the Manual page 
with a link to the PDF/HTML if it's a new major/minor 
versionMail the mailto:d...@camel.apache.org"; rel="nofollow">dev, mailto:u...@camel.apache.org"; 
rel="nofollow">user & mailto:annou...@apache.org"; rel="nofollow">announce listshttps://cwiki.apache.org/confluence/pages/createblogpost.action?spaceKey=CAMEL";>Post
 a news entry in the wiki which links to the release page so 
folks can download it!perform a full export of the Camel WIKI sites to 
see your blog on the Camel index site. To do this, you have to remove the 
main.pageCache file in the content/cache
  sub directory:execute: svn rm https://svn.apache.org/repos/infra/websites/production/camel/content/cache/main.pageCache";>https://svn.apache.org/repos/infra/websites/production/camel/content/cache/main.pageCacheAdd
 the release version number to the following spring.schemas file 
located in src/main/resources/META-INF directory of the following 
components: camel-cxf camel-spring camel-spring-integration 
camel-spring-securityHave a beer! https://cwiki.apache.org/confluence/s/en_GB/5982/f2b47fb3d636c8bc9fd0b11c0ec6d0ae18646be7.1/_/images/icons/emoticons/smile.png";
 data-emoticon-name="smile" alt="(smile)">Create a new maintenance 
branchThis section is out of date.This section just for creating a 
maintenance branch in camel svn repo, it is much easy to create a new branch 
after camel repo is switched to Git. When we 
finish the major version release, we need to create a maintenance branch to 
holds the bug fixes. Here are the steps for it.Create a branch 
from trunk remotely
 https://svn.apache.org/repos/asf/camel/trunk/ 
https://svn.apache.org/repos/asf/camel/branches/camel-2.10.x
 ]]>
 Check out the remote branch in a new 
directory




svn commit: r10957 - /release/camel/apache-camel/KEYS

2015-10-29 Thread cmueller
Author: cmueller
Date: Thu Oct 29 21:17:42 2015
New Revision: 10957

Log:
updated the KEYS file because of new entries

Modified:
release/camel/apache-camel/KEYS

Modified: release/camel/apache-camel/KEYS
==
--- release/camel/apache-camel/KEYS (original)
+++ release/camel/apache-camel/KEYS Thu Oct 29 21:17:42 2015
@@ -727,14 +727,18 @@ aXBFB9GtEAATQf2vS/UJw/PtInCQlF3Or3MmBPYR
 =aGvL
 -END PGP PUBLIC KEY BLOCK-
 pub   1024D/AE8DE9E4 2008-02-26
-  Key fingerprint = 2D6C 3C63 1196 B77D 12D8  C92F 2350 9298 AE8D E9E4
 uid  Willem Jiang 
+sig 3AE8DE9E4 2011-01-07  Willem Jiang 
+sig 27FBBDC54 2008-02-29  Freeman Fang 
 sub   2048g/7103E49E 2008-02-26
+sig  AE8DE9E4 2008-02-26  Willem Jiang 
 
 pub   4096R/14D0DEE9 2011-01-07
-  Key fingerprint = 5000 847E C0EE 4523 38CE  B801 F058 8A55 14D0 DEE9
 uid  Willem Jiang (CODE SIGNING KEY) 
+sig 314D0DEE9 2011-01-07  Willem Jiang (CODE SIGNING KEY) 

+sig  AE8DE9E4 2011-01-07  Willem Jiang 
 sub   4096R/FE639F22 2011-01-07
+sig  14D0DEE9 2011-01-07  Willem Jiang (CODE SIGNING KEY) 

 -BEGIN PGP PUBLIC KEY BLOCK-
 Version: GnuPG/MacGPG2 v2.0.16 (Darwin)
 
@@ -966,3 +970,106 @@ cQOcLlStKrxTnxqjiuK2WDC8cQmYc4g9klmFqkqG
 21fnJtXDujubpXKuQqFl/SY=
 =drZJ
 -END PGP PUBLIC KEY BLOCK-
+pub   2048R/94CB9113 2013-02-04 [verfÅ llt: 2017-02-04]
+uid  Babak Vahdat 
+sig 394CB9113 2013-02-04  Babak Vahdat 
+sub   2048R/CB41C100 2013-02-04 [verfÅ llt: 2017-02-04]
+sig  94CB9113 2013-02-04  Babak Vahdat 
+
+-BEGIN PGP PUBLIC KEY BLOCK-
+Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+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
+S0maYlA=
+=OANb
+-END PGP PUBLIC KEY BLOCK-
+
+pub   4096R/5942C049 2015-10-15
+uid  Gregor Zurowski 
+sig 35942C049 2015-10-15  Gregor Zurowski 
+sub   4096R/A48CCE10 2015-10-15
+sig  5942C049 2015-10-15  Gregor Zurowski 
+
+-BEGIN PGP PUBLIC KEY BLOCK-
+Version: GnuPG v1
+
+mQINBFYgF44BEACxR9vzD/W006okO77T9aEOrUCfRJAuqmwBr/VLCGHIAWTTg/cS
+WKLWfV+jIcCvsfOmo05P9zrf/VtPvuKIVOeBkKA/RCbCAKCkNdp3lyaIHZl/2ees
+oZ7whVMXqCx46L2im8cavi96JPM+gKeX8UVQxThNBdmlgZ8R4Z3ZfxT/ya3QqUmB
+LqAZk7EqvToIaOMmaay5tIr0vKettwnWPhK9kgPuH8i7ZdWHeSVFofHC6uB0/TPV
+zBgfJfZidPfnP9Ho+swnN1R54cXNyKlwe+FfOhtxU3urpUhr4GKXwBC3wn4vG4n5
+D4+Qzd8xKzhB8mHqnu4jQvvvkomXZv21yPa42+/meVxQK47l3BwogddQAGBSYp1O
+TAL3wvpFDwxZxhSZHQqnI+1sDB76hL1t57CI+iJCHd2W7qh4wwX6I+TaGoRR07Jv
+bHYweMhI6tFp9bSXpKEReN0bJ+XZwmk3mhCBE6Ce8gcUmXo5hUT6dphwVI+yY5Ge
+v+USEA0anknjY5vyLNoDI+EEZfC9Twfk8ZP0mdo/X/INTPvwIv/3PWrCnc8/+Yf0
+sqPDiYgK5yADoLUhYXo4JcY0Xv7Twud7XWriQLpWiULBTzTmnGF8e+uHhfAZ/tTk
+wmslNUKW3xOerrMYaz2xYcv7n7UQOm8X1coygbdyo53buIdajaE+2j2w1wARAQAB
+tCZHcmVnb3IgWnVyb3dza2kgPGd6dXJvd3NraUBhcGFjaGUub3JnPokCOAQTAQIA
+IgUCViAXjgIbAwYLCQgHAwIGFQgCCQoLBBYCA

svn commit: r10956 - /release/camel/apache-camel/2.15.4/

2015-10-29 Thread cmueller
Author: cmueller
Date: Thu Oct 29 21:11:25 2015
New Revision: 10956

Log:
Apache Camel 2.15.4 released artifacts.

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

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

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

Added: release/camel/apache-camel/2.15.4/apache-camel-2.15.4-src.zip.asc
==
--- release/camel/apache-camel/2.15.4/apache-camel-2.15.4-src.zip.asc (added)
+++ release/camel/apache-camel/2.15.4/apache-camel-2.15.4-src.zip.asc Thu Oct 
29 21:11:25 2015
@@ -0,0 +1,17 @@
+-BEGIN PGP SIGNATURE-
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJWKtGnAAoJEJ1b7/pZQsBJPKAP/A2ygiPlw2VQnGA5nhmrh8tW
+rYbEse27NYhaGEIccFOQjhGlb4L1EbrAOK9Qx7yt/ECoaKlh3LY1U7j5pcWiPtyz
+SUyvGqLnSGViAazTfIzkQKy7QUrOH/XwAB0i5faA0muP7zwz4kAC+zr3lMrCJgUv
+ft2mr90gNNGatn8zr2clQyBTD9W8UhLlntOMT3jlA1f/GSb0coz6EV9pEPApwPJD
+jKFsnbOjUCQgelnfg2u5Ohr9yTkOCi9cvIQYVgwvCuAGoFl8+VO+GfZ3ZoVrtxUJ
+AfVIOeyZnmdrelmAQTjYvVUXO84nQ/c2UUlL7VV/HCJZhVi8YeTLTr0hrjkl0ng+
+xuhIr6Oywtvo1/SjEMAp1ayCboVj6WHKCqdQoQkHfFuH8hcoOlk3G2uAfHKKe1LX
+p59JhrwMvFJNvuyivXgm/w0gMmvn0HMnGEpj6e27HljHcEBJ/8LI0BEYgxFpWVMq
+Xrb4LIfbhhzrnbtHy9r7u6FwQDxfmh0JAnYH1VybVakD6TLPMmPxbTh8LhkC2OvZ
+AH7MFOMS9L46OUY9KxYc63XQU+YzC03nevP4R5MqWaIAEBZOhp74d8JDqBHz2GdQ
+xDOsN75lMpgR0O3i4NFxSNv+/JWc5aK0PFFqV6AxHVWwshPDd5w6SYrnP7dk4CMu
+Mi4IXn7R8BsbOfr4GVCA
+=Zxqh
+-END PGP SIGNATURE-

Added: release/camel/apache-camel/2.15.4/apache-camel-2.15.4-src.zip.md5
==
--- release/camel/apache-camel/2.15.4/apache-camel-2.15.4-src.zip.md5 (added)
+++ release/camel/apache-camel/2.15.4/apache-camel-2.15.4-src.zip.md5 Thu Oct 
29 21:11:25 2015
@@ -0,0 +1 @@
+e2d3742fdc3f52e99badd8c14ef7fa49
\ No newline at end of file

Added: release/camel/apache-camel/2.15.4/apache-camel-2.15.4-src.zip.sha1
==
--- release/camel/apache-camel/2.15.4/apache-camel-2.15.4-src.zip.sha1 (added)
+++ release/camel/apache-camel/2.15.4/apache-camel-2.15.4-src.zip.sha1 Thu Oct 
29 21:11:25 2015
@@ -0,0 +1 @@
+e19a493dc7954cbbb01dfb928339de46c49df289
\ No newline at end of file

Added: release/camel/apache-camel/2.15.4/apache-camel-2.15.4.pom
==
--- release/camel/apache-camel/2.15.4/apache-camel-2.15.4.pom (added)
+++ release/camel/apache-camel/2.15.4/apache-camel-2.15.4.pom Thu Oct 29 
21:11:25 2015
@@ -0,0 +1,998 @@
+
+
+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 
http://maven.apache.org/maven-v4_0_0.xsd";>
+
+  4.0.0
+
+  
+org.apache.camel
+camel-parent
+2.15.4
+../parent
+  
+
+  apache-camel
+  Camel :: Assembly
+  Apache Camel Assembly
+  pom
+
+  
+true
+false
+1.0.1
+  
+
+  
+   
+
+  org.apache.camel
+  camel-core
+
+
+  org.apache.camel
+  camel-core-osgi
+
+
+  org.apache.camel
+  camel-core-xml
+
+
+  org.apache.camel
+  camel-ahc
+
+
+  org.apache.camel
+  camel-ahc-ws
+
+
+  org.apache.camel
+  camel-amqp
+
+
+  org.apache.camel
+  camel-apns
+
+
+  org.apache.camel
+  camel-atmos
+
+
+  org.apache.camel
+  camel-atmosphere-websocket
+
+
+  org.apache.camel
+  camel-atom
+
+
+  org.apache.camel
+  camel-aws
+
+
+  org.apache.came

svn commit: r10955 - /release/camel/apache-camel/2.15.4/

2015-10-29 Thread cmueller
Author: cmueller
Date: Thu Oct 29 20:50:11 2015
New Revision: 10955

Log:
Apache Camel 2.15.4 release distro placeholder.

Added:
release/camel/apache-camel/2.15.4/



svn commit: r10954 - /release/camel/apache-camel/2.15.3/

2015-10-29 Thread cmueller
Author: cmueller
Date: Thu Oct 29 20:36:38 2015
New Revision: 10954

Log:
Removed the old release

Removed:
release/camel/apache-camel/2.15.3/



camel git commit: updated the release-website.sh because we do not create a pdf file anymore

2015-10-29 Thread cmueller
Repository: camel
Updated Branches:
  refs/heads/master a7c8c5c97 -> c07f0cb93


updated the release-website.sh because we do not create a pdf file anymore


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

Branch: refs/heads/master
Commit: c07f0cb93b1adddebb35db7d3bf4e6cbe8a81db0
Parents: a7c8c5c
Author: Christian Mueller 
Authored: Thu Oct 29 21:31:00 2015 +0100
Committer: Christian Mueller 
Committed: Thu Oct 29 21:31:25 2015 +0100

--
 etc/scripts/release-website.sh | 1 -
 1 file changed, 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/camel/blob/c07f0cb9/etc/scripts/release-website.sh
--
diff --git a/etc/scripts/release-website.sh b/etc/scripts/release-website.sh
index cb2b3b4..c536fa7 100755
--- a/etc/scripts/release-website.sh
+++ b/etc/scripts/release-website.sh
@@ -106,6 +106,5 @@ echo
 echo "cd ${SITE_DIR}/${VERSION}/manual/"
 echo "svn status"
 echo "svn add camel-manual-${VERSION}.html"
-echo "svn add camel-manual-${VERSION}.pdf"
 echo "svn ci -m \"Uploading released manuals for camel-${VERSION}\""
 echo



svn commit: r970685 - /websites/production/camel/content/manual/camel-manual-2.15.4.html

2015-10-29 Thread cmueller
Author: cmueller
Date: Thu Oct 29 20:28:10 2015
New Revision: 970685

Log:
Uploading released manuals for camel-2.15.4

Added:
websites/production/camel/content/manual/camel-manual-2.15.4.html

Added: websites/production/camel/content/manual/camel-manual-2.15.4.html
==
--- websites/production/camel/content/manual/camel-manual-2.15.4.html (added)
+++ websites/production/camel/content/manual/camel-manual-2.15.4.html Thu Oct 
29 20:28:10 2015
@@ -0,0 +1,27179 @@
+
+
+http://camel.apache.org/styles/camel-manual.css"; rel="stylesheet" 
type="text/css" />
+
+@page :left {
+@top-left {
+content: "Apache Camel 2.15.4 Developer's 
Manual";
+}
+}
+
+
+
+
+
+
+
+
+
+
+
+SyntaxHighlighter.defaults['toolbar'] = false;
+SyntaxHighlighter.all();
+
+
+Apache CamelUser GuideVersion 2.15.4
+ Copyright 2007-2015, Apache Software Foundation
+
+Table of Contents
+
+
+Table 
of ContentsIntroductionQuickstartGetting 
StartedArchitectureEnterprise 
Integration PatternsCook BookTutorialsLanguage AppendixDataFormat 
AppendixPattern AppendixComponent AppendixIndex
+
+
+Introduction
+
+Apache Camel ™ is a versatile open-source integration framework based on 
known Enterprise 
Integration Patterns.
+
+Camel empowers you to define routing and mediation rules in a variety of 
domain-specific languages, including a Java-based Fluent API, Spring 
or Blueprint XML Configuration files, and a 
Scala DSL. This means you get smart 
completion of routing rules in your IDE, whether in a Java, Scala or XML 
editor.
+
+Apache Camel uses URIs to work 
directly with any kind of Transport 
or messaging model such as HTTP, ActiveMQ, JMS, JBI, SCA, MINA or CXF, as well as pluggable Components and Data Format options. Apache Camel is a small 
library with minimal dependencies for easy embedding in 
any Java application. Apache Camel lets you work with the same API regardless which kind of Transport is used - so learn the API once and you can 
interact with all the Components provided out-of-box.
+
+Apache Camel provides support for Bean Binding and seamless integration with popular 
frameworks such as Spring, Blueprint and Guice.  Camel also has extensive support for 
unit testing your routes. 
+
+The following projects can leverage Apache Camel as a routing and mediation 
engine:
+
+http://servicemix.apache.org/";>Apache ServiceMix - a popular 
distributed open source ESB and JBI containerhttp://activemq.apache.org/";>Apache ActiveMQ - 
a mature, widely used open source message brokerhttp://cxf.apache.org/";>Apache CXF - a smart web services suite 
(JAX-WS and JAX-RS)http://karaf.apache.org/";>Apache Karaf - a small OSGi based runtime 
in which applications can be deployedhttp://mina.apache.org/";>Apache MINA - a 
high-performance http://en.wikipedia.org/wiki/New_I/O"; rel="nofollow">NIO-driven 
networking framework
+
+
+So don't get the hump - try Camel today! https://cwiki.apache.org/confluence/s/en_GB/5982/f2b47fb3d636c8bc9fd0b11c0ec6d0ae18646be7.1/_/images/icons/emoticons/smile.png";
 data-emoticon-name="smile" alt="(smile)">
+
+Too many buzzwords - what exactly is Camel?
+Okay, so the description above is technology focused.  
+There's a great discussion about Camel at http://stackoverflow.com/questions/8845186/what-exactly-is-apache-camel"; 
rel="nofollow">Stack Overflow. We suggest you view the post, read the 
comments, and browse the suggested links for more details.
+
+Quickstart
+
+To start using Apache Camel quickly, you can read through some simple 
examples in this chapter. For readers who would like a more thorough 
introduction, please skip ahead to Chapter 3.
+
+Walk through an Example 
CodeThis mini-guide takes you through the source code of a https://svn.apache.org/repos/asf/camel/trunk/examples/camel-example-jms-file/src/main/java/org/apache/camel/example/jmstofile/CamelJmsToFileExample.java";>simple
 example.Camel can be configured either by using Spring or directly in Java - which https://svn.apache.org/repos/asf/camel/trunk/examples/camel-example-jms-file/src/main/java/org/apache/camel/example/jmstofile/CamelJmsToFileExample.java";>this
 example does.This example is available in the 
examples\camel-example-jms-file directory of the Camel distribution.We start with creating a CamelContext - which is a container 
for Components, Routes etc:
+

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

2015-10-29 Thread cmueller
Author: cmueller
Date: Thu Oct 29 20:26:28 2015
New Revision: 970683

Log:
Uploading released schemas for camel-2.15.4

Added:

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

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

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



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

2015-10-29 Thread cmueller
Added: 
websites/production/camel/content/schema/cxf/camel-cxf-2.15.4-blueprint.xsd
==
--- websites/production/camel/content/schema/cxf/camel-cxf-2.15.4-blueprint.xsd 
(added)
+++ websites/production/camel/content/schema/cxf/camel-cxf-2.15.4-blueprint.xsd 
Thu Oct 29 20:26:28 2015
@@ -0,0 +1,178 @@
+
+
+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";>
+
+  http://www.osgi.org/xmlns/blueprint/v1.0.0"; 
schemaLocation="http://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd"/>
+  http://cxf.apache.org/configuration/beans"; 
schemaLocation="http://cxf.apache.org/schemas/configuration/cxf-beans.xsd"/>
+
+  
+
+  
+
+  
+
+
+
+
+
+
+
+
+
+
+
+
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+
+  
+
+  
+
+  
+
+  
+
+  
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+
+  
+
+  
+
+  
+
+  
+
+  
+
+
+
+
+
+
+
+
+
+
+
+
+
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+
+  
+
+  
+
+  
+
+  
+
+  
+
+  
+
+  
+
+  
+
+  
+
+  
+
+  
+  
+
+  
+
+
+
+
+
+
+  
+
+  
+  
+  
+
+  
+
+
+  
+
\ No newline at end of file

Added: websites/production/camel/content/schema/cxf/camel-cxf-2.15.4-spring.xsd
==
--- websites/production/camel/content/schema/cxf/camel-cxf-2.15.4-spring.xsd 
(added)
+++ websites/production/camel/content/schema/cxf/camel-cxf-2.15.4-spring.xsd 
Thu Oct 29 20:26:28 2015
@@ -0,0 +1,179 @@
+
+
+http://camel.apache.org/schema/cxf";
+  xmlns:xsd="http://www.w3.org/2001/XMLSchema";
+  xmlns:beans="http://www.springframework.org/schema/beans";
+  xmlns:cxf-beans="http://cxf.apache.org/configuration/beans";
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+  targetNamespace="http://camel.apache.org/schema/cxf"; 
+  elementFormDefault="qualified"
+  attributeFormDefault="unqualified">
+
+  http://www.springframework.org/schema/beans"; 
schemaLocation="http://www.springframework.org/schema/beans/spring-beans.xsd"/>
+  http://cxf.apache.org/configuration/beans"; 
schemaLocation="http://cxf.apache.org/schemas/configuration/cxf-beans.xsd"/>
+
+  
+
+  
+
+  
+
+ 
   
+
+
+
+
+
+
+
+
+
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+
+  
+
+  
+  
+  
+
+  
+
+  
+
+
+  
+
+
+
+
+
+
+
+
+
+
+
+
+
+  
+  
+  
+  
+ 
 
+  
+  
+
+  
+  
+  
+  
+
+  
+
+  
+  
+  
+
+  
+
+  
+
+
+  

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

2015-10-29 Thread cmueller
Added: websites/production/camel/content/schema/spring/camel-spring-2.15.4.xsd
==
--- websites/production/camel/content/schema/spring/camel-spring-2.15.4.xsd 
(added)
+++ websites/production/camel/content/schema/spring/camel-spring-2.15.4.xsd Thu 
Oct 29 20:26:28 2015
@@ -0,0 +1,6189 @@
+http://www.w3.org/2001/XMLSchema"; 
xmlns:tns="http://camel.apache.org/schema/spring"; 
elementFormDefault="qualified" 
targetNamespace="http://camel.apache.org/schema/spring"; version="1.0">
+
+  
+
+  Aggregates many messages into a single 
message
+
+  
+
+  
+
+  Does processing before and/or after the 
route is completed
+
+  
+
+  
+
+  Avro data format
+
+  
+
+  
+
+  Barcode data format
+
+  
+
+  
+
+  Base64 data format
+
+  
+
+  
+
+  Configures batch-processing resequence 
eip.
+
+  
+
+  
+
+  Calls a java bean
+
+  
+
+  
+
+  
+
+  BeanIO data format
+
+  
+
+  
+
+  Bindy data format
+
+  
+
+  
+
+  
+
+  Castor data format
+
+  
+
+  
+
+  Routes messages based on a series of 
predicates
+
+  
+
+  
+
+  Circuit break load 
balancer
+
+  
+
+  
+
+  For expressions and predicates using a 
constant
+
+  
+
+  
+
+  
+
+  Scans for Java 
org.apache.camel.builder.RouteBuilder instances in the context 
org.apache.camel.spi.Registry.
+
+  
+
+  
+
+  Converts the message body to another 
type
+
+  
+
+  
+
+  Crypto data format
+
+  
+
+  
+
+  CSV data format
+
+  
+
+  
+
+  Custom data format
+
+  
+
+  
+
+  Custom load balancer
+
+  
+
+  
+
+  To configure data 
formats
+
+  
+
+  
+
+  Delays processing for a specified length 
of time
+
+  
+
+  
+
+  Rest DELETE command
+
+  
+
+  
+
+  To provide comments about the 
node.
+
+  
+
+  
+
+  Catches exceptions as part of a try 
catch finally block
+
+  
+
+  
+
+  Path traversed when a try catch finally 
block exits
+
+  
+
+  
+
+  Marks the beginning of a try catch 
finally block
+
+  
+
+  
+
+  Routes messages based on dynamic 
rules
+
+  
+
+  
+
+  For EL expressions and 
predicates
+
+  
+
+  
+
+  
+
+  Enriches a message with data from a 
secondary resource
+
+  
+
+  
+
+  
+
+  An expression which extracts the named 
exchange property
+
+  
+
+  
+
+  
+
+  A useful base class for an 
expression
+
+  
+
+  
+
+  
+
+  Failover load balancer
+
+  
+
+  
+
+  Filter out messages based using a 
predicate
+
+  
+
+  
+
+  Flatpack data format
+
+  
+
+  
+
+  Act as a message source as input to a 
route
+
+  
+
+  
+
+  Rest GET command
+
+  
+
+  
+
+  For Groovy expressions and 
predicates
+
+  
+
+  
+
+  GZip data format
+
+  
+
+  
+
+  Rest HEAD command
+
+  
+
+  
+
+  An expression which extracts the named 
exchange header
+
+  
+
+  
+
+  HL7 data format
+
+  
+
+  
+
+  iCal data format
+
+  
+
+  
+
+  Filters out duplicate 
messages
+
+  
+
+  
+
+  Marks the exchange pattern for the route 
to one way
+
+  
+
+  
+
+  Marks the exchange pattern for the route 
to request/reply
+
+  
+
+  
+
+  Intercepts a message at each step in the 
route
+
+  
+
+  
+
+  Intercepts incoming 
messages
+
+  
+
+  
+
+  Intercepts messages being sent to an 
endpoint
+
+  
+
+  
+
+  For JavaScript expressions and 
predicates
+
+  
+
+  
+
+  JAXB data format
+
+  
+
+  
+
+  JiBX data format
+
+  
+
+  
+
+  
+
+  Json data format
+
+  
+
+  
+
+  For JSonPath expressions and 
predicates
+
+  
+
+  
+
+  For JXPath expressions and 
predicates
+
+  
+
+  
+
+  
+
+  Represents a parameterised language 
expression which can support any language at runtime using the language 
attribute.
+
+  
+
+  
+
+  Balances message processing among a 
number of nodes
+
+  
+
+  
+
+  Logs the defined message to the 
logger
+
+  
+
+  
+
+  Processes a message multiple 
times
+
+  
+
+  
+
+  Marshals data into a specified format 
for transmission over a transport or component
+
+  
+
+  
+
+  For expressions and predicates using a 
java bean (aka method call)
+
+  
+
+  
+
+  Routes the same message to multiple 
paths either sequentially or in parallel.
+
+  
+
+  
+
+  For MVEL expressions and 
predicates
+
+  
+
+  
+
+  For OGNL expressions and 
predicates
+
+  
+
+  
+
+  Route to be executed when normal route 
processing completes
+

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

2015-10-29 Thread cmueller
Added: 
websites/production/camel/content/schema/spring/integration/camel-spring-integration-2.15.4.xsd
==
--- 
websites/production/camel/content/schema/spring/integration/camel-spring-integration-2.15.4.xsd
 (added)
+++ 
websites/production/camel/content/schema/spring/integration/camel-spring-integration-2.15.4.xsd
 Thu Oct 29 20:26:28 2015
@@ -0,0 +1,65 @@
+
+
+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">
+
+  http://www.springframework.org/schema/beans"; 
schemaLocation="http://www.springframework.org/schema/beans/spring-beans.xsd"/>
+  http://camel.apache.org/schema/spring"; 
schemaLocation="http://camel.apache.org/schema/spring/camel-spring.xsd"/>
+
+  
+   
+   
+   
+   
+   
+   
+   
+   
+  
+
+  
+ 
+
+   
+ Defines a camel-source for handling the Camel context message 
in Spring Integration message bus.
+   
+   
+
+  
+  
+ 
+   
+ 
+  
+
+  
+
+   
+ Defines a camel-target to feed Spring Integration message to 
the Camel context.
+   
+   
+  
+




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

2015-10-29 Thread cmueller

Added: 
websites/production/camel/content/schema/blueprint/camel-blueprint-2.15.4.xsd
==
--- 
websites/production/camel/content/schema/blueprint/camel-blueprint-2.15.4.xsd 
(added)
+++ 
websites/production/camel/content/schema/blueprint/camel-blueprint-2.15.4.xsd 
Thu Oct 29 20:26:28 2015
@@ -0,0 +1,6190 @@
+http://www.w3.org/2001/XMLSchema"; 
xmlns:tns="http://camel.apache.org/schema/blueprint"; 
elementFormDefault="qualified" 
targetNamespace="http://camel.apache.org/schema/blueprint"; version="1.0">
+
+  
+
+  Aggregates many messages into a single 
message
+
+  
+
+  
+
+  Does processing before and/or after the 
route is completed
+
+  
+
+  
+
+  Avro data format
+
+  
+
+  
+
+  Barcode data format
+
+  
+
+  
+
+  Base64 data format
+
+  
+
+  
+
+  Configures batch-processing resequence 
eip.
+
+  
+
+  
+
+  Calls a java bean
+
+  
+
+  
+
+  BeanIO data format
+
+  
+
+  
+
+  Bindy data format
+
+  
+
+  
+
+  
+
+  Castor data format
+
+  
+
+  
+
+  Routes messages based on a series of 
predicates
+
+  
+
+  
+
+  Circuit break load 
balancer
+
+  
+
+  
+
+  For expressions and predicates using a 
constant
+
+  
+
+  
+
+  
+
+  Scans for Java 
org.apache.camel.builder.RouteBuilder instances in the context 
org.apache.camel.spi.Registry.
+
+  
+
+  
+
+  Converts the message body to another 
type
+
+  
+
+  
+
+  Crypto data format
+
+  
+
+  
+
+  CSV data format
+
+  
+
+  
+
+  Custom data format
+
+  
+
+  
+
+  Custom load balancer
+
+  
+
+  
+
+  To configure data 
formats
+
+  
+
+  
+
+  Delays processing for a specified length 
of time
+
+  
+
+  
+
+  Rest DELETE command
+
+  
+
+  
+
+  To provide comments about the 
node.
+
+  
+
+  
+
+  Catches exceptions as part of a try 
catch finally block
+
+  
+
+  
+
+  Path traversed when a try catch finally 
block exits
+
+  
+
+  
+
+  Marks the beginning of a try catch 
finally block
+
+  
+
+  
+
+  Routes messages based on dynamic 
rules
+
+  
+
+  
+
+  For EL expressions and 
predicates
+
+  
+
+  
+
+  
+
+  Enriches a message with data from a 
secondary resource
+
+  
+
+  
+
+  
+
+  An expression which extracts the named 
exchange property
+
+  
+
+  
+
+  
+
+  A useful base class for an 
expression
+
+  
+
+  
+
+  
+
+  Failover load balancer
+
+  
+
+  
+
+  Filter out messages based using a 
predicate
+
+  
+
+  
+
+  Flatpack data format
+
+  
+
+  
+
+  Act as a message source as input to a 
route
+
+  
+
+  
+
+  Rest GET command
+
+  
+
+  
+
+  For Groovy expressions and 
predicates
+
+  
+
+  
+
+  GZip data format
+
+  
+
+  
+
+  Rest HEAD command
+
+  
+
+  
+
+  An expression which extracts the named 
exchange header
+
+  
+
+  
+
+  HL7 data format
+
+  
+
+  
+
+  iCal data format
+
+  
+
+  
+
+  Filters out duplicate 
messages
+
+  
+
+  
+
+  Marks the exchange pattern for the route 
to one way
+
+  
+
+  
+
+  Marks the exchange pattern for the route 
to request/reply
+
+  
+
+  
+
+  Intercepts a message at each step in the 
route
+
+  
+
+  
+
+  Intercepts incoming 
messages
+
+  
+
+  
+
+  Intercepts messages being sent to an 
endpoint
+
+  
+
+  
+
+  For JavaScript expressions and 
predicates
+
+  
+
+  
+
+  JAXB data format
+
+  
+
+  
+
+  JiBX data format
+
+  
+
+  
+
+  
+
+  Json data format
+
+  
+
+  
+
+  For JSonPath expressions and 
predicates
+
+  
+
+  
+
+  For JXPath expressions and 
predicates
+
+  
+
+  
+
+  
+
+  Represents a parameterised language 
expression which can support any language at runtime using the language 
attribute.
+
+  
+
+  
+
+  Balances message processing among a 
number of nodes
+
+  
+
+  
+
+  Logs the defined message to the 
logger
+
+  
+
+  
+
+  Processes a message multiple 
times
+
+  
+
+  
+
+  Marshals data into a specified format 
for transmission over a transport or component
+
+  
+
+  
+
+  For expressions and predicates using a 
java bean (aka method call)
+
+  
+
+  
+
+  Routes the same message to multiple 
paths either sequentially or in parallel.
+
+  
+
+  
+
+  For MVEL expressions and 
predicates
+
+  
+
+  
+
+  For OGNL expressions and 
predicates
+
+  
+
+  
+
+  Route to be executed when normal route 
proce

svn commit: r970673 - in /websites/production/camel/content: cache/main.pageCache weather.html

2015-10-29 Thread buildbot
Author: buildbot
Date: Thu Oct 29 19:24:04 2015
New Revision: 970673

Log:
Production update by buildbot for camel

Modified:
websites/production/camel/content/cache/main.pageCache
websites/production/camel/content/weather.html

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

Modified: websites/production/camel/content/weather.html
==
--- websites/production/camel/content/weather.html (original)
+++ websites/production/camel/content/weather.html Thu Oct 29 19:24:04 2015
@@ -85,86 +85,32 @@

 
 
-Weather Component
-Available as of Camel 2.12
-
-The weather: component is used for polling weather 
information from http://openweathermap.org"; rel="nofollow">Open Weather Map - a site 
that provides free global weather and forecast information. The information is 
returned as a json String object.
-
-Camel will poll for updates to the current weather and forecasts once per 
hour by default.
-
-Maven users will need to add the following dependency to their 
pom.xml for this component:
-
-

Weather Component

Available as of Camel 2.12

The weather: component is used for polling weather information from http://openweathermap.org"; rel="nofollow">Open Weather Map - a site that provides free global weather and forecast information. The information is returned as a json String object.

Camel will poll for updates to the current weather and forecasts once per hour by default. It can also be used to query the weather api based on the parameters defined on the endpoint which is used as producer.

Maven users will need to add the following dependency to their pom.xml for this component:

+