Modified: websites/production/activemq/content/jmx.html
==============================================================================
--- websites/production/activemq/content/jmx.html (original)
+++ websites/production/activemq/content/jmx.html Fri Oct 16 13:34:29 2015
@@ -74,7 +74,7 @@
 <a href="features.html">Features</a>&nbsp;&gt;&nbsp;<a href="jmx.html">JMX</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: websites/production/activemq/content/jndi-support.html
==============================================================================
--- websites/production/activemq/content/jndi-support.html (original)
+++ websites/production/activemq/content/jndi-support.html Fri Oct 16 13:34:29 
2015
@@ -75,7 +75,7 @@
 <a href="connectivity.html">Connectivity</a>&nbsp;&gt;&nbsp;<a 
href="containers.html">Containers</a>&nbsp;&gt;&nbsp;<a 
href="jndi-support.html">JNDI Support</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 
@@ -90,29 +90,7 @@
 <p>So we provide a simple JNDI InitialContextFactory which can be used to 
lookup JMS connection factory objects as well as Destination objects.</p>
 
 <p>For example if you place this <a shape="rect" class="external-link" 
href="http://svn.apache.org/repos/asf/activemq/trunk/activemq-unit-tests/src/test/resources/jndi.properties";>jndi.properties</a>
 file on your classpath, you can look inside the InitialContext and lookup 
ConnectionFactory objects and Destinations etc.</p>
-<div class="code panel pdl" style="border-width: 1px;"><div class="codeContent 
panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
-
-java.naming.factory.initial = 
org.apache.activemq.jndi.ActiveMQInitialContextFactory
-
-# use the following property to configure the default connector
-java.naming.provider.url = vm://localhost
-
-# use the following property to specify the JNDI name the connection factory
-# should appear as. 
-#connectionFactoryNames = connectionFactory, queueConnectionFactory, 
topicConnectionFactry
-
-# register some queues in JNDI using the form
-# queue.[jndiName] = [physicalName]
-queue.MyQueue = example.MyQueue
-
-
-# register some topics in JNDI using the form
-# topic.[jndiName] = [physicalName]
-topic.MyTopic = example.MyTopic
-
-]]></script>
-</div></div>
+<div class="error"><span class="error">Error formatting macro: snippet: 
java.lang.IndexOutOfBoundsException: Index: 20, Size: 20</span> </div>
 
 <p>You can edit the jndi.properties file to configure the 
ActiveMQConnectionFactory's properties such as brokerURL and whether or not 
there should be an embedded broker etc. See <a shape="rect" 
href="how-do-i-embed-a-broker-inside-a-connection.html">how to embed a broker 
in a connection</a> for more details.</p>
 
@@ -195,119 +173,7 @@ vm:broker:(tcp://localhost:61616)
 <h3 id="JNDISupport-ExampleJavacode">Example Java code</h3>
 
 <p>Once you have configured JNDI on the classpath you can run any normal JMS 
application such as the following <a shape="rect" class="external-link" 
href="http://svn.apache.org/repos/asf/incubator/activemq/trunk/activemq-unit-tests/src/test/java/org/apache/activemq/demo/SimpleProducer.java";>example</a>.
 Notice that the Java code just uses pure JMS APIs and is not in any way 
ActiveMQ specific</p>
-<div class="code panel pdl" style="border-width: 1px;"><div class="codeContent 
panelContent pdl">
-<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
-
-import javax.jms.Connection;
-import javax.jms.ConnectionFactory;
-import javax.jms.Destination;
-import javax.jms.JMSException;
-import javax.jms.MessageProducer;
-import javax.jms.Session;
-import javax.jms.TextMessage;
-import javax.naming.Context;
-import javax.naming.InitialContext;
-import javax.naming.NamingException;
-
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-
-/**
- * A simple polymorphic JMS producer which can work with Queues or Topics which
- * uses JNDI to lookup the JMS connection factory and destination
- * 
- * 
- */
-public final class SimpleProducer {
-
-    private static final Logger LOG = 
LoggerFactory.getLogger(SimpleProducer.class);
-
-    private SimpleProducer() {
-    }
-
-    /**
-     * @param args the destination name to send to and optionally, the number 
of
-     *                messages to send
-     */
-    public static void main(String[] args) {
-        Context jndiContext = null;
-        ConnectionFactory connectionFactory = null;
-        Connection connection = null;
-        Session session = null;
-        Destination destination = null;
-        MessageProducer producer = null;
-        String destinationName = null;
-        final int numMsgs;
-
-        if ((args.length &lt; 1) || (args.length &gt; 2)) {
-            LOG.info(&quot;Usage: java SimpleProducer &lt;destination-name&gt; 
[&lt;number-of-messages&gt;]&quot;);
-            System.exit(1);
-        }
-        destinationName = args[0];
-        LOG.info(&quot;Destination name is &quot; + destinationName);
-        if (args.length == 2) {
-            numMsgs = (new Integer(args[1])).intValue();
-        } else {
-            numMsgs = 1;
-        }
-
-        /*
-         * Create a JNDI API InitialContext object
-         */
-        try {
-            jndiContext = new InitialContext();
-        } catch (NamingException e) {
-            LOG.info(&quot;Could not create JNDI API context: &quot; + 
e.toString());
-            System.exit(1);
-        }
-
-        /*
-         * Look up connection factory and destination.
-         */
-        try {
-            connectionFactory = 
(ConnectionFactory)jndiContext.lookup(&quot;ConnectionFactory&quot;);
-            destination = (Destination)jndiContext.lookup(destinationName);
-        } catch (NamingException e) {
-            LOG.info(&quot;JNDI API lookup failed: &quot; + e);
-            System.exit(1);
-        }
-
-        /*
-         * Create connection. Create session from connection; false means
-         * session is not transacted. Create sender and text message. Send
-         * messages, varying text slightly. Send end-of-messages message.
-         * Finally, close connection.
-         */
-        try {
-            connection = connectionFactory.createConnection();
-            session = connection.createSession(false, 
Session.AUTO_ACKNOWLEDGE);
-            producer = session.createProducer(destination);
-            TextMessage message = session.createTextMessage();
-            for (int i = 0; i &lt; numMsgs; i++) {
-                message.setText(&quot;This is message &quot; + (i + 1));
-                LOG.info(&quot;Sending message: &quot; + message.getText());
-                producer.send(message);
-            }
-
-            /*
-             * Send a non-text control message indicating end of messages.
-             */
-            producer.send(session.createMessage());
-        } catch (JMSException e) {
-            LOG.info(&quot;Exception occurred: &quot; + e);
-        } finally {
-            if (connection != null) {
-                try {
-                    connection.close();
-                } catch (JMSException e) {
-                }
-            }
-        }
-    }
-}
-
-]]></script>
-</div></div></div>
+<div class="error"><span class="error">Error formatting macro: snippet: 
java.lang.IndexOutOfBoundsException: Index: 20, Size: 20</span> </div></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: 
websites/production/activemq/content/journal-is-already-opened-by-this-application.html
==============================================================================
--- 
websites/production/activemq/content/journal-is-already-opened-by-this-application.html
 (original)
