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 [11/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/hello-world.html
==============================================================================
--- websites/production/activemq/content/hello-world.html (original)
+++ websites/production/activemq/content/hello-world.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; -- Hello World
     </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>
@@ -80,148 +90,148 @@
 
 <p>The point of this example is to show you the basic code required to use JMS in a straightforward way.  The Consumers and Producers could very easy be on completely different machines or in different processes.</p>
 <div class="code panel" style="border-width: 1px;"><div class="codeHeader panelHeader" style="border-bottom-width: 1px;"><b>App.java</b></div><div class="codeContent panelContent">
-<pre class="code-java">
-<span class="code-keyword">import</span> org.apache.activemq.ActiveMQConnectionFactory;
+<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
+import org.apache.activemq.ActiveMQConnectionFactory;
 
-<span class="code-keyword">import</span> javax.jms.Connection;
-<span class="code-keyword">import</span> javax.jms.DeliveryMode;
-<span class="code-keyword">import</span> javax.jms.Destination;
-<span class="code-keyword">import</span> javax.jms.ExceptionListener;
-<span class="code-keyword">import</span> javax.jms.JMSException;
-<span class="code-keyword">import</span> javax.jms.Message;
-<span class="code-keyword">import</span> javax.jms.MessageConsumer;
-<span class="code-keyword">import</span> javax.jms.MessageProducer;
-<span class="code-keyword">import</span> javax.jms.Session;
-<span class="code-keyword">import</span> javax.jms.TextMessage;
+import javax.jms.Connection;
+import javax.jms.DeliveryMode;
+import javax.jms.Destination;
+import javax.jms.ExceptionListener;
+import javax.jms.JMSException;
+import javax.jms.Message;
+import javax.jms.MessageConsumer;
+import javax.jms.MessageProducer;
+import javax.jms.Session;
+import javax.jms.TextMessage;
 
 /**
  * Hello world!
  */
-<span class="code-keyword">public</span> class App {
+public class App {
 
-    <span class="code-keyword">public</span> <span class="code-keyword">static</span> void main(<span class="code-object">String</span>[] args) <span class="code-keyword">throws</span> Exception {
-        thread(<span class="code-keyword">new</span> HelloWorldProducer(), <span class="code-keyword">false</span>);
-        thread(<span class="code-keyword">new</span> HelloWorldProducer(), <span class="code-keyword">false</span>);
-        thread(<span class="code-keyword">new</span> HelloWorldConsumer(), <span class="code-keyword">false</span>);
-        <span class="code-object">Thread</span>.sleep(1000);
-        thread(<span class="code-keyword">new</span> HelloWorldConsumer(), <span class="code-keyword">false</span>);
-        thread(<span class="code-keyword">new</span> HelloWorldProducer(), <span class="code-keyword">false</span>);
-        thread(<span class="code-keyword">new</span> HelloWorldConsumer(), <span class="code-keyword">false</span>);
-        thread(<span class="code-keyword">new</span> HelloWorldProducer(), <span class="code-keyword">false</span>);
-        <span class="code-object">Thread</span>.sleep(1000);
-        thread(<span class="code-keyword">new</span> HelloWorldConsumer(), <span class="code-keyword">false</span>);
-        thread(<span class="code-keyword">new</span> HelloWorldProducer(), <span class="code-keyword">false</span>);
-        thread(<span class="code-keyword">new</span> HelloWorldConsumer(), <span class="code-keyword">false</span>);
-        thread(<span class="code-keyword">new</span> HelloWorldConsumer(), <span class="code-keyword">false</span>);
-        thread(<span class="code-keyword">new</span> HelloWorldProducer(), <span class="code-keyword">false</span>);
-        thread(<span class="code-keyword">new</span> HelloWorldProducer(), <span class="code-keyword">false</span>);
-        <span class="code-object">Thread</span>.sleep(1000);
-        thread(<span class="code-keyword">new</span> HelloWorldProducer(), <span class="code-keyword">false</span>);
-        thread(<span class="code-keyword">new</span> HelloWorldConsumer(), <span class="code-keyword">false</span>);
-        thread(<span class="code-keyword">new</span> HelloWorldConsumer(), <span class="code-keyword">false</span>);
-        thread(<span class="code-keyword">new</span> HelloWorldProducer(), <span class="code-keyword">false</span>);
-        thread(<span class="code-keyword">new</span> HelloWorldConsumer(), <span class="code-keyword">false</span>);
-        thread(<span class="code-keyword">new</span> HelloWorldProducer(), <span class="code-keyword">false</span>);
-        thread(<span class="code-keyword">new</span> HelloWorldConsumer(), <span class="code-keyword">false</span>);
-        thread(<span class="code-keyword">new</span> HelloWorldProducer(), <span class="code-keyword">false</span>);
-        thread(<span class="code-keyword">new</span> HelloWorldConsumer(), <span class="code-keyword">false</span>);
-        thread(<span class="code-keyword">new</span> HelloWorldConsumer(), <span class="code-keyword">false</span>);
-        thread(<span class="code-keyword">new</span> HelloWorldProducer(), <span class="code-keyword">false</span>);
+    public static void main(String[] args) throws Exception {
+        thread(new HelloWorldProducer(), false);
+        thread(new HelloWorldProducer(), false);
+        thread(new HelloWorldConsumer(), false);
+        Thread.sleep(1000);
+        thread(new HelloWorldConsumer(), false);
+        thread(new HelloWorldProducer(), false);
+        thread(new HelloWorldConsumer(), false);
+        thread(new HelloWorldProducer(), false);
+        Thread.sleep(1000);
+        thread(new HelloWorldConsumer(), false);
+        thread(new HelloWorldProducer(), false);
+        thread(new HelloWorldConsumer(), false);
+        thread(new HelloWorldConsumer(), false);
+        thread(new HelloWorldProducer(), false);
+        thread(new HelloWorldProducer(), false);
+        Thread.sleep(1000);
+        thread(new HelloWorldProducer(), false);
+        thread(new HelloWorldConsumer(), false);
+        thread(new HelloWorldConsumer(), false);
+        thread(new HelloWorldProducer(), false);
+        thread(new HelloWorldConsumer(), false);
+        thread(new HelloWorldProducer(), false);
+        thread(new HelloWorldConsumer(), false);
+        thread(new HelloWorldProducer(), false);
+        thread(new HelloWorldConsumer(), false);
+        thread(new HelloWorldConsumer(), false);
+        thread(new HelloWorldProducer(), false);
     }
 
-    <span class="code-keyword">public</span> <span class="code-keyword">static</span> void thread(<span class="code-object">Runnable</span> runnable, <span class="code-object">boolean</span> daemon) {
-        <span class="code-object">Thread</span> brokerThread = <span class="code-keyword">new</span> <span class="code-object">Thread</span>(runnable);
+    public static void thread(Runnable runnable, boolean daemon) {
+        Thread brokerThread = new Thread(runnable);
         brokerThread.setDaemon(daemon);
         brokerThread.start();
     }
 
-    <span class="code-keyword">public</span> <span class="code-keyword">static</span> class HelloWorldProducer <span class="code-keyword">implements</span> <span class="code-object">Runnable</span> {
-        <span class="code-keyword">public</span> void run() {
-            <span class="code-keyword">try</span> {
-                <span class="code-comment">// Create a ConnectionFactory
-</span>                ActiveMQConnectionFactory connectionFactory = <span class="code-keyword">new</span> ActiveMQConnectionFactory(<span class="code-quote">"vm:<span class="code-comment">//localhost"</span>);
-</span>
-                <span class="code-comment">// Create a Connection
-</span>                Connection connection = connectionFactory.createConnection();
+    public static class HelloWorldProducer implements Runnable {
+        public void run() {
+            try {
+                // Create a ConnectionFactory
+                ActiveMQConnectionFactory connectionFactory = new ActiveMQConnectionFactory("vm://localhost");
+
+                // Create a Connection
+                Connection connection = connectionFactory.createConnection();
                 connection.start();
 
-                <span class="code-comment">// Create a Session
-</span>                Session session = connection.createSession(<span class="code-keyword">false</span>, Session.AUTO_ACKNOWLEDGE);
+                // Create a Session
+                Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
 
-                <span class="code-comment">// Create the destination (Topic or Queue)
-</span>                Destination destination = session.createQueue(<span class="code-quote">"TEST.FOO"</span>);
+                // Create the destination (Topic or Queue)
+                Destination destination = session.createQueue("TEST.FOO");
 
-                <span class="code-comment">// Create a MessageProducer from the Session to the Topic or Queue
-</span>                MessageProducer producer = session.createProducer(destination);
+                // Create a MessageProducer from the Session to the Topic or Queue
+                MessageProducer producer = session.createProducer(destination);
                 producer.setDeliveryMode(DeliveryMode.NON_PERSISTENT);
 
-                <span class="code-comment">// Create a messages
-</span>                <span class="code-object">String</span> text = <span class="code-quote">"Hello world! From: "</span> + <span class="code-object">Thread</span>.currentThread().getName() + <span class="code-quote">" : "</span> + <span class="code-keyword">this</span>.hashCode();
+                // Create a messages
+                String text = "Hello world! From: " + Thread.currentThread().getName() + " : " + this.hashCode();
                 TextMessage message = session.createTextMessage(text);
 
-                <span class="code-comment">// Tell the producer to send the message
-</span>                <span class="code-object">System</span>.out.println(<span class="code-quote">"Sent message: "</span>+ message.hashCode() + <span class="code-quote">" : "</span> + <span class="code-object">Thread</span>.currentThread().getName());
+                // Tell the producer to send the message
+                System.out.println("Sent message: "+ message.hashCode() + " : " + Thread.currentThread().getName());
                 producer.send(message);
 
-                <span class="code-comment">// Clean up
-</span>                session.close();
+                // Clean up
+                session.close();
                 connection.close();
             }
-            <span class="code-keyword">catch</span> (Exception e) {
-                <span class="code-object">System</span>.out.println(<span class="code-quote">"Caught: "</span> + e);
+            catch (Exception e) {
+                System.out.println("Caught: " + e);
                 e.printStackTrace();
             }
         }
     }
 
-    <span class="code-keyword">public</span> <span class="code-keyword">static</span> class HelloWorldConsumer <span class="code-keyword">implements</span> <span class="code-object">Runnable</span>, ExceptionListener {
-        <span class="code-keyword">public</span> void run() {
-            <span class="code-keyword">try</span> {
+    public static class HelloWorldConsumer implements Runnable, ExceptionListener {
+        public void run() {
+            try {
 
-                <span class="code-comment">// Create a ConnectionFactory
-</span>                ActiveMQConnectionFactory connectionFactory = <span class="code-keyword">new</span> ActiveMQConnectionFactory(<span class="code-quote">"vm:<span class="code-comment">//localhost"</span>);
-</span>
-                <span class="code-comment">// Create a Connection
-</span>                Connection connection = connectionFactory.createConnection();
+                // Create a ConnectionFactory
+                ActiveMQConnectionFactory connectionFactory = new ActiveMQConnectionFactory("vm://localhost");
+
+                // Create a Connection
+                Connection connection = connectionFactory.createConnection();
                 connection.start();
 
-                connection.setExceptionListener(<span class="code-keyword">this</span>);
+                connection.setExceptionListener(this);
 
-                <span class="code-comment">// Create a Session
-</span>                Session session = connection.createSession(<span class="code-keyword">false</span>, Session.AUTO_ACKNOWLEDGE);
+                // Create a Session
+                Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
 
-                <span class="code-comment">// Create the destination (Topic or Queue)
-</span>                Destination destination = session.createQueue(<span class="code-quote">"TEST.FOO"</span>);
+                // Create the destination (Topic or Queue)
+                Destination destination = session.createQueue("TEST.FOO");
 
-                <span class="code-comment">// Create a MessageConsumer from the Session to the Topic or Queue
-</span>                MessageConsumer consumer = session.createConsumer(destination);
+                // Create a MessageConsumer from the Session to the Topic or Queue
+                MessageConsumer consumer = session.createConsumer(destination);
 
-                <span class="code-comment">// Wait <span class="code-keyword">for</span> a message
-</span>                Message message = consumer.receive(1000);
+                // Wait for a message
+                Message message = consumer.receive(1000);
 
-                <span class="code-keyword">if</span> (message <span class="code-keyword">instanceof</span> TextMessage) {
+                if (message instanceof TextMessage) {
                     TextMessage textMessage = (TextMessage) message;
-                    <span class="code-object">String</span> text = textMessage.getText();
-                    <span class="code-object">System</span>.out.println(<span class="code-quote">"Received: "</span> + text);
-                } <span class="code-keyword">else</span> {
-                    <span class="code-object">System</span>.out.println(<span class="code-quote">"Received: "</span> + message);
+                    String text = textMessage.getText();
+                    System.out.println("Received: " + text);
+                } else {
+                    System.out.println("Received: " + message);
                 }
 
                 consumer.close();
                 session.close();
                 connection.close();
-            } <span class="code-keyword">catch</span> (Exception e) {
-                <span class="code-object">System</span>.out.println(<span class="code-quote">"Caught: "</span> + e);
+            } catch (Exception e) {
+                System.out.println("Caught: " + e);
                 e.printStackTrace();
             }
         }
 
-        <span class="code-keyword">public</span> <span class="code-keyword">synchronized</span> void onException(JMSException ex) {
-            <span class="code-object">System</span>.out.println(<span class="code-quote">"JMS Exception occured.  Shutting down client."</span>);
+        public synchronized void onException(JMSException ex) {
+            System.out.println("JMS Exception occured.  Shutting down client.");
         }
     }
 }
-</pre>
+]]></script>
 </div></div>
           </div>
         </td>
@@ -236,8 +246,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/hermes-jms.html
==============================================================================
--- websites/production/activemq/content/hermes-jms.html (original)
+++ websites/production/activemq/content/hermes-jms.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; -- Hermes Jms
     </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>
@@ -109,9 +119,9 @@
 <p>Use the tree control to open your session and the FOO.BAR destination. Try browse the queue. Then run the ActiveMQ sample producer via</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[
 mvn producer
-</pre>
+]]></script>
 </div></div>
 
 <p>And hitting refresh in HermesJMS and you should see the messages that have just been published.</p>
@@ -128,8 +138,8 @@ mvn producer
 
 <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/hermes-screenshot.html
==============================================================================
--- websites/production/activemq/content/hermes-screenshot.html (original)
+++ websites/production/activemq/content/hermes-screenshot.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,7 @@
     </style>
     <![endif]-->
 
+    
     <title>
     Apache ActiveMQ &#8482; -- Hermes Screenshot
     </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>
@@ -91,8 +92,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/horizontal-scaling.html
==============================================================================
--- websites/production/activemq/content/horizontal-scaling.html (original)
+++ websites/production/activemq/content/horizontal-scaling.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,7 @@
     </style>
     <![endif]-->
 
+    
     <title>
     Apache ActiveMQ &#8482; -- Horizontal Scaling
     </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>
@@ -86,8 +87,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/how-can-i-add-a-new-type-of-transport.html
==============================================================================
--- websites/production/activemq/content/how-can-i-add-a-new-type-of-transport.html (original)
+++ websites/production/activemq/content/how-can-i-add-a-new-type-of-transport.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,7 @@
     </style>
     <![endif]-->
 
+    
     <title>
     Apache ActiveMQ &#8482; -- How can I add a new type of transport
     </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>
@@ -94,8 +95,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/how-can-i-avoid-serialization-of-objects-in-objectmessage.html
==============================================================================
--- websites/production/activemq/content/how-can-i-avoid-serialization-of-objects-in-objectmessage.html (original)
+++ websites/production/activemq/content/how-can-i-avoid-serialization-of-objects-in-objectmessage.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,7 @@
     </style>
     <![endif]-->
 
+    
     <title>
     Apache ActiveMQ &#8482; -- How can I avoid serialization of Objects in ObjectMessage
     </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 @@ Use the VM transport and see <a shape="r
 
 <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/how-can-i-contribute.html
==============================================================================
--- websites/production/activemq/content/how-can-i-contribute.html (original)
+++ websites/production/activemq/content/how-can-i-contribute.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; -- How can I contribute
     </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>
@@ -99,26 +110,26 @@ e.g. take a look at some of the existing
 
 <p>Grab the <a shape="rect" href="source.html" title="Source">Source</a> from SVN</p>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-java">
-svn co https:<span class="code-comment">//svn.apache.org/repos/asf/activemq/trunk activemq
-</span>cd activemq
-</pre>
+<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
+svn co https://svn.apache.org/repos/asf/activemq/trunk activemq
+cd activemq
+]]></script>
 </div></div>
 
 <p>Build the project.</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[
 export MAVEN_OPTS=-Xmx512M -XX:MaxPermSize=128M
-mvn -Dtest=<span class="code-keyword">false</span> install
-</pre>
+mvn -Dtest=false install
+]]></script>
 </div></div>
 <p>PS: You might need to build multiple times (if you get a build error) because sometimes maven fails to download all the files.</p>
 
 <p>Create a project in your IDE. e.g. if you are using Eclipse the following should do the trick.</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[
 mvn eclipse:eclipse
-</pre>
+]]></script>
 </div></div>
 <p>Then import the projects into your workspace.</p>
 
@@ -130,15 +141,15 @@ mvn eclipse:eclipse
 
 <p>If you're a command line person try the following to create the patch</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[
 diff -u Main.java.orig Main.java &gt;&gt; patchfile.txt
-</pre>
+]]></script>
 </div></div>
 <p>or</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[
 svn diff Main.java &gt;&gt; patchfile.txt
-</pre>
+]]></script>
 </div></div>
 
 <h2><a shape="rect" name="HowcanIcontribute-Submittingpatches"></a>Submitting patches</h2>
@@ -174,8 +185,8 @@ svn diff Main.java &gt;&gt; patchfile.tx
 
 <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/how-can-i-enable-detailed-logging.html
==============================================================================
--- websites/production/activemq/content/how-can-i-enable-detailed-logging.html (original)
+++ websites/production/activemq/content/how-can-i-enable-detailed-logging.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; -- How can I enable detailed logging
     </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>
@@ -74,7 +84,7 @@
           <div class="wiki-content maincontent">
 <h2><a shape="rect" name="HowcanIenabledetailedlogging-HowcanIenabledetailedlogging"></a>How can I enable detailed logging</h2>
 
-<p>We use <span class="error">[slf4j]</span> which allows the underlying logging implementation to be statically bound at startup.<br clear="none">
+<p>We use <a shape="rect" class="createlink" href="https://cwiki.apache.org/confluence/pages/createpage.action?spaceKey=ACTIVEMQ&amp;title=www.slf4j.org&amp;linkCreation=true&amp;fromPageId=35977">slf4j</a> which allows the underlying logging implementation to be statically bound at startup.<br clear="none">
 By default we ship with log4j but feel free to make your own choice.</p>
 
 <p>If you've got log4j.jar on your classpath you can use a log4j.properties file to configure the logging levels. See the <a shape="rect" class="external-link" href="http://svn.apache.org/repos/asf/activemq/trunk/activemq-core/src/test/resources/log4j.properties">log4j.properties example</a> for the kind of thing you'll need.</p>
@@ -84,18 +94,18 @@ By default we ship with log4j but feel f
 <p>in 4.x</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[
 log4j.logger.org.apache.activemq=INFO
 log4j.logger.org.apache.activemq.spring=WARN
-</pre>
+]]></script>
 </div></div>
 
 <p>in 3.x</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[
 log4j.logger.org.activemq=TRACE
-</pre>
+]]></script>
 </div></div>
 
 <h3><a shape="rect" name="HowcanIenabledetailedlogging-Gettinghelponlog4j"></a>Getting help on log4j</h3>
@@ -114,8 +124,8 @@ log4j.logger.org.activemq=TRACE
 
 <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/how-can-i-get-a-list-of-the-topics-and-queues-in-a-broker.html
==============================================================================
--- websites/production/activemq/content/how-can-i-get-a-list-of-the-topics-and-queues-in-a-broker.html (original)
+++ websites/production/activemq/content/how-can-i-get-a-list-of-the-topics-and-queues-in-a-broker.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,7 @@
     </style>
     <![endif]-->
 
+    
     <title>
     Apache ActiveMQ &#8482; -- How can I get a list of the topics and queues in a broker
     </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>
@@ -94,8 +95,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/how-can-i-get-help.html
==============================================================================
--- websites/production/activemq/content/how-can-i-get-help.html (original)
+++ websites/production/activemq/content/how-can-i-get-help.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,7 @@
     </style>
     <![endif]-->
 
+    
     <title>
     Apache ActiveMQ &#8482; -- How can I get help
     </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>
@@ -84,7 +85,7 @@
 <p>Before you report a problem you might want to read the <a shape="rect" href="faq.html" title="FAQ">FAQ</a>.<br clear="none">
 Whenever you are reporting a problem please be sure to include as much information as possible; the more we know the more chance of a quicker resolution.</p>
 
-<ul><li>Which <a shape="rect" class="external-link" href="http://activemq.apache.org/download.html">version</a> of ActiveMQ</li><li>What platform of Java (e.g., Java SE 6 with JRE/<span class="error">[JDK]</span> 1.6.0 or J2SE 5 with JRE/<span class="error">[JDK]</span> 1.5.0)</li><li>Any particular application/web server or container being used - if so what version?</li><li>Stack traces generally really help! If in doubt include the whole thing; often exceptions get wrapped in other exceptions and the exception right near the bottom explains the actual error, not the first few lines at the top. It's very easy for us to skim-read past unnecessary parts of a stack trace.</li><li>Log output (e.g., <tt>data/activemq.log</tt>) can be useful too; sometimes <a shape="rect" href="how-do-i-change-the-logging.html" title="How do I change the logging">enabling DEBUG logging</a> can help</li><li>Your code &amp; configuration files are often useful</li></ul>
+<ul><li>Which <a shape="rect" class="external-link" href="http://activemq.apache.org/download.html">version</a> of ActiveMQ</li><li>What platform of Java (e.g., Java SE 6 with JRE/<a shape="rect" class="createlink" href="https://cwiki.apache.org/confluence/pages/createpage.action?spaceKey=ACTIVEMQ&amp;title=JDK&amp;linkCreation=true&amp;fromPageId=35919">JDK</a> 1.6.0 or J2SE 5 with JRE/<a shape="rect" class="createlink" href="https://cwiki.apache.org/confluence/pages/createpage.action?spaceKey=ACTIVEMQ&amp;title=JDK&amp;linkCreation=true&amp;fromPageId=35919">JDK</a> 1.5.0)</li><li>Any particular application/web server or container being used - if so what version?</li><li>Stack traces generally really help! If in doubt include the whole thing; often exceptions get wrapped in other exceptions and the exception right near the bottom explains the actual error, not the first few lines at the top. It's very easy for us to skim-read past unnecessary parts of a stack trace.</li><li>Log ou
 tput (e.g., <tt>data/activemq.log</tt>) can be useful too; sometimes <a shape="rect" href="how-do-i-change-the-logging.html" title="How do I change the logging">enabling DEBUG logging</a> can help</li><li>Your code &amp; configuration files are often useful</li></ul>
 
 
 <h3><a shape="rect" name="HowcanIgethelp-Howtogethelpfaster"></a>How to get help faster</h3>
@@ -113,8 +114,8 @@ Whenever you are reporting a problem ple
 
 <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/how-can-i-get-the-source-code-from-subversion.html
==============================================================================
--- websites/production/activemq/content/how-can-i-get-the-source-code-from-subversion.html (original)
+++ websites/production/activemq/content/how-can-i-get-the-source-code-from-subversion.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; -- How can I get the source code from subversion
     </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>
@@ -72,7 +83,7 @@
         <tr>
         <td valign="top" width="100%">
           <div class="wiki-content maincontent">
-<p></p>
+
 <h2><a shape="rect" name="HowcanIgetthesourcecodefromsubversion-WebBrowsingofSVN"></a>Web Browsing of SVN</h2>
 
 <p>To browse  via the web use the ViewVC interface:</p>
@@ -102,9 +113,9 @@
 <p>Make sure you have SVN (subversion) installed; if not download it from the <a shape="rect" class="external-link" href="http://subversion.tigris.org/" rel="nofollow">subversion site</a></p>
 
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-java">
-svn co https:<span class="code-comment">//svn.apache.org/repos/asf/activemq/trunk activemq</span>
-</pre>
+<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
+svn co https://svn.apache.org/repos/asf/activemq/trunk activemq
+]]></script>
 </div></div>
 
 <p>Only project developers can commit to the SVN tree via this method.  SSH must be installed on your client machine. Enter your site password when prompted.</p>
