From 3013c2020bcc65019a957017fcbda3ae5b79dac8 Mon Sep 17 00:00:00 2001 From: James Strachan Date: Mon, 26 Feb 2007 11:04:18 +0000 Subject: [PATCH] updated wiki links in source code to point to the graduated site git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@511784 13f79535-47bb-0310-9956-ffa450edef68 --- .../java/org/apache/activemq/ActiveMQConnection.java | 8 ++++---- .../apache/activemq/ActiveMQConnectionFactory.java | 10 +++++----- .../org/apache/activemq/broker/BrokerService.java | 4 ++-- .../apache/activemq/broker/ft/MasterConnector.java | 2 +- .../region/group/MessageGroupHashBucketFactory.java | 2 +- .../region/group/SimpleMessageGroupMapFactory.java | 2 +- .../apache/activemq/broker/region/group/package.html | 2 +- .../activemq/broker/region/policy/PolicyEntry.java | 2 +- .../virtual/VirtualDestinationInterceptor.java | 2 +- .../activemq/spring/ActiveMQConnectionFactory.java | 2 +- .../activemq/spring/ActiveMQXAConnectionFactory.java | 2 +- activemq-web-console/src/main/webapp/index.jsp | 2 +- assembly/src/release/README.txt | 12 ++++++------ 13 files changed, 26 insertions(+), 26 deletions(-) diff --git a/activemq-core/src/main/java/org/apache/activemq/ActiveMQConnection.java b/activemq-core/src/main/java/org/apache/activemq/ActiveMQConnection.java index 9fcc262ddf..a9c607ac75 100755 --- a/activemq-core/src/main/java/org/apache/activemq/ActiveMQConnection.java +++ b/activemq-core/src/main/java/org/apache/activemq/ActiveMQConnection.java @@ -749,7 +749,7 @@ public class ActiveMQConnection implements Connection, TopicConnection, QueueCon /** * Sets the prefetch + * href="http://activemq.apache.org/what-is-the-prefetch-limit-for.html">prefetch * policy for consumers created by this connection. */ public void setPrefetchPolicy(ActiveMQPrefetchPolicy prefetchPolicy) { @@ -850,7 +850,7 @@ public class ActiveMQConnection implements Connection, TopicConnection, QueueCon /** * Enables/disables whether or not Message properties and MapMessage entries * support Nested + * href="http://activemq.apache.org/structured-message-properties-and-mapmessages.html">Nested * Structures of Map and List objects */ public void setNestedMapAndListEnabled(boolean structuredMapsEnabled) { @@ -1293,7 +1293,7 @@ public class ActiveMQConnection implements Connection, TopicConnection, QueueCon /** * Forces the use of Async Sends + * href="http://activemq.apache.org/async-sends.html">Async Sends * which adds a massive performance boost; but means that the send() method * will return immediately whether the message has been sent or not which * could lead to message loss. @@ -1685,7 +1685,7 @@ public class ActiveMQConnection implements Connection, TopicConnection, QueueCon /** * Enables or disables the default setting of whether or not consumers have * their messages dispatched + * href="http://activemq.apache.org/consumer-dispatch-async.html">dispatched * synchronously or asynchronously by the broker. * * For non-durable topics for example we typically dispatch synchronously by diff --git a/activemq-core/src/main/java/org/apache/activemq/ActiveMQConnectionFactory.java b/activemq-core/src/main/java/org/apache/activemq/ActiveMQConnectionFactory.java index 8dbc7ea814..85cf6f9c71 100755 --- a/activemq-core/src/main/java/org/apache/activemq/ActiveMQConnectionFactory.java +++ b/activemq-core/src/main/java/org/apache/activemq/ActiveMQConnectionFactory.java @@ -292,7 +292,7 @@ public class ActiveMQConnectionFactory extends JNDIBaseStorable implements Conne /** * Sets the connection + * href="http://activemq.apache.org/configuring-transports.html">connection * URL used to connect to the ActiveMQ broker. */ public void setBrokerURL(String brokerURL) { @@ -392,7 +392,7 @@ public class ActiveMQConnectionFactory extends JNDIBaseStorable implements Conne /** * Sets the prefetch + * href="http://activemq.apache.org/what-is-the-prefetch-limit-for.html">prefetch * policy for consumers created by this connection. */ public void setPrefetchPolicy(ActiveMQPrefetchPolicy prefetchPolicy) { @@ -417,7 +417,7 @@ public class ActiveMQConnectionFactory extends JNDIBaseStorable implements Conne /** * Forces the use of Async Sends + * href="http://activemq.apache.org/async-sends.html">Async Sends * which adds a massive performance boost; but means that the send() method * will return immediately whether the message has been sent or not which * could lead to message loss. @@ -581,7 +581,7 @@ public class ActiveMQConnectionFactory extends JNDIBaseStorable implements Conne /** * Enables or disables the default setting of whether or not consumers have * their messages dispatched + * href="http://activemq.apache.org/consumer-dispatch-async.html">dispatched * synchronously or asynchronously by the broker. * * For non-durable topics for example we typically dispatch synchronously by @@ -653,7 +653,7 @@ public class ActiveMQConnectionFactory extends JNDIBaseStorable implements Conne /** * Enables/disables whether or not Message properties and MapMessage entries * support Nested + * href="http://activemq.apache.org/structured-message-properties-and-mapmessages.html">Nested * Structures of Map and List objects */ public void setNestedMapAndListEnabled(boolean structuredMapsEnabled) { diff --git a/activemq-core/src/main/java/org/apache/activemq/broker/BrokerService.java b/activemq-core/src/main/java/org/apache/activemq/broker/BrokerService.java index e660754760..12d9649c25 100644 --- a/activemq-core/src/main/java/org/apache/activemq/broker/BrokerService.java +++ b/activemq-core/src/main/java/org/apache/activemq/broker/BrokerService.java @@ -505,7 +505,7 @@ public class BrokerService implements Service, Serializable { if (broker == null) { log.info("ActiveMQ " + ActiveMQConnectionMetaData.PROVIDER_VERSION + " JMS Message Broker (" + getBrokerName() + ") is starting"); - log.info("For help or more information please see: http://incubator.apache.org/activemq/"); + log.info("For help or more information please see: http://activemq.apache.org/"); broker = createBroker(); } return broker; @@ -961,7 +961,7 @@ public class BrokerService implements Service, Serializable { /** * Sets whether or not - * Virtual Topics + * Virtual Topics * should be supported by default if they have not been explicitly configured. */ public void setUseVirtualTopics(boolean useVirtualTopics) { diff --git a/activemq-core/src/main/java/org/apache/activemq/broker/ft/MasterConnector.java b/activemq-core/src/main/java/org/apache/activemq/broker/ft/MasterConnector.java index df0bae9975..25229a5f0e 100644 --- a/activemq-core/src/main/java/org/apache/activemq/broker/ft/MasterConnector.java +++ b/activemq-core/src/main/java/org/apache/activemq/broker/ft/MasterConnector.java @@ -48,7 +48,7 @@ import java.util.concurrent.atomic.AtomicBoolean; /** * Connects a Slave Broker to a Master when using Master Slave + * href="http://activemq.apache.org/masterslave.html">Master Slave * for High Availability of messages. * * @org.apache.xbean.XBean diff --git a/activemq-core/src/main/java/org/apache/activemq/broker/region/group/MessageGroupHashBucketFactory.java b/activemq-core/src/main/java/org/apache/activemq/broker/region/group/MessageGroupHashBucketFactory.java index 80f90a90b1..3c0fa559fe 100644 --- a/activemq-core/src/main/java/org/apache/activemq/broker/region/group/MessageGroupHashBucketFactory.java +++ b/activemq-core/src/main/java/org/apache/activemq/broker/region/group/MessageGroupHashBucketFactory.java @@ -19,7 +19,7 @@ package org.apache.activemq.broker.region.group; /** * A factory to create instances of {@link SimpleMessageGroupMap} when * implementing the Message + * href="http://activemq.apache.org/message-groups.html">Message * Groups functionality. * * @org.apache.xbean.XBean diff --git a/activemq-core/src/main/java/org/apache/activemq/broker/region/group/SimpleMessageGroupMapFactory.java b/activemq-core/src/main/java/org/apache/activemq/broker/region/group/SimpleMessageGroupMapFactory.java index a4a50a10d3..670fd54525 100644 --- a/activemq-core/src/main/java/org/apache/activemq/broker/region/group/SimpleMessageGroupMapFactory.java +++ b/activemq-core/src/main/java/org/apache/activemq/broker/region/group/SimpleMessageGroupMapFactory.java @@ -18,7 +18,7 @@ package org.apache.activemq.broker.region.group; /** * A factory to create instances of {@link SimpleMessageGroupMap} when implementing the - * Message Groups functionality. + * Message Groups functionality. * * @org.apache.xbean.XBean * diff --git a/activemq-core/src/main/java/org/apache/activemq/broker/region/group/package.html b/activemq-core/src/main/java/org/apache/activemq/broker/region/group/package.html index cfb750c4c4..4271db889a 100755 --- a/activemq-core/src/main/java/org/apache/activemq/broker/region/group/package.html +++ b/activemq-core/src/main/java/org/apache/activemq/broker/region/group/package.html @@ -19,7 +19,7 @@ - Classes to implement the Message Groups feature. + Classes to implement the Message Groups feature. diff --git a/activemq-core/src/main/java/org/apache/activemq/broker/region/policy/PolicyEntry.java b/activemq-core/src/main/java/org/apache/activemq/broker/region/policy/PolicyEntry.java index 97ea08b32a..d71c1a669e 100644 --- a/activemq-core/src/main/java/org/apache/activemq/broker/region/policy/PolicyEntry.java +++ b/activemq-core/src/main/java/org/apache/activemq/broker/region/policy/PolicyEntry.java @@ -210,7 +210,7 @@ public class PolicyEntry extends DestinationMapEntry{ /** * Sets the factory used to create new instances of {MessageGroupMap} used to implement the Message Groups functionality. + * href="http://activemq.apache.org/message-groups.html">Message Groups functionality. */ public void setMessageGroupMapFactory(MessageGroupMapFactory messageGroupMapFactory){ this.messageGroupMapFactory=messageGroupMapFactory; diff --git a/activemq-core/src/main/java/org/apache/activemq/broker/region/virtual/VirtualDestinationInterceptor.java b/activemq-core/src/main/java/org/apache/activemq/broker/region/virtual/VirtualDestinationInterceptor.java index 45cdb9494d..c6ffa67fa9 100644 --- a/activemq-core/src/main/java/org/apache/activemq/broker/region/virtual/VirtualDestinationInterceptor.java +++ b/activemq-core/src/main/java/org/apache/activemq/broker/region/virtual/VirtualDestinationInterceptor.java @@ -30,7 +30,7 @@ import java.util.Set; /** * Implements Virtual + * href="http://activemq.apache.org/virtual-destinations.html">Virtual * Topics. * * @org.apache.xbean.XBean diff --git a/activemq-core/src/main/java/org/apache/activemq/spring/ActiveMQConnectionFactory.java b/activemq-core/src/main/java/org/apache/activemq/spring/ActiveMQConnectionFactory.java index 680745c965..ec3c75fb7c 100644 --- a/activemq-core/src/main/java/org/apache/activemq/spring/ActiveMQConnectionFactory.java +++ b/activemq-core/src/main/java/org/apache/activemq/spring/ActiveMQConnectionFactory.java @@ -23,7 +23,7 @@ import org.springframework.beans.factory.InitializingBean; * A Spring enhanced connection * factory which will automatically use the Spring bean name as the clientIDPrefix property * so that connections created have client IDs related to your Spring.xml file for - * easier comprehension from JMX. + * easier comprehension from JMX. * * @org.apache.xbean.XBean element="connectionFactory" * diff --git a/activemq-core/src/main/java/org/apache/activemq/spring/ActiveMQXAConnectionFactory.java b/activemq-core/src/main/java/org/apache/activemq/spring/ActiveMQXAConnectionFactory.java index 03fd33b1af..6b51711bbd 100644 --- a/activemq-core/src/main/java/org/apache/activemq/spring/ActiveMQXAConnectionFactory.java +++ b/activemq-core/src/main/java/org/apache/activemq/spring/ActiveMQXAConnectionFactory.java @@ -23,7 +23,7 @@ import org.springframework.beans.factory.InitializingBean; * A Spring enhanced XA connection * factory which will automatically use the Spring bean name as the clientIDPrefix property * so that connections created have client IDs related to your Spring.xml file for - * easier comprehension from JMX. + * easier comprehension from JMX. * * @org.apache.xbean.XBean element="xaConnectionFactory" * diff --git a/activemq-web-console/src/main/webapp/index.jsp b/activemq-web-console/src/main/webapp/index.jsp index 6cba8e3f12..d957ed50db 100644 --- a/activemq-web-console/src/main/webapp/index.jsp +++ b/activemq-web-console/src/main/webapp/index.jsp @@ -27,7 +27,7 @@ Welcome to the ActiveMQ Console

-You can find more information about ActiveMQ on the Apache ActiveMQ Site +You can find more information about ActiveMQ on the Apache ActiveMQ Site

diff --git a/assembly/src/release/README.txt b/assembly/src/release/README.txt index 5471db6fb5..01a007f580 100755 --- a/assembly/src/release/README.txt +++ b/assembly/src/release/README.txt @@ -8,20 +8,20 @@ Getting Started To help you get started, try the following links:- Getting Started -http://incubator.apache.org/activemq/getting-started.html +http://activemq.apache.org/getting-started.html Building -http://incubator.apache.org/activemq/getting-started.html#GettingStarted-WindowsSourceInstallation -http://incubator.apache.org/activemq/getting-started.html#GettingStarted-UnixSourceInstallation +http://activemq.apache.org/getting-started.html#GettingStarted-WindowsSourceInstallation +http://activemq.apache.org/getting-started.html#GettingStarted-UnixSourceInstallation Examples -http://incubator.apache.org/activemq/examples.html +http://activemq.apache.org/examples.html We welcome contributions of all kinds, for details of how you can help -http://incubator.apache.org/activemq/contributing.html +http://activemq.apache.org/contributing.html Please refer to the website for details of finding the issue tracker, email lists, wiki or IRC channel -http://incubator.apache.org/activemq/ +http://activemq.apache.org/ Please help us make Apache ActiveMQ better - we appreciate any feedback you may have. Enjoy!