+++ 
websites/production/activemq/content/journal-is-already-opened-by-this-application.html
 Fri Oct 16 13:34:29 2015
@@ -73,7 +73,7 @@
 <a href="community.html">Community</a>&nbsp;&gt;&nbsp;<a 
href="faq.html">FAQ</a>&nbsp;&gt;&nbsp;<a 
href="errors.html">Errors</a>&nbsp;&gt;&nbsp;<a 
href="exceptions.html">Exceptions</a>&nbsp;&gt;&nbsp;<a 
href="journal-is-already-opened-by-this-application.html">Journal is already 
opened by this application</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: websites/production/activemq/content/junit-reports.html
==============================================================================
--- websites/production/activemq/content/junit-reports.html (original)
+++ websites/production/activemq/content/junit-reports.html Fri Oct 16 13:34:29 
2015
@@ -64,7 +64,7 @@
 <a href="developers.html">Developers</a>&nbsp;&gt;&nbsp;<a 
href="junit-reports.html">JUnit Reports</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: websites/production/activemq/content/kaha-persistence.html
==============================================================================
--- websites/production/activemq/content/kaha-persistence.html (original)
+++ websites/production/activemq/content/kaha-persistence.html Fri Oct 16 
13:34:29 2015
@@ -73,7 +73,7 @@
 <a href="features.html">Features</a>&nbsp;&gt;&nbsp;<a 
href="persistence.html">Persistence</a>&nbsp;&gt;&nbsp;<a 
href="kaha-persistence.html">Kaha Persistence</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: 
websites/production/activemq/content/kahadb-replication-experimental.html
==============================================================================
--- websites/production/activemq/content/kahadb-replication-experimental.html 
(original)
+++ websites/production/activemq/content/kahadb-replication-experimental.html 
Fri Oct 16 13:34:29 2015
@@ -75,7 +75,7 @@
 <a href="features.html">Features</a>&nbsp;&gt;&nbsp;<a 
href="clustering.html">Clustering</a>&nbsp;&gt;&nbsp;<a 
href="masterslave.html">MasterSlave</a>&nbsp;&gt;&nbsp;<a 
href="kahadb-replication-experimental.html">KahaDB Replication 
(Experimental)</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: websites/production/activemq/content/kahadb.html
==============================================================================
--- websites/production/activemq/content/kahadb.html (original)
+++ websites/production/activemq/content/kahadb.html Fri Oct 16 13:34:29 2015
@@ -73,7 +73,7 @@
 <a href="features.html">Features</a>&nbsp;&gt;&nbsp;<a 
href="persistence.html">Persistence</a>&nbsp;&gt;&nbsp;<a 
href="kahadb.html">KahaDB</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: 
websites/production/activemq/content/known-bad-os-and-jvm-combinations.html
==============================================================================
--- websites/production/activemq/content/known-bad-os-and-jvm-combinations.html 
(original)
+++ websites/production/activemq/content/known-bad-os-and-jvm-combinations.html 
Fri Oct 16 13:34:29 2015
@@ -64,7 +64,7 @@
 <a href="using-activemq-4.html">Using ActiveMQ 4</a>&nbsp;&gt;&nbsp;<a 
href="known-bad-os-and-jvm-combinations.html">Known Bad OS and JVM 
Combinations</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: websites/production/activemq/content/latency.html
==============================================================================
--- websites/production/activemq/content/latency.html (original)
+++ websites/production/activemq/content/latency.html Fri Oct 16 13:34:29 2015
@@ -64,7 +64,7 @@
 <a href="community.html">Community</a>&nbsp;&gt;&nbsp;<a 