@@ -131,21 +142,18 @@ svn co https:<span class="code-comment">
 
 <p>Developers typically work on trunk most of the time. When bug fixes are applied you typically want to backport them to the previous branch. To be able to backport to the previous production branch follow these instructions.</p>
 
-<ul><li>checkout trunk as above</li><li>checkout the previous branch such as via 
-<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-java">svn co https:<span class="code-comment">//svn.apache.org/repos/asf/activemq/branches/activemq-4.0/</span></pre>
-</div></div></li><li>when you have commit something to trunk take note of the version number of the change (lets call it Y)</li><li>in the branch checkout type the following command 
-<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-java">svn merge -r X:Y https:<span class="code-comment">//svn.apache.org/repos/asf/activemq/trunk/</span></pre>
-</div></div>
-<p> where X = Y-1</p></li></ul>
+<ul><li>checkout trunk as above</li><li>checkout the previous branch such as via <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
+<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[svn co https://svn.apache.org/repos/asf/activemq/branches/activemq-4.0/]]></script>
+</div></div></li><li>when you have commit something to trunk take note of the version number of the change (lets call it Y)</li><li>in the branch checkout type the following command <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
+<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[svn merge -r X:Y https://svn.apache.org/repos/asf/activemq/trunk/]]></script>
+</div></div> where X = Y-1</li></ul>
 
 
 <p>e.g.</p>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-java">
-svn merge -r 411787:411788 https:<span class="code-comment">//svn.apache.org/repos/asf/activemq/trunk/    </span>
-</pre>
+<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
+svn merge -r 411787:411788 https://svn.apache.org/repos/asf/activemq/trunk/    
+]]></script>
 </div></div>
 
 <p>To make this a little easier to do we've created a script called <b>activemq-backport.sh</b> which is available in the <a shape="rect" class="external-link" href="https://svn.apache.org/repos/asf/activemq/scripts/">Apache ActiveMQ Scripts repository</a>.</p>
