You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ja...@apache.org on 2009/01/28 21:03:10 UTC

svn commit: r738600 - in /camel/trunk: ./ apache-camel/src/main/release/ camel-core/src/main/java/org/apache/camel/model/language/ components/camel-jms/src/main/java/org/apache/camel/component/jms/ components/camel-xmpp/ tooling/archetypes/camel-archet...

Author: janstey
Date: Wed Jan 28 20:03:09 2009
New Revision: 738600

URL: http://svn.apache.org/viewvc?rev=738600&view=rev
Log:
Changing URLs to reflect TLP move

Modified:
    camel/trunk/README.txt
    camel/trunk/apache-camel/src/main/release/README.txt
    camel/trunk/camel-core/src/main/java/org/apache/camel/model/language/MvelExpression.java
    camel/trunk/components/camel-jms/src/main/java/org/apache/camel/component/jms/EndpointMessageListener.java
    camel/trunk/components/camel-xmpp/README.txt
    camel/trunk/tooling/archetypes/camel-archetype-activemq/src/main/resources/archetype-resources/ReadMe.txt
    camel/trunk/tooling/archetypes/camel-archetype-java/src/main/resources/archetype-resources/ReadMe.txt
    camel/trunk/tooling/archetypes/camel-archetype-scala/src/main/resources/archetype-resources/ReadMe.txt
    camel/trunk/tooling/archetypes/camel-archetype-spring/src/main/resources/archetype-resources/ReadMe.txt

Modified: camel/trunk/README.txt
URL: http://svn.apache.org/viewvc/camel/trunk/README.txt?rev=738600&r1=738599&r2=738600&view=diff
==============================================================================
--- camel/trunk/README.txt (original)
+++ camel/trunk/README.txt Wed Jan 28 20:03:09 2009
@@ -32,20 +32,20 @@
 To help you get started, try the following links:
 
 Getting Started
-  http://activemq.apache.org/camel/getting-started.html
+  http://camel.apache.org/getting-started.html
 
 Building
-  http://activemq.apache.org/camel/building.html
+  http://camel.apache.org/building.html
 
 We welcome contributions of all kinds, for details of how you can help
-  http://activemq.apache.org/contributing.html
+  http://camel.apache.org/contributing.html
 
 Please refer to the website for details of finding the issue tracker, 
 email lists, wiki or IRC channel
-  http://activemq.apache.org/camel/
+  http://camel.apache.org/
 
 If you hit any problems please talk to us on the Camel Forums
-  http://activemq.apache.org/camel/discussion-forums.html
+  http://camel.apache.org/discussion-forums.html
 
 Please help us make Apache Camel better - we appreciate any feedback 
 you may have.

Modified: camel/trunk/apache-camel/src/main/release/README.txt
URL: http://svn.apache.org/viewvc/camel/trunk/apache-camel/src/main/release/README.txt?rev=738600&r1=738599&r2=738600&view=diff
==============================================================================
--- camel/trunk/apache-camel/src/main/release/README.txt (original)
+++ camel/trunk/apache-camel/src/main/release/README.txt Wed Jan 28 20:03:09 2009
@@ -23,20 +23,20 @@
 To help you get started, try the following links:-
 
 Getting Started
-  http://activemq.apache.org/camel/getting-started.html
+  http://camel.apache.org/getting-started.html
 
 Building
-  http://activemq.apache.org/camel/building.html
+  http://camel.apache.org/building.html
 
 We welcome contributions of all kinds, for details of how you can help
-  http://activemq.apache.org/contributing.html
+  http://camel.apache.org/contributing.html
 
 Please refer to the website for details of finding the issue tracker, email 
   lists, wiki or IRC channel
-  http://activemq.apache.org/camel/
+  http://camel.apache.org/
 
 If you hit any problems please talk to us on the Camel Forums
-  http://activemq.apache.org/camel/discussion-forums.html
+  http://camel.apache.org/discussion-forums.html
 
 Please help us make Apache Camel better - we appreciate any feedback 
 you may have.