href="faq.html">FAQ</a>&nbsp;&gt;&nbsp;<a 
href="terminology.html">Terminology</a>&nbsp;&gt;&nbsp;<a 
href="latency.html">Latency</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: 
websites/production/activemq/content/ldap-broker-discovery-mechanism.html
==============================================================================
--- websites/production/activemq/content/ldap-broker-discovery-mechanism.html 
(original)
+++ websites/production/activemq/content/ldap-broker-discovery-mechanism.html 
Fri Oct 16 13:34:29 2015
@@ -73,7 +73,7 @@
 <a href="using-activemq-5.html">Using ActiveMQ 5</a>&nbsp;&gt;&nbsp;<a 
href="ldap-broker-discovery-mechanism.html">LDAP Broker Discovery Mechanism</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: websites/production/activemq/content/leveldb-store.html
==============================================================================
--- websites/production/activemq/content/leveldb-store.html (original)
+++ websites/production/activemq/content/leveldb-store.html Fri Oct 16 13:34:29 
2015
@@ -73,7 +73,7 @@
 <a href="features.html">Features</a>&nbsp;&gt;&nbsp;<a 
href="persistence.html">Persistence</a>&nbsp;&gt;&nbsp;<a 
href="leveldb-store.html">LevelDB Store</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: websites/production/activemq/content/life-cycle.html
==============================================================================
--- websites/production/activemq/content/life-cycle.html (original)
+++ websites/production/activemq/content/life-cycle.html Fri Oct 16 13:34:29 
2015
@@ -73,7 +73,7 @@
 <a href="features.html">Features</a>&nbsp;&gt;&nbsp;<a 
href="activemq-real-time.html">ActiveMQ Real Time</a>&nbsp;&gt;&nbsp;<a 
href="life-cycle.html">Life Cycle</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: websites/production/activemq/content/load-testing-with-camel.html
==============================================================================
--- websites/production/activemq/content/load-testing-with-camel.html (original)
+++ websites/production/activemq/content/load-testing-with-camel.html Fri Oct 
16 13:34:29 2015
@@ -73,7 +73,7 @@
 <a href="features.html">Features</a>&nbsp;&gt;&nbsp;<a 
href="performance.html">Performance</a>&nbsp;&gt;&nbsp;<a 
href="load-testing-with-camel.html">Load Testing with Camel</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: 
websites/production/activemq/content/log4j-warn-no-appenders-could-be-found-for-logger.html
==============================================================================
--- 
websites/production/activemq/content/log4j-warn-no-appenders-could-be-found-for-logger.html
 (original)
+++ 
websites/production/activemq/content/log4j-warn-no-appenders-could-be-found-for-logger.html
 Fri Oct 16 13:34:29 2015
@@ -73,7 +73,7 @@
 <a href="community.html">Community</a>&nbsp;&gt;&nbsp;<a 
href="faq.html">FAQ</a>&nbsp;&gt;&nbsp;<a 
href="errors.html">Errors</a>&nbsp;&gt;&nbsp;<a 
href="log4j-warn-no-appenders-could-be-found-for-logger.html">log4j-WARN No 
appenders could be found for logger</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: 
websites/production/activemq/content/logging-a-warning-if-you-forget-to-start-a-connection.html
==============================================================================
--- 
websites/production/activemq/content/logging-a-warning-if-you-forget-to-start-a-connection.html
 (original)
+++ 
websites/production/activemq/content/logging-a-warning-if-you-forget-to-start-a-connection.html
 Fri Oct 16 13:34:29 2015
@@ -64,7 +64,7 @@
 <a href="features.html">Features</a>&nbsp;&gt;&nbsp;<a 
href="logging-a-warning-if-you-forget-to-start-a-connection.html">Logging a 
warning if you forget to start a Connection</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: websites/production/activemq/content/logging-interceptor.html
==============================================================================
--- websites/production/activemq/content/logging-interceptor.html (original)
+++ websites/production/activemq/content/logging-interceptor.html Fri Oct 16 
13:34:29 2015
@@ -75,7 +75,7 @@
 <a href="features.html">Features</a>&nbsp;&gt;&nbsp;<a 
href="interceptors.html">Interceptors</a>&nbsp;&gt;&nbsp;<a 
href="logging-interceptor.html">Logging Interceptor</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 
@@ -83,34 +83,7 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-<div class="wiki-content maincontent"><h2 
id="LoggingInterceptor-LoggingInterceptor">Logging Interceptor</h2><p>The 
Logging Interceptor is a pretty trivial <a shape="rect" 
href="interceptors.html">Interceptor</a> which just logs to <a shape="rect" 
class="external-link" href="http://jakarta.apache.org/commons/logging/";>Jakarta 
Commons Logging</a> or <a shape="rect" class="external-link" 
href="http://logging.apache.org/log4j/docs/";>log4j</a> as messages are sent or 
acknowledged on a broker.</p><p>The default logging level used is 
<strong>INFO</strong>. If you want to increase/reduce the logging you can use 
<a shape="rect" href="how-do-i-change-the-logging.html">change it via commons 
logging or log4j</a>.</p><p>As of version 5.3 the logging Interceptor is more 
configurable. The idea is to log all events but be able to turn off logging for 
certain event groups by configuration.</p><p>Currently the following groups are 
supported:</p><div class="table-wrap"><table class="confluenceTable">
 <tbody><tr><th colspan="1" rowspan="1" 