@@ -153,9 +161,9 @@ svn merge -r 411787:411788 https:<span c
 <p>To run this script just pass the revision of the commit you made on trunk from the directory of a branch checkout. e.g. from the activemq-4.0 checkout type</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[
 activemq-backport.sh 413621   
-</pre>
+]]></script>
 </div></div>
 
 <p>Then you can review the changes made and if they are OK you can commit them.</p>
@@ -165,17 +173,17 @@ activemq-backport.sh 413621   
 <p>For anonymous access</p>
 
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-java">
-svn co http:<span class="code-comment">//svn.codehaus.org/activemq/branches/activemq-3/activemq/</span>
-</pre>
+<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
+svn co http://svn.codehaus.org/activemq/branches/activemq-3/activemq/
+]]></script>
 </div></div>
 
 <p>Or if you are a committer</p>
 
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-java">
-svn co https:<span class="code-comment">//svn.codehaus.org/activemq/branches/activemq-3/activemq/</span>
-</pre>
+<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
+svn co https://svn.codehaus.org/activemq/branches/activemq-3/activemq/
+]]></script>
 </div></div>
 
 <p>Or you can browse the code here: </p>
@@ -194,8 +202,8 @@ svn co https:<span class="code-comment">
 
 <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/how-can-i-make-activemq-faster.html
