You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by bu...@apache.org on 2013/11/13 18:23:21 UTC

svn commit: r886526 [2/21] - in /websites/production/activemq/content: ./ 2004/04/13/ 2004/05/26/ 2004/06/23/ 2004/06/25/ 2004/08/17/ 2004/08/23/ 2004/10/07/ 2004/11/02/ 2004/12/20/ 2005/02/03/ 2005/02/25/ 2005/04/11/ 2005/06/06/ 2005/07/04/ 2005/07/13...

Modified: websites/production/activemq/content/2005/02/25/activemq-21-released-with-high-performance-journalling.html
==============================================================================
--- websites/production/activemq/content/2005/02/25/activemq-21-released-with-high-performance-journalling.html (original)
+++ websites/production/activemq/content/2005/02/25/activemq-21-released-with-high-performance-journalling.html Wed Nov 13 17:23:00 2013
@@ -72,9 +72,15 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-          <div class="wiki-content maincontent">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/maven/5.9.0/apidocs/index.html">JavaDocs</a> <a shape="rect" href="javadocs.html" title="JavaDocs">More...</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" href="discussion-forums.html" title="Discussion Forums">Forums</a> | <a shape="rect" href="support.html" title="Support">Support</a></p>
-          </div>
+<div class="wiki-content maincontent">
+
+<p>The new <a shape="rect" href="../../../activemq-21-release.html" title="ActiveMQ 2.1 Release">ActiveMQ 2.1 Release</a> is out which includes full support for the high performance journal. </p>
+
+<p>Our default persistence mechanism is now the journal for short term persistence and then JDBC (via Apache Derby by default) for long term storage. The journal is regularly checkpointed with the database which gives great high performance while still providing good resiliancy (messages are on disk, not in RAM like some other providers do).</p>
+
+<p>This new release also includes a number of performance enhancements in both durable and non durable messaging as well as a number of bug fixes.</p>
+
+<p>You can get the release from the usual <a shape="rect" href="../../../download.html" title="Download">Download</a> page.</p></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/activemq/content/2005/04/11/activemq-30-released.html
==============================================================================
--- websites/production/activemq/content/2005/04/11/activemq-30-released.html (original)
+++ websites/production/activemq/content/2005/04/11/activemq-30-released.html Wed Nov 13 17:23:00 2013
@@ -72,9 +72,14 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-          <div class="wiki-content maincontent">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/maven/5.9.0/apidocs/index.html">JavaDocs</a> <a shape="rect" href="javadocs.html" title="JavaDocs">More...</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" href="discussion-forums.html" title="Discussion Forums">Forums</a> | <a shape="rect" href="support.html" title="Support">Support</a></p>
-          </div>
+<div class="wiki-content maincontent">
+
+<p>We're pleased to announce the <a shape="rect" href="../../../download.html" title="Download">3.0 release</a> of ActiveMQ. Alot of tuning, testing and fixes have been incorporated into this release. A few notable new features are</p>
+
+<ul><li>a new 'discovery' transport <a shape="rect" href="../../../uri-protocols.html" title="URI Protocols">protocol</a> for a pure client-only peer network - a self discovering cluster which automatically finds the brokers available on the network (as opposed to the 'peer' protocol which is a complete peer based JMS network).</li><li>migrated from the org.activemq to org.activemq package name hierarchy</li><li>improved support for more JDBC databases for persistence</li><li>an optimised wire protocol (which is unfortunately not compatible with 2.x)</li></ul>
+
+
+<p>For more details please see the <a shape="rect" href="../../../activemq-30-release.html" title="ActiveMQ 3.0 Release">release notes</a></p></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/activemq/content/2005/06/06/using-activemq-with-the-spring-jmstemplate.html
==============================================================================
--- websites/production/activemq/content/2005/06/06/using-activemq-with-the-spring-jmstemplate.html (original)
+++ websites/production/activemq/content/2005/06/06/using-activemq-with-the-spring-jmstemplate.html Wed Nov 13 17:23:00 2013
@@ -72,9 +72,34 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-          <div class="wiki-content maincontent">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/maven/5.9.0/apidocs/index.html">JavaDocs</a> <a shape="rect" href="javadocs.html" title="JavaDocs">More...</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" href="discussion-forums.html" title="Discussion Forums">Forums</a> | <a shape="rect" href="support.html" title="Support">Support</a></p>
-          </div>
+<div class="wiki-content maincontent">
+<p>Spring supports a useful JMS abstraction called JmsTemplate which makes sending and consuming messages a little simpler than using the JMS APIs directly. The only downside of this abstraction is that each send() will create a connection, session, producer, send the message, then close them all down. This is a really inefficient operation with most JMS providers as each create of a connection, session, producer ends up being an RPC with the broker, if nothing else, for security reasons.</p>
+
+<p>In 3.1-M2 or later of ActiveMQ there's a <a shape="rect" href="../../../spring-support.html" title="Spring Support">simple solution</a> using the org.activemq.pool.PooledConnectionFactory which will perform  pooling of JMS resources (connection, session, producer) to make sending messages efficiently. The same thing is true if you wanna use a similar pattern to the JmsTemplate to send messages from inside EJBs.</p>
+
+<p>Here's an example of it in use inside a Spring config file.</p>
+
+<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
+<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
+  &lt;!-- a pooling based JMS provider --&gt;
+  &lt;bean id="jmsFactory" class="org.activemq.pool.PooledConnectionFactory"&gt;
+    &lt;property name="connectionFactory"&gt;
+      &lt;bean class="org.activemq.ActiveMQConnectionFactory"&gt;
+        &lt;property name="brokerURL"&gt;
+          &lt;value&gt;tcp://localhost:61616&lt;/value&gt;
+        &lt;/property&gt;
+      &lt;/bean&gt;
+    &lt;/property&gt;
+  &lt;/bean&gt;
+
+  &lt;!-- Spring JMS Template --&gt;
+  &lt;bean id="myJmsTemplate" class="org.springframework.jms.core.JmsTemplate"&gt;
+    &lt;property name="connectionFactory"&gt;
+      &lt;ref local="jmsFactory"/&gt;
+    &lt;/property&gt;
+  &lt;/bean&gt;
+]]></script>
+</div></div></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/activemq/content/2005/07/04/javaone-jug-slides-available-for-activemq-and-servicemix.html
==============================================================================
--- websites/production/activemq/content/2005/07/04/javaone-jug-slides-available-for-activemq-and-servicemix.html (original)
+++ websites/production/activemq/content/2005/07/04/javaone-jug-slides-available-for-activemq-and-servicemix.html Wed Nov 13 17:23:00 2013
@@ -72,9 +72,11 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-          <div class="wiki-content maincontent">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/maven/5.9.0/apidocs/index.html">JavaDocs</a> <a shape="rect" href="javadocs.html" title="JavaDocs">More...</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" href="discussion-forums.html" title="Discussion Forums">Forums</a> | <a shape="rect" href="support.html" title="Support">Support</a></p>
-          </div>
+<div class="wiki-content maincontent">
+<p>We had a great JUG at JavaOne with plenty of beer and a few slides <img align="middle" class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/smile.gif" height="20" width="20" alt="" border="0"> It was a fairly brief presentation, giving an overview of <a shape="rect" class="external-link" href="http://activemq.org/" rel="nofollow">ActiveMQ</a> and <a shape="rect" class="external-link" href="http://servicemix.org/" rel="nofollow">ServiceMix</a>. Thanks to all those who attended!</p>
+
+<p>You can browse the slides <a shape="rect" class="external-link" href="http://servicemix.org/docs/JUG-06.28.05.ppt" rel="nofollow">PPT</a> or  <a shape="rect" class="external-link" href="http://servicemix.org/docs/JUG-06.28.05.pdf" rel="nofollow">PDF</a></p>
+</div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/activemq/content/2005/07/13/hermes-jms-messagestores-are-cool.html
==============================================================================
--- websites/production/activemq/content/2005/07/13/hermes-jms-messagestores-are-cool.html (original)
+++ websites/production/activemq/content/2005/07/13/hermes-jms-messagestores-are-cool.html Wed Nov 13 17:23:00 2013
@@ -72,9 +72,8 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-          <div class="wiki-content maincontent">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/maven/5.9.0/apidocs/index.html">JavaDocs</a> <a shape="rect" href="javadocs.html" title="JavaDocs">More...</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" href="discussion-forums.html" title="Discussion Forums">Forums</a> | <a shape="rect" href="support.html" title="Support">Support</a></p>
-          </div>
+<div class="wiki-content maincontent">
+<p>Here is a <a shape="rect" class="external-link" href="http://hermesjms.com/demos/messagestores.html" rel="nofollow">great demo</a> of how useful the <a shape="rect" class="external-link" href="http://hermesjms.com" rel="nofollow">HermesJms</a> tool can be when working with a JMS provider like <a shape="rect" class="external-link" href="http://activemq.org" rel="nofollow">ActiveMQ</a>. Nice work Colin!</p></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/activemq/content/2005/07/13/simpler-integration-of-the-activemq-broker-into-spring.html
==============================================================================
--- websites/production/activemq/content/2005/07/13/simpler-integration-of-the-activemq-broker-into-spring.html (original)
+++ websites/production/activemq/content/2005/07/13/simpler-integration-of-the-activemq-broker-into-spring.html Wed Nov 13 17:23:00 2013
@@ -72,9 +72,19 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-          <div class="wiki-content maincontent">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/maven/5.9.0/apidocs/index.html">JavaDocs</a> <a shape="rect" href="javadocs.html" title="JavaDocs">More...</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" href="discussion-forums.html" title="Discussion Forums">Forums</a> | <a shape="rect" href="support.html" title="Support">Support</a></p>
-          </div>
+<div class="wiki-content maincontent">
+<p>It was often a bit harder than it might be to configure an ActiveMQ broker inside a Spring XML configuration file. We've just added a simple Spring FactoryBean to make this process much simpler...</p>
+
+<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
+<script class="theme: Default; brush: xml; gutter: false" type="syntaxhighlighter"><![CDATA[
+  &lt;!-- lets deploy an embedded broker in this spring.xml --&gt;
+  &lt;bean id="broker" class="org.activemq.spring.BrokerFactoryBean"&gt;
+    &lt;property name="config" value="classpath:foo/bar/broker.xml"/&gt;
+  &lt;/bean&gt;
+]]></script>
+</div></div>
+
+<p>See <a shape="rect" href="../../../how-do-i-embed-a-broker-inside-a-connection.html" title="How do I embed a Broker inside a Connection">more detail</a> or try the <a shape="rect" href="../../../spring-support.html" title="Spring Support">Spring Support</a></p></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/activemq/content/2005/07/15/great-blog-post-on-message-driven-pojos.html
==============================================================================
--- websites/production/activemq/content/2005/07/15/great-blog-post-on-message-driven-pojos.html (original)
+++ websites/production/activemq/content/2005/07/15/great-blog-post-on-message-driven-pojos.html Wed Nov 13 17:23:00 2013
@@ -72,9 +72,10 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-          <div class="wiki-content maincontent">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/maven/5.9.0/apidocs/index.html">JavaDocs</a> <a shape="rect" href="javadocs.html" title="JavaDocs">More...</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" href="discussion-forums.html" title="Discussion Forums">Forums</a> | <a shape="rect" href="support.html" title="Support">Support</a></p>
-          </div>
+<div class="wiki-content maincontent">
+<p><a shape="rect" class="external-link" href="http://jroller.com/page/habuma/" rel="nofollow">Craig</a> has a great post on <a shape="rect" class="external-link" href="http://jroller.com/page/habuma/20050715#message_driven_pojos" rel="nofollow">message driven POJOs</a>. If you can make it to the <a shape="rect" class="external-link" href="http://www.nofluffjuststuff.com/show_view.jsp?showId=33" rel="nofollow">LoneStar Software Symposium</a> to see Craig's talk it sounds well worth attending. CoolBeans!</p>
+
+<p>Also of interest is a new <a shape="rect" class="external-link" href="http://confluence.atlassian.com/display/JIRAEXT/JMS+Service" rel="nofollow">JIRA plugin for JMS and ActiveMQ</a> - thanks for the heads up <a shape="rect" class="external-link" href="http://blogs.atlassian.com/rebelutionary/" rel="nofollow">Mike</a></p></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/activemq/content/2005/08/25/activemq-31-released-with-ruby-and-perl-support.html
==============================================================================
--- websites/production/activemq/content/2005/08/25/activemq-31-released-with-ruby-and-perl-support.html (original)
+++ websites/production/activemq/content/2005/08/25/activemq-31-released-with-ruby-and-perl-support.html Wed Nov 13 17:23:00 2013
@@ -72,9 +72,14 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-          <div class="wiki-content maincontent">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/maven/5.9.0/apidocs/index.html">JavaDocs</a> <a shape="rect" href="javadocs.html" title="JavaDocs">More...</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" href="discussion-forums.html" title="Discussion Forums">Forums</a> | <a shape="rect" href="support.html" title="Support">Support</a></p>
-          </div>
+<div class="wiki-content maincontent">
+<p>The long awaited <a shape="rect" href="../../../activemq-31-release.html" title="ActiveMQ 3.1 Release">ActiveMQ 3.1 Release</a> is finally out. Who-hoo! Many thanks to all those on the <a shape="rect" href="../../../team.html" title="Team">Team</a> who've helped.</p>
+
+<p>This release includes support for Ruby and Perl thanks to the <a shape="rect" class="external-link" href="http://stomp.codehaus.org/" rel="nofollow">Stomp</a> project together with <a shape="rect" href="../../../activemq-31-release.html" title="ActiveMQ 3.1 Release">heaps of new features</a> such as better persistence, journalling and integration with JNDI, JCA, Servlets, Spring, WebLogic and JBoss. </p>
+
+<p>Go on, <a shape="rect" href="../../../download.html" title="Download">Download</a> it today!</p>
+
+<p>Enjoy!</p></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/activemq/content/2005/09/14/activemq-integrates-with-openrico-ajax-library.html
==============================================================================
--- websites/production/activemq/content/2005/09/14/activemq-integrates-with-openrico-ajax-library.html (original)
+++ websites/production/activemq/content/2005/09/14/activemq-integrates-with-openrico-ajax-library.html Wed Nov 13 17:23:00 2013
@@ -72,9 +72,12 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-          <div class="wiki-content maincontent">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/maven/5.9.0/apidocs/index.html">JavaDocs</a> <a shape="rect" href="javadocs.html" title="JavaDocs">More...</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" href="discussion-forums.html" title="Discussion Forums">Forums</a> | <a shape="rect" href="support.html" title="Support">Support</a></p>
-          </div>
+<div class="wiki-content maincontent">
+<p>We've now migrated our real time portfolio <a shape="rect" href="../../../ajax.html" title="Ajax">Ajax</a> demo to use the <a shape="rect" class="external-link" href="http://openrico.org/" rel="nofollow">OpenRico</a> library. Cool Beans!</p>
+
+<p>This means you can now use an off the self Ajax library such as Rico for the browser side, then use ActiveMQ as the message broker on the server side for handling your scalable asynchronous messaging.</p>
+
+<p>I'm sure we're only scratching the surface of the <a shape="rect" href="../../../ajax.html" title="Ajax">Ajax</a> possibilities as we start to integrate asynchronous messaging and real time eventing into web applications.</p></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/activemq/content/2005/10/11/activemq-adds-xbean-support-for-custom-spring-xml-processing.html
==============================================================================
--- websites/production/activemq/content/2005/10/11/activemq-adds-xbean-support-for-custom-spring-xml-processing.html (original)
+++ websites/production/activemq/content/2005/10/11/activemq-adds-xbean-support-for-custom-spring-xml-processing.html Wed Nov 13 17:23:00 2013
@@ -72,9 +72,10 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-          <div class="wiki-content maincontent">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/maven/5.9.0/apidocs/index.html">JavaDocs</a> <a shape="rect" href="javadocs.html" title="JavaDocs">More...</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" href="discussion-forums.html" title="Discussion Forums">Forums</a> | <a shape="rect" href="support.html" title="Support">Support</a></p>
-          </div>
+<div class="wiki-content maincontent">
+<p>Craig has a <a shape="rect" class="external-link" href="http://jroller.com/page/habuma/20051011" rel="nofollow">great post</a> which describes how XBean can really help provide a <a shape="rect" class="external-link" href="http://docs.codehaus.org/display/XB/Custom+XML" rel="nofollow">customized XML language</a> with Spring XML configuration extensibility. We're really happy with it so far and have moved away from XSLT and custom DOM processing to the simpler XBean model in ActiveMQ and <a shape="rect" class="external-link" href="http://jencks.org" rel="nofollow">Jencks</a> with <a shape="rect" class="external-link" href="http://servicemix.org" rel="nofollow">ServiceMix</a> to follow suit real soon now.</p>
+
+<p>Whats cool is we've just about got a working XBean Ant task to auto-generate the configuration, the XSD and HTML documentaiton now. e.g. here's the <a shape="rect" class="external-link" href="http://codehaus.org/~jstrachan/servicemix.xsd.html" rel="nofollow">current</a> ServiceMix generated documentation.</p></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/activemq/content/2005/10/26/activemq-32-released-with-stomp-10-and-improved-ajax.html
==============================================================================
--- websites/production/activemq/content/2005/10/26/activemq-32-released-with-stomp-10-and-improved-ajax.html (original)
+++ websites/production/activemq/content/2005/10/26/activemq-32-released-with-stomp-10-and-improved-ajax.html Wed Nov 13 17:23:00 2013
@@ -72,9 +72,13 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-          <div class="wiki-content maincontent">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/maven/5.9.0/apidocs/index.html">JavaDocs</a> <a shape="rect" href="javadocs.html" title="JavaDocs">More...</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" href="discussion-forums.html" title="Discussion Forums">Forums</a> | <a shape="rect" href="support.html" title="Support">Support</a></p>
-          </div>
+<div class="wiki-content maincontent">
+<p>This new release includes the following</p>
+
+<ul><li>Improved <a shape="rect" class="external-link" href="http://stomp.codehaus.org/" rel="nofollow">Stomp</a> 1.0 support to make it easy to create cross language clients such as for C, C#, Python, Ruby, Perl and Pike.</li><li>Ajax support now uses OpenRico as the default Ajax library</li><li>the Resource Adaptor now supports batching</li><li>demand based store and forward in networks</li><li>support for Informix JDBC</li><li>updated DTD for the latest Spring</li><li>various performance enhancements and bug fixes</li></ul>
+
+
+<p>For more details please see the <a shape="rect" href="../../../activemq-32-release.html" title="ActiveMQ 3.2 Release">Release Notes</a></p></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/activemq/content/2005/11/09/new-features-in-40-exclusive-consumers-and-message-groups.html
==============================================================================
--- websites/production/activemq/content/2005/11/09/new-features-in-40-exclusive-consumers-and-message-groups.html (original)
+++ websites/production/activemq/content/2005/11/09/new-features-in-40-exclusive-consumers-and-message-groups.html Wed Nov 13 17:23:00 2013
@@ -72,9 +72,13 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-          <div class="wiki-content maincontent">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/maven/5.9.0/apidocs/index.html">JavaDocs</a> <a shape="rect" href="javadocs.html" title="JavaDocs">More...</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" href="discussion-forums.html" title="Discussion Forums">Forums</a> | <a shape="rect" href="support.html" title="Support">Support</a></p>
-          </div>
+<div class="wiki-content maincontent">
+<p>We've documented some of the new features coming along in <a shape="rect" href="../../../changes-in-40.html" title="Changes in 4.0">the 4.x branch of ActiveMQ</a>. In particular the things I'm particularly happy about are</p>
+
+<ul><li><a shape="rect" href="../../../exclusive-consumer.html" title="Exclusive Consumer">Exclusive Consumer</a></li><li><a shape="rect" href="../../../message-groups.html" title="Message Groups">Message Groups</a></li></ul>
+
+
+<p>I really love <a shape="rect" href="../../../message-groups.html" title="Message Groups">Message Groups</a>, they totally rock! <img align="middle" class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/smile.gif" height="20" width="20" alt="" border="0"> Its well worth reading the overview of what they are and how they can be useful making a partitioned high performance grid style distributed system with ordering or fast caching etc.</p></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/activemq/content/2005/11/23/new-discussion-forum-available.html
==============================================================================
--- websites/production/activemq/content/2005/11/23/new-discussion-forum-available.html (original)
+++ websites/production/activemq/content/2005/11/23/new-discussion-forum-available.html Wed Nov 13 17:23:00 2013
@@ -72,9 +72,8 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-          <div class="wiki-content maincontent">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/maven/5.9.0/apidocs/index.html">JavaDocs</a> <a shape="rect" href="javadocs.html" title="JavaDocs">More...</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" href="discussion-forums.html" title="Discussion Forums">Forums</a> | <a shape="rect" href="support.html" title="Support">Support</a></p>
-          </div>
+<div class="wiki-content maincontent"><p><br clear="none">
+Various users don't like joining busy email lists - we all get enough email as it is <img align="middle" class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/smile.gif" height="20" width="20" alt="" border="0"> - so we've setup a <a shape="rect" class="external-link" href="http://forums.logicblaze.com/forums/show/1.page" rel="nofollow">discussion forum</a> you can use as an alternative to the mail lists. Enjoy!</p></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/activemq/content/2005/12/09/activemq-4x-codebase-has-moved-to-apache.html
==============================================================================
--- websites/production/activemq/content/2005/12/09/activemq-4x-codebase-has-moved-to-apache.html (original)
+++ websites/production/activemq/content/2005/12/09/activemq-4x-codebase-has-moved-to-apache.html Wed Nov 13 17:23:00 2013
@@ -72,9 +72,10 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-          <div class="wiki-content maincontent">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/maven/5.9.0/apidocs/index.html">JavaDocs</a> <a shape="rect" href="javadocs.html" title="JavaDocs">More...</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" href="discussion-forums.html" title="Discussion Forums">Forums</a> | <a shape="rect" href="support.html" title="Support">Support</a></p>
-          </div>
+<div class="wiki-content maincontent">
+<p>You can surf it at <a shape="rect" class="external-link" href="https://svn.apache.org/repos/asf/incubator/activemq/">https://svn.apache.org/repos/asf/incubator/activemq/</a>.</p>
+
+<p>For more details see <a shape="rect" href="../../../source.html" title="Source">Source</a>.</p></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/activemq/content/2006/03/23/new-discussion-forums-available-at-nabble.html
==============================================================================
--- websites/production/activemq/content/2006/03/23/new-discussion-forums-available-at-nabble.html (original)
+++ websites/production/activemq/content/2006/03/23/new-discussion-forums-available-at-nabble.html Wed Nov 13 17:23:00 2013
@@ -72,9 +72,19 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-          <div class="wiki-content maincontent">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/maven/5.9.0/apidocs/index.html">JavaDocs</a> <a shape="rect" href="javadocs.html" title="JavaDocs">More...</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" href="discussion-forums.html" title="Discussion Forums">Forums</a> | <a shape="rect" href="support.html" title="Support">Support</a></p>
-          </div>
+<div class="wiki-content maincontent">
+<p>Before posting you might want to read the <a shape="rect" href="../../../tips-for-getting-help.html" title="Tips for getting help">Tips for getting help</a>.</p>
+
+<p>Many users prefer to use online forums rather than joining a mail list which can lead to lots more email traffic so we use the online forums at <a shape="rect" class="external-link" href="http://activemq.2283324.n4.nabble.com/" rel="nofollow">Nabble forums</a> which also work with our <a shape="rect" href="../../../mailing-lists.html" title="Mailing Lists">Mailing Lists</a> so that both stay completely in sync. Use either the mailing lists or online forums, its completely up to you.</p>
+
+<h3><a shape="rect" name="NewDiscussionForumsAvailableatNabble-ActiveMQForums"></a><a shape="rect" class="external-link" href="http://activemq.2283324.n4.nabble.com/" rel="nofollow">ActiveMQ Forums</a></h3>
+
+<ul><li><a shape="rect" class="external-link" href="http://activemq.2283324.n4.nabble.com/ActiveMQ-User-f2341805.html" rel="nofollow">ActiveMQ User Forum</a></li><li><a shape="rect" class="external-link" href="http://activemq.2283324.n4.nabble.com/ActiveMQ-Dev-f2368404.html" rel="nofollow">ActiveMQ Developer Forum</a></li></ul>
+
+
+<h3><a shape="rect" name="NewDiscussionForumsAvailableatNabble-MailingLists"></a>Mailing Lists</h3>
+
+<p>If you prefer to use a mailing list instead then check out our <a shape="rect" href="../../../mailing-lists.html" title="Mailing Lists">Mailing Lists</a>. Note that the Forums and <a shape="rect" href="../../../mailing-lists.html" title="Mailing Lists">Mailing Lists</a> are kept in sync so its your choice which you use.</p></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/activemq/content/2006/06/16/performance-tuning-guide-available.html
==============================================================================
--- websites/production/activemq/content/2006/06/16/performance-tuning-guide-available.html (original)
+++ websites/production/activemq/content/2006/06/16/performance-tuning-guide-available.html Wed Nov 13 17:23:00 2013
@@ -72,9 +72,7 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-          <div class="wiki-content maincontent">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/maven/5.9.0/apidocs/index.html">JavaDocs</a> <a shape="rect" href="javadocs.html" title="JavaDocs">More...</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" href="discussion-forums.html" title="Discussion Forums">Forums</a> | <a shape="rect" href="support.html" title="Support">Support</a></p>
-          </div>
+<div class="wiki-content maincontent"><p>We've created a <a shape="rect" class="external-link" href="http://devzone.logicblaze.com/site/apache-activemq-performance-tuning-guide.html" rel="nofollow">performance tuning guide</a> which takes you through the various different configurations and quality of service settings you can use to help tune your use of Apache ActiveMQ. Enjoy!</p></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/activemq/content/2006/11/17/apache-activemq-402-released.html
==============================================================================
--- websites/production/activemq/content/2006/11/17/apache-activemq-402-released.html (original)
+++ websites/production/activemq/content/2006/11/17/apache-activemq-402-released.html Wed Nov 13 17:23:00 2013
@@ -72,9 +72,9 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-          <div class="wiki-content maincontent">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/maven/5.9.0/apidocs/index.html">JavaDocs</a> <a shape="rect" href="javadocs.html" title="JavaDocs">More...</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" href="discussion-forums.html" title="Discussion Forums">Forums</a> | <a shape="rect" href="support.html" title="Support">Support</a></p>
-          </div>
+<div class="wiki-content maincontent"><p>We are pleased to announce the release of <a shape="rect" class="external-link" href="http://incubator.apache.org/activemq/activemq-402-release.html">Apache ActiveMQ 4.0.2</a> please grab it while its hot!</p>
+
+<p>This is primarily a bug fix release; we recommend all users of Apache ActiveMQ 4.x or later to upgrade. Enjoy!</p></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/activemq/content/2007-april.html
==============================================================================
--- websites/production/activemq/content/2007-april.html (original)
+++ websites/production/activemq/content/2007-april.html Wed Nov 13 17:23:00 2013
@@ -72,12 +72,10 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-          <div class="wiki-content maincontent">
-<h2><a shape="rect" name="2007April-April2007Report"></a>April 2007 Report</h2>
+<div class="wiki-content maincontent"><h2><a shape="rect" name="2007April-April2007Report"></a>April 2007 Report</h2>
 
 <ul><li><span class="error">[ActiveMQ 4.1.1 Released]</span></li><li>voted in a new committer, John Heitmann</li><li>the developer and user lists continue to be very active</li></ul>