class="confluenceTh"><p><strong>Attribute</strong></p></th><th colspan="1" 
rowspan="1" class="confluenceTh"><p><strong>Description</strong></p></th><th 
colspan="1" rowspan="1" class="confluenceTh"><p><strong>Default 
Value</strong></p></th></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"><p>logAll</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>Log all Events</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>false</p></td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"><p>logConnectionEvents</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>Events related to connections and sessions</p></td><td 
colspan="1" rowspan="1" class="confluenceTd"><p>true</p></td></tr><tr><td 
colspan="1" rowspan="1" 
class="confluenceTd"><p>logTransactionEvents</p></td><td colspan="1" 
rowspan="1" class="confluenceTd"><p>Events related to transaction 
handling</p></td><td colspan="1" rowspan="1" class="confluenceTd"><p>fals
 e</p></td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"><p>logConsumerEvents</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>Events related to consuming messages</p></td><td 
colspan="1" rowspan="1" class="confluenceTd"><p>false</p></td></tr><tr><td 
colspan="1" rowspan="1" class="confluenceTd"><p>logProducerEvents</p></td><td 
colspan="1" rowspan="1" class="confluenceTd"><p>Events related to producing 
messages</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>false</p></td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"><p>logInternalEvents</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>Events normally not of Interest for users like 
failover, querying internal objects etc</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>false</p></td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"><p>logSessionEvents</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>Events related to adding and removing sessions</p
 ></td><td colspan="1" rowspan="1" 
 >class="confluenceTd"><p>true</p></td></tr></tbody></table></div><p>Only 
 >connection events logging is enabled by default.</p><p>You can enable the 
 >logging interceptor using the following <a shape="rect" class="external-link" 
 >href="http://svn.apache.org/repos/asf/activemq/trunk/activemq-unit-tests/src/test/resources/org/apache/activemq/util/plugin-broker.xml";>XML
 > configuration</a>. This example enables all logging and disables the 
 >connection event logging:</p><div class="code panel pdl" style="border-width: 
 >1px;"><div class="codeContent panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
-&lt;beans 
-  xmlns=&quot;http://www.springframework.org/schema/beans&quot; 
-  xmlns:amq=&quot;http://activemq.apache.org/schema/core&quot;
-  xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;
-  xsi:schemaLocation=&quot;http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
-  http://activemq.apache.org/schema/core 
http://activemq.apache.org/schema/core/activemq-core.xsd&quot;&gt;
-
-  &lt;bean 
class=&quot;org.springframework.beans.factory.config.PropertyPlaceholderConfigurer&quot;/&gt;
-
-  &lt;broker useJmx=&quot;false&quot; persistent=&quot;false&quot; 
xmlns=&quot;http://activemq.apache.org/schema/core&quot;&gt;
-
-    &lt;plugins&gt;
-    
-      &lt;!-- lets enable detailed logging in the broker but ignore 
ConnectionEvents --&gt;
-      &lt;loggingBrokerPlugin logAll=&quot;true&quot; 
logConnectionEvents=&quot;false&quot;/&gt;
-      
-      &lt;timeStampingBrokerPlugin zeroExpirationOverride=&quot;1000&quot; 
ttlCeiling=&quot;60000&quot; futureOnly=&quot;true&quot;/&gt;
-      
-      &lt;traceBrokerPathPlugin/&gt;
-      
-    &lt;/plugins&gt;
-  &lt;/broker&gt;
-
-&lt;/beans&gt;
-]]></script>
-</div></div></div>
+<div class="wiki-content maincontent"><h2 
id="LoggingInterceptor-LoggingInterceptor">Logging Interceptor</h2><p>The 
Logging Interceptor is a pretty trivial <a shape="rect" 
href="interceptors.html">Interceptor</a> which just logs to <a shape="rect" 
class="external-link" href="http://jakarta.apache.org/commons/logging/";>Jakarta 
Commons Logging</a> or <a shape="rect" class="external-link" 
href="http://logging.apache.org/log4j/docs/";>log4j</a> as messages are sent or 
acknowledged on a broker.</p><p>The default logging level used is 
<strong>INFO</strong>. If you want to increase/reduce the logging you can use 
<a shape="rect" href="how-do-i-change-the-logging.html">change it via commons 
logging or log4j</a>.</p><p>As of version 5.3 the logging Interceptor is more 
configurable. The idea is to log all events but be able to turn off logging for 
certain event groups by configuration.</p><p>Currently the following groups are 
supported:</p><div class="table-wrap"><table class="confluenceTable">
 <tbody><tr><th colspan="1" rowspan="1" 
class="confluenceTh"><p><strong>Attribute</strong></p></th><th colspan="1" 
rowspan="1" class="confluenceTh"><p><strong>Description</strong></p></th><th 
colspan="1" rowspan="1" class="confluenceTh"><p><strong>Default 
Value</strong></p></th></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"><p>logAll</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>Log all Events</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>false</p></td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"><p>logConnectionEvents</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>Events related to connections and sessions</p></td><td 
colspan="1" rowspan="1" class="confluenceTd"><p>true</p></td></tr><tr><td 
colspan="1" rowspan="1" 
class="confluenceTd"><p>logTransactionEvents</p></td><td colspan="1" 
rowspan="1" class="confluenceTd"><p>Events related to transaction 
handling</p></td><td colspan="1" rowspan="1" class="confluenceTd"><p>fals
 e</p></td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"><p>logConsumerEvents</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>Events related to consuming messages</p></td><td 