==============================================================================
--- websites/production/activemq/content/how-can-i-make-activemq-faster.html (original)
+++ websites/production/activemq/content/how-can-i-make-activemq-faster.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,7 @@
     </style>
     <![endif]-->
 
+    
     <title>
     Apache ActiveMQ &#8482; -- How can I make ActiveMQ faster
     </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>
@@ -86,8 +87,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/how-can-i-monitor-activemq.html
==============================================================================
--- websites/production/activemq/content/how-can-i-monitor-activemq.html (original)
+++ websites/production/activemq/content/how-can-i-monitor-activemq.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,7 @@
     </style>
     <![endif]-->
 
+    
     <title>
     Apache ActiveMQ &#8482; -- How can I monitor ActiveMQ
     </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 @@
 
 <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/how-can-i-monitor-the-connection-with-the-broker.html
==============================================================================
--- websites/production/activemq/content/how-can-i-monitor-the-connection-with-the-broker.html (original)
+++ websites/production/activemq/content/how-can-i-monitor-the-connection-with-the-broker.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,7 @@
     </style>
     <![endif]-->
 
+    
     <title>
     Apache ActiveMQ &#8482; -- How can I monitor the connection with the broker
     </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/how-can-i-see-what-destinations-are-used.html
==============================================================================
--- websites/production/activemq/content/how-can-i-see-what-destinations-are-used.html (original)
+++ websites/production/activemq/content/how-can-i-see-what-destinations-are-used.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,7 @@
     </style>
     <![endif]-->
 