-
-          </div>
+</div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/activemq/content/2007/01/19/activemq-410-released.html
==============================================================================
--- websites/production/activemq/content/2007/01/19/activemq-410-released.html (original)
+++ websites/production/activemq/content/2007/01/19/activemq-410-released.html Wed Nov 13 17:23:00 2013
@@ -72,9 +72,7 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-          <div class="wiki-content maincontent">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/maven/5.9.0/apidocs/index.html">JavaDocs</a> <a shape="rect" href="javadocs.html" title="JavaDocs">More...</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" href="discussion-forums.html" title="Discussion Forums">Forums</a> | <a shape="rect" href="support.html" title="Support">Support</a></p>
-          </div>
+<div class="wiki-content maincontent"><p>Grab it while its hot! Download <a shape="rect" href="../../../activemq-410-release.html" title="ActiveMQ 4.1.0 Release">ActiveMQ 4.1.0 Release</a> now!</p></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/activemq/content/2007/02/05/apache-activemq-graduates-from-the-incubator.html
==============================================================================
--- websites/production/activemq/content/2007/02/05/apache-activemq-graduates-from-the-incubator.html (original)
+++ websites/production/activemq/content/2007/02/05/apache-activemq-graduates-from-the-incubator.html Wed Nov 13 17:23:00 2013
@@ -72,9 +72,7 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-          <div class="wiki-content maincontent">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/maven/5.9.0/apidocs/index.html">JavaDocs</a> <a shape="rect" href="javadocs.html" title="JavaDocs">More...</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" href="discussion-forums.html" title="Discussion Forums">Forums</a> | <a shape="rect" href="support.html" title="Support">Support</a></p>
-          </div>
+<div class="wiki-content maincontent"><p>Apache ActiveMQ has now graduated to become a top level project (TLP) at Apache! Its new site is now hosted at <a shape="rect" class="external-link" href="http://activemq.apache.org/">http://activemq.apache.org/</a>. Many thanks to all those in the Incubator and ActiveMQ communities for making this happen!</p></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/activemq/content/2007/03/02/using-rails-and-activemq-with-activemessaging.html
==============================================================================
--- websites/production/activemq/content/2007/03/02/using-rails-and-activemq-with-activemessaging.html (original)
+++ websites/production/activemq/content/2007/03/02/using-rails-and-activemq-with-activemessaging.html Wed Nov 13 17:23:00 2013
@@ -72,9 +72,7 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-          <div class="wiki-content maincontent">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/maven/5.9.0/apidocs/index.html">JavaDocs</a> <a shape="rect" href="javadocs.html" title="JavaDocs">More...</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" href="discussion-forums.html" title="Discussion Forums">Forums</a> | <a shape="rect" href="support.html" title="Support">Support</a></p>
-          </div>
+<div class="wiki-content maincontent"><p>Andrew Kuklewicz just published a great article, <a shape="rect" class="external-link" href="http://www.infoq.com/articles/intro-active-messaging-rails" rel="nofollow">an introduction to ActiveMessaging, using Rails with ActiveMQ and Stomp</a> over on <a shape="rect" class="external-link" href="http://www.infoq.com" rel="nofollow">InfoQ</a>. Cool beans! </p></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/activemq/content/2007/03/09/java-c-c-csharp-vb-perl-python-php-ruby-pike-and-now-smalltalk.html
==============================================================================
--- websites/production/activemq/content/2007/03/09/java-c-c-csharp-vb-perl-python-php-ruby-pike-and-now-smalltalk.html (original)
+++ websites/production/activemq/content/2007/03/09/java-c-c-csharp-vb-perl-python-php-ruby-pike-and-now-smalltalk.html Wed Nov 13 17:23:00 2013
@@ -72,9 +72,7 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-          <div class="wiki-content maincontent">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/maven/5.9.0/apidocs/index.html">JavaDocs</a> <a shape="rect" href="javadocs.html" title="JavaDocs">More...</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" href="discussion-forums.html" title="Discussion Forums">Forums</a> | <a shape="rect" href="support.html" title="Support">Support</a></p>
-          </div>
+<div class="wiki-content maincontent"><p>We've always had lots of support for <a shape="rect" href="../../../cross-language-clients.html" title="Cross Language Clients">Cross Language Clients and Protocols</a>  but now there is a <a shape="rect" class="external-link" href="http://stomp.codehaus.org/Smalltalk" rel="nofollow">Smalltalk client</a> <img align="middle" class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/smile.gif" height="20" width="20" alt="" border="0"></p></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/activemq/content/2007/03/28/nms-support-in-springnet-available-for-download.html
==============================================================================
--- websites/production/activemq/content/2007/03/28/nms-support-in-springnet-available-for-download.html (original)
+++ websites/production/activemq/content/2007/03/28/nms-support-in-springnet-available-for-download.html Wed Nov 13 17:23:00 2013
@@ -72,9 +72,9 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-          <div class="wiki-content maincontent">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/maven/5.9.0/apidocs/index.html">JavaDocs</a> <a shape="rect" href="javadocs.html" title="JavaDocs">More...</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" href="discussion-forums.html" title="Discussion Forums">Forums</a> | <a shape="rect" href="support.html" title="Support">Support</a></p>
-          </div>
+<div class="wiki-content maincontent"><p><a shape="rect" class="external-link" href="http://activemq.apache.org/nms/">Apache NMS</a> is an API for messaging on the .Net platform in C# or VB.Net. Spring.Net offers several features to make it easier to work with .Net like the Spring Framework does for Java. Now the Spring.Messaging.Net library can be used to make it easier to work with NMS. For example it includes the NmsTemplate class (like the JmsTemplate class in Java) or the DefaultMessageListenerContainer.</p>
+
+<p>There is now a <a shape="rect" class="external-link" href="http://www.springframework.net/downloads/Spring.Messaging.Nms/" rel="nofollow">binary download of Spring.Messaging.NMS available</a>. Get it while its hot!</p></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/activemq/content/2007/04/03/activemq-feathercast-available.html
==============================================================================
--- websites/production/activemq/content/2007/04/03/activemq-feathercast-available.html (original)
+++ websites/production/activemq/content/2007/04/03/activemq-feathercast-available.html Wed Nov 13 17:23:00 2013
@@ -72,9 +72,7 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-          <div class="wiki-content maincontent">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/maven/5.9.0/apidocs/index.html">JavaDocs</a> <a shape="rect" href="javadocs.html" title="JavaDocs">More...</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" href="discussion-forums.html" title="Discussion Forums">Forums</a> | <a shape="rect" href="support.html" title="Support">Support</a></p>
-          </div>
+<div class="wiki-content maincontent"><p>James Strachan was interviewed for this months <a shape="rect" class="external-link" href="http://feathercast.org/?p=42" rel="nofollow">feathercast</a> discussing all things Apache ActiveMQ.</p></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/activemq/content/2007/04/03/apache-activemq-411-released.html
==============================================================================
--- websites/production/activemq/content/2007/04/03/apache-activemq-411-released.html (original)
+++ websites/production/activemq/content/2007/04/03/apache-activemq-411-released.html Wed Nov 13 17:23:00 2013
@@ -72,9 +72,7 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-          <div class="wiki-content maincontent">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/maven/5.9.0/apidocs/index.html">JavaDocs</a> <a shape="rect" href="javadocs.html" title="JavaDocs">More...</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" href="discussion-forums.html" title="Discussion Forums">Forums</a> | <a shape="rect" href="support.html" title="Support">Support</a></p>
-          </div>
+<div class="wiki-content maincontent"><p>We're proud to announce the <a shape="rect" href="../../../activemq-411-release.html" title="ActiveMQ 4.1.1 Release">ActiveMQ 4.1.1 Release</a> has just gone out with numberous bug fixes. Grab it while its hot!</p></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/activemq/content/2007/04/18/how-can-i-send-a-message-to-multiple-destinations-using-a-messageproducer.html
==============================================================================
--- websites/production/activemq/content/2007/04/18/how-can-i-send-a-message-to-multiple-destinations-using-a-messageproducer.html (original)
+++ websites/production/activemq/content/2007/04/18/how-can-i-send-a-message-to-multiple-destinations-using-a-messageproducer.html Wed Nov 13 17:23:00 2013
@@ -72,9 +72,15 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-          <div class="wiki-content maincontent">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/maven/5.9.0/apidocs/index.html">JavaDocs</a> <a shape="rect" href="javadocs.html" title="JavaDocs">More...</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" href="discussion-forums.html" title="Discussion Forums">Forums</a> | <a shape="rect" href="support.html" title="Support">Support</a></p>
-          </div>
+<div class="wiki-content maincontent"><p>How can I send a message to multiple Destinations using a MessageProducer? The trick is to pass null in for the destination when you create it; then you can specify the destination on each send.</p>
+
+<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
+<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
+MessageProducer producer = session.createProducer(null);
+...
+producer.send(destination, message);
+]]></script>
+</div></div></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/activemq/content/2007/06/08/integrating-activemq-web-console.html
==============================================================================
--- websites/production/activemq/content/2007/06/08/integrating-activemq-web-console.html (original)
+++ websites/production/activemq/content/2007/06/08/integrating-activemq-web-console.html Wed Nov 13 17:23:00 2013
@@ -72,9 +72,7 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-          <div class="wiki-content maincontent">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/maven/5.9.0/apidocs/index.html">JavaDocs</a> <a shape="rect" href="javadocs.html" title="JavaDocs">More...</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" href="discussion-forums.html" title="Discussion Forums">Forums</a> | <a shape="rect" href="support.html" title="Support">Support</a></p>
-          </div>
+<div class="wiki-content maincontent"><p>There's an itneresting article on <a shape="rect" class="external-link" href="http://www.oreillynet.com/onjava/blog/2007/06/integrating_activemq_web_conso.html" rel="nofollow">Integrating ActiveMQ Web Console</a> by <a shape="rect" class="external-link" href="http://www.oreillynet.com/pub/au/1763" rel="nofollow">Dejan Bosanac</a> which is well worth a read. The next version of ActiveMQ, 5.0, will include the Web Console by default which should simplify things somewhat.</p></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/activemq/content/2007/06/27/more-articles-on-apache-activemq-activemessaging-and-rails.html
==============================================================================
--- websites/production/activemq/content/2007/06/27/more-articles-on-apache-activemq-activemessaging-and-rails.html (original)
+++ websites/production/activemq/content/2007/06/27/more-articles-on-apache-activemq-activemessaging-and-rails.html Wed Nov 13 17:23:00 2013
@@ -72,9 +72,12 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-          <div class="wiki-content maincontent">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/maven/5.9.0/apidocs/index.html">JavaDocs</a> <a shape="rect" href="javadocs.html" title="JavaDocs">More...</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" href="discussion-forums.html" title="Discussion Forums">Forums</a> | <a shape="rect" href="support.html" title="Support">Support</a></p>
-          </div>
+<div class="wiki-content maincontent"><p>There's been more interesting <a shape="rect" href="../../../articles.html" title="Articles">Articles</a> lately on <a shape="rect" href="../../../index.html" title="Index">Apache ActiveMQ</a>, [ActiveMessaging and rails...</p>
+
+<ul><li><a shape="rect" class="external-link" href="http://notdennisbyrne.blogspot.com/2007/06/integrating-rails-and-activemq-with.html" rel="nofollow">Integrating Rails and ActiveMQ with ActiveMessaging/REST</a> by <a shape="rect" class="external-link" href="http://notdennisbyrne.blogspot.com/" rel="nofollow">(not) Dennis Byrne</a></li><li><a shape="rect" class="external-link" href="http://beechbonanza.blogspot.com/2007/06/asynchronous-messaging-with-rails.html" rel="nofollow">Asynchronous Messaging with Rails</a> by <a shape="rect" class="external-link" href="http://beechbonanza.blogspot.com/" rel="nofollow">Shane Harvie</a></li></ul>
+
+
+<p>Check them out, they're both great.</p></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/activemq/content/2007/12/15/apache-activemq-500-released.html
==============================================================================
--- websites/production/activemq/content/2007/12/15/apache-activemq-500-released.html (original)
+++ websites/production/activemq/content/2007/12/15/apache-activemq-500-released.html Wed Nov 13 17:23:00 2013
@@ -72,9 +72,12 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-          <div class="wiki-content maincontent">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/maven/5.9.0/apidocs/index.html">JavaDocs</a> <a shape="rect" href="javadocs.html" title="JavaDocs">More...</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" href="discussion-forums.html" title="Discussion Forums">Forums</a> | <a shape="rect" href="support.html" title="Support">Support</a></p>
-          </div>
+<div class="wiki-content maincontent"><p>I'm pleased to announce the Apache <a shape="rect" href="../../../activemq-500-release.html" title="ActiveMQ 5.0.0 Release">ActiveMQ 5.0.0 Release</a> has been made! Its packed with <a shape="rect" href="../../../new-features-in-50.html" title="New Features in 5.0">a ton of new features</a> such as:</p>
+
+<ul><li><a shape="rect" href="../../../amq-message-store.html" title="AMQ Message Store">AMQ Message Store</a> (Faster Persistence!)</li><li><a shape="rect" href="../../../message-cursors.html" title="Message Cursors">Message Cursors</a> (Producers don't block if you have a slow consumer)</li><li><a shape="rect" href="../../../blob-messages.html" title="Blob Messages">Blob Messages</a></li><li><a shape="rect" href="../../../command-agent.html" title="Command Agent">Command Agent</a></li><li><a shape="rect" href="../../../enterprise-integration-patterns.html" title="Enterprise Integration Patterns">Enterprise Integration Patterns</a> via <a shape="rect" class="external-link" href="http://activemq.apache.org/camel/">Camel Integration</a></li><li><a shape="rect" href="../../../logging-a-warning-if-you-forget-to-start-a-connection.html" title="Logging a warning if you forget to start a Connection">Logging a warning if you forget to start a Connection</a></li><li><a shape="rect" href="..
 /../../message-transformation.html" title="Message Transformation">Message Transformation</a></li><li><a shape="rect" href="../../../mirrored-queues.html" title="Mirrored Queues">Mirrored Queues</a></li><li><a shape="rect" href="../../../producer-flow-control.html" title="Producer Flow Control">Producer Flow Control</a></li></ul>
+
+
+<p><a shape="rect" href="../../../activemq-500-release.html" title="ActiveMQ 5.0.0 Release">Download it</a> today!</p></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/activemq/content/2008/04/28/javaone-meetup-2008.html
==============================================================================
--- websites/production/activemq/content/2008/04/28/javaone-meetup-2008.html (original)
+++ websites/production/activemq/content/2008/04/28/javaone-meetup-2008.html Wed Nov 13 17:23:00 2013
@@ -72,9 +72,14 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-          <div class="wiki-content maincontent">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/maven/5.9.0/apidocs/index.html">JavaDocs</a> <a shape="rect" href="javadocs.html" title="JavaDocs">More...</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" href="discussion-forums.html" title="Discussion Forums">Forums</a> | <a shape="rect" href="support.html" title="Support">Support</a></p>
-          </div>
+<div class="wiki-content maincontent"><h1><a shape="rect" name="JavaOneMeetup2008-JavaOneMeetup2008"></a>JavaOne Meetup 2008 </h1>
+
+<h2><a shape="rect" name="JavaOneMeetup2008-ComemeetwiththefolksbehindApacheActiveMQ%2CCamel%2CCXFandServiceMixatJavaOne%21"></a>Come meet with the folks behind Apache ActiveMQ, Camel, CXF and ServiceMix at JavaOne! </h2>
+
+<table class="sectionMacro" border="0" cellpadding="5" cellspacing="0" width="100%"><tbody><tr><td colspan="1" rowspan="1" valign="top" class="confluenceTd">
+<p><span class="image-wrap" style=""><img src="javaone-meetup-2008.data/javaone-logo.gif" style="border: 0px solid black"></span></p></td><td colspan="1" rowspan="1" valign="top" class="confluenceTd">
+<p>Please join us for an evening of food, drinks, conversation and open source antics at the <a shape="rect" class="external-link" href="http://www.zebulonsf.com/" rel="nofollow">Zebulon Cafe</a> - (<a shape="rect" class="external-link" href="http://maps.google.com/maps?f=q&amp;hl=en&amp;geocode=&amp;q=83+Natoma+St,+San+Francisco,+CA&amp;sll=37.787187,-122.399256&amp;sspn=0.003705,0.003868&amp;ie=UTF8&amp;ll=37.785266,-122.401578&amp;spn=0.014822,0.015471&amp;t=h&amp;z=16" rel="nofollow">Google Map</a>) in San Francisco on Monday, May 5, 2008 from 6-9PM. Some of the Apache committers behind these dynamic projects that will be there include Dan Kulp, Hiram Chirino, Guillaume Nodet, Rob Davies, Chris Custine and Bruce Snyder. ActiveMQ and Camel are each readying the next releases, CXF just graduated from the Incubator and the shiny, new ServiceMix 4.0 release is right around the corner. A big thanks to <a shape="rect" class="external-link" href="http://open.iona.com/" rel="nofollow">I
 ONA Technologies</a> for sponsoring this event. We hope to see you there! </p></td></tr></tbody></table>
+<p>In an attempt to help predict the head count, please <a shape="rect" class="external-link" href="http://tinyurl.com/3jmztl" rel="nofollow"><b>add your name to the registration page</b></a>. </p></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/activemq/content/2008/05/07/activemq-510-released.html
==============================================================================
--- websites/production/activemq/content/2008/05/07/activemq-510-released.html (original)
+++ websites/production/activemq/content/2008/05/07/activemq-510-released.html Wed Nov 13 17:23:00 2013
@@ -72,9 +72,9 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-          <div class="wiki-content maincontent">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/maven/5.9.0/apidocs/index.html">JavaDocs</a> <a shape="rect" href="javadocs.html" title="JavaDocs">More...</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" href="discussion-forums.html" title="Discussion Forums">Forums</a> | <a shape="rect" href="support.html" title="Support">Support</a></p>
-          </div>
+<div class="wiki-content maincontent"><p>The ActiveMQ team is pleased to announce the <a shape="rect" class="external-link" href="http://activemq.apache.org/activemq-510-release.html">ActiveMQ 5.1.0 Release</a>. <a shape="rect" class="external-link" href="http://activemq.apache.org/activemq-510-release.html">ActiveMQ 5.1.0</a> is a much more stable message broker than 5.0.0 and we highly encourage all the 5.0.0 users to upgrade to this release.</p>
+
+<p>For more details on the fixed issues see the <a shape="rect" class="external-link" href="http://issues.apache.org/activemq/secure/ReleaseNote.jspa?version=11802&amp;styleName=Html&amp;projectId=10520&amp;Create=Create">release notes</a>.</p></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/activemq/content/2008/11/21/apache-activemq-520-released.html
==============================================================================
--- websites/production/activemq/content/2008/11/21/apache-activemq-520-released.html (original)
+++ websites/production/activemq/content/2008/11/21/apache-activemq-520-released.html Wed Nov 13 17:23:00 2013
@@ -72,9 +72,7 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-          <div class="wiki-content maincontent">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/maven/5.9.0/apidocs/index.html">JavaDocs</a> <a shape="rect" href="javadocs.html" title="JavaDocs">More...</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" href="discussion-forums.html" title="Discussion Forums">Forums</a> | <a shape="rect" href="support.html" title="Support">Support</a></p>
-          </div>
+<div class="wiki-content maincontent"><p>The ActiveMQ team is pleased to announce ActiveMQ 5.2.0. Full details of the release and download links can be found in the <a shape="rect" href="../../../activemq-520-release.html" title="ActiveMQ 5.2.0 Release">release page</a>.</p></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/activemq/content/2009/01/12/activemq-in-action-free-chapters-available.html
==============================================================================
--- websites/production/activemq/content/2009/01/12/activemq-in-action-free-chapters-available.html (original)
+++ websites/production/activemq/content/2009/01/12/activemq-in-action-free-chapters-available.html Wed Nov 13 17:23:00 2013
@@ -72,9 +72,20 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-          <div class="wiki-content maincontent">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/maven/5.9.0/apidocs/index.html">JavaDocs</a> <a shape="rect" href="javadocs.html" title="JavaDocs">More...</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" href="discussion-forums.html" title="Discussion Forums">Forums</a> | <a shape="rect" href="support.html" title="Support">Support</a></p>
-          </div>
+<div class="wiki-content maincontent"><p><span class="image-wrap" style="float: right"><img src="http://www.manning.com/snyder/snyder_cover150.jpg" style="border: 0px solid black"></span></p>
+
+<p><em>ActiveMQ in Action</em> is a thorough, practical guide to implementing message-oriented systems in Java using ActiveMQ. The book lays out the core of ActiveMQ in clear language, starting with the anatomy of a JMS message and moving quickly through connectors, message persistence, authentication and authorization. With the basics well in hand, you move into interesting examples of ActiveMQ at work, following a running Stock Portfolio application. You'll integrate ActiveMQ with containers like Geronimo and JBoss and learn to tie into popular Java-based technologies like Spring Framework.</p>
+
+<p>Along the way, you'll pick up best practices forged out of the deep experience the authors bring to the book. You'll learn to integrate with non-Java technologies and explore advanced topics like broker topologies and configuration and performance tuning.</p>
+
+<p>Additionally, the book will introduce readers to using Apache Camel with Apache ActiveMQ as a way to easily utilize the Enterprise Integration Patterns.</p>
+
+<p>This book is perfect for:</p>
+
+<ul><li>High-level designers of loosely-coupled distributed systems that follow a Service Oriented Architecture (SOA)</li><li>Software developers creating applications that use the ActiveMQ message broker</li><li>System administrators that must maintain a software system based on the ActiveMQ message broker</li></ul>
+
+
+<p><a shape="rect" class="external-link" href="http://www.manning.com/affiliate/idevaffiliate.php?id=1063_140" rel="nofollow">Grab your copy of ActiveMQ in Action now!</a> </p></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/activemq/content/2009/03/10/40-off-of-activemq-in-action.html
==============================================================================
--- websites/production/activemq/content/2009/03/10/40-off-of-activemq-in-action.html (original)
+++ websites/production/activemq/content/2009/03/10/40-off-of-activemq-in-action.html Wed Nov 13 17:23:00 2013
@@ -72,9 +72,13 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-          <div class="wiki-content maincontent">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/maven/5.9.0/apidocs/index.html">JavaDocs</a> <a shape="rect" href="javadocs.html" title="JavaDocs">More...</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" href="discussion-forums.html" title="Discussion Forums">Forums</a> | <a shape="rect" href="support.html" title="Support">Support</a></p>
-          </div>
+<div class="wiki-content maincontent"><p><span class="image-wrap" style="float: left"><img src="http://www.manning.com/snyder/snyder_cover150.jpg" style="border: 0px solid black"></span></p>
+
+<h3><a shape="rect" name="40%25OffofActiveMQinAction%21-Getitwhileit%27shot%21"></a>Get it while it's hot! </h3>
+
+<p>For a limited time you can get the definitive book on ActiveMQ at a 40% discount! This discount applies to either the print+ebook or just the ebook. Though we're still hard at work on the <a shape="rect" class="external-link" href="http://www.manning.com/affiliate/idevaffiliate.php?id=1063_140" rel="nofollow">ActiveMQ in Action</a> book, you can download the chapters as we write them from the Manning Early Access Program today. For the 40% discount, just use the coupon code <b>activemq40</b> at the time of checkout. Hurry and get this discounted price while it lasts because this offer expires on Monday, 23 March 2009. </p>
+
+<h3><a shape="rect" name="40%25OffofActiveMQinAction%21-IwanttopurchaseActiveMQinActiontoday%21"></a><a shape="rect" class="external-link" href="http://www.manning.com/affiliate/idevaffiliate.php?id=1063_140" rel="nofollow">I want to purchase ActiveMQ in Action today!</a></h3></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/activemq/content/2009/04/17/continuous-integration-server.html
==============================================================================
--- websites/production/activemq/content/2009/04/17/continuous-integration-server.html (original)
+++ websites/production/activemq/content/2009/04/17/continuous-integration-server.html Wed Nov 13 17:23:00 2013
@@ -72,9 +72,20 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-          <div class="wiki-content maincontent">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/maven/5.9.0/apidocs/index.html">JavaDocs</a> <a shape="rect" href="javadocs.html" title="JavaDocs">More...</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" href="discussion-forums.html" title="Discussion Forums">Forums</a> | <a shape="rect" href="support.html" title="Support">Support</a></p>
-          </div>
+<div class="wiki-content maincontent"><p>ActiveMQ has been added to <a shape="rect" class="external-link" href="http://hudson.dev.java.net/" rel="nofollow">Hudson continuous-integration server</a> instance at Apache <a shape="rect" class="external-link" href="http://hudson.zones.apache.org/hudson/job/ActiveMQ/">http://hudson.zones.apache.org/hudson/job/ActiveMQ/</a>. Now you can have more insight into test runs and snapshot builds. Hudson will also send failure reports to our dev mailing list, making us address them promptly.<br clear="none">
+As a part of this change, the snapshots location and Maven repository has changed. If you're using ActiveMQ snapshots in your projects, be sure to add the following repository to your Maven configuration:</p>
+
+<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
+<script class="theme: Default; brush: xml; gutter: false" type="syntaxhighlighter"><![CDATA[&lt;repositories&gt;
+  &lt;repository&gt;
+    &lt;id&gt;hudson.snapshots&lt;/id&gt;
+    &lt;url&gt;https://repository.apache.org/content/repositories/snapshots/&lt;/url&gt;
+    &lt;releases&gt;
+      &lt;enabled&gt;false&lt;/enabled&gt;
+    &lt;/releases&gt;
+  &lt;/repository&gt;
+&lt;/repositories&gt;]]></script>
+</div></div></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/activemq/content/2009/08/07/activemq-reference-guide-kit-from-ttm-solutions-now-available.html
==============================================================================
--- websites/production/activemq/content/2009/08/07/activemq-reference-guide-kit-from-ttm-solutions-now-available.html (original)
+++ websites/production/activemq/content/2009/08/07/activemq-reference-guide-kit-from-ttm-solutions-now-available.html Wed Nov 13 17:23:00 2013
@@ -72,9 +72,13 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-          <div class="wiki-content maincontent">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/maven/5.9.0/apidocs/index.html">JavaDocs</a> <a shape="rect" href="javadocs.html" title="JavaDocs">More...</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" href="discussion-forums.html" title="Discussion Forums">Forums</a> | <a shape="rect" href="support.html" title="Support">Support</a></p>
-          </div>
+<div class="wiki-content maincontent"><h3><a shape="rect" name="ActiveMQReferenceGuideKitfromTTMSolutionsNowAvailable-ActiveMQReferenceGuideKitfromTTMSolutionsNowAvailable"></a>ActiveMQ Reference Guide Kit from TTM Solutions Now Available </h3>
+
+<p>The Apache ActiveMQ Reference Guide Kit from Total Transaction Management (TTM) is an excellent programmers resource to help you implement, deploy, administer, and tune Apache ActiveMQ based systems.</p>
+
+<p>Besides the Reference Guide, you will also receive sample applications called SecureChat and StockWatch, and a file based Security Plugin. The annual $20 subscription includes updates and enhancements throughout the year, as the Reference Guide Kit is updated to reflect Apache ActiveMQ changes and enhancements.</p>
+
+<p><a shape="rect" class="external-link" href="http://www.ttmsolutions.com/Apache_Software/ActiveMQ_Reference_Guide.php" rel="nofollow">Click here for the ActiveMQ Reference Guide Kit</a></p></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/activemq/content/2009/10/13/activemq-530-released.html
==============================================================================
--- websites/production/activemq/content/2009/10/13/activemq-530-released.html (original)
+++ websites/production/activemq/content/2009/10/13/activemq-530-released.html Wed Nov 13 17:23:00 2013
@@ -72,9 +72,7 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-          <div class="wiki-content maincontent">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/maven/5.9.0/apidocs/index.html">JavaDocs</a> <a shape="rect" href="javadocs.html" title="JavaDocs">More...</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" href="discussion-forums.html" title="Discussion Forums">Forums</a> | <a shape="rect" href="support.html" title="Support">Support</a></p>
-          </div>
+<div class="wiki-content maincontent"><p>The ActiveMQ team is pleased to announce ActiveMQ 5.3.0. Full details of the release and download links can be found in the <a shape="rect" class="external-link" href="http://activemq.apache.org/activemq-530-release.html">release page</a>.</p></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/activemq/content/2009/10/13/apache-activemq-530-has-an-official-specjms2007-result.html
==============================================================================
--- websites/production/activemq/content/2009/10/13/apache-activemq-530-has-an-official-specjms2007-result.html (original)
+++ websites/production/activemq/content/2009/10/13/apache-activemq-530-has-an-official-specjms2007-result.html Wed Nov 13 17:23:00 2013
@@ -72,9 +72,9 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-          <div class="wiki-content maincontent">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/maven/5.9.0/apidocs/index.html">JavaDocs</a> <a shape="rect" href="javadocs.html" title="JavaDocs">More...</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" href="discussion-forums.html" title="Discussion Forums">Forums</a> | <a shape="rect" href="support.html" title="Support">Support</a></p>
-          </div>
+<div class="wiki-content maincontent"><p>Apache ActiveMQ 5.3.0 has an official <a shape="rect" class="external-link" href="http://www.spec.org/jms2007/" rel="nofollow">SPECjms2007&#174;</a> result, thanks to some great work by <a shape="rect" class="external-link" href="http://www.dvs.tu-darmstadt.de/staff/ksachs/" rel="nofollow">Kai Sachs</a> from the <a shape="rect" class="external-link" href="http://www.dvs.tu-darmstadt.de/" rel="nofollow">Databases and Distributed Systems Group</a> at the Technical University Darmstadt in Germany. Complete details can be found in the official results submission that is linked from the <a shape="rect" class="external-link" href="http://www.dvs.tu-darmstadt.de/news/specjms2007Results.html" rel="nofollow">announcement</a>.<br clear="none">
+Needless to say, 5.3.0 does nicely in both horizontal (number of destinations) and vertical (load per destination) scalability.<br clear="none">
+It is fitting to see Apache ActiveMQ being used in the world's first SPECjms2007 submission.</p></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/activemq/content/2010/03/23/activemq-531-released.html
==============================================================================
--- websites/production/activemq/content/2010/03/23/activemq-531-released.html (original)
+++ websites/production/activemq/content/2010/03/23/activemq-531-released.html Wed Nov 13 17:23:00 2013
@@ -72,9 +72,7 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-          <div class="wiki-content maincontent">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/maven/5.9.0/apidocs/index.html">JavaDocs</a> <a shape="rect" href="javadocs.html" title="JavaDocs">More...</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" href="discussion-forums.html" title="Discussion Forums">Forums</a> | <a shape="rect" href="support.html" title="Support">Support</a></p>
-          </div>
+<div class="wiki-content maincontent"><p>The ActiveMQ team is pleased to announce ActiveMQ 5.3.1. Full details of the release and download links can be found in the <a shape="rect" class="external-link" href="http://activemq.apache.org/activemq-531-release.html">release page</a>.</p></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/activemq/content/2010/05/11/activemq-532-released.html
==============================================================================
--- websites/production/activemq/content/2010/05/11/activemq-532-released.html (original)
+++ websites/production/activemq/content/2010/05/11/activemq-532-released.html Wed Nov 13 17:23:00 2013
@@ -72,9 +72,7 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-          <div class="wiki-content maincontent">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/maven/5.9.0/apidocs/index.html">JavaDocs</a> <a shape="rect" href="javadocs.html" title="JavaDocs">More...</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" href="discussion-forums.html" title="Discussion Forums">Forums</a> | <a shape="rect" href="support.html" title="Support">Support</a></p>
-          </div>
+<div class="wiki-content maincontent"><p>The ActiveMQ team is pleased to announce ActiveMQ 5.3.2. Full details of the release and download links can be found on the <a shape="rect" class="external-link" href="http://activemq.apache.org/activemq-532-release.html">release page</a>.</p></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/activemq/content/2010/05/18/50-off-activemq-in-action.html
==============================================================================
--- websites/production/activemq/content/2010/05/18/50-off-activemq-in-action.html (original)
+++ websites/production/activemq/content/2010/05/18/50-off-activemq-in-action.html Wed Nov 13 17:23:00 2013
@@ -72,9 +72,15 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-          <div class="wiki-content maincontent">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/maven/5.9.0/apidocs/index.html">JavaDocs</a> <a shape="rect" href="javadocs.html" title="JavaDocs">More...</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" href="discussion-forums.html" title="Discussion Forums">Forums</a> | <a shape="rect" href="support.html" title="Support">Support</a></p>
-          </div>
+<div class="wiki-content maincontent"><p><span class="image-wrap" style="float: left"><img src="http://www.manning.com/snyder/snyder_cover150.jpg" style="border: 0px solid black"></span> </p>
+
+<h3><a shape="rect" name="50%25OffActiveMQInAction%21-50%25OffActiveMQInAction%21"></a>50% Off ActiveMQ In Action! </h3>
+
+<p>The <a shape="rect" class="external-link" href="http://www.manning.com/affiliate/idevaffiliate.php?id=1063_140" rel="nofollow">ActiveMQ In Action</a> book has made available a new early access release before going into final review and copy editing. All 14 chapters are included in this MEAP release. </p>
+
+<p>For a limited time you can get the definitive book on ActiveMQ at a 50% discount! Just use the coupon code <b>activemq50</b> at the time of checkout. Hurry and get this discounted price while it lasts because this offer expires on Monday, May 31, 2010. </p>
+
+<h3><a shape="rect" name="50%25OffActiveMQInAction%21-IwanttopurchaseActiveMQinActiontoday%21"></a><a shape="rect" class="external-link" href="http://www.manning.com/affiliate/idevaffiliate.php?id=1063_140" rel="nofollow">I want to purchase ActiveMQ in Action today!</a> </h3></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/activemq/content/2010/06/29/free-excerpt-from-activemq-in-action.html
==============================================================================
--- websites/production/activemq/content/2010/06/29/free-excerpt-from-activemq-in-action.html (original)
+++ websites/production/activemq/content/2010/06/29/free-excerpt-from-activemq-in-action.html Wed Nov 13 17:23:00 2013
@@ -72,9 +72,8 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-          <div class="wiki-content maincontent">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/maven/5.9.0/apidocs/index.html">JavaDocs</a> <a shape="rect" href="javadocs.html" title="JavaDocs">More...</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" href="discussion-forums.html" title="Discussion Forums">Forums</a> | <a shape="rect" href="support.html" title="Support">Support</a></p>
-          </div>
+<div class="wiki-content maincontent"><table class="sectionMacro" border="0" cellpadding="5" cellspacing="0" width="100%"><tbody><tr><td colspan="1" rowspan="1" valign="top" class="confluenceTd"><p><span class="image-wrap" style=""><img src="http://www.manning.com/snyder/snyder_cover150.jpg" style="border: 0px solid black"></span> <span class="image-wrap" style=""><img src="http://www.manning.com/ibsen/ibsen_cover150.jpg" style="border: 0px solid black"></span></p></td><td colspan="1" rowspan="1" valign="top" class="confluenceTd"><p> <a shape="rect" class="external-link" href="http://fusesource.com" rel="nofollow">FuseSource</a> is offering a free excerpt from <a shape="rect" class="external-link" href="http://manning.com/snyder" rel="nofollow">ActiveMQ in Action</a> and <a shape="rect" class="external-link" href="http://manning.com/ibsen" rel="nofollow">Camel in Action</a> books at <a shape="rect" class="external-link" href="http://fusesource.com/fuse/apache-books/" rel="nofollow">
 http://fusesource.com/fuse/apache-books/</a>. <br clear="none">
+Find out more on how ActiveMQ stores messages and what's the role of transactions in Camel and get your discount.</p></td></tr></tbody></table></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/activemq/content/2010/08/17/apache-activemq-540-released.html
==============================================================================
--- websites/production/activemq/content/2010/08/17/apache-activemq-540-released.html (original)
+++ websites/production/activemq/content/2010/08/17/apache-activemq-540-released.html Wed Nov 13 17:23:00 2013
@@ -72,9 +72,7 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-          <div class="wiki-content maincontent">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/maven/5.9.0/apidocs/index.html">JavaDocs</a> <a shape="rect" href="javadocs.html" title="JavaDocs">More...</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" href="discussion-forums.html" title="Discussion Forums">Forums</a> | <a shape="rect" href="support.html" title="Support">Support</a></p>
-          </div>
+<div class="wiki-content maincontent"><p>The ActiveMQ team is pleased to announce ActiveMQ 5.4.0. Full details of the release and download links can be found on the <a shape="rect" class="external-link" href="http://activemq.apache.org/activemq-540-release.html">release page</a>.</p></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/activemq/content/2010/09/03/official-activemq-540-specjms2007-result-confirms-45-60-performance-improvement.html
==============================================================================
--- websites/production/activemq/content/2010/09/03/official-activemq-540-specjms2007-result-confirms-45-60-performance-improvement.html (original)
+++ websites/production/activemq/content/2010/09/03/official-activemq-540-specjms2007-result-confirms-45-60-performance-improvement.html Wed Nov 13 17:23:00 2013
@@ -72,9 +72,8 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-          <div class="wiki-content maincontent">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/maven/5.9.0/apidocs/index.html">JavaDocs</a> <a shape="rect" href="javadocs.html" title="JavaDocs">More...</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" href="discussion-forums.html" title="Discussion Forums">Forums</a> | <a shape="rect" href="support.html" title="Support">Support</a></p>
-          </div>
+<div class="wiki-content maincontent"><p>Apache ActiveMQ 5.4.0 has an official <a shape="rect" class="external-link" href="http://www.spec.org/jms2007/" rel="nofollow">SPECjms2007&#174;</a> result, thanks to the <a shape="rect" class="external-link" href="http://www.dvs.tu-darmstadt.de/" rel="nofollow">Databases and Distributed Systems Group</a> at the Technical University Darmstadt in Germany. Complete details can be found in the official result submissions: <a shape="rect" class="external-link" href="http://www.spec.org/jms2007/results/res2010q3/jms2007-20100802-00021.html" rel="nofollow">227 SPECjms2007@Vertical</a> and <a shape="rect" class="external-link" href="http://www.spec.org/jms2007/results/res2010q3/jms2007-20100802-00022.html" rel="nofollow">100 SPECjms2007@Horizontal</a>.<br clear="none">
+If you were happy with the performance of version 5.3.0, 5.4.0 will make you smile brighter, depending on your work load it will be between 45% and 60% better.</p></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/activemq/content/2010/09/22/apache-activemq-541-released.html
==============================================================================
--- websites/production/activemq/content/2010/09/22/apache-activemq-541-released.html (original)
+++ websites/production/activemq/content/2010/09/22/apache-activemq-541-released.html Wed Nov 13 17:23:00 2013
@@ -72,9 +72,7 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-          <div class="wiki-content maincontent">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/maven/5.9.0/apidocs/index.html">JavaDocs</a> <a shape="rect" href="javadocs.html" title="JavaDocs">More...</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" href="discussion-forums.html" title="Discussion Forums">Forums</a> | <a shape="rect" href="support.html" title="Support">Support</a></p>
-          </div>
+<div class="wiki-content maincontent"><p>The ActiveMQ team is pleased to announce the ActiveMQ 5.4.1 maintenance release. Full details of the release and download links can be found on the <a shape="rect" href="../../../activemq-541-release.html" title="ActiveMQ 5.4.1 Release">release page</a>.</p></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/activemq/content/2010/12/02/apache-activemq-542-released.html
==============================================================================
--- websites/production/activemq/content/2010/12/02/apache-activemq-542-released.html (original)
+++ websites/production/activemq/content/2010/12/02/apache-activemq-542-released.html Wed Nov 13 17:23:00 2013
@@ -72,9 +72,7 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-          <div class="wiki-content maincontent">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/maven/5.9.0/apidocs/index.html">JavaDocs</a> <a shape="rect" href="javadocs.html" title="JavaDocs">More...</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" href="discussion-forums.html" title="Discussion Forums">Forums</a> | <a shape="rect" href="support.html" title="Support">Support</a></p>
-          </div>
+<div class="wiki-content maincontent"><p>The ActiveMQ team is pleased to announce the ActiveMQ 5.4.2 maintenance release. Full details of the release and download links can be found on the <a shape="rect" href="../../../activemq-542-release.html" title="ActiveMQ 5.4.2 Release">release page</a>.</p></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/activemq/content/2011/04/01/apache-activemq-550-released.html
==============================================================================
--- websites/production/activemq/content/2011/04/01/apache-activemq-550-released.html (original)
+++ websites/production/activemq/content/2011/04/01/apache-activemq-550-released.html Wed Nov 13 17:23:00 2013
@@ -72,9 +72,7 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-          <div class="wiki-content maincontent">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/maven/5.9.0/apidocs/index.html">JavaDocs</a> <a shape="rect" href="javadocs.html" title="JavaDocs">More...</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" href="discussion-forums.html" title="Discussion Forums">Forums</a> | <a shape="rect" href="support.html" title="Support">Support</a></p>
-          </div>
+<div class="wiki-content maincontent"><p>The ActiveMQ team is delighted to announce ActiveMQ 5.5.0. Full details of the release and download links can be found on the <a shape="rect" href="../../../activemq-550-release.html" title="ActiveMQ 5.5.0 Release">release page</a>.</p></div>
         </td>
         <td valign="top">
           <div class="navigation">