colspan="1" rowspan="1" class="confluenceTd"><p>false</p></td></tr><tr><td 
colspan="1" rowspan="1" class="confluenceTd"><p>logProducerEvents</p></td><td 
colspan="1" rowspan="1" class="confluenceTd"><p>Events related to producing 
messages</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>false</p></td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"><p>logInternalEvents</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>Events normally not of Interest for users like 
failover, querying internal objects etc</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>false</p></td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"><p>logSessionEvents</p></td><td colspan="1" rowspan="1" 
class="confluenceTd"><p>Events related to adding and removing sessions</p
 ></td><td colspan="1" rowspan="1" 
 >class="confluenceTd"><p>true</p></td></tr></tbody></table></div><p>Only 
 >connection events logging is enabled by default.</p><p>You can enable the 
 >logging interceptor using the following <a shape="rect" class="external-link" 
 >href="http://svn.apache.org/repos/asf/activemq/trunk/activemq-unit-tests/src/test/resources/org/apache/activemq/util/plugin-broker.xml";>XML
 > configuration</a>. This example enables all logging and disables the 
 >connection event logging:</p><div class="error"><span class="error">Error 
 >formatting macro: snippet: java.lang.IndexOutOfBoundsException: Index: 20, 
 >Size: 20</span> </div></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/activemq/content/mailing-lists.html
==============================================================================
--- websites/production/activemq/content/mailing-lists.html (original)
+++ websites/production/activemq/content/mailing-lists.html Fri Oct 16 13:34:29 
2015
@@ -64,7 +64,7 @@
 <a href="community.html">Community</a>&nbsp;&gt;&nbsp;<a 
href="mailing-lists.html">Mailing Lists</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: websites/production/activemq/content/manage-durable-subscribers.html
==============================================================================
--- websites/production/activemq/content/manage-durable-subscribers.html 
(original)
+++ websites/production/activemq/content/manage-durable-subscribers.html Fri 
Oct 16 13:34:29 2015
@@ -73,7 +73,7 @@
 <a href="features.html">Features</a>&nbsp;&gt;&nbsp;<a 
href="consumer-features.html">Consumer Features</a>&nbsp;&gt;&nbsp;<a 
href="manage-durable-subscribers.html">Manage Durable Subscribers</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: websites/production/activemq/content/masterslave.html
==============================================================================
--- websites/production/activemq/content/masterslave.html (original)
+++ websites/production/activemq/content/masterslave.html Fri Oct 16 13:34:29 
2015
@@ -64,7 +64,7 @@
 <a href="features.html">Features</a>&nbsp;&gt;&nbsp;<a 
href="clustering.html">Clustering</a>&nbsp;&gt;&nbsp;<a 
href="masterslave.html">MasterSlave</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: 
websites/production/activemq/content/maven2-activemq-broker-plugin.html
==============================================================================
--- websites/production/activemq/content/maven2-activemq-broker-plugin.html 
(original)
+++ websites/production/activemq/content/maven2-activemq-broker-plugin.html Fri 
Oct 16 13:34:29 2015
@@ -73,7 +73,7 @@
 <a href="tools.html">Tools</a>&nbsp;&gt;&nbsp;<a 
href="maven2-activemq-broker-plugin.html">Maven2 ActiveMQ Broker Plugin</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: websites/production/activemq/content/mdc-logging.html
==============================================================================
--- websites/production/activemq/content/mdc-logging.html (original)
+++ websites/production/activemq/content/mdc-logging.html Fri Oct 16 13:34:29 
2015
@@ -73,7 +73,7 @@
 <a href="features.html">Features</a>&nbsp;&gt;&nbsp;<a 
href="mdc-logging.html">MDC Logging</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: websites/production/activemq/content/message-cursors.html
==============================================================================
--- websites/production/activemq/content/message-cursors.html (original)
+++ websites/production/activemq/content/message-cursors.html Fri Oct 16 
13:34:29 2015
@@ -73,7 +73,7 @@
 <a href="features.html">Features</a>&nbsp;&gt;&nbsp;<a 
href="message-dispatching-features.html">Message Dispatching 
Features</a>&nbsp;&gt;&nbsp;<a href="message-cursors.html">Message Cursors</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: websites/production/activemq/content/message-dispatching-features.html
==============================================================================
--- websites/production/activemq/content/message-dispatching-features.html 
(original)
+++ websites/production/activemq/content/message-dispatching-features.html Fri 
Oct 16 13:34:29 2015
@@ -64,7 +64,7 @@
 <a href="features.html">Features</a>&nbsp;&gt;&nbsp;<a 
href="message-dispatching-features.html">Message Dispatching Features</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: websites/production/activemq/content/message-features.html
==============================================================================
--- websites/production/activemq/content/message-features.html (original)
+++ websites/production/activemq/content/message-features.html Fri Oct 16 
13:34:29 2015
@@ -64,7 +64,7 @@
 <a href="features.html">Features</a>&nbsp;&gt;&nbsp;<a 