+    
     <title>
     Apache ActiveMQ &#8482; -- How can I see what destinations are used
     </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>
@@ -90,8 +91,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/how-can-i-support-auto-reconnection.html
==============================================================================
--- websites/production/activemq/content/how-can-i-support-auto-reconnection.html (original)
+++ websites/production/activemq/content/how-can-i-support-auto-reconnection.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; -- How can I support auto reconnection
     </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>
@@ -83,9 +93,9 @@
 <p>Just use the following connection URI (setting the brokerURL in the ActiveMQConnectionFactory)</p>
 
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-java">
-failover:tcp:<span class="code-comment">//host:port </span>
-</pre>
+<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
+failover:tcp://host:port 
+]]></script>
 </div></div>
 
 
@@ -103,8 +113,8 @@ failover:tcp:<span class="code-comment">
 
 <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/how-can-i-support-priority-queues.html
==============================================================================
--- websites/production/activemq/content/how-can-i-support-priority-queues.html (original)
+++ websites/production/activemq/content/how-can-i-support-priority-queues.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; -- How can I support priority queues
     </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>
@@ -80,13 +90,13 @@
 
 <p>In version 5.4 priority queues are supported. Both the message cursors and the message stores (KahaDB and JDBC) support message priority. The support is disabled by default so it needs to be be enabled using <a shape="rect" href="per-destination-policies.html" title="Per Destination Policies">Per Destination Policies</a> through xml configuration, in the example below, 'prioritizedMessages' is enabled for all queues. </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;destinationPolicy&gt;
    &lt;policyMap&gt;
      &lt;policyEntries&gt;