Modified: camel/trunk/camel-core/src/main/java/org/apache/camel/model/language/MvelExpression.java
URL: http://svn.apache.org/viewvc/camel/trunk/camel-core/src/main/java/org/apache/camel/model/language/MvelExpression.java?rev=738600&r1=738599&r2=738600&view=diff
==============================================================================
--- camel/trunk/camel-core/src/main/java/org/apache/camel/model/language/MvelExpression.java (original)
+++ camel/trunk/camel-core/src/main/java/org/apache/camel/model/language/MvelExpression.java Wed Jan 28 20:03:09 2009
@@ -21,7 +21,7 @@
 /**
  * For MVEL expressions and predicates
  *
- * @version $Revision:$
+ * @version $Revision$
  */
 @XmlRootElement(name = "mvel")
 public class MvelExpression extends ExpressionType {

Modified: camel/trunk/components/camel-jms/src/main/java/org/apache/camel/component/jms/EndpointMessageListener.java
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-jms/src/main/java/org/apache/camel/component/jms/EndpointMessageListener.java?rev=738600&r1=738599&r2=738600&view=diff
==============================================================================
--- camel/trunk/components/camel-jms/src/main/java/org/apache/camel/component/jms/EndpointMessageListener.java (original)
+++ camel/trunk/components/camel-jms/src/main/java/org/apache/camel/component/jms/EndpointMessageListener.java Wed Jan 28 20:03:09 2009
@@ -75,12 +75,12 @@
             JmsMessage body = null;
             if (exchange.isFailed()) {
                 if (exchange.getException() != null) {
-                    // an exception occured while processing
+                    // an exception occurred while processing
                     // TODO: Camel-585 somekind of flag to determine if we should send the exchange back to the client
                     // or do as now where we wrap as runtime exception to be thrown back to spring so it can do rollback
                     rce = wrapRuntimeCamelException(exchange.getException());
                 } else if (exchange.getFault().getBody() != null) {
-                    // a fault occured while processing
+                    // a fault occurred while processing
                     body = exchange.getFault();
                 }
             } else {

Modified: camel/trunk/components/camel-xmpp/README.txt
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-xmpp/README.txt?rev=738600&r1=738599&r2=738600&view=diff
==============================================================================
--- camel/trunk/components/camel-xmpp/README.txt (original)
+++ camel/trunk/components/camel-xmpp/README.txt Wed Jan 28 20:03:09 2009
@@ -5,7 +5,7 @@
 
 For more details see
 
-  http://activemq.apache.org/camel/xmpp.html
+  http://camel.apache.org/xmpp.html
 
 
 Using Spring based xml configuration in 'activemq.xml'

Modified: camel/trunk/tooling/archetypes/camel-archetype-activemq/src/main/resources/archetype-resources/ReadMe.txt
URL: http://svn.apache.org/viewvc/camel/trunk/tooling/archetypes/camel-archetype-activemq/src/main/resources/archetype-resources/ReadMe.txt?rev=738600&r1=738599&r2=738600&view=diff
==============================================================================
--- camel/trunk/tooling/archetypes/camel-archetype-activemq/src/main/resources/archetype-resources/ReadMe.txt (original)
+++ camel/trunk/tooling/archetypes/camel-archetype-activemq/src/main/resources/archetype-resources/ReadMe.txt Wed Jan 28 20:03:09 2009
@@ -8,5 +8,5 @@
 
 For more help see the Apache Camel documentation
 
-    http://activemq.apache.org/camel/
+    http://camel.apache.org/
     
\ No newline at end of file

Modified: camel/trunk/tooling/archetypes/camel-archetype-java/src/main/resources/archetype-resources/ReadMe.txt
URL: http://svn.apache.org/viewvc/camel/trunk/tooling/archetypes/camel-archetype-java/src/main/resources/archetype-resources/ReadMe.txt?rev=738600&r1=738599&r2=738600&view=diff
==============================================================================
--- camel/trunk/tooling/archetypes/camel-archetype-java/src/main/resources/archetype-resources/ReadMe.txt (original)
+++ camel/trunk/tooling/archetypes/camel-archetype-java/src/main/resources/archetype-resources/ReadMe.txt Wed Jan 28 20:03:09 2009
@@ -8,5 +8,5 @@
 
 For more help see the Apache Camel documentation
 
-    http://activemq.apache.org/camel/
+    http://camel.apache.org/
     
\ No newline at end of file

Modified: camel/trunk/tooling/archetypes/camel-archetype-scala/src/main/resources/archetype-resources/ReadMe.txt
URL: http://svn.apache.org/viewvc/camel/trunk/tooling/archetypes/camel-archetype-scala/src/main/resources/archetype-resources/ReadMe.txt?rev=738600&r1=738599&r2=738600&view=diff
==============================================================================
--- camel/trunk/tooling/archetypes/camel-archetype-scala/src/main/resources/archetype-resources/ReadMe.txt (original)
+++ camel/trunk/tooling/archetypes/camel-archetype-scala/src/main/resources/archetype-resources/ReadMe.txt Wed Jan 28 20:03:09 2009
@@ -12,5 +12,5 @@
 
 For more help see the Apache Camel documentation
 
-    http://activemq.apache.org/camel/
+    http://camel.apache.org/
 

Modified: camel/trunk/tooling/archetypes/camel-archetype-spring/src/main/resources/archetype-resources/ReadMe.txt
URL: http://svn.apache.org/viewvc/camel/trunk/tooling/archetypes/camel-archetype-spring/src/main/resources/archetype-resources/ReadMe.txt?rev=738600&r1=738599&r2=738600&view=diff
==============================================================================
--- camel/trunk/tooling/archetypes/camel-archetype-spring/src/main/resources/archetype-resources/ReadMe.txt (original)
+++ camel/trunk/tooling/archetypes/camel-archetype-spring/src/main/resources/archetype-resources/ReadMe.txt Wed Jan 28 20:03:09 2009
@@ -8,5 +8,5 @@
 
 For more help see the Apache Camel documentation
 
-    http://activemq.apache.org/camel/
+    http://camel.apache.org/
     
\ No newline at end of file