You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by de...@apache.org on 2013/07/12 14:46:31 UTC

svn commit: r869232 [4/44] - in /websites/production/activemq/content: ./ cache/ cms/ nms/ styles/highlighter/ styles/highlighter/scripts/ styles/highlighter/styles/ visualisation.thumbs/ web-console.thumbs/

Modified: websites/production/activemq/content/ajax.html
==============================================================================
--- websites/production/activemq/content/ajax.html (original)
+++ websites/production/activemq/content/ajax.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,16 @@
     </style>
     <![endif]-->
 
+          <link href='http://activemq.apache.org/styles/highlighter/styles/shCore.css' rel='stylesheet' type='text/css' /> 
+      <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
+      <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+         
+      <script type="text/javascript"> 
+        SyntaxHighlighter.defaults['toolbar'] = false; 
+        SyntaxHighlighter.all(); 
+      </script> 
+    
     <title>
     Apache ActiveMQ &#8482; -- Ajax
     </title>
@@ -50,8 +60,8 @@
       <div>
 
 <!-- Banner -->
-
-	<div id="asf_logo">
+<p>
+	</p><div id="asf_logo">
 	<div id="activemq_logo">
             <a shape="rect" style="float:left; width:280px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:10px; margin-left:100px;" href="http://activemq.apache.org" title="The most popular and powerful open source Message Broker">ActiveMQ</a> &#8482;
             <a shape="rect" style="float:right; width:210px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:15px; margin-right:10px;" href="http://www.apache.org" title="The Apache Software Foundation">ASF</a>
@@ -84,7 +94,7 @@
 
 <p>The AMQ AjaxServlet needs to be installed in your webapplications to support JMS over Ajax:</p>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-java">
+<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
 ...
   &lt;servlet&gt;
     &lt;servlet-name&gt;AjaxServlet&lt;/servlet-name&gt;