-       &lt;policyEntry queue=<span class="code-quote">"&gt;"</span> prioritizedMessages=<span class="code-quote">"<span class="code-keyword">true</span>"</span>/&gt;
+       &lt;policyEntry queue="&gt;" prioritizedMessages="true"/&gt;
     ...
-</pre>
+]]></script>
 </div></div>
 
 <p>The full range of priority values (0-9) are supported by the <a shape="rect" href="jdbc-support.html" title="JDBC Support">JDBC</a> message store. For <a shape="rect" href="kahadb.html" title="KahaDB">KahaDB</a> three priority categories are supported, Low (&lt; 4), Default (= 4) and High (&gt; 4).</p>
@@ -95,13 +105,13 @@
 
 
 <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;destinationPolicy&gt;
    &lt;policyMap&gt;
      &lt;policyEntries&gt;
-       &lt;policyEntry queue=<span class="code-quote">"&gt;"</span> prioritizedMessages=<span class="code-quote">"<span class="code-keyword">true</span>"</span> useCache=<span class="code-quote">"<span class="code-keyword">false</span>"</span> expireMessagesPeriod=<span class="code-quote">"0"</span> queuePrefetch=<span class="code-quote">"1"</span> /&gt;
+       &lt;policyEntry queue="&gt;" prioritizedMessages="true" useCache="false" expireMessagesPeriod="0" queuePrefetch="1" /&gt;
     ...