href="message-features.html">Message Features</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: websites/production/activemq/content/message-groups.html
==============================================================================
--- websites/production/activemq/content/message-groups.html (original)
+++ websites/production/activemq/content/message-groups.html Fri Oct 16 
13:34:29 2015
@@ -73,7 +73,7 @@
 <a href="features.html">Features</a>&nbsp;&gt;&nbsp;<a 
href="consumer-features.html">Consumer Features</a>&nbsp;&gt;&nbsp;<a 
href="message-groups.html">Message Groups</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: 
websites/production/activemq/content/message-redelivery-and-dlq-handling.html
==============================================================================
--- 
websites/production/activemq/content/message-redelivery-and-dlq-handling.html 
(original)
+++ 
websites/production/activemq/content/message-redelivery-and-dlq-handling.html 
Fri Oct 16 13:34:29 2015
@@ -74,7 +74,7 @@
 <a href="developers.html">Developers</a>&nbsp;&gt;&nbsp;<a 
href="developer-guide.html">Developer Guide</a>&nbsp;&gt;&nbsp;<a 
href="design-documents.html">Design Documents</a>&nbsp;&gt;&nbsp;<a 
href="message-redelivery-and-dlq-handling.html">Message Redelivery and DLQ 
Handling</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: websites/production/activemq/content/message-transformation.html
==============================================================================
--- websites/production/activemq/content/message-transformation.html (original)
+++ websites/production/activemq/content/message-transformation.html Fri Oct 16 
13:34:29 2015
@@ -64,7 +64,7 @@
 <a href="features.html">Features</a>&nbsp;&gt;&nbsp;<a 
href="message-features.html">Message Features</a>&nbsp;&gt;&nbsp;<a 
href="message-transformation.html">Message Transformation</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: websites/production/activemq/content/mirrored-queues.html
==============================================================================
--- websites/production/activemq/content/mirrored-queues.html (original)
+++ websites/production/activemq/content/mirrored-queues.html Fri Oct 16 
13:34:29 2015
@@ -73,7 +73,7 @@
 <a href="features.html">Features</a>&nbsp;&gt;&nbsp;<a 
href="destination-features.html">Destination Features</a>&nbsp;&gt;&nbsp;<a 
href="mirrored-queues.html">Mirrored Queues</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: websites/production/activemq/content/mom.html
==============================================================================
--- websites/production/activemq/content/mom.html (original)
+++ websites/production/activemq/content/mom.html Fri Oct 16 13:34:29 2015
@@ -64,7 +64,7 @@
 <a href="community.html">Community</a>&nbsp;&gt;&nbsp;<a 
href="faq.html">FAQ</a>&nbsp;&gt;&nbsp;<a 
href="terminology.html">Terminology</a>&nbsp;&gt;&nbsp;<a 
href="mom.html">MOM</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: websites/production/activemq/content/monitoring-activemq.html
==============================================================================
--- websites/production/activemq/content/monitoring-activemq.html (original)
+++ websites/production/activemq/content/monitoring-activemq.html Fri Oct 16 
13:34:29 2015
@@ -64,7 +64,7 @@
 <a href="using-activemq-4.html">Using ActiveMQ 4</a>&nbsp;&gt;&nbsp;<a 
href="getting-started.html">Getting Started</a>&nbsp;&gt;&nbsp;<a 
href="monitoring-activemq.html">Monitoring ActiveMQ</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: websites/production/activemq/content/mqtt.html
==============================================================================
--- websites/production/activemq/content/mqtt.html (original)
+++ websites/production/activemq/content/mqtt.html Fri Oct 16 13:34:29 2015
@@ -74,7 +74,7 @@
 <a href="connectivity.html">Connectivity</a>&nbsp;&gt;&nbsp;<a 
href="protocols.html">Protocols</a>&nbsp;&gt;&nbsp;<a href="mqtt.html">MQTT</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: 
websites/production/activemq/content/multicast-transport-reference.html
==============================================================================
--- websites/production/activemq/content/multicast-transport-reference.html 
(original)
+++ websites/production/activemq/content/multicast-transport-reference.html Fri 
Oct 16 13:34:29 2015
@@ -64,7 +64,7 @@
 <a href="using-activemq-4.html">Using ActiveMQ 4</a>&nbsp;&gt;&nbsp;<a 
href="configuring-transports.html">Configuring Transports</a>&nbsp;&gt;&nbsp;<a 
href="activemq-4-connection-uris.html">ActiveMQ 4 Connection 
URIs</a>&nbsp;&gt;&nbsp;<a href="multicast-transport-reference.html">Multicast 
Transport Reference</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: websites/production/activemq/content/multicast-transport.html
==============================================================================
--- websites/production/activemq/content/multicast-transport.html (original)
+++ websites/production/activemq/content/multicast-transport.html Fri Oct 16 
13:34:29 2015
@@ -64,7 +64,7 @@
 <a href="developers.html">Developers</a>&nbsp;&gt;&nbsp;<a 
href="developer-guide.html">Developer Guide</a>&nbsp;&gt;&nbsp;<a 
href="design-documents.html">Design Documents</a>&nbsp;&gt;&nbsp;<a 
href="multicast-transport.html">Multicast Transport</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: 
websites/production/activemq/content/multicast-watch-out-for-ipv6-vs-ipv4-support-on-your-operating-system-or-distribution-or-network.html
==============================================================================
--- 
websites/production/activemq/content/multicast-watch-out-for-ipv6-vs-ipv4-support-on-your-operating-system-or-distribution-or-network.html
 (original)