@@ -95,7 +105,7 @@
     &lt;servlet-name&gt;AjaxServlet&lt;/servlet-name&gt;
     &lt;url-pattern&gt;/amq/*&lt;/url-pattern&gt;
   &lt;/servlet-mapping&gt;
-</pre>
+]]></script>
 </div></div>
 <p>The servlet both serves the required js files and handles the JMS requests and responses.</p>
 
@@ -103,19 +113,19 @@
 
 <p>The ajax featues of amq are provided on the client side by the <a shape="rect" class="external-link" href="https://svn.apache.org/repos/asf/activemq/trunk/activemq-web-demo/src/main/webapp/js/amq.js">amq.js</a> script.  Beginning with ActiveMQ 5.4, this script utilizes one of three different adapters to support ajax communication with the server.  Current <a shape="rect" class="external-link" href="http://jquery.org" rel="nofollow">jQuery</a>, <a shape="rect" class="external-link" href="http://prototypejs.org" rel="nofollow">Prototype</a>, and <a shape="rect" class="external-link" href="http://www.dojotoolkit.org" rel="nofollow">Dojo</a> are supported, and recent versions of all three libraries are shipped with ActiveMQ.</p>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-java">
-&lt;script type=<span class="code-quote">"text/javascript"</span> src=<span class="code-quote">"js/jquery-1.4.2.min.js"</span>&gt;&lt;/script&gt;
-&lt;script type=<span class="code-quote">"text/javascript"</span> src=<span class="code-quote">"js/amq_jquery_adapter.js"</span>&gt;&lt;/script&gt;
-&lt;script type=<span class="code-quote">"text/javascript"</span> src=<span class="code-quote">"js/amq.js"</span>&gt;&lt;/script&gt;
-&lt;script type=<span class="code-quote">"text/javascript"</span>&gt;
-  <span class="code-keyword">var</span> amq = org.activemq.Amq;
+<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
+&lt;script type="text/javascript" src="js/jquery-1.4.2.min.js"&gt;&lt;/script&gt;
+&lt;script type="text/javascript" src="js/amq_jquery_adapter.js"&gt;&lt;/script&gt;
+&lt;script type="text/javascript" src="js/amq.js"&gt;&lt;/script&gt;
+&lt;script type="text/javascript"&gt;
+  var amq = org.activemq.Amq;
   amq.init({ 
     uri: 'amq', 
-    logging: <span class="code-keyword">true</span>,
+    logging: true,
     timeout: 20
   });
 &lt;/script&gt;
-</pre>
+]]></script>
 </div></div>
 <p>Including these scripts results in the creation of a javascript object called <tt>amq</tt>, which provides the API to send messages and to subscribe to channels and topics.</p>
 
@@ -123,9 +133,9 @@
 
 <p>All that is required to send a JMS message from the javascript client, is to call the method:</p>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-java">
+<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
 amq.sendMessage(myDestination,myMessage);
-</pre>
+]]></script>
 </div></div>
 <p>where <tt>myDestination</tt> is the URL string address of the destination (e.g. "topic://MY.NAME"  or "channel://MY.NAME") and <tt>myMessage</tt> is any well formed XML or plain text encoded as XML content.</p>
 
@@ -133,17 +143,17 @@ amq.sendMessage(myDestination,myMessage)
 
 <p>To receive messages, the client must define a message handling function and register it with the <a shape="rect" class="external-link" href="https://svn.apache.org/repos/asf/activemq/trunk/activemq-web-demo/src/main/webapp/js/amq.js">amq</a> object. For example:</p>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-java">
-<span class="code-keyword">var</span> myHandler =
+<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
+var myHandler =
 {
   rcvMessage: function(message)
   {
-     alert(<span class="code-quote">"received "</span>+message);
+     alert("received "+message);
   }
 };
 
 amq.addListener(myId,myDestination,myHandler.rcvMessage);
-</pre>
+]]></script>
 </div></div>
 
 <p>where <tt>myId</tt> is a string identifier that can be used for a later call to <tt>amq.removeHandler(myId)</tt> and <tt>myDestination</tt> is a URL string address of the destination (e.g. "topic://MY.NAME"  or "channel://MY.NAME").  When a message is received, a call back to the <tt>myHandler.rcvMessage</tt> function passes the message to your handling code.<br clear="none">
@@ -155,9 +165,9 @@ The "message" is actually a text of the 
 
 <p>By default, an ajax client will receive all messages on a topic or queue it is subscribed to.  In <a shape="rect" class="external-link" href="http://activemq.apache.org/activemq-541-release.html">ActiveMQ 5.4.1</a> amq.js supports <a shape="rect" class="external-link" href="http://activemq.apache.org/selectors.html">JMS selectors</a> since it is frequently useful to receive only a subset of these messages.  Selectors are supplied to an <tt>amq.addListener</tt> call by way of an optional 4th parameter.</p>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-java">
-amq.addListener( myId, myDestination, myHandler.rcvMessage, { selector:<span class="code-quote">"identifier='TEST'"</span> } );
-</pre>
+<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
+amq.addListener( myId, myDestination, myHandler.rcvMessage, { selector:"identifier='TEST'" } );
+]]></script>
 </div></div>
 <p>When used in this way, the Javascript client will receive only messages containing an <tt>identifier</tt> header set to the value <tt>TEST</tt>.</p>
 
@@ -167,14 +177,14 @@ amq.addListener( myId, myDestination, my
 
 <p>In this example, we use the current time (at the time the web page is loaded) as a unique identifier.  This is effective as long as two browser windows are not opened within the same millisecond, and is the approach used by the example <a shape="rect" class="external-link" href="https://svn.apache.org/repos/asf/activemq/trunk/activemq-web-demo/src/main/webapp/chat.html">chat.html</a> included with ActiveMQ.  Other schemes to ensure the uniqueness of <tt>clientId</tt> can easily be devised.  Note that this <tt>clientId</tt> need only be unique within a single session.  (Browser windows opened in the same millisecond in separate browsers will not interact, since they are in different sessions.)</p>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-java">
+<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
 org.activemq.Amq.init({
   uri: 'amq', 
-  logging: <span class="code-keyword">true</span>, 
+  logging: true, 
   timeout: 45, 
-  clientId:(<span class="code-keyword">new</span> Date()).getTime().toString() 
+  clientId:(new Date()).getTime().toString() 
 });
-</pre>
+]]></script>
 </div></div>
 
 <p>Note that this <tt>clientId</tt> is common to all message subscriptions in a single tab or window, and is entirely different from the <tt>clientId</tt> which is supplied as a first argument in <tt>amq.addListener</tt> calls.</p>
@@ -254,8 +264,8 @@ org.activemq.Amq.init({
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
 
-
-<div>
+<p>
+</p><div>
 <form enctype="application/x-www-form-urlencoded" method="get" action="http://www.google.com/search" style="font-size: 10px;">
 <input type="hidden" name="ie" value="UTF-8">
 <input type="hidden" name="oe" value="UTF-8">

Modified: websites/production/activemq/content/all-forums.html
==============================================================================
--- websites/production/activemq/content/all-forums.html (original)
+++ websites/production/activemq/content/all-forums.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,7 @@
     </style>
     <![endif]-->
 
+    
     <title>
     Apache ActiveMQ &#8482; -- All Forums
     </title>
@@ -50,8 +51,8 @@
       <div>
 
 <!-- Banner -->
-
-	<div id="asf_logo">
+<p>
+	</p><div id="asf_logo">
 	<div id="activemq_logo">
             <a shape="rect" style="float:left; width:280px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:10px; margin-left:100px;" href="http://activemq.apache.org" title="The most popular and powerful open source Message Broker">ActiveMQ</a> &#8482;
             <a shape="rect" style="float:right; width:210px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:15px; margin-right:10px;" href="http://www.apache.org" title="The Apache Software Foundation">ASF</a>
@@ -72,10 +73,10 @@
         <tr>
         <td valign="top" width="100%">
           <div class="wiki-content maincontent">
-
+<p>
 <a shape="rect" id="nabblelink" href="http://www.nabble.com/ActiveMQ-f2354.html">ActiveMQ</a>
 <script src="http://www.nabble.com/embed/f2354"></script>
-
+</p>
           </div>
         </td>
         <td valign="top">
@@ -89,8 +90,8 @@
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
 
-
-<div>
+<p>
+</p><div>
 <form enctype="application/x-www-form-urlencoded" method="get" action="http://www.google.com/search" style="font-size: 10px;">
 <input type="hidden" name="ie" value="UTF-8">
 <input type="hidden" name="oe" value="UTF-8">

Modified: websites/production/activemq/content/amq-message-store.html
==============================================================================
--- websites/production/activemq/content/amq-message-store.html (original)
+++ websites/production/activemq/content/amq-message-store.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,16 @@
     </style>
     <![endif]-->
 
+          <link href='http://activemq.apache.org/styles/highlighter/styles/shCore.css' rel='stylesheet' type='text/css' /> 
+      <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
+      <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+         
+      <script type="text/javascript"> 
+        SyntaxHighlighter.defaults['toolbar'] = false; 
+        SyntaxHighlighter.all(); 
+      </script> 
+    
     <title>
     Apache ActiveMQ &#8482; -- AMQ Message Store
     </title>
@@ -50,8 +60,8 @@
       <div>
 
 <!-- Banner -->
-
-	<div id="asf_logo">
+<p>
+	</p><div id="asf_logo">
 	<div id="activemq_logo">
             <a shape="rect" style="float:left; width:280px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:10px; margin-left:100px;" href="http://activemq.apache.org" title="The most popular and powerful open source Message Broker">ActiveMQ</a> &#8482;
             <a shape="rect" style="float:right; width:210px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:15px; margin-right:10px;" href="http://www.apache.org" title="The Apache Software Foundation">ASF</a>
@@ -94,16 +104,16 @@ The messages are stored in data logs, wh
 <p>By default ActiveMQ will use the the AMQ Store - and its default settings. You can configure the properties of the AMQ Store however, by explictly defining its persistence adapter (amqPersistenceAdapter):</p>
 
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-java">
- &lt;broker brokerName=<span class="code-quote">"broker"</span> persistent=<span class="code-quote">"<span class="code-keyword">true</span>"</span> useShutdownHook=<span class="code-quote">"<span class="code-keyword">false</span>"</span>&gt;
+<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
+ &lt;broker brokerName="broker" persistent="true" useShutdownHook="false"&gt;
     &lt;persistenceAdapter&gt;
-      &lt;amqPersistenceAdapter directory=<span class="code-quote">"${activemq.base}/activemq-data"</span> maxFileLength=<span class="code-quote">"32mb"</span>/&gt;
+      &lt;amqPersistenceAdapter directory="${activemq.base}/activemq-data" maxFileLength="32mb"/&gt;
     &lt;/persistenceAdapter&gt;
     &lt;transportConnectors&gt;
-      &lt;transportConnector uri=<span class="code-quote">"tcp:<span class="code-comment">//localhost:61616"</span>/&gt;
-</span>    &lt;/transportConnectors&gt;
+      &lt;transportConnector uri="tcp://localhost:61616"/&gt;
+    &lt;/transportConnectors&gt;
   &lt;/broker&gt;
-</pre>
+]]></script>
 </div></div>
 
 <p>The above shows the configuration required to set the AMQ Store through its amqPersistenceAdapter - and explicity setting the directory and maxFileLength properties.</p>
@@ -157,8 +167,8 @@ n.b. this directory only exists when the
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
 
-
-<div>
+<p>
+</p><div>
 <form enctype="application/x-www-form-urlencoded" method="get" action="http://www.google.com/search" style="font-size: 10px;">
 <input type="hidden" name="ie" value="UTF-8">
 <input type="hidden" name="oe" value="UTF-8">

Modified: websites/production/activemq/content/amqp.html
==============================================================================
--- websites/production/activemq/content/amqp.html (original)
+++ websites/production/activemq/content/amqp.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,17 @@
     </style>
     <![endif]-->
 
+          <link href='http://activemq.apache.org/styles/highlighter/styles/shCore.css' rel='stylesheet' type='text/css' /> 
+      <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
+      <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushXml.js' type='text/javascript'></script> 
+         
+      <script type="text/javascript"> 
+        SyntaxHighlighter.defaults['toolbar'] = false; 
+        SyntaxHighlighter.all(); 
+      </script> 
+    
     <title>
     Apache ActiveMQ &#8482; -- AMQP
     </title>

Modified: websites/production/activemq/content/apache-activemq-board-report-april-2008.html
==============================================================================
--- websites/production/activemq/content/apache-activemq-board-report-april-2008.html (original)
+++ websites/production/activemq/content/apache-activemq-board-report-april-2008.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,17 @@
     </style>
     <![endif]-->
 
+          <link href='http://activemq.apache.org/styles/highlighter/styles/shCore.css' rel='stylesheet' type='text/css' /> 
+      <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
+      <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushPlain.js' type='text/javascript'></script> 
+         
+      <script type="text/javascript"> 
+        SyntaxHighlighter.defaults['toolbar'] = false; 
+        SyntaxHighlighter.all(); 
+      </script> 
+    
     <title>
     Apache ActiveMQ &#8482; -- Apache ActiveMQ Board Report - April 2008
     </title>
@@ -50,8 +61,8 @@
       <div>
 
 <!-- Banner -->
-
-	<div id="asf_logo">
+<p>
+	</p><div id="asf_logo">
 	<div id="activemq_logo">
             <a shape="rect" style="float:left; width:280px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:10px; margin-left:100px;" href="http://activemq.apache.org" title="The most popular and powerful open source Message Broker">ActiveMQ</a> &#8482;
             <a shape="rect" style="float:right; width:210px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:15px; margin-right:10px;" href="http://www.apache.org" title="The Apache Software Foundation">ASF</a>
@@ -74,7 +85,7 @@
           <div class="wiki-content maincontent">
 <h1><a shape="rect" name="ApacheActiveMQBoardReport-April2008-StatusreportfortheApacheActiveMQProject"></a>Status report for the Apache ActiveMQ Project</h1>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-none">
+<script class="theme: Default; brush: plain; gutter: false" type="syntaxhighlighter"><![CDATA[
 Community:
 
  The ActiveMQ community continues to stay vibrant with a very healthy amount of email traffic 
@@ -110,7 +121,7 @@ ECN Status:
   * Apache ActiveMQ
   * Apache Camel
  
-</pre>
+]]></script>
 </div></div>
           </div>
         </td>
@@ -125,8 +136,8 @@ ECN Status:
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
 
-
-<div>
+<p>
+</p><div>
 <form enctype="application/x-www-form-urlencoded" method="get" action="http://www.google.com/search" style="font-size: 10px;">
 <input type="hidden" name="ie" value="UTF-8">
 <input type="hidden" name="oe" value="UTF-8">

Modified: websites/production/activemq/content/apache-activemq-board-report-april-2009.html
==============================================================================
--- websites/production/activemq/content/apache-activemq-board-report-april-2009.html (original)
+++ websites/production/activemq/content/apache-activemq-board-report-april-2009.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,17 @@
     </style>
     <![endif]-->
 
+          <link href='http://activemq.apache.org/styles/highlighter/styles/shCore.css' rel='stylesheet' type='text/css' /> 
+      <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
+      <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushPlain.js' type='text/javascript'></script> 
+         
+      <script type="text/javascript"> 
+        SyntaxHighlighter.defaults['toolbar'] = false; 
+        SyntaxHighlighter.all(); 
+      </script> 
+    
     <title>
     Apache ActiveMQ &#8482; -- Apache ActiveMQ Board Report - April 2009
     </title>
@@ -50,8 +61,8 @@
       <div>
 
 <!-- Banner -->
-
-	<div id="asf_logo">
+<p>
+	</p><div id="asf_logo">
 	<div id="activemq_logo">
             <a shape="rect" style="float:left; width:280px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:10px; margin-left:100px;" href="http://activemq.apache.org" title="The most popular and powerful open source Message Broker">ActiveMQ</a> &#8482;
             <a shape="rect" style="float:right; width:210px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:15px; margin-right:10px;" href="http://www.apache.org" title="The Apache Software Foundation">ASF</a>
@@ -74,7 +85,7 @@
           <div class="wiki-content maincontent">
 <h1><a shape="rect" name="ApacheActiveMQBoardReport-April2009-StatusreportfortheApacheActiveMQProject"></a>Status report for the Apache ActiveMQ Project</h1>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-none">
+<script class="theme: Default; brush: plain; gutter: false" type="syntaxhighlighter"><![CDATA[
 Community:
  * The ActiveMQ project has had another very busy but quiet quarter.
  * The development and user lists continue to stay vibrant.
@@ -90,7 +101,7 @@ Development:
 Releases:
  * ActiveMQ-CPP 2.2.4
  * ActiveMQ-CPP 2.2.5
-</pre>
+]]></script>
 </div></div>
           </div>
         </td>
@@ -105,8 +116,8 @@ Releases:
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
 
-
-<div>
+<p>
+</p><div>
 <form enctype="application/x-www-form-urlencoded" method="get" action="http://www.google.com/search" style="font-size: 10px;">
 <input type="hidden" name="ie" value="UTF-8">
 <input type="hidden" name="oe" value="UTF-8">

Modified: websites/production/activemq/content/apache-activemq-board-report-april-2011.html
==============================================================================
--- websites/production/activemq/content/apache-activemq-board-report-april-2011.html (original)
+++ websites/production/activemq/content/apache-activemq-board-report-april-2011.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,7 @@
     </style>
     <![endif]-->
 
+    
     <title>
     Apache ActiveMQ &#8482; -- Apache ActiveMQ Board Report - April 2011
     </title>
@@ -50,8 +51,8 @@
       <div>
 
 <!-- Banner -->
-
-	<div id="asf_logo">
+<p>
+	</p><div id="asf_logo">
 	<div id="activemq_logo">
             <a shape="rect" style="float:left; width:280px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:10px; margin-left:100px;" href="http://activemq.apache.org" title="The most popular and powerful open source Message Broker">ActiveMQ</a> &#8482;
             <a shape="rect" style="float:right; width:210px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:15px; margin-right:10px;" href="http://www.apache.org" title="The Apache Software Foundation">ASF</a>
@@ -98,8 +99,8 @@
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
 
-
-<div>
+<p>
+</p><div>
 <form enctype="application/x-www-form-urlencoded" method="get" action="http://www.google.com/search" style="font-size: 10px;">
 <input type="hidden" name="ie" value="UTF-8">
 <input type="hidden" name="oe" value="UTF-8">

Modified: websites/production/activemq/content/apache-activemq-board-report-april-2012.html
==============================================================================
--- websites/production/activemq/content/apache-activemq-board-report-april-2012.html (original)
+++ websites/production/activemq/content/apache-activemq-board-report-april-2012.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,7 @@
     </style>
     <![endif]-->
 
+    
     <title>
     Apache ActiveMQ &#8482; -- Apache ActiveMQ Board Report - April 2012
     </title>
@@ -50,8 +51,8 @@
       <div>
 
 <!-- Banner -->
-
-	<div id="asf_logo">
+<p>
+	</p><div id="asf_logo">
 	<div id="activemq_logo">
             <a shape="rect" style="float:left; width:280px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:10px; margin-left:100px;" href="http://activemq.apache.org" title="The most popular and powerful open source Message Broker">ActiveMQ</a> &#8482;
             <a shape="rect" style="float:right; width:210px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:15px; margin-right:10px;" href="http://www.apache.org" title="The Apache Software Foundation">ASF</a>
@@ -106,8 +107,8 @@
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
 
-
-<div>
+<p>
+</p><div>
 <form enctype="application/x-www-form-urlencoded" method="get" action="http://www.google.com/search" style="font-size: 10px;">
 <input type="hidden" name="ie" value="UTF-8">
 <input type="hidden" name="oe" value="UTF-8">

Modified: websites/production/activemq/content/apache-activemq-board-report-april-2013.html
==============================================================================
--- websites/production/activemq/content/apache-activemq-board-report-april-2013.html (original)
+++ websites/production/activemq/content/apache-activemq-board-report-april-2013.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,7 @@
     </style>
     <![endif]-->
 
+    
     <title>
     Apache ActiveMQ &#8482; -- Apache ActiveMQ Board Report - April 2013
     </title>
@@ -50,8 +51,8 @@
       <div>
 
 <!-- Banner -->
-
-	<div id="asf_logo">
+<p>
+	</p><div id="asf_logo">
 	<div id="activemq_logo">
             <a shape="rect" style="float:left; width:280px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:10px; margin-left:100px;" href="http://activemq.apache.org" title="The most popular and powerful open source Message Broker">ActiveMQ</a> &#8482;
             <a shape="rect" style="float:right; width:210px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:15px; margin-right:10px;" href="http://www.apache.org" title="The Apache Software Foundation">ASF</a>
@@ -106,8 +107,8 @@
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
 
-
-<div>
+<p>
+</p><div>
 <form enctype="application/x-www-form-urlencoded" method="get" action="http://www.google.com/search" style="font-size: 10px;">
 <input type="hidden" name="ie" value="UTF-8">
 <input type="hidden" name="oe" value="UTF-8">

Modified: websites/production/activemq/content/apache-activemq-board-report-august-2007.html
==============================================================================
--- websites/production/activemq/content/apache-activemq-board-report-august-2007.html (original)
+++ websites/production/activemq/content/apache-activemq-board-report-august-2007.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,17 @@
     </style>
     <![endif]-->
 
+          <link href='http://activemq.apache.org/styles/highlighter/styles/shCore.css' rel='stylesheet' type='text/css' /> 
+      <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
+      <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushPlain.js' type='text/javascript'></script> 
+         
+      <script type="text/javascript"> 
+        SyntaxHighlighter.defaults['toolbar'] = false; 
+        SyntaxHighlighter.all(); 
+      </script> 
+    
     <title>
     Apache ActiveMQ &#8482; -- Apache ActiveMQ Board Report - August 2007
     </title>
@@ -50,8 +61,8 @@
       <div>
 
 <!-- Banner -->
-
-	<div id="asf_logo">
+<p>
+	</p><div id="asf_logo">
 	<div id="activemq_logo">
             <a shape="rect" style="float:left; width:280px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:10px; margin-left:100px;" href="http://activemq.apache.org" title="The most popular and powerful open source Message Broker">ActiveMQ</a> &#8482;
             <a shape="rect" style="float:right; width:210px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:15px; margin-right:10px;" href="http://www.apache.org" title="The Apache Software Foundation">ASF</a>
@@ -74,7 +85,7 @@
           <div class="wiki-content maincontent">
 <h1><a shape="rect" name="ApacheActiveMQBoardReport-August2007-StatusreportfortheApacheActiveMQProject"></a>Status report for the Apache ActiveMQ Project</h1>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-none">
+<script class="theme: Default; brush: plain; gutter: false" type="syntaxhighlighter"><![CDATA[
 
 July board report was missed in part due to a change in PMC chair.
 
@@ -95,7 +106,7 @@ Maintenance Releases:
  * ActiveMQ CPP 2.0.1 - Updated to use the CMS 1.0 API
  * ActiveMQ CMS 1.1 - Updated to build as a shared lib
 
-</pre>
+]]></script>
 </div></div>
           </div>
         </td>
@@ -110,8 +121,8 @@ Maintenance Releases:
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
 
-
-<div>
+<p>
+</p><div>
 <form enctype="application/x-www-form-urlencoded" method="get" action="http://www.google.com/search" style="font-size: 10px;">
 <input type="hidden" name="ie" value="UTF-8">
 <input type="hidden" name="oe" value="UTF-8">

Modified: websites/production/activemq/content/apache-activemq-board-report-january-2008.html
==============================================================================
--- websites/production/activemq/content/apache-activemq-board-report-january-2008.html (original)
+++ websites/production/activemq/content/apache-activemq-board-report-january-2008.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,17 @@
     </style>
     <![endif]-->
 
+          <link href='http://activemq.apache.org/styles/highlighter/styles/shCore.css' rel='stylesheet' type='text/css' /> 
+      <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
+      <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushPlain.js' type='text/javascript'></script> 
+         
+      <script type="text/javascript"> 
+        SyntaxHighlighter.defaults['toolbar'] = false; 
+        SyntaxHighlighter.all(); 
+      </script> 
+    
     <title>
     Apache ActiveMQ &#8482; -- Apache ActiveMQ Board Report - January 2008
     </title>
@@ -50,8 +61,8 @@
       <div>
 
 <!-- Banner -->
-
-	<div id="asf_logo">
+<p>
+	</p><div id="asf_logo">
 	<div id="activemq_logo">
             <a shape="rect" style="float:left; width:280px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:10px; margin-left:100px;" href="http://activemq.apache.org" title="The most popular and powerful open source Message Broker">ActiveMQ</a> &#8482;
             <a shape="rect" style="float:right; width:210px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:15px; margin-right:10px;" href="http://www.apache.org" title="The Apache Software Foundation">ASF</a>
@@ -74,7 +85,7 @@
           <div class="wiki-content maincontent">
 <h1><a shape="rect" name="ApacheActiveMQBoardReport-January2008-StatusreportfortheApacheActiveMQProject"></a>Status report for the Apache ActiveMQ Project</h1>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-none">
+<script class="theme: Default; brush: plain; gutter: false" type="syntaxhighlighter"><![CDATA[
 Community:
  * Nicky Sandhu and Hadrian Zbarcea were voted in and accepted becoming ActiveMQ committers
  * A code grant was accepted for an NMS implementation that access 
@@ -92,7 +103,7 @@ Releases:
  * ActiveMQ CPP 2.1.1
  * ActiveMQ CPP 2.1.2
  * ActiveMQ CPP 2.1.3
-</pre>
+]]></script>
 </div></div>
           </div>
         </td>
@@ -107,8 +118,8 @@ Releases:
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
 
-
-<div>
+<p>
+</p><div>
 <form enctype="application/x-www-form-urlencoded" method="get" action="http://www.google.com/search" style="font-size: 10px;">
 <input type="hidden" name="ie" value="UTF-8">
 <input type="hidden" name="oe" value="UTF-8">

Modified: websites/production/activemq/content/apache-activemq-board-report-january-2009.html
==============================================================================
--- websites/production/activemq/content/apache-activemq-board-report-january-2009.html (original)
+++ websites/production/activemq/content/apache-activemq-board-report-january-2009.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,17 @@
     </style>
     <![endif]-->
 
+          <link href='http://activemq.apache.org/styles/highlighter/styles/shCore.css' rel='stylesheet' type='text/css' /> 
+      <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
+      <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushPlain.js' type='text/javascript'></script> 
+         
+      <script type="text/javascript"> 
+        SyntaxHighlighter.defaults['toolbar'] = false; 
+        SyntaxHighlighter.all(); 
+      </script> 
+    
     <title>
     Apache ActiveMQ &#8482; -- Apache ActiveMQ Board Report - January 2009
     </title>
@@ -50,8 +61,8 @@
       <div>
 
 <!-- Banner -->
-
-	<div id="asf_logo">
+<p>
+	</p><div id="asf_logo">
 	<div id="activemq_logo">
             <a shape="rect" style="float:left; width:280px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:10px; margin-left:100px;" href="http://activemq.apache.org" title="The most popular and powerful open source Message Broker">ActiveMQ</a> &#8482;
             <a shape="rect" style="float:right; width:210px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:15px; margin-right:10px;" href="http://www.apache.org" title="The Apache Software Foundation">ASF</a>
@@ -74,7 +85,7 @@
           <div class="wiki-content maincontent">
 <h1><a shape="rect" name="ApacheActiveMQBoardReport-January2009-StatusreportfortheApacheActiveMQProject"></a>Status report for the Apache ActiveMQ Project</h1>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-none">
+<script class="theme: Default; brush: plain; gutter: false" type="syntaxhighlighter"><![CDATA[
 Community:
  * The ActiveMQ project has had another very busy quarter.  William Tam has been added as an ActiveMQ committer.
  * The development and user lists continue to stay vibrant.
@@ -93,7 +104,7 @@ Releases:
  * ActiveMQ-CPP 2.2.2
  * ActiveMQ-CPP 2.2.3
  * Camel 1.5.0
-</pre>
+]]></script>
 </div></div>
           </div>
         </td>
@@ -108,8 +119,8 @@ Releases:
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
 
-
-<div>
+<p>
+</p><div>
 <form enctype="application/x-www-form-urlencoded" method="get" action="http://www.google.com/search" style="font-size: 10px;">
 <input type="hidden" name="ie" value="UTF-8">
 <input type="hidden" name="oe" value="UTF-8">

Modified: websites/production/activemq/content/apache-activemq-board-report-january-2010.html
==============================================================================
--- websites/production/activemq/content/apache-activemq-board-report-january-2010.html (original)
+++ websites/production/activemq/content/apache-activemq-board-report-january-2010.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,7 @@
     </style>
     <![endif]-->
 
+    
     <title>
     Apache ActiveMQ &#8482; -- Apache ActiveMQ Board Report - January 2010
     </title>
@@ -50,8 +51,8 @@
       <div>
 
 <!-- Banner -->
-
-	<div id="asf_logo">
+<p>
+	</p><div id="asf_logo">
 	<div id="activemq_logo">
             <a shape="rect" style="float:left; width:280px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:10px; margin-left:100px;" href="http://activemq.apache.org" title="The most popular and powerful open source Message Broker">ActiveMQ</a> &#8482;
             <a shape="rect" style="float:right; width:210px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:15px; margin-right:10px;" href="http://www.apache.org" title="The Apache Software Foundation">ASF</a>
@@ -101,8 +102,8 @@ Releases:
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
 
-
-<div>
+<p>
+</p><div>
 <form enctype="application/x-www-form-urlencoded" method="get" action="http://www.google.com/search" style="font-size: 10px;">
 <input type="hidden" name="ie" value="UTF-8">
 <input type="hidden" name="oe" value="UTF-8">

Modified: websites/production/activemq/content/apache-activemq-board-report-january-2011.html
==============================================================================
--- websites/production/activemq/content/apache-activemq-board-report-january-2011.html (original)
+++ websites/production/activemq/content/apache-activemq-board-report-january-2011.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,7 @@
     </style>
     <![endif]-->
 
+    
     <title>
     Apache ActiveMQ &#8482; -- Apache ActiveMQ Board Report - January 2011
     </title>
@@ -50,8 +51,8 @@
       <div>
 
 <!-- Banner -->
-
-	<div id="asf_logo">
+<p>
+	</p><div id="asf_logo">
 	<div id="activemq_logo">
             <a shape="rect" style="float:left; width:280px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:10px; margin-left:100px;" href="http://activemq.apache.org" title="The most popular and powerful open source Message Broker">ActiveMQ</a> &#8482;
             <a shape="rect" style="float:right; width:210px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:15px; margin-right:10px;" href="http://www.apache.org" title="The Apache Software Foundation">ASF</a>
@@ -97,8 +98,8 @@
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
 
-
-<div>
+<p>
+</p><div>
 <form enctype="application/x-www-form-urlencoded" method="get" action="http://www.google.com/search" style="font-size: 10px;">
 <input type="hidden" name="ie" value="UTF-8">
 <input type="hidden" name="oe" value="UTF-8">

Modified: websites/production/activemq/content/apache-activemq-board-report-january-2012.html
==============================================================================
--- websites/production/activemq/content/apache-activemq-board-report-january-2012.html (original)
+++ websites/production/activemq/content/apache-activemq-board-report-january-2012.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,7 @@
     </style>
     <![endif]-->
 
+    
     <title>
     Apache ActiveMQ &#8482; -- Apache ActiveMQ Board Report - January 2012
     </title>
@@ -50,8 +51,8 @@
       <div>
 
 <!-- Banner -->
-
-	<div id="asf_logo">
+<p>
+	</p><div id="asf_logo">
 	<div id="activemq_logo">
             <a shape="rect" style="float:left; width:280px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:10px; margin-left:100px;" href="http://activemq.apache.org" title="The most popular and powerful open source Message Broker">ActiveMQ</a> &#8482;
             <a shape="rect" style="float:right; width:210px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:15px; margin-right:10px;" href="http://www.apache.org" title="The Apache Software Foundation">ASF</a>
@@ -106,8 +107,8 @@
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
 
-
-<div>
+<p>
+</p><div>
 <form enctype="application/x-www-form-urlencoded" method="get" action="http://www.google.com/search" style="font-size: 10px;">
 <input type="hidden" name="ie" value="UTF-8">
 <input type="hidden" name="oe" value="UTF-8">

Modified: websites/production/activemq/content/apache-activemq-board-report-january-2013.html
==============================================================================
--- websites/production/activemq/content/apache-activemq-board-report-january-2013.html (original)
+++ websites/production/activemq/content/apache-activemq-board-report-january-2013.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,7 @@
     </style>
     <![endif]-->
 
+    
     <title>
     Apache ActiveMQ &#8482; -- Apache ActiveMQ Board Report - January 2013
     </title>
@@ -50,8 +51,8 @@
       <div>
 
 <!-- Banner -->
-
-	<div id="asf_logo">
+<p>
+	</p><div id="asf_logo">
 	<div id="activemq_logo">
             <a shape="rect" style="float:left; width:280px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:10px; margin-left:100px;" href="http://activemq.apache.org" title="The most popular and powerful open source Message Broker">ActiveMQ</a> &#8482;
             <a shape="rect" style="float:right; width:210px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:15px; margin-right:10px;" href="http://www.apache.org" title="The Apache Software Foundation">ASF</a>
@@ -106,8 +107,8 @@
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
 
-
-<div>
+<p>
+</p><div>
 <form enctype="application/x-www-form-urlencoded" method="get" action="http://www.google.com/search" style="font-size: 10px;">
 <input type="hidden" name="ie" value="UTF-8">
 <input type="hidden" name="oe" value="UTF-8">

Modified: websites/production/activemq/content/apache-activemq-board-report-july-2008.html
==============================================================================
--- websites/production/activemq/content/apache-activemq-board-report-july-2008.html (original)
+++ websites/production/activemq/content/apache-activemq-board-report-july-2008.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,17 @@
     </style>
     <![endif]-->
 
+          <link href='http://activemq.apache.org/styles/highlighter/styles/shCore.css' rel='stylesheet' type='text/css' /> 
+      <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
+      <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushPlain.js' type='text/javascript'></script> 
+         
+      <script type="text/javascript"> 
+        SyntaxHighlighter.defaults['toolbar'] = false; 
+        SyntaxHighlighter.all(); 
+      </script> 
+    
     <title>
     Apache ActiveMQ &#8482; -- Apache ActiveMQ Board Report - July 2008
     </title>
@@ -50,8 +61,8 @@
       <div>
 
 <!-- Banner -->
-
-	<div id="asf_logo">
+<p>
+	</p><div id="asf_logo">
 	<div id="activemq_logo">
             <a shape="rect" style="float:left; width:280px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:10px; margin-left:100px;" href="http://activemq.apache.org" title="The most popular and powerful open source Message Broker">ActiveMQ</a> &#8482;
             <a shape="rect" style="float:right; width:210px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:15px; margin-right:10px;" href="http://www.apache.org" title="The Apache Software Foundation">ASF</a>
@@ -74,7 +85,7 @@
           <div class="wiki-content maincontent">
 <h1><a shape="rect" name="ApacheActiveMQBoardReport-July2008-StatusreportfortheApacheActiveMQProject"></a>Status report for the Apache ActiveMQ Project</h1>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-none">
+<script class="theme: Default; brush: plain; gutter: false" type="syntaxhighlighter"><![CDATA[
 Community:
  * The ActiveMQ project has had another very busy quarter.  Seven new contributors were voted in and accepted becoming ActiveMQ committers:
    * Gary Tully 
@@ -97,7 +108,7 @@ Releases:
  * ActiveIO 3.0.1
  * ActiveMQ-CPP 2.2
 
-</pre>
+]]></script>
 </div></div>
           </div>
         </td>
@@ -112,8 +123,8 @@ Releases:
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
 
-
-<div>
+<p>
+</p><div>
 <form enctype="application/x-www-form-urlencoded" method="get" action="http://www.google.com/search" style="font-size: 10px;">
 <input type="hidden" name="ie" value="UTF-8">
 <input type="hidden" name="oe" value="UTF-8">

Modified: websites/production/activemq/content/apache-activemq-board-report-july-2009.html
==============================================================================
--- websites/production/activemq/content/apache-activemq-board-report-july-2009.html (original)
+++ websites/production/activemq/content/apache-activemq-board-report-july-2009.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,7 @@
     </style>
     <![endif]-->
 
+    
     <title>
     Apache ActiveMQ &#8482; -- Apache ActiveMQ Board Report - July 2009
     </title>
@@ -50,8 +51,8 @@
       <div>
 
 <!-- Banner -->
-
-	<div id="asf_logo">
+<p>
+	</p><div id="asf_logo">
 	<div id="activemq_logo">
             <a shape="rect" style="float:left; width:280px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:10px; margin-left:100px;" href="http://activemq.apache.org" title="The most popular and powerful open source Message Broker">ActiveMQ</a> &#8482;
             <a shape="rect" style="float:right; width:210px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:15px; margin-right:10px;" href="http://www.apache.org" title="The Apache Software Foundation">ASF</a>
@@ -106,8 +107,8 @@ Releases:
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
 
-
-<div>
+<p>
+</p><div>
 <form enctype="application/x-www-form-urlencoded" method="get" action="http://www.google.com/search" style="font-size: 10px;">
 <input type="hidden" name="ie" value="UTF-8">
 <input type="hidden" name="oe" value="UTF-8">

Modified: websites/production/activemq/content/apache-activemq-board-report-july-2010.html
==============================================================================
--- websites/production/activemq/content/apache-activemq-board-report-july-2010.html (original)
+++ websites/production/activemq/content/apache-activemq-board-report-july-2010.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,7 @@
     </style>
     <![endif]-->
 
+    
     <title>
     Apache ActiveMQ &#8482; -- Apache ActiveMQ Board Report - July 2010
     </title>
@@ -50,8 +51,8 @@
       <div>
 
 <!-- Banner -->
-
-	<div id="asf_logo">
+<p>
+	</p><div id="asf_logo">
 	<div id="activemq_logo">
             <a shape="rect" style="float:left; width:280px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:10px; margin-left:100px;" href="http://activemq.apache.org" title="The most popular and powerful open source Message Broker">ActiveMQ</a> &#8482;
             <a shape="rect" style="float:right; width:210px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:15px; margin-right:10px;" href="http://www.apache.org" title="The Apache Software Foundation">ASF</a>
@@ -96,8 +97,8 @@
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
 
-
-<div>
+<p>
+</p><div>
 <form enctype="application/x-www-form-urlencoded" method="get" action="http://www.google.com/search" style="font-size: 10px;">
 <input type="hidden" name="ie" value="UTF-8">
 <input type="hidden" name="oe" value="UTF-8">

Modified: websites/production/activemq/content/apache-activemq-board-report-july-2011.html
==============================================================================
--- websites/production/activemq/content/apache-activemq-board-report-july-2011.html (original)
+++ websites/production/activemq/content/apache-activemq-board-report-july-2011.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,7 @@
     </style>
     <![endif]-->
 
+    
     <title>
     Apache ActiveMQ &#8482; -- Apache ActiveMQ Board Report - July 2011
     </title>
@@ -50,8 +51,8 @@
       <div>
 
 <!-- Banner -->
-
-	<div id="asf_logo">
+<p>
+	</p><div id="asf_logo">
 	<div id="activemq_logo">
             <a shape="rect" style="float:left; width:280px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:10px; margin-left:100px;" href="http://activemq.apache.org" title="The most popular and powerful open source Message Broker">ActiveMQ</a> &#8482;
             <a shape="rect" style="float:right; width:210px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:15px; margin-right:10px;" href="http://www.apache.org" title="The Apache Software Foundation">ASF</a>
@@ -103,8 +104,8 @@
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
 
-
-<div>
+<p>
+</p><div>
 <form enctype="application/x-www-form-urlencoded" method="get" action="http://www.google.com/search" style="font-size: 10px;">
 <input type="hidden" name="ie" value="UTF-8">
 <input type="hidden" name="oe" value="UTF-8">

Modified: websites/production/activemq/content/apache-activemq-board-report-july-2012.html
==============================================================================
--- websites/production/activemq/content/apache-activemq-board-report-july-2012.html (original)
+++ websites/production/activemq/content/apache-activemq-board-report-july-2012.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,7 @@
     </style>
     <![endif]-->
 
+    
     <title>
     Apache ActiveMQ &#8482; -- Apache ActiveMQ Board Report - July 2012
     </title>
@@ -50,8 +51,8 @@
       <div>
 
 <!-- Banner -->
-
-	<div id="asf_logo">
+<p>
+	</p><div id="asf_logo">
 	<div id="activemq_logo">
             <a shape="rect" style="float:left; width:280px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:10px; margin-left:100px;" href="http://activemq.apache.org" title="The most popular and powerful open source Message Broker">ActiveMQ</a> &#8482;
             <a shape="rect" style="float:right; width:210px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:15px; margin-right:10px;" href="http://www.apache.org" title="The Apache Software Foundation">ASF</a>
@@ -106,8 +107,8 @@
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
 
-
-<div>
+<p>
+</p><div>
 <form enctype="application/x-www-form-urlencoded" method="get" action="http://www.google.com/search" style="font-size: 10px;">
 <input type="hidden" name="ie" value="UTF-8">
 <input type="hidden" name="oe" value="UTF-8">

Modified: websites/production/activemq/content/apache-activemq-board-report-july-2013.html
==============================================================================
--- websites/production/activemq/content/apache-activemq-board-report-july-2013.html (original)
+++ websites/production/activemq/content/apache-activemq-board-report-july-2013.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,7 @@
     </style>
     <![endif]-->
 
+    
     <title>
     Apache ActiveMQ &#8482; -- Apache ActiveMQ Board Report - July 2013
     </title>

Modified: websites/production/activemq/content/apache-activemq-board-report-may-2010.html
==============================================================================
--- websites/production/activemq/content/apache-activemq-board-report-may-2010.html (original)
+++ websites/production/activemq/content/apache-activemq-board-report-may-2010.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,17 @@
     </style>
     <![endif]-->
 
+          <link href='http://activemq.apache.org/styles/highlighter/styles/shCore.css' rel='stylesheet' type='text/css' /> 
+      <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
+      <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushPlain.js' type='text/javascript'></script> 
+         
+      <script type="text/javascript"> 
+        SyntaxHighlighter.defaults['toolbar'] = false; 
+        SyntaxHighlighter.all(); 
+      </script> 
+    
     <title>
     Apache ActiveMQ &#8482; -- Apache ActiveMQ Board Report - May 2010
     </title>
@@ -50,8 +61,8 @@
       <div>
 
 <!-- Banner -->
-
-	<div id="asf_logo">
+<p>
+	</p><div id="asf_logo">
 	<div id="activemq_logo">
             <a shape="rect" style="float:left; width:280px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:10px; margin-left:100px;" href="http://activemq.apache.org" title="The most popular and powerful open source Message Broker">ActiveMQ</a> &#8482;
             <a shape="rect" style="float:right; width:210px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:15px; margin-right:10px;" href="http://www.apache.org" title="The Apache Software Foundation">ASF</a>
@@ -75,7 +86,7 @@
 <h1><a shape="rect" name="ApacheActiveMQBoardReport-May2010-StatusreportfortheApacheActiveMQProject"></a>Status report for the Apache ActiveMQ Project</h1>
 
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-none">
+<script class="theme: Default; brush: plain; gutter: false" type="syntaxhighlighter"><![CDATA[
 Apologies for missing the April board report deadline.
 
 Community:
@@ -94,7 +105,7 @@ Releases:
  * Apache.NMS.Stomp v1.2.0
  * Apache.NMS API 1.2.0
 
-</pre>
+]]></script>
 </div></div>
           </div>
         </td>
@@ -109,8 +120,8 @@ Releases:
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
 
-
-<div>
+<p>
+</p><div>
 <form enctype="application/x-www-form-urlencoded" method="get" action="http://www.google.com/search" style="font-size: 10px;">
 <input type="hidden" name="ie" value="UTF-8">
 <input type="hidden" name="oe" value="UTF-8">

Modified: websites/production/activemq/content/apache-activemq-board-report-october-2007.html
==============================================================================
--- websites/production/activemq/content/apache-activemq-board-report-october-2007.html (original)
+++ websites/production/activemq/content/apache-activemq-board-report-october-2007.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,17 @@
     </style>
     <![endif]-->
 
+          <link href='http://activemq.apache.org/styles/highlighter/styles/shCore.css' rel='stylesheet' type='text/css' /> 
+      <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
+      <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushPlain.js' type='text/javascript'></script> 
+         
+      <script type="text/javascript"> 
+        SyntaxHighlighter.defaults['toolbar'] = false; 
+        SyntaxHighlighter.all(); 
+      </script> 
+    
     <title>
     Apache ActiveMQ &#8482; -- Apache ActiveMQ Board Report - October 2007
     </title>
@@ -50,8 +61,8 @@
       <div>
 
 <!-- Banner -->
-
-	<div id="asf_logo">
+<p>
+	</p><div id="asf_logo">
 	<div id="activemq_logo">
             <a shape="rect" style="float:left; width:280px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:10px; margin-left:100px;" href="http://activemq.apache.org" title="The most popular and powerful open source Message Broker">ActiveMQ</a> &#8482;
             <a shape="rect" style="float:right; width:210px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:15px; margin-right:10px;" href="http://www.apache.org" title="The Apache Software Foundation">ASF</a>
@@ -74,7 +85,7 @@
           <div class="wiki-content maincontent">
 <h1><a shape="rect" name="ApacheActiveMQBoardReport-October2007-StatusreportfortheApacheActiveMQProject"></a>Status report for the Apache ActiveMQ Project</h1>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-none">
+<script class="theme: Default; brush: plain; gutter: false" type="syntaxhighlighter"><![CDATA[
 Community:
  * The developer and user communities remain very active.
  * The Camel project, NMS project, and recent release candidate for ActiveMQ 
@@ -90,7 +101,7 @@ Development:
 Releases:
  * ActiveMQ Camel 1.1.0 - A routing and mediation engine
  * ActiveMQ CPP 2.1 - A C++ client to ActiveMQ that implements the CMS API
-</pre>
+]]></script>
 </div></div>
           </div>
         </td>
@@ -105,8 +116,8 @@ Releases:
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
 
-
-<div>
+<p>
+</p><div>
 <form enctype="application/x-www-form-urlencoded" method="get" action="http://www.google.com/search" style="font-size: 10px;">
 <input type="hidden" name="ie" value="UTF-8">
 <input type="hidden" name="oe" value="UTF-8">

Modified: websites/production/activemq/content/apache-activemq-board-report-october-2008.html
==============================================================================
--- websites/production/activemq/content/apache-activemq-board-report-october-2008.html (original)
+++ websites/production/activemq/content/apache-activemq-board-report-october-2008.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,17 @@
     </style>
     <![endif]-->
 
+          <link href='http://activemq.apache.org/styles/highlighter/styles/shCore.css' rel='stylesheet' type='text/css' /> 
+      <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
+      <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushPlain.js' type='text/javascript'></script> 
+         
+      <script type="text/javascript"> 
+        SyntaxHighlighter.defaults['toolbar'] = false; 
+        SyntaxHighlighter.all(); 
+      </script> 
+    
     <title>
     Apache ActiveMQ &#8482; -- Apache ActiveMQ Board Report - October 2008
     </title>
@@ -50,8 +61,8 @@
       <div>
 
 <!-- Banner -->
-
-	<div id="asf_logo">
+<p>
+	</p><div id="asf_logo">
 	<div id="activemq_logo">
             <a shape="rect" style="float:left; width:280px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:10px; margin-left:100px;" href="http://activemq.apache.org" title="The most popular and powerful open source Message Broker">ActiveMQ</a> &#8482;
             <a shape="rect" style="float:right; width:210px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:15px; margin-right:10px;" href="http://www.apache.org" title="The Apache Software Foundation">ASF</a>
@@ -74,7 +85,7 @@
           <div class="wiki-content maincontent">
 <h1><a shape="rect" name="ApacheActiveMQBoardReport-October2008-StatusreportfortheApacheActiveMQProject"></a>Status report for the Apache ActiveMQ Project</h1>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-none">
+<script class="theme: Default; brush: plain; gutter: false" type="syntaxhighlighter"><![CDATA[
 Community:
  * The ActiveMQ project has had another very busy quarter.  Jonathan Anstey was voted in as an ActiveMQ committer.
  * The development and user lists continue to stay vibrant.
@@ -88,7 +99,7 @@ Releases:
  * Camel 1.4.0 
 
 
-</pre>
+]]></script>
 </div></div>
           </div>
         </td>
@@ -103,8 +114,8 @@ Releases:
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
 
-
-<div>
+<p>
+</p><div>
 <form enctype="application/x-www-form-urlencoded" method="get" action="http://www.google.com/search" style="font-size: 10px;">
 <input type="hidden" name="ie" value="UTF-8">
 <input type="hidden" name="oe" value="UTF-8">

Modified: websites/production/activemq/content/apache-activemq-board-report-october-2009.html
==============================================================================
--- websites/production/activemq/content/apache-activemq-board-report-october-2009.html (original)
+++ websites/production/activemq/content/apache-activemq-board-report-october-2009.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,7 @@
     </style>
     <![endif]-->
 
+    
     <title>
     Apache ActiveMQ &#8482; -- Apache ActiveMQ Board Report - October 2009
     </title>
@@ -50,8 +51,8 @@
       <div>
 
 <!-- Banner -->
-
-	<div id="asf_logo">
+<p>
+	</p><div id="asf_logo">
 	<div id="activemq_logo">
             <a shape="rect" style="float:left; width:280px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:10px; margin-left:100px;" href="http://activemq.apache.org" title="The most popular and powerful open source Message Broker">ActiveMQ</a> &#8482;
             <a shape="rect" style="float:right; width:210px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:15px; margin-right:10px;" href="http://www.apache.org" title="The Apache Software Foundation">ASF</a>
@@ -107,8 +108,8 @@ Releases:
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
 
-
-<div>
+<p>
+</p><div>
 <form enctype="application/x-www-form-urlencoded" method="get" action="http://www.google.com/search" style="font-size: 10px;">
 <input type="hidden" name="ie" value="UTF-8">
 <input type="hidden" name="oe" value="UTF-8">

Modified: websites/production/activemq/content/apache-activemq-board-report-october-2010.html
==============================================================================
--- websites/production/activemq/content/apache-activemq-board-report-october-2010.html (original)
+++ websites/production/activemq/content/apache-activemq-board-report-october-2010.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,7 @@
     </style>
     <![endif]-->
 
+    
     <title>
     Apache ActiveMQ &#8482; -- Apache ActiveMQ Board Report - October 2010
     </title>
@@ -50,8 +51,8 @@
       <div>
 
 <!-- Banner -->
-
-	<div id="asf_logo">
+<p>
+	</p><div id="asf_logo">
 	<div id="activemq_logo">
             <a shape="rect" style="float:left; width:280px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:10px; margin-left:100px;" href="http://activemq.apache.org" title="The most popular and powerful open source Message Broker">ActiveMQ</a> &#8482;
             <a shape="rect" style="float:right; width:210px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:15px; margin-right:10px;" href="http://www.apache.org" title="The Apache Software Foundation">ASF</a>
@@ -97,8 +98,8 @@
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
 
-
-<div>
+<p>
+</p><div>
 <form enctype="application/x-www-form-urlencoded" method="get" action="http://www.google.com/search" style="font-size: 10px;">
 <input type="hidden" name="ie" value="UTF-8">
 <input type="hidden" name="oe" value="UTF-8">

Modified: websites/production/activemq/content/apache-activemq-board-report-october-2011.html
==============================================================================
--- websites/production/activemq/content/apache-activemq-board-report-october-2011.html (original)
+++ websites/production/activemq/content/apache-activemq-board-report-october-2011.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,7 @@
     </style>
     <![endif]-->
 
+    
     <title>
     Apache ActiveMQ &#8482; -- Apache ActiveMQ Board Report - October 2011
     </title>
@@ -50,8 +51,8 @@
       <div>
 
 <!-- Banner -->
-
-	<div id="asf_logo">
+<p>
+	</p><div id="asf_logo">
 	<div id="activemq_logo">
             <a shape="rect" style="float:left; width:280px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:10px; margin-left:100px;" href="http://activemq.apache.org" title="The most popular and powerful open source Message Broker">ActiveMQ</a> &#8482;
             <a shape="rect" style="float:right; width:210px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:15px; margin-right:10px;" href="http://www.apache.org" title="The Apache Software Foundation">ASF</a>
@@ -102,8 +103,8 @@
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
 
-
-<div>
+<p>
+</p><div>
 <form enctype="application/x-www-form-urlencoded" method="get" action="http://www.google.com/search" style="font-size: 10px;">
 <input type="hidden" name="ie" value="UTF-8">
 <input type="hidden" name="oe" value="UTF-8">

Modified: websites/production/activemq/content/apache-activemq-board-report-october-2012.html
==============================================================================
--- websites/production/activemq/content/apache-activemq-board-report-october-2012.html (original)
+++ websites/production/activemq/content/apache-activemq-board-report-october-2012.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,7 @@
     </style>
     <![endif]-->
 
+    
     <title>
     Apache ActiveMQ &#8482; -- Apache ActiveMQ Board Report - October 2012
     </title>
@@ -50,8 +51,8 @@
       <div>
 
 <!-- Banner -->
-
-	<div id="asf_logo">
+<p>
+	</p><div id="asf_logo">
 	<div id="activemq_logo">
             <a shape="rect" style="float:left; width:280px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:10px; margin-left:100px;" href="http://activemq.apache.org" title="The most popular and powerful open source Message Broker">ActiveMQ</a> &#8482;
             <a shape="rect" style="float:right; width:210px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:15px; margin-right:10px;" href="http://www.apache.org" title="The Apache Software Foundation">ASF</a>
@@ -106,8 +107,8 @@
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
 
-
-<div>
+<p>
+</p><div>
 <form enctype="application/x-www-form-urlencoded" method="get" action="http://www.google.com/search" style="font-size: 10px;">
 <input type="hidden" name="ie" value="UTF-8">
 <input type="hidden" name="oe" value="UTF-8">

Modified: websites/production/activemq/content/apache-activemq-board-reports.html
==============================================================================
--- websites/production/activemq/content/apache-activemq-board-reports.html (original)
+++ websites/production/activemq/content/apache-activemq-board-reports.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,7 @@
     </style>
     <![endif]-->
 
+    
     <title>
     Apache ActiveMQ &#8482; -- Apache ActiveMQ Board Reports
     </title>
@@ -50,8 +51,8 @@
       <div>
 
 <!-- Banner -->
-
-	<div id="asf_logo">
+<p>
+	</p><div id="asf_logo">
 	<div id="activemq_logo">
             <a shape="rect" style="float:left; width:280px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:10px; margin-left:100px;" href="http://activemq.apache.org" title="The most popular and powerful open source Message Broker">ActiveMQ</a> &#8482;
             <a shape="rect" style="float:right; width:210px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:15px; margin-right:10px;" href="http://www.apache.org" title="The Apache Software Foundation">ASF</a>
@@ -75,7 +76,7 @@
 
 <p>The current ActiveMQ reporting schedule is: January, April, July, October</p>
 
-<ul><li><a shape="rect" href="apache-activemq-board-report-april-2009.html" title="Apache ActiveMQ Board Report - April 2009">Apache ActiveMQ Board Report - April 2009</a></li><li><a shape="rect" href="apache-activemq-board-report-april-2011.html" title="Apache ActiveMQ Board Report - April 2011">Apache ActiveMQ Board Report - April 2011</a></li><li><a shape="rect" href="apache-activemq-board-report-april-2012.html" title="Apache ActiveMQ Board Report - April 2012">Apache ActiveMQ Board Report - April 2012</a></li><li><a shape="rect" href="apache-activemq-board-report-august-2007.html" title="Apache ActiveMQ Board Report - August 2007">Apache ActiveMQ Board Report - August 2007</a></li><li><a shape="rect" href="apache-activemq-board-report-january-2008.html" title="Apache ActiveMQ Board Report - January 2008">Apache ActiveMQ Board Report - January 2008</a></li><li><a shape="rect" href="apache-activemq-board-report-january-2009.html" title="Apache ActiveMQ Board Report - January 2009
 ">Apache ActiveMQ Board Report - January 2009</a></li><li><a shape="rect" href="apache-activemq-board-report-january-2010.html" title="Apache ActiveMQ Board Report - January 2010">Apache ActiveMQ Board Report - January 2010</a></li><li><a shape="rect" href="apache-activemq-board-report-january-2011.html" title="Apache ActiveMQ Board Report - January 2011">Apache ActiveMQ Board Report - January 2011</a></li><li><a shape="rect" href="apache-activemq-board-report-january-2012.html" title="Apache ActiveMQ Board Report - January 2012">Apache ActiveMQ Board Report - January 2012</a></li><li><a shape="rect" href="apache-activemq-board-report-january-2013.html" title="Apache ActiveMQ Board Report - January 2013">Apache ActiveMQ Board Report - January 2013</a></li><li><a shape="rect" href="apache-activemq-board-report-july-2008.html" title="Apache ActiveMQ Board Report - July 2008">Apache ActiveMQ Board Report - July 2008</a></li><li><a shape="rect" href="apache-activemq-board-report-july-20
 09.html" title="Apache ActiveMQ Board Report - July 2009">Apache ActiveMQ Board Report - July 2009</a></li><li><a shape="rect" href="apache-activemq-board-report-july-2010.html" title="Apache ActiveMQ Board Report - July 2010">Apache ActiveMQ Board Report - July 2010</a></li><li><a shape="rect" href="apache-activemq-board-report-july-2011.html" title="Apache ActiveMQ Board Report - July 2011">Apache ActiveMQ Board Report - July 2011</a></li><li><a shape="rect" href="apache-activemq-board-report-july-2012.html" title="Apache ActiveMQ Board Report - July 2012">Apache ActiveMQ Board Report - July 2012</a></li><li><a shape="rect" href="apache-activemq-board-report-may-2010.html" title="Apache ActiveMQ Board Report - May 2010">Apache ActiveMQ Board Report - May 2010</a></li><li><a shape="rect" href="apache-activemq-board-report-october-2007.html" title="Apache ActiveMQ Board Report - October 2007">Apache ActiveMQ Board Report - October 2007</a></li><li><a shape="rect" href="apache-active
 mq-board-report-october-2008.html" title="Apache ActiveMQ Board Report - October 2008">Apache ActiveMQ Board Report - October 2008</a></li><li><a shape="rect" href="apache-activemq-board-report-october-2009.html" title="Apache ActiveMQ Board Report - October 2009">Apache ActiveMQ Board Report - October 2009</a></li><li><a shape="rect" href="apache-activemq-board-report-october-2010.html" title="Apache ActiveMQ Board Report - October 2010">Apache ActiveMQ Board Report - October 2010</a></li><li><a shape="rect" href="apache-activemq-board-report-october-2011.html" title="Apache ActiveMQ Board Report - October 2011">Apache ActiveMQ Board Report - October 2011</a></li><li><a shape="rect" href="apache-activemq-board-report-october-2012.html" title="Apache ActiveMQ Board Report - October 2012">Apache ActiveMQ Board Report - October 2012</a></li></ul>
+<ul><li><a shape="rect" href="apache-activemq-board-report-april-2009.html" title="Apache ActiveMQ Board Report - April 2009">Apache ActiveMQ Board Report - April 2009</a></li><li><a shape="rect" href="apache-activemq-board-report-april-2011.html" title="Apache ActiveMQ Board Report - April 2011">Apache ActiveMQ Board Report - April 2011</a></li><li><a shape="rect" href="apache-activemq-board-report-april-2012.html" title="Apache ActiveMQ Board Report - April 2012">Apache ActiveMQ Board Report - April 2012</a></li><li><a shape="rect" href="apache-activemq-board-report-april-2013.html" title="Apache ActiveMQ Board Report - April 2013">Apache ActiveMQ Board Report - April 2013</a></li><li><a shape="rect" href="apache-activemq-board-report-august-2007.html" title="Apache ActiveMQ Board Report - August 2007">Apache ActiveMQ Board Report - August 2007</a></li><li><a shape="rect" href="apache-activemq-board-report-january-2008.html" title="Apache ActiveMQ Board Report - January 2008">Apac
 he ActiveMQ Board Report - January 2008</a></li><li><a shape="rect" href="apache-activemq-board-report-january-2009.html" title="Apache ActiveMQ Board Report - January 2009">Apache ActiveMQ Board Report - January 2009</a></li><li><a shape="rect" href="apache-activemq-board-report-january-2010.html" title="Apache ActiveMQ Board Report - January 2010">Apache ActiveMQ Board Report - January 2010</a></li><li><a shape="rect" href="apache-activemq-board-report-january-2011.html" title="Apache ActiveMQ Board Report - January 2011">Apache ActiveMQ Board Report - January 2011</a></li><li><a shape="rect" href="apache-activemq-board-report-january-2012.html" title="Apache ActiveMQ Board Report - January 2012">Apache ActiveMQ Board Report - January 2012</a></li><li><a shape="rect" href="apache-activemq-board-report-january-2013.html" title="Apache ActiveMQ Board Report - January 2013">Apache ActiveMQ Board Report - January 2013</a></li><li><a shape="rect" href="apache-activemq-board-report-july
 -2008.html" title="Apache ActiveMQ Board Report - July 2008">Apache ActiveMQ Board Report - July 2008</a></li><li><a shape="rect" href="apache-activemq-board-report-july-2009.html" title="Apache ActiveMQ Board Report - July 2009">Apache ActiveMQ Board Report - July 2009</a></li><li><a shape="rect" href="apache-activemq-board-report-july-2010.html" title="Apache ActiveMQ Board Report - July 2010">Apache ActiveMQ Board Report - July 2010</a></li><li><a shape="rect" href="apache-activemq-board-report-july-2011.html" title="Apache ActiveMQ Board Report - July 2011">Apache ActiveMQ Board Report - July 2011</a></li><li><a shape="rect" href="apache-activemq-board-report-july-2012.html" title="Apache ActiveMQ Board Report - July 2012">Apache ActiveMQ Board Report - July 2012</a></li><li><a shape="rect" href="apache-activemq-board-report-july-2013.html" title="Apache ActiveMQ Board Report - July 2013">Apache ActiveMQ Board Report - July 2013</a></li><li><a shape="rect" href="apache-activemq-
 board-report-may-2010.html" title="Apache ActiveMQ Board Report - May 2010">Apache ActiveMQ Board Report - May 2010</a></li><li><a shape="rect" href="apache-activemq-board-report-october-2007.html" title="Apache ActiveMQ Board Report - October 2007">Apache ActiveMQ Board Report - October 2007</a></li><li><a shape="rect" href="apache-activemq-board-report-october-2008.html" title="Apache ActiveMQ Board Report - October 2008">Apache ActiveMQ Board Report - October 2008</a></li><li><a shape="rect" href="apache-activemq-board-report-october-2009.html" title="Apache ActiveMQ Board Report - October 2009">Apache ActiveMQ Board Report - October 2009</a></li><li><a shape="rect" href="apache-activemq-board-report-october-2010.html" title="Apache ActiveMQ Board Report - October 2010">Apache ActiveMQ Board Report - October 2010</a></li><li><a shape="rect" href="apache-activemq-board-report-october-2011.html" title="Apache ActiveMQ Board Report - October 2011">Apache ActiveMQ Board Report - Octo
 ber 2011</a></li><li><a shape="rect" href="apache-activemq-board-report-october-2012.html" title="Apache ActiveMQ Board Report - October 2012">Apache ActiveMQ Board Report - October 2012</a></li></ul>
           </div>
         </td>
         <td valign="top">
@@ -89,8 +90,8 @@
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
 
-
-<div>
+<p>
+</p><div>
 <form enctype="application/x-www-form-urlencoded" method="get" action="http://www.google.com/search" style="font-size: 10px;">
 <input type="hidden" name="ie" value="UTF-8">
 <input type="hidden" name="oe" value="UTF-8">

Modified: websites/production/activemq/content/are-destinations-case-sensitive.html
==============================================================================
--- websites/production/activemq/content/are-destinations-case-sensitive.html (original)
+++ websites/production/activemq/content/are-destinations-case-sensitive.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,7 @@
     </style>
     <![endif]-->
 
+    
     <title>
     Apache ActiveMQ &#8482; -- Are destinations case sensitive
     </title>
@@ -50,8 +51,8 @@
       <div>
 
 <!-- Banner -->
-
-	<div id="asf_logo">
+<p>
+	</p><div id="asf_logo">
 	<div id="activemq_logo">
             <a shape="rect" style="float:left; width:280px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:10px; margin-left:100px;" href="http://activemq.apache.org" title="The most popular and powerful open source Message Broker">ActiveMQ</a> &#8482;
             <a shape="rect" style="float:right; width:210px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:15px; margin-right:10px;" href="http://www.apache.org" title="The Apache Software Foundation">ASF</a>
@@ -87,8 +88,8 @@ There seems to be no consensus on whethe
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
 
-
-<div>
+<p>
+</p><div>
 <form enctype="application/x-www-form-urlencoded" method="get" action="http://www.google.com/search" style="font-size: 10px;">
 <input type="hidden" name="ie" value="UTF-8">
 <input type="hidden" name="oe" value="UTF-8">

Modified: websites/production/activemq/content/are-messages-read-directly-from-the-journal.html
==============================================================================
--- websites/production/activemq/content/are-messages-read-directly-from-the-journal.html (original)
+++ websites/production/activemq/content/are-messages-read-directly-from-the-journal.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,7 @@
     </style>
     <![endif]-->
 
+    
     <title>
     Apache ActiveMQ &#8482; -- Are messages read directly from the journal
     </title>
@@ -50,8 +51,8 @@
       <div>
 
 <!-- Banner -->
-
-	<div id="asf_logo">
+<p>
+	</p><div id="asf_logo">
 	<div id="activemq_logo">
             <a shape="rect" style="float:left; width:280px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:10px; margin-left:100px;" href="http://activemq.apache.org" title="The most popular and powerful open source Message Broker">ActiveMQ</a> &#8482;
             <a shape="rect" style="float:right; width:210px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:15px; margin-right:10px;" href="http://www.apache.org" title="The Apache Software Foundation">ASF</a>
@@ -88,8 +89,8 @@
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
 
-
-<div>
+<p>
+</p><div>
 <form enctype="application/x-www-form-urlencoded" method="get" action="http://www.google.com/search" style="font-size: 10px;">
 <input type="hidden" name="ie" value="UTF-8">
 <input type="hidden" name="oe" value="UTF-8">

Modified: websites/production/activemq/content/articles.html
==============================================================================
--- websites/production/activemq/content/articles.html (original)
+++ websites/production/activemq/content/articles.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,7 @@
     </style>
     <![endif]-->
 
+    
     <title>
     Apache ActiveMQ &#8482; -- Articles
     </title>
@@ -50,8 +51,8 @@
       <div>
 
 <!-- Banner -->
-
-	<div id="asf_logo">
+<p>
+	</p><div id="asf_logo">
 	<div id="activemq_logo">
             <a shape="rect" style="float:left; width:280px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:10px; margin-left:100px;" href="http://activemq.apache.org" title="The most popular and powerful open source Message Broker">ActiveMQ</a> &#8482;
             <a shape="rect" style="float:right; width:210px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:15px; margin-right:10px;" href="http://www.apache.org" title="The Apache Software Foundation">ASF</a>
@@ -149,8 +150,8 @@
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
 
-
-<div>
+<p>
+</p><div>
 <form enctype="application/x-www-form-urlencoded" method="get" action="http://www.google.com/search" style="font-size: 10px;">
 <input type="hidden" name="ie" value="UTF-8">
 <input type="hidden" name="oe" value="UTF-8">

Modified: websites/production/activemq/content/async-sends.html
==============================================================================
--- websites/production/activemq/content/async-sends.html (original)
+++ websites/production/activemq/content/async-sends.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,16 @@
     </style>
     <![endif]-->
 
+          <link href='http://activemq.apache.org/styles/highlighter/styles/shCore.css' rel='stylesheet' type='text/css' /> 
+      <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
+      <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+         
+      <script type="text/javascript"> 
+        SyntaxHighlighter.defaults['toolbar'] = false; 
+        SyntaxHighlighter.all(); 
+      </script> 
+    
     <title>
     Apache ActiveMQ &#8482; -- Async Sends
     </title>
@@ -50,8 +60,8 @@
       <div>
 
 <!-- Banner -->
-
-	<div id="asf_logo">
+<p>
+	</p><div id="asf_logo">
 	<div id="activemq_logo">
             <a shape="rect" style="float:left; width:280px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:10px; margin-left:100px;" href="http://activemq.apache.org" title="The most popular and powerful open source Message Broker">ActiveMQ</a> &#8482;
             <a shape="rect" style="float:right; width:210px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:15px; margin-right:10px;" href="http://www.apache.org" title="The Apache Software Foundation">ASF</a>
@@ -88,8 +98,9 @@
 <p>You can use the <a shape="rect" href="connection-configuration-uri.html" title="Connection Configuration URI">Connection Configuration URI</a> to configure async sends as follows</p>
 
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-java">cf = <span class="code-keyword">new</span> ActiveMQConnectionFactory(<span class="code-quote">"tcp:<span class="code-comment">//locahost:61616?jms.useAsyncSend=<span class="code-keyword">true</span>"</span>);</span>
-</pre>
+<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
+cf = new ActiveMQConnectionFactory("tcp://locahost:61616?jms.useAsyncSend=true");
+]]></script>
 </div></div>
 
 <h3><a shape="rect" name="AsyncSends-ConfiguringAsyncSendattheConnectionFactoryLevel"></a>Configuring Async Send at the ConnectionFactory Level</h3>
@@ -97,8 +108,9 @@
 <p>You can enable this feature on the <a shape="rect" class="external-link" href="http://incubator.apache.org/activemq/maven/activemq-core/apidocs/org/apache/activemq/ActiveMQConnectionFactory.html">ActiveMQConnectionFactory </a> object using the property.</p>
 
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-java">((ActiveMQConnectionFactory)connectionFactory).setUseAsyncSend(<span class="code-keyword">true</span>);
-</pre>
+<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
+((ActiveMQConnectionFactory)connectionFactory).setUseAsyncSend(true);
+]]></script>
 </div></div>
 
 <h3><a shape="rect" name="AsyncSends-ConfiguringAsyncDispatchattheConnectionLevel"></a>Configuring Async Dispatch at the Connection Level</h3>
@@ -108,8 +120,9 @@
 <p>You can enable this feature on the <a shape="rect" class="external-link" href="http://incubator.apache.org/activemq/maven/activemq-core/apidocs/org/apache/activemq/ActiveMQConnection.html">ActiveMQConnection</a> object using the property.</p>
 
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-java">((ActiveMQConnection)connection).setUseAsyncSend(<span class="code-keyword">true</span>);
-</pre>
+<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
+((ActiveMQConnection)connection).setUseAsyncSend(true);
+]]></script>
 </div></div>
 
 <h3><a shape="rect" name="AsyncSends-Alsosee"></a>Also see</h3>
@@ -129,8 +142,8 @@
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
 
-
-<div>
+<p>
+</p><div>
 <form enctype="application/x-www-form-urlencoded" method="get" action="http://www.google.com/search" style="font-size: 10px;">
 <input type="hidden" name="ie" value="UTF-8">
 <input type="hidden" name="oe" value="UTF-8">