-</pre>
+]]></script>
 </div></div>
 
 <h3><a shape="rect" name="HowcanIsupportpriorityqueues-Alternativestrategies"></a>Alternative strategies</h3>
@@ -110,17 +120,17 @@
 <p>You can have say 100 consumers using a selector to find the high priority stuff</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[
 JMSPriority &gt; 6
-</pre>
+]]></script>
 </div></div>
 
 <p>then have 50 consumers doing average or above</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[
 JMSPriority &gt;= 4
-</pre>
+]]></script>
 </div></div>
 
 <p>Then say 10 consumers consuming all messages (so all priorities). Then this way you'll have a pool of threads always processing high priority messages - giving you very efficient priority based dispatching of messages without ActiveMQ having to batch up messages and reorder them before dispatching them.</p>
@@ -143,8 +153,8 @@ JMSPriority &gt;= 4
 
 <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/how-can-i-use-different-network-protocols.html
==============================================================================
--- websites/production/activemq/content/how-can-i-use-different-network-protocols.html (original)
+++ websites/production/activemq/content/how-can-i-use-different-network-protocols.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,7 @@
     </style>
     <![endif]-->
 
+    
     <title>
     Apache ActiveMQ &#8482; -- How can I use different network protocols
     </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>
@@ -89,8 +90,8 @@ For easy configuration, ActiveMQ support
 
 <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/how-do-distributed-queues-work.html
==============================================================================
--- websites/production/activemq/content/how-do-distributed-queues-work.html (original)
+++ websites/production/activemq/content/how-do-distributed-queues-work.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,7 @@
     </style>
     <![endif]-->
 
+    
     <title>
     Apache ActiveMQ &#8482; -- How do distributed queues work
     </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>
@@ -127,8 +128,8 @@ on C, then messages will flow there too.
 
 <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/how-do-durable-queues-and-topics-work.html
==============================================================================
--- websites/production/activemq/content/how-do-durable-queues-and-topics-work.html (original)
+++ websites/production/activemq/content/how-do-durable-queues-and-topics-work.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,7 @@
     </style>
     <![endif]-->
 
+    
     <title>
     Apache ActiveMQ &#8482; -- How do durable queues and topics work
     </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/how-do-i-access-activemq-from-c.html
==============================================================================
--- websites/production/activemq/content/how-do-i-access-activemq-from-c.html (original)
+++ websites/production/activemq/content/how-do-i-access-activemq-from-c.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,7 @@
     </style>
     <![endif]-->
 
+    
     <title>
     Apache ActiveMQ &#8482; -- How do I access ActiveMQ from C
     </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 @@ See the <a shape="rect" href="c-integrat
 
 <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/how-do-i-access-activemq-from-csharp-or-dotnet.html
==============================================================================
--- websites/production/activemq/content/how-do-i-access-activemq-from-csharp-or-dotnet.html (original)
+++ websites/production/activemq/content/how-do-i-access-activemq-from-csharp-or-dotnet.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,7 @@
     </style>
     <![endif]-->
 
+    
     <title>
     Apache ActiveMQ &#8482; -- How do I access ActiveMQ from CSharp or dotNet
     </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,8 +73,8 @@
         <tr>
         <td valign="top" width="100%">
           <div class="wiki-content maincontent">