+++ 
websites/production/activemq/content/multicast-watch-out-for-ipv6-vs-ipv4-support-on-your-operating-system-or-distribution-or-network.html
 Fri Oct 16 13:34:29 2015
@@ -64,7 +64,7 @@
 <a href="community.html">Community</a>&nbsp;&gt;&nbsp;<a 
href="faq.html">FAQ</a>&nbsp;&gt;&nbsp;<a 
href="errors.html">Errors</a>&nbsp;&gt;&nbsp;<a 
href="multicast-watch-out-for-ipv6-vs-ipv4-support-on-your-operating-system-or-distribution-or-network.html">Multicast
 - Watch out for IPV6 vs IPV4 support on your operating system or distribution 
or network</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: 
websites/production/activemq/content/multiple-consumers-on-a-queue.html
==============================================================================
--- websites/production/activemq/content/multiple-consumers-on-a-queue.html 
(original)
+++ websites/production/activemq/content/multiple-consumers-on-a-queue.html Fri 
Oct 16 13:34:29 2015
@@ -64,7 +64,7 @@
 <a href="community.html">Community</a>&nbsp;&gt;&nbsp;<a 
href="faq.html">FAQ</a>&nbsp;&gt;&nbsp;<a 
href="jms.html">JMS</a>&nbsp;&gt;&nbsp;<a 
href="multiple-consumers-on-a-queue.html">Multiple consumers on a queue</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: websites/production/activemq/content/my-producer-blocks.html
==============================================================================
--- websites/production/activemq/content/my-producer-blocks.html (original)
+++ websites/production/activemq/content/my-producer-blocks.html Fri Oct 16 
13:34:29 2015
@@ -64,7 +64,7 @@
 <a href="community.html">Community</a>&nbsp;&gt;&nbsp;<a 
href="faq.html">FAQ</a>&nbsp;&gt;&nbsp;<a 
href="errors.html">Errors</a>&nbsp;&gt;&nbsp;<a 
href="my-producer-blocks.html">My producer blocks</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: websites/production/activemq/content/navigation.html
==============================================================================
--- websites/production/activemq/content/navigation.html (original)
+++ websites/production/activemq/content/navigation.html Fri Oct 16 13:34:29 
2015
@@ -64,7 +64,7 @@
 <a href="site.html">Site</a>&nbsp;&gt;&nbsp;<a 
href="navigation.html">Navigation</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: websites/production/activemq/content/networks-of-brokers.html
==============================================================================
--- websites/production/activemq/content/networks-of-brokers.html (original)
+++ websites/production/activemq/content/networks-of-brokers.html Fri Oct 16 
13:34:29 2015
@@ -74,7 +74,7 @@
 <a href="features.html">Features</a>&nbsp;&gt;&nbsp;<a 
href="clustering.html">Clustering</a>&nbsp;&gt;&nbsp;<a 
href="networks-of-brokers.html">Networks of Brokers</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: websites/production/activemq/content/new-features-in-41.html
==============================================================================
--- websites/production/activemq/content/new-features-in-41.html (original)
+++ websites/production/activemq/content/new-features-in-41.html Fri Oct 16 
13:34:29 2015
@@ -64,7 +64,7 @@
 <a href="features.html">Features</a>&nbsp;&gt;&nbsp;<a 
href="new-features.html">New Features</a>&nbsp;&gt;&nbsp;<a 
href="new-features-in-41.html">New Features in 4.1</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: websites/production/activemq/content/new-features-in-50.html
==============================================================================
--- websites/production/activemq/content/new-features-in-50.html (original)
+++ websites/production/activemq/content/new-features-in-50.html Fri Oct 16 
13:34:29 2015
@@ -64,7 +64,7 @@
 <a href="features.html">Features</a>&nbsp;&gt;&nbsp;<a 
href="new-features.html">New Features</a>&nbsp;&gt;&nbsp;<a 
href="new-features-in-50.html">New Features in 5.0</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: websites/production/activemq/content/new-features-in-51.html
==============================================================================
--- websites/production/activemq/content/new-features-in-51.html (original)
+++ websites/production/activemq/content/new-features-in-51.html Fri Oct 16 
13:34:29 2015
@@ -64,7 +64,7 @@
 <a href="features.html">Features</a>&nbsp;&gt;&nbsp;<a 
href="new-features.html">New Features</a>&nbsp;&gt;&nbsp;<a 
href="new-features-in-51.html">New Features in 5.1</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: websites/production/activemq/content/new-features-in-511.html
==============================================================================
--- websites/production/activemq/content/new-features-in-511.html (original)
+++ websites/production/activemq/content/new-features-in-511.html Fri Oct 16 
13:34:29 2015
@@ -64,7 +64,7 @@
 <a href="features.html">Features</a>&nbsp;&gt;&nbsp;<a 
href="new-features.html">New Features</a>&nbsp;&gt;&nbsp;<a 
href="new-features-in-511.html">New Features in 5.11</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: websites/production/activemq/content/new-features-in-52.html
==============================================================================
--- websites/production/activemq/content/new-features-in-52.html (original)
+++ websites/production/activemq/content/new-features-in-52.html Fri Oct 16 
13:34:29 2015
@@ -64,7 +64,7 @@
 <a href="features.html">Features</a>&nbsp;&gt;&nbsp;<a 