-<p></p>
-<div class="error"><span class="error">Unable to render {include}</span> Couldn't find a page to include called: nms</div>
+
+<div class="error"><span class="error">Unable to render {include}</span> Couldn't find a page to include called: <a shape="rect" class="createlink" href="https://cwiki.apache.org/confluence/pages/createpage.action?spaceKey=ACTIVEMQ&amp;title=nms&amp;linkCreation=true&amp;fromPageId=36081">nms</a></div>
           </div>
         </td>
         <td valign="top">
@@ -87,8 +88,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/how-do-i-access-activemq-from-ruby-perl-python-php.html
==============================================================================
--- websites/production/activemq/content/how-do-i-access-activemq-from-ruby-perl-python-php.html (original)
+++ websites/production/activemq/content/how-do-i-access-activemq-from-ruby-perl-python-php.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,7 @@
     </style>
     <![endif]-->
 
+    
     <title>
     Apache ActiveMQ &#8482; -- How do I access ActiveMQ from Ruby, Perl, Python, PHP
     </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 @@ Use <a shape="rect" class="external-link
 
 <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/how-do-i-add-my-own-plugins.html
==============================================================================
--- websites/production/activemq/content/how-do-i-add-my-own-plugins.html (original)
+++ websites/production/activemq/content/how-do-i-add-my-own-plugins.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,7 @@
     </style>
     <![endif]-->
 
+    
     <title>
     Apache ActiveMQ &#8482; -- How do I add my own plugins
     </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>
@@ -86,8 +87,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/how-do-i-avoid-maven-downloading-latest-jars.html
==============================================================================
--- websites/production/activemq/content/how-do-i-avoid-maven-downloading-latest-jars.html (original)
+++ websites/production/activemq/content/how-do-i-avoid-maven-downloading-latest-jars.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; -- How do I avoid Maven downloading latest jars
     </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>
@@ -75,14 +85,16 @@
 
 <p>You can use the -o switch (for offline mode) to avoid maven auto-downloading new snapshot jars (e.g. the Geronimo jars at the time of writing).</p>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-java">maven -o
-</pre>
+<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
+maven -o
+]]></script>
 </div></div>
 <p>or to run a server  go to the \assembly module and run</p>
 
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-java">maven -o server
-</pre>
+<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
+maven -o server
+]]></script>
 </div></div>
           </div>
         </td>
@@ -97,8 +109,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/how-do-i-back-up-kahadb.html
==============================================================================
--- websites/production/activemq/content/how-do-i-back-up-kahadb.html (original)
+++ websites/production/activemq/content/how-do-i-back-up-kahadb.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,7 @@
     </style>
     <![endif]-->
 
+    
     <title>
     Apache ActiveMQ &#8482; -- How do I back-up KahaDB
     </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>
@@ -91,8 +92,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/how-do-i-bridge-different-jms-providers.html
==============================================================================
--- websites/production/activemq/content/how-do-i-bridge-different-jms-providers.html (original)
+++ websites/production/activemq/content/how-do-i-bridge-different-jms-providers.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,7 @@
     </style>
     <![endif]-->
 
+    
     <title>
     Apache ActiveMQ &#8482; -- How do I bridge different JMS providers
     </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/how-do-i-build-but-disable-the-unit-tests.html
==============================================================================
--- websites/production/activemq/content/how-do-i-build-but-disable-the-unit-tests.html (original)
+++ websites/production/activemq/content/how-do-i-build-but-disable-the-unit-tests.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; -- How do I build but disable the unit tests
     </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>
@@ -79,9 +89,9 @@
 <p>To disable this you can try the following</p>
 
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-java">
-mvn install -Dmaven.test.skip=<span class="code-keyword">true</span>
-</pre>
+<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
+mvn install -Dmaven.test.skip=true
+]]></script>
 </div></div>
           </div>
         </td>
@@ -96,8 +106,8 @@ mvn install -Dmaven.test.skip=<span clas
 
 <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/how-do-i-change-dispatch-policy.html
==============================================================================
--- websites/production/activemq/content/how-do-i-change-dispatch-policy.html (original)
+++ websites/production/activemq/content/how-do-i-change-dispatch-policy.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; -- How do I change dispatch policy
     </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,9 +98,10 @@
 ie.</p>
 
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-java">&lt;destinationPolicy&gt;
+<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
+&lt;destinationPolicy&gt;
    &lt;policyMap&gt;&lt;policyEntries&gt; 
-      &lt;policyEntry topic=<span class="code-quote">"COMMAND.&gt;"</span>&gt;
+      &lt;policyEntry topic="COMMAND.&gt;"&gt;
          &lt;dispatchPolicy&gt;
            &lt;strictOrderDispatchPolicy /&gt;
          &lt;/dispatchPolicy&gt;
@@ -100,7 +111,7 @@ ie.</p>
       &lt;/policyEntry&gt;
    &lt;/policyEntries&gt;&lt;/policyMap&gt;
 &lt;/destinationPolicy&gt;
-</pre>
+]]></script>
 </div></div>
           </div>
         </td>
@@ -115,8 +126,8 @@ ie.</p>
 
 <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">