href="new-features.html">New Features</a>&nbsp;&gt;&nbsp;<a 
href="new-features-in-52.html">New Features in 5.2</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: websites/production/activemq/content/new-features-in-53.html
==============================================================================
--- websites/production/activemq/content/new-features-in-53.html (original)
+++ websites/production/activemq/content/new-features-in-53.html Fri Oct 16 
13:34:29 2015
@@ -64,7 +64,7 @@
 <a href="features.html">Features</a>&nbsp;&gt;&nbsp;<a 
href="new-features.html">New Features</a>&nbsp;&gt;&nbsp;<a 
href="new-features-in-53.html">New Features in 5.3</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: websites/production/activemq/content/new-features-in-54.html
==============================================================================
--- websites/production/activemq/content/new-features-in-54.html (original)
+++ websites/production/activemq/content/new-features-in-54.html Fri Oct 16 
13:34:29 2015
@@ -64,7 +64,7 @@
 <a href="features.html">Features</a>&nbsp;&gt;&nbsp;<a 
href="new-features.html">New Features</a>&nbsp;&gt;&nbsp;<a 
href="new-features-in-54.html">New Features in 5.4</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: websites/production/activemq/content/new-features-in-55.html
==============================================================================
--- websites/production/activemq/content/new-features-in-55.html (original)
+++ websites/production/activemq/content/new-features-in-55.html Fri Oct 16 
13:34:29 2015
@@ -64,7 +64,7 @@
 <a href="features.html">Features</a>&nbsp;&gt;&nbsp;<a 
href="new-features.html">New Features</a>&nbsp;&gt;&nbsp;<a 
href="new-features-in-55.html">New Features in 5.5</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: websites/production/activemq/content/new-features-in-56.html
==============================================================================
--- websites/production/activemq/content/new-features-in-56.html (original)
+++ websites/production/activemq/content/new-features-in-56.html Fri Oct 16 
13:34:29 2015
@@ -64,7 +64,7 @@
 <a href="features.html">Features</a>&nbsp;&gt;&nbsp;<a 
href="new-features.html">New Features</a>&nbsp;&gt;&nbsp;<a 
href="new-features-in-56.html">New Features in 5.6</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: websites/production/activemq/content/new-features-in-57.html
==============================================================================
--- websites/production/activemq/content/new-features-in-57.html (original)
+++ websites/production/activemq/content/new-features-in-57.html Fri Oct 16 
13:34:29 2015
@@ -64,7 +64,7 @@
 <a href="features.html">Features</a>&nbsp;&gt;&nbsp;<a 
href="new-features.html">New Features</a>&nbsp;&gt;&nbsp;<a 
href="new-features-in-57.html">New Features in 5.7</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: websites/production/activemq/content/new-features-in-58.html
==============================================================================
--- websites/production/activemq/content/new-features-in-58.html (original)
+++ websites/production/activemq/content/new-features-in-58.html Fri Oct 16 
13:34:29 2015
@@ -64,7 +64,7 @@
 <a href="features.html">Features</a>&nbsp;&gt;&nbsp;<a 
href="new-features.html">New Features</a>&nbsp;&gt;&nbsp;<a 
href="new-features-in-58.html">New Features in 5.8</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: websites/production/activemq/content/new-features-in-59.html
==============================================================================
--- websites/production/activemq/content/new-features-in-59.html (original)
+++ websites/production/activemq/content/new-features-in-59.html Fri Oct 16 
13:34:29 2015
@@ -64,7 +64,7 @@
 <a href="features.html">Features</a>&nbsp;&gt;&nbsp;<a 
href="new-features.html">New Features</a>&nbsp;&gt;&nbsp;<a 
href="new-features-in-59.html">New Features in 5.9</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: websites/production/activemq/content/new-features-in-60.html
==============================================================================
--- websites/production/activemq/content/new-features-in-60.html (original)
+++ websites/production/activemq/content/new-features-in-60.html Fri Oct 16 
13:34:29 2015
@@ -64,7 +64,7 @@
 <a href="features.html">Features</a>&nbsp;&gt;&nbsp;<a 
href="new-features.html">New Features</a>&nbsp;&gt;&nbsp;<a 
href="new-features-in-60.html">New Features in 6.0</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 

Modified: websites/production/activemq/content/new-features.html
==============================================================================
--- websites/production/activemq/content/new-features.html (original)
+++ websites/production/activemq/content/new-features.html Fri Oct 16 13:34:29 
2015
@@ -64,7 +64,7 @@
 <a href="features.html">Features</a>&nbsp;&gt;&nbsp;<a 
href="new-features.html">New Features</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/5.12.0/apidocs/index.html";>JavaDocs</a> 
<a shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" 
class="external-link" 
href="http://activemq.apache.org/maven/apidocs/index.html";>JavaDocs</a> <a 
shape="rect" href="javadocs.html">More...</a> | <a shape="rect" 
href="source.html">Source</a> | <a shape="rect" 
href="discussion-forums.html">Forums</a> | <a shape="rect" 
href="support.html">Support</a></p>
           </div>
         </div>
 


Reply via email to