You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2013/06/24 19:10:57 UTC

svn commit: r867253 [5/46] - in /websites/production/cxf/content: ./ 2008/04/28/ 2008/06/20/ 2009/02/10/ 2009/08/04/ cache/ docs/ docs/cxf-architecture.thumbs/ docs/cxf-dependency-graphs.thumbs/ docs/logbrowser-configuration.thumbs/ docs/logbrowser-sof...

Modified: websites/production/cxf/content/custom-cxf-transport.html
==============================================================================
--- websites/production/cxf/content/custom-cxf-transport.html (original)
+++ websites/production/cxf/content/custom-cxf-transport.html Mon Jun 24 17:10:51 2013
@@ -25,6 +25,18 @@
 <meta http-equiv="Content-type" content="text/html;charset=UTF-8">
 <meta name="keywords" content="business integration, EAI, SOA, Service Oriented Architecture, web services, SOAP, JBI, JMS, WSDL, XML, EDI, Electronic Data Interchange, standards support, integration standards, application integration, middleware, software, solutions, services, CXF, open source">
 <meta name="description" content="Apache CXF, Services Framework - Custom CXF Transport">
+
+  <link href='http://cxf.apache.org/resources/highlighter/styles/shCore.css' rel='stylesheet' type='text/css' />
+  <link href='http://cxf.apache.org/resources/highlighter/styles/shThemeCXF.css' rel='stylesheet' type='text/css' />
+  <script src='http://cxf.apache.org/resources/highlighter/scripts/shCore.js' type='text/javascript'></script>
+  <script src='http://cxf.apache.org/resources/highlighter/scripts/shBrushJava.js' type='text/javascript'></script>
+  <script src='http://cxf.apache.org/resources/highlighter/scripts/shBrushXml.js' type='text/javascript'></script>
+  
+  <script type="text/javascript">
+  SyntaxHighlighter.defaults['toolbar'] = false;
+  SyntaxHighlighter.all();
+  </script>
+ 
     <title>
 Apache CXF -- Custom CXF Transport
     </title>
@@ -42,19 +54,15 @@ Apache CXF -- Custom CXF Transport
     <td id="cell-1-0">&nbsp;</td>
     <td id="cell-1-1">&nbsp;</td>
     <td id="cell-1-2">
-      <div style="padding: 5px;">
-        <div id="banner">
-          <!-- Banner -->
-<div id="banner-content">
+      <!-- Banner -->
+<div class="banner" id="banner"><p>
 <table border="0" cellpadding="0" cellspacing="0" width="100%"><tr><td align="left" colspan="1" nowrap>
 <a shape="rect" href="http://cxf.apache.org/" title="Apache CXF"><span style="font-weight: bold; font-size: 170%; color: white">Apache CXF</span></a>
 </td><td align="right" colspan="1" nowrap>
 <a shape="rect" href="http://www.apache.org/" title="The Apache Software Foundation"><img border="0" alt="ASF Logo" src="http://cxf.apache.org/images/asf-logo.png"></a>
 </td></tr></table>
-</div>
-          <!-- Banner -->
-        </div>
-      </div>
+</p></div>
+      <!-- Banner -->
       <div id="top-menu">
         <table border="0" cellpadding="1" cellspacing="0" width="100%">
           <tr>
@@ -101,8 +109,8 @@ Apache CXF -- Custom CXF Transport
 
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
-
-<form enctype="application/x-www-form-urlencoded" method="get" id="cse-search-box" action="http://www.google.com/cse">
+<p>
+</p><form enctype="application/x-www-form-urlencoded" method="get" id="cse-search-box" action="http://www.google.com/cse">
   <div>
     <input type="hidden" name="cx" value="002890367768291051730:o99qiwa09y4">
     <input type="hidden" name="ie" value="UTF-8">
@@ -156,57 +164,48 @@ To send a message into a physical channe
 
 <h3><a shape="rect" name="CustomCXFTransport-SimplifiedClientWorkflow%3A"></a>Simplified Client Workflow:</h3>
 <ul><li>Step1: JAX-WS client invokes a service, in this manner for example:
-<div class="code panel" style="border-style: solid;border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-java">
-        URL wsdlURL = <span class="code-keyword">this</span>.getClass().getResource(<span class="code-quote">"/HelloWorld.wsdl"</span>);
-        HelloWorldService service = <span class="code-keyword">new</span> HelloWorldService(wsdlURL, SERVICE_NAME);        
-        HelloWorld hw = service.getHelloWorldPort();       
-        <span class="code-object">String</span> result = hw.sayHi(TEST_REQUEST); }}
-</pre>
-</div></div></li><li>Step2: CXF runtime selects the correct TransportFactory based on some criteria (described below)</li><li>Step3: CXF runtime calls <em>TransportFactory.getConduit()</em> method to obtain the conduit</li><li>Step4: CXF runtime invokes <em>Conduit.prepare()</em> and passes outgoing message as argument</li><li>Step5: Conduit sets own OutputStream (normally extended CachedOutputStream) as outgoing message content</li><li>Step6: CXF runtime processes outgoing message, calls the interceptor chain and invokes Conduit.close(Message) method for the outgoing message.</li><li>Step7: Finally, <em>OutputStream.doClose()</em> for the outgoing message is invoked</li><li>Step8: In the <em>doClose()</em> method, the OutputStream class has access to the marshalled outgoing message and exchange and will send this message to the service using the corresponding transport protocol</li><li>Step9: In case of one-way communication exchange will be closed. Skip to Step 14</li><li>
 Step10: In case of request-response communication, the conduit will wait for the service response in synchronous or asynchronous manner</li><li>Step11: When response is received, the conduit creates a new message, sets its context and puts it as In-Message in the exchange as an incoming message</li><li>Step12: When fault is received, Conduit creates a new Message, sets its context and puts it as fault message in exchange as in-fault message</li><li>Step13: Conduit notifies incomingObserver (that is ClientImpl object) about the response using <em>incomingObserver.onMessage()</em> call</li><li>Step14: <em>Conduit.close(Message)</em> method is invoked for incoming message. Normally the conduit implementation decreases the reference count with the service, potentially closing the network connection if the count is zero.</li><li>Step15: JAX-WS client code receives the response in sync or async style</li></ul>
+<div class="error"><span class="error">code: Invalid value specified for parameter lang</span> 
+<p>        URL wsdlURL = this.getClass().getResource("/HelloWorld.wsdl");<br clear="none">
+        HelloWorldService service = new HelloWorldService(wsdlURL, SERVICE_NAME);        <br clear="none">
+        HelloWorld hw = service.getHelloWorldPort();       <br clear="none">
+        String result = hw.sayHi(TEST_REQUEST); }}</p></div></li><li>Step2: CXF runtime selects the correct TransportFactory based on some criteria (described below)</li><li>Step3: CXF runtime calls <em>TransportFactory.getConduit()</em> method to obtain the conduit</li><li>Step4: CXF runtime invokes <em>Conduit.prepare()</em> and passes outgoing message as argument</li><li>Step5: Conduit sets own OutputStream (normally extended CachedOutputStream) as outgoing message content</li><li>Step6: CXF runtime processes outgoing message, calls the interceptor chain and invokes Conduit.close(Message) method for the outgoing message.</li><li>Step7: Finally, <em>OutputStream.doClose()</em> for the outgoing message is invoked</li><li>Step8: In the <em>doClose()</em> method, the OutputStream class has access to the marshalled outgoing message and exchange and will send this message to the service using the corresponding transport protocol</li><li>Step9: In case of one-way communication e
 xchange will be closed. Skip to Step 14</li><li>Step10: In case of request-response communication, the conduit will wait for the service response in synchronous or asynchronous manner</li><li>Step11: When response is received, the conduit creates a new message, sets its context and puts it as In-Message in the exchange as an incoming message</li><li>Step12: When fault is received, Conduit creates a new Message, sets its context and puts it as fault message in exchange as in-fault message</li><li>Step13: Conduit notifies incomingObserver (that is ClientImpl object) about the response using <em>incomingObserver.onMessage()</em> call</li><li>Step14: <em>Conduit.close(Message)</em> method is invoked for incoming message. Normally the conduit implementation decreases the reference count with the service, potentially closing the network connection if the count is zero.</li><li>Step15: JAX-WS client code receives the response in sync or async style</li></ul>
 
 
 <h3><a shape="rect" name="CustomCXFTransport-SimplifiedServiceWorkflow%3A"></a>Simplified Service Workflow:</h3>
 <ul><li>Step1: JAX-WS service is registered for example in this way:
-<div class="code panel" style="border-style: solid;border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-java">
-	HelloWorldImpl serverImpl = <span class="code-keyword">new</span> HelloWorldImpl();
-	Endpoint.publish(<span class="code-quote">"udp:<span class="code-comment">//localhost:9000/hello"</span>, serverImpl);</span>
-</pre>
-</div></div></li><li>Step2: CXF runtime selects correct TransportFactory based on some criteria (described below)</li><li>Step3: CXF runtime calls <em>TransportFactory.getDestination()</em> method to obtain the destination</li><li>Step4: As soon as CXF runtime activates endpoint (adds listener, etc) <em>Destination.activate()</em> method is automatically invoked</li><li>Step5: Implementation of <em>Destination.activate()</em> normally opens network transport connections and listens to incoming requests</li><li>Step6: When a request comes, the destination creates a message, sets the content and notifies message observer (that is ChainInitializationObserver object) via <em>incomingObserver.onMessage()</em> about request. Normally an incoming connection is saved in a correlation map to be extracted for the appropriate response.</li><li>Step7: The business service implementation will be called with the request message. In case of one-way communication the exchange is now finishe
 d. In case of request-response, the business implementation either returns a response or throws a fault exception.</li><li>Step8: The CXF Runtime requests a back-channel conduit from the destination via <em>Destination.getInbuiltBackChannel()</em></li><li>Step9: The Back-channel conduit's <em>prepare()</em> method will be called with a response message as argument</li><li>Step10: Back-channel conduit sets its own OutputStream as a message context</li><li>Step11: CXF runtime processes the response message, calls the interceptor chain and invokes <em>Conduit.close(Message)</em> for the response message.</li><li>Step12. Finally <em>OutputStream.doClose()</em> method for the response message is invoked</li><li>Step13: In <em>doClose()</em> method the OutputStream class has access to the marshalled response message and will send this message through the network as a response to the client. Appropriate incoming connection normally is extracted from correlation map.</li></ul>
+<div class="error"><span class="error">code: Invalid value specified for parameter lang</span> 
+<p>	HelloWorldImpl serverImpl = new HelloWorldImpl();<br clear="none">
+	Endpoint.publish("udp://localhost:9000/hello", serverImpl);</p></div></li><li>Step2: CXF runtime selects correct TransportFactory based on some criteria (described below)</li><li>Step3: CXF runtime calls <em>TransportFactory.getDestination()</em> method to obtain the destination</li><li>Step4: As soon as CXF runtime activates endpoint (adds listener, etc) <em>Destination.activate()</em> method is automatically invoked</li><li>Step5: Implementation of <em>Destination.activate()</em> normally opens network transport connections and listens to incoming requests</li><li>Step6: When a request comes, the destination creates a message, sets the content and notifies message observer (that is ChainInitializationObserver object) via <em>incomingObserver.onMessage()</em> about request. Normally an incoming connection is saved in a correlation map to be extracted for the appropriate response.</li><li>Step7: The business service implementation will be called with the request message. In
  case of one-way communication the exchange is now finished. In case of request-response, the business implementation either returns a response or throws a fault exception.</li><li>Step8: The CXF Runtime requests a back-channel conduit from the destination via <em>Destination.getInbuiltBackChannel()</em></li><li>Step9: The Back-channel conduit's <em>prepare()</em> method will be called with a response message as argument</li><li>Step10: Back-channel conduit sets its own OutputStream as a message context</li><li>Step11: CXF runtime processes the response message, calls the interceptor chain and invokes <em>Conduit.close(Message)</em> for the response message.</li><li>Step12. Finally <em>OutputStream.doClose()</em> method for the response message is invoked</li><li>Step13: In <em>doClose()</em> method the OutputStream class has access to the marshalled response message and will send this message through the network as a response to the client. Appropriate incoming connection n
 ormally is extracted from correlation map.</li></ul>
 
 
 <h2><a shape="rect" name="CustomCXFTransport-RegistrationofTransportFactory"></a>Registration of Transport Factory</h2>
 <p>There are two ways to register transport factory: programmatically or via Spring configuration.<br clear="none">
 To register transport factory programmatically it is necessary to execute the following code:</p>
-<div class="code panel" style="border-style: solid;border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-java">
-     Bus bus = BusFactory.getThreadDefaultBus();
-     DestinationFactoryManagerImpl dfm = bus.getExtension(DestinationFactoryManagerImpl.class);
-     CustomTransportFactory customTransport = <span class="code-keyword">new</span> CustomTransportFactory();
-     dfm.registerDestinationFactory(<span class="code-quote">"http:<span class="code-comment">//cxf.apache.org/transports/TRANSPORT_PREFIX"</span>, customTransport);
-</span>     dfm.registerDestinationFactory(<span class="code-quote">"http:<span class="code-comment">//cxf.apache.org/transports/TRANSPORT_PREFIX/configuration"</span>, customTransport);
-</span>
-     ConduitInitiatorManager extension = bus.getExtension(ConduitInitiatorManager.class);
-     extension.registerConduitInitiator(<span class="code-quote">"http:<span class="code-comment">//cxf.apache.org/transports/TRANSPORT_PREFIX"</span>, customTransport);
-</span>     extension.registerConduitInitiator(<span class="code-quote">"http:<span class="code-comment">//cxf.apache.org/transports/TRANSPORT_PREFIX/configuration"</span>, customTransport);</span>
-</pre>
-</div></div>
+<div class="error"><span class="error">code: Invalid value specified for parameter lang</span> 
+<p>     Bus bus = BusFactory.getThreadDefaultBus();<br clear="none">
+     DestinationFactoryManagerImpl dfm = bus.getExtension(DestinationFactoryManagerImpl.class);<br clear="none">
+     CustomTransportFactory customTransport = new CustomTransportFactory();<br clear="none">
+     dfm.registerDestinationFactory("http://cxf.apache.org/transports/TRANSPORT_PREFIX", customTransport);<br clear="none">
+     dfm.registerDestinationFactory("http://cxf.apache.org/transports/TRANSPORT_PREFIX/configuration", customTransport);</p>
+
+<p>     ConduitInitiatorManager extension = bus.getExtension(ConduitInitiatorManager.class);<br clear="none">
+     extension.registerConduitInitiator("http://cxf.apache.org/transports/TRANSPORT_PREFIX", customTransport);<br clear="none">
+     extension.registerConduitInitiator("http://cxf.apache.org/transports/TRANSPORT_PREFIX/configuration", customTransport);</p></div>
 <p>Where TRANSPORT_PREFIX is the protocol of the new transport (http, https, jms, udp).</p>
 
 <p>For Spring configuration, the following could be used instead:</p>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-xml">
-	&lt;bean class=<span class="code-quote">"org.company.cxf.transport.CustomTransportFactory"</span>
-		lazy-init=<span class="code-quote">"false"</span>&gt;
-		<span class="code-tag">&lt;property name=<span class="code-quote">"transportIds"</span>&gt;</span>
-			<span class="code-tag">&lt;list&gt;</span>
-			<span class="code-tag">&lt;value&gt;</span>http http://cxf.apache.org/transports/TRANSPORT_PREFIX<span class="code-tag">&lt;/value&gt;</span>
-                	<span class="code-tag">&lt;value&gt;</span>http://cxf.apache.org/transports/TRANSPORT_PREFIX/configuration<span class="code-tag">&lt;/value&gt;</span>
-			<span class="code-tag">&lt;/list&gt;</span>
-		<span class="code-tag">&lt;/property&gt;</span>
-	<span class="code-tag">&lt;/bean&gt;</span>
-</pre>
+<script class="theme: Default; brush: xml; gutter: false" type="syntaxhighlighter"><![CDATA[
+	&lt;bean class="org.company.cxf.transport.CustomTransportFactory"
+		lazy-init="false"&gt;
+		&lt;property name="transportIds"&gt;
+			&lt;list&gt;
+			&lt;value&gt;http http://cxf.apache.org/transports/TRANSPORT_PREFIX&lt;/value&gt;
+                	&lt;value&gt;http://cxf.apache.org/transports/TRANSPORT_PREFIX/configuration&lt;/value&gt;
+			&lt;/list&gt;
+		&lt;/property&gt;
+	&lt;/bean&gt;
+]]></script>
 </div></div>
 <p>To define a new transport endpoint in the WSDL document follow these two steps:<br clear="none">
 a) Set the soap:binding transport attribute to the transport URL value (<a shape="rect" href="http://cxf.apache.org/transports/TRANSPORT_PREFIX">http://cxf.apache.org/transports/TRANSPORT_PREFIX</a>)<br clear="none">
@@ -214,18 +213,18 @@ b) The Port address element should be bo
 
 <p>Sample:</p>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-xml">
+<script class="theme: Default; brush: xml; gutter: false" type="syntaxhighlighter"><![CDATA[
 &lt;wsdl:definitions 
-    <span class="code-keyword">xmlns:transport</span>=<span class="code-quote">"http://cxf.apache.org/transports/TRANSPORT_PREFIX"</span> &#8230;&gt; &#8230;
-&#8230;
-<span class="code-tag">&lt;wsdl:binding name=<span class="code-quote">"GreeterPortBinding"</span> type=<span class="code-quote">"tns: GreeterPortType"</span>&gt;</span>
-        <span class="code-tag">&lt;soap:binding style=<span class="code-quote">"document"</span> transport=<span class="code-quote">"http://cxf.apache.org/transports/TRANSPORT_PREFIX"</span>/&gt;</span>
-&#8230;
-<span class="code-tag">&lt;wsdl:service name=<span class="code-quote">"GreeterService"</span>&gt;</span>
-       <span class="code-tag">&lt;wsdl:port binding=<span class="code-quote">"tns:GreeterPortBinding"</span> name=<span class="code-quote">"GreeterPort"</span>&gt;</span>
-           <span class="code-tag">&lt;transport:address location=<span class="code-quote">"LOCATION_URL"</span>&gt;</span>
-&#8230;
-</pre>
+    xmlns:transport="http://cxf.apache.org/transports/TRANSPORT_PREFIX" É&gt; É
+É
+&lt;wsdl:binding name="GreeterPortBinding" type="tns: GreeterPortType"&gt;
+        &lt;soap:binding style="document" transport="http://cxf.apache.org/transports/TRANSPORT_PREFIX"/&gt;
+É
+&lt;wsdl:service name="GreeterService"&gt;
+       &lt;wsdl:port binding="tns:GreeterPortBinding" name="GreeterPort"&gt;
+           &lt;transport:address location="LOCATION_URL"&gt;
+É
+]]></script>
 </div></div>
 
 <h2><a shape="rect" name="CustomCXFTransport-ConduitandDestinationLifecycle"></a>Conduit and Destination Lifecycle</h2>

Modified: websites/production/cxf/content/cve-2012-0803.html
==============================================================================
--- websites/production/cxf/content/cve-2012-0803.html (original)
+++ websites/production/cxf/content/cve-2012-0803.html Mon Jun 24 17:10:51 2013
@@ -25,6 +25,8 @@
 <meta http-equiv="Content-type" content="text/html;charset=UTF-8">
 <meta name="keywords" content="business integration, EAI, SOA, Service Oriented Architecture, web services, SOAP, JBI, JMS, WSDL, XML, EDI, Electronic Data Interchange, standards support, integration standards, application integration, middleware, software, solutions, services, CXF, open source">
 <meta name="description" content="Apache CXF, Services Framework - CVE-2012-0803">
+
+
     <title>
 Apache CXF -- CVE-2012-0803
     </title>
@@ -42,19 +44,15 @@ Apache CXF -- CVE-2012-0803
     <td id="cell-1-0">&nbsp;</td>
     <td id="cell-1-1">&nbsp;</td>
     <td id="cell-1-2">
-      <div style="padding: 5px;">
-        <div id="banner">
-          <!-- Banner -->
-<div id="banner-content">
+      <!-- Banner -->
+<div class="banner" id="banner"><p>
 <table border="0" cellpadding="0" cellspacing="0" width="100%"><tr><td align="left" colspan="1" nowrap>
 <a shape="rect" href="http://cxf.apache.org/" title="Apache CXF"><span style="font-weight: bold; font-size: 170%; color: white">Apache CXF</span></a>
 </td><td align="right" colspan="1" nowrap>
 <a shape="rect" href="http://www.apache.org/" title="The Apache Software Foundation"><img border="0" alt="ASF Logo" src="http://cxf.apache.org/images/asf-logo.png"></a>
 </td></tr></table>
-</div>
-          <!-- Banner -->
-        </div>
-      </div>
+</p></div>
+      <!-- Banner -->
       <div id="top-menu">
         <table border="0" cellpadding="1" cellspacing="0" width="100%">
           <tr>
@@ -101,8 +99,8 @@ Apache CXF -- CVE-2012-0803
 
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
-
-<form enctype="application/x-www-form-urlencoded" method="get" id="cse-search-box" action="http://www.google.com/cse">
+<p>
+</p><form enctype="application/x-www-form-urlencoded" method="get" id="cse-search-box" action="http://www.google.com/cse">
   <div>
     <input type="hidden" name="cx" value="002890367768291051730:o99qiwa09y4">
     <input type="hidden" name="ie" value="UTF-8">

Modified: websites/production/cxf/content/cve-2012-2378.html
==============================================================================
--- websites/production/cxf/content/cve-2012-2378.html (original)
+++ websites/production/cxf/content/cve-2012-2378.html Mon Jun 24 17:10:51 2013
@@ -25,6 +25,8 @@
 <meta http-equiv="Content-type" content="text/html;charset=UTF-8">
 <meta name="keywords" content="business integration, EAI, SOA, Service Oriented Architecture, web services, SOAP, JBI, JMS, WSDL, XML, EDI, Electronic Data Interchange, standards support, integration standards, application integration, middleware, software, solutions, services, CXF, open source">
 <meta name="description" content="Apache CXF, Services Framework - CVE-2012-2378">
+
+
     <title>
 Apache CXF -- CVE-2012-2378
     </title>
@@ -42,19 +44,15 @@ Apache CXF -- CVE-2012-2378
     <td id="cell-1-0">&nbsp;</td>
     <td id="cell-1-1">&nbsp;</td>
     <td id="cell-1-2">
-      <div style="padding: 5px;">
-        <div id="banner">
-          <!-- Banner -->
-<div id="banner-content">
+      <!-- Banner -->
+<div class="banner" id="banner"><p>
 <table border="0" cellpadding="0" cellspacing="0" width="100%"><tr><td align="left" colspan="1" nowrap>
 <a shape="rect" href="http://cxf.apache.org/" title="Apache CXF"><span style="font-weight: bold; font-size: 170%; color: white">Apache CXF</span></a>
 </td><td align="right" colspan="1" nowrap>
 <a shape="rect" href="http://www.apache.org/" title="The Apache Software Foundation"><img border="0" alt="ASF Logo" src="http://cxf.apache.org/images/asf-logo.png"></a>
 </td></tr></table>
-</div>
-          <!-- Banner -->
-        </div>
-      </div>
+</p></div>
+      <!-- Banner -->
       <div id="top-menu">
         <table border="0" cellpadding="1" cellspacing="0" width="100%">
           <tr>
@@ -101,8 +99,8 @@ Apache CXF -- CVE-2012-2378
 
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
-
-<form enctype="application/x-www-form-urlencoded" method="get" id="cse-search-box" action="http://www.google.com/cse">
+<p>
+</p><form enctype="application/x-www-form-urlencoded" method="get" id="cse-search-box" action="http://www.google.com/cse">
   <div>
     <input type="hidden" name="cx" value="002890367768291051730:o99qiwa09y4">
     <input type="hidden" name="ie" value="UTF-8">

Modified: websites/production/cxf/content/cve-2012-2379.html
==============================================================================
--- websites/production/cxf/content/cve-2012-2379.html (original)
+++ websites/production/cxf/content/cve-2012-2379.html Mon Jun 24 17:10:51 2013
@@ -25,6 +25,8 @@
 <meta http-equiv="Content-type" content="text/html;charset=UTF-8">
 <meta name="keywords" content="business integration, EAI, SOA, Service Oriented Architecture, web services, SOAP, JBI, JMS, WSDL, XML, EDI, Electronic Data Interchange, standards support, integration standards, application integration, middleware, software, solutions, services, CXF, open source">
 <meta name="description" content="Apache CXF, Services Framework - CVE-2012-2379">
+
+
     <title>
 Apache CXF -- CVE-2012-2379
     </title>
@@ -42,19 +44,15 @@ Apache CXF -- CVE-2012-2379
     <td id="cell-1-0">&nbsp;</td>
     <td id="cell-1-1">&nbsp;</td>
     <td id="cell-1-2">
-      <div style="padding: 5px;">
-        <div id="banner">
-          <!-- Banner -->
-<div id="banner-content">
+      <!-- Banner -->
+<div class="banner" id="banner"><p>
 <table border="0" cellpadding="0" cellspacing="0" width="100%"><tr><td align="left" colspan="1" nowrap>
 <a shape="rect" href="http://cxf.apache.org/" title="Apache CXF"><span style="font-weight: bold; font-size: 170%; color: white">Apache CXF</span></a>
 </td><td align="right" colspan="1" nowrap>
 <a shape="rect" href="http://www.apache.org/" title="The Apache Software Foundation"><img border="0" alt="ASF Logo" src="http://cxf.apache.org/images/asf-logo.png"></a>
 </td></tr></table>
-</div>
-          <!-- Banner -->
-        </div>
-      </div>
+</p></div>
+      <!-- Banner -->
       <div id="top-menu">
         <table border="0" cellpadding="1" cellspacing="0" width="100%">
           <tr>
@@ -101,8 +99,8 @@ Apache CXF -- CVE-2012-2379
 
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
-
-<form enctype="application/x-www-form-urlencoded" method="get" id="cse-search-box" action="http://www.google.com/cse">
+<p>
+</p><form enctype="application/x-www-form-urlencoded" method="get" id="cse-search-box" action="http://www.google.com/cse">
   <div>
     <input type="hidden" name="cx" value="002890367768291051730:o99qiwa09y4">
     <input type="hidden" name="ie" value="UTF-8">

Modified: websites/production/cxf/content/cve-2012-3451.html
==============================================================================
--- websites/production/cxf/content/cve-2012-3451.html (original)
+++ websites/production/cxf/content/cve-2012-3451.html Mon Jun 24 17:10:51 2013
@@ -25,6 +25,8 @@
 <meta http-equiv="Content-type" content="text/html;charset=UTF-8">
 <meta name="keywords" content="business integration, EAI, SOA, Service Oriented Architecture, web services, SOAP, JBI, JMS, WSDL, XML, EDI, Electronic Data Interchange, standards support, integration standards, application integration, middleware, software, solutions, services, CXF, open source">
 <meta name="description" content="Apache CXF, Services Framework - CVE-2012-3451">
+
+
     <title>
 Apache CXF -- CVE-2012-3451
     </title>
@@ -42,19 +44,15 @@ Apache CXF -- CVE-2012-3451
     <td id="cell-1-0">&nbsp;</td>
     <td id="cell-1-1">&nbsp;</td>
     <td id="cell-1-2">
-      <div style="padding: 5px;">
-        <div id="banner">
-          <!-- Banner -->
-<div id="banner-content">
+      <!-- Banner -->
+<div class="banner" id="banner"><p>
 <table border="0" cellpadding="0" cellspacing="0" width="100%"><tr><td align="left" colspan="1" nowrap>
 <a shape="rect" href="http://cxf.apache.org/" title="Apache CXF"><span style="font-weight: bold; font-size: 170%; color: white">Apache CXF</span></a>
 </td><td align="right" colspan="1" nowrap>
 <a shape="rect" href="http://www.apache.org/" title="The Apache Software Foundation"><img border="0" alt="ASF Logo" src="http://cxf.apache.org/images/asf-logo.png"></a>
 </td></tr></table>
-</div>
-          <!-- Banner -->
-        </div>
-      </div>
+</p></div>
+      <!-- Banner -->
       <div id="top-menu">
         <table border="0" cellpadding="1" cellspacing="0" width="100%">
           <tr>
@@ -101,8 +99,8 @@ Apache CXF -- CVE-2012-3451
 
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
-
-<form enctype="application/x-www-form-urlencoded" method="get" id="cse-search-box" action="http://www.google.com/cse">
+<p>
+</p><form enctype="application/x-www-form-urlencoded" method="get" id="cse-search-box" action="http://www.google.com/cse">
   <div>
     <input type="hidden" name="cx" value="002890367768291051730:o99qiwa09y4">
     <input type="hidden" name="ie" value="UTF-8">

Modified: websites/production/cxf/content/cve-2012-5575.html
==============================================================================
--- websites/production/cxf/content/cve-2012-5575.html (original)
+++ websites/production/cxf/content/cve-2012-5575.html Mon Jun 24 17:10:51 2013
@@ -25,6 +25,8 @@
 <meta http-equiv="Content-type" content="text/html;charset=UTF-8">
 <meta name="keywords" content="business integration, EAI, SOA, Service Oriented Architecture, web services, SOAP, JBI, JMS, WSDL, XML, EDI, Electronic Data Interchange, standards support, integration standards, application integration, middleware, software, solutions, services, CXF, open source">
 <meta name="description" content="Apache CXF, Services Framework - CVE-2012-5575">
+
+
     <title>
 Apache CXF -- CVE-2012-5575
     </title>
@@ -42,19 +44,15 @@ Apache CXF -- CVE-2012-5575
     <td id="cell-1-0">&nbsp;</td>
     <td id="cell-1-1">&nbsp;</td>
     <td id="cell-1-2">
-      <div style="padding: 5px;">
-        <div id="banner">
-          <!-- Banner -->
-<div id="banner-content">
+      <!-- Banner -->
+<div class="banner" id="banner"><p>
 <table border="0" cellpadding="0" cellspacing="0" width="100%"><tr><td align="left" colspan="1" nowrap>
 <a shape="rect" href="http://cxf.apache.org/" title="Apache CXF"><span style="font-weight: bold; font-size: 170%; color: white">Apache CXF</span></a>
 </td><td align="right" colspan="1" nowrap>
 <a shape="rect" href="http://www.apache.org/" title="The Apache Software Foundation"><img border="0" alt="ASF Logo" src="http://cxf.apache.org/images/asf-logo.png"></a>
 </td></tr></table>
-</div>
-          <!-- Banner -->
-        </div>
-      </div>
+</p></div>
+      <!-- Banner -->
       <div id="top-menu">
         <table border="0" cellpadding="1" cellspacing="0" width="100%">
           <tr>
@@ -101,8 +99,8 @@ Apache CXF -- CVE-2012-5575
 
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
-
-<form enctype="application/x-www-form-urlencoded" method="get" id="cse-search-box" action="http://www.google.com/cse">
+<p>
+</p><form enctype="application/x-www-form-urlencoded" method="get" id="cse-search-box" action="http://www.google.com/cse">
   <div>
     <input type="hidden" name="cx" value="002890367768291051730:o99qiwa09y4">
     <input type="hidden" name="ie" value="UTF-8">

Modified: websites/production/cxf/content/cve-2012-5633.html
==============================================================================
--- websites/production/cxf/content/cve-2012-5633.html (original)
+++ websites/production/cxf/content/cve-2012-5633.html Mon Jun 24 17:10:51 2013
@@ -25,6 +25,8 @@
 <meta http-equiv="Content-type" content="text/html;charset=UTF-8">
 <meta name="keywords" content="business integration, EAI, SOA, Service Oriented Architecture, web services, SOAP, JBI, JMS, WSDL, XML, EDI, Electronic Data Interchange, standards support, integration standards, application integration, middleware, software, solutions, services, CXF, open source">
 <meta name="description" content="Apache CXF, Services Framework - CVE-2012-5633">
+
+
     <title>
 Apache CXF -- CVE-2012-5633
     </title>
@@ -42,19 +44,15 @@ Apache CXF -- CVE-2012-5633
     <td id="cell-1-0">&nbsp;</td>
     <td id="cell-1-1">&nbsp;</td>
     <td id="cell-1-2">
-      <div style="padding: 5px;">
-        <div id="banner">
-          <!-- Banner -->
-<div id="banner-content">
+      <!-- Banner -->
+<div class="banner" id="banner"><p>
 <table border="0" cellpadding="0" cellspacing="0" width="100%"><tr><td align="left" colspan="1" nowrap>
 <a shape="rect" href="http://cxf.apache.org/" title="Apache CXF"><span style="font-weight: bold; font-size: 170%; color: white">Apache CXF</span></a>
 </td><td align="right" colspan="1" nowrap>
 <a shape="rect" href="http://www.apache.org/" title="The Apache Software Foundation"><img border="0" alt="ASF Logo" src="http://cxf.apache.org/images/asf-logo.png"></a>
 </td></tr></table>
-</div>
-          <!-- Banner -->
-        </div>
-      </div>
+</p></div>
+      <!-- Banner -->
       <div id="top-menu">
         <table border="0" cellpadding="1" cellspacing="0" width="100%">
           <tr>
@@ -101,8 +99,8 @@ Apache CXF -- CVE-2012-5633
 
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
-
-<form enctype="application/x-www-form-urlencoded" method="get" id="cse-search-box" action="http://www.google.com/cse">
+<p>
+</p><form enctype="application/x-www-form-urlencoded" method="get" id="cse-search-box" action="http://www.google.com/cse">
   <div>
     <input type="hidden" name="cx" value="002890367768291051730:o99qiwa09y4">
     <input type="hidden" name="ie" value="UTF-8">

Modified: websites/production/cxf/content/cve-2013-0239.html
==============================================================================
--- websites/production/cxf/content/cve-2013-0239.html (original)
+++ websites/production/cxf/content/cve-2013-0239.html Mon Jun 24 17:10:51 2013
@@ -25,6 +25,8 @@
 <meta http-equiv="Content-type" content="text/html;charset=UTF-8">
 <meta name="keywords" content="business integration, EAI, SOA, Service Oriented Architecture, web services, SOAP, JBI, JMS, WSDL, XML, EDI, Electronic Data Interchange, standards support, integration standards, application integration, middleware, software, solutions, services, CXF, open source">
 <meta name="description" content="Apache CXF, Services Framework - CVE-2013-0239">
+
+
     <title>
 Apache CXF -- CVE-2013-0239
     </title>
@@ -42,19 +44,15 @@ Apache CXF -- CVE-2013-0239
     <td id="cell-1-0">&nbsp;</td>
     <td id="cell-1-1">&nbsp;</td>
     <td id="cell-1-2">
-      <div style="padding: 5px;">
-        <div id="banner">
-          <!-- Banner -->
-<div id="banner-content">
+      <!-- Banner -->
+<div class="banner" id="banner"><p>
 <table border="0" cellpadding="0" cellspacing="0" width="100%"><tr><td align="left" colspan="1" nowrap>
 <a shape="rect" href="http://cxf.apache.org/" title="Apache CXF"><span style="font-weight: bold; font-size: 170%; color: white">Apache CXF</span></a>
 </td><td align="right" colspan="1" nowrap>
 <a shape="rect" href="http://www.apache.org/" title="The Apache Software Foundation"><img border="0" alt="ASF Logo" src="http://cxf.apache.org/images/asf-logo.png"></a>
 </td></tr></table>
-</div>
-          <!-- Banner -->
-        </div>
-      </div>
+</p></div>
+      <!-- Banner -->
       <div id="top-menu">
         <table border="0" cellpadding="1" cellspacing="0" width="100%">
           <tr>
@@ -101,8 +99,8 @@ Apache CXF -- CVE-2013-0239
 
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
-
-<form enctype="application/x-www-form-urlencoded" method="get" id="cse-search-box" action="http://www.google.com/cse">
+<p>
+</p><form enctype="application/x-www-form-urlencoded" method="get" id="cse-search-box" action="http://www.google.com/cse">
   <div>
     <input type="hidden" name="cx" value="002890367768291051730:o99qiwa09y4">
     <input type="hidden" name="ie" value="UTF-8">

Modified: websites/production/cxf/content/cxf-2410-release-notes.html
==============================================================================
--- websites/production/cxf/content/cxf-2410-release-notes.html (original)
+++ websites/production/cxf/content/cxf-2410-release-notes.html Mon Jun 24 17:10:51 2013
@@ -25,6 +25,8 @@
 <meta http-equiv="Content-type" content="text/html;charset=UTF-8">
 <meta name="keywords" content="business integration, EAI, SOA, Service Oriented Architecture, web services, SOAP, JBI, JMS, WSDL, XML, EDI, Electronic Data Interchange, standards support, integration standards, application integration, middleware, software, solutions, services, CXF, open source">
 <meta name="description" content="Apache CXF, Services Framework - CXF 2.4.10 Release Notes">
+
+
     <title>
 Apache CXF -- CXF 2.4.10 Release Notes
     </title>
@@ -42,19 +44,15 @@ Apache CXF -- CXF 2.4.10 Release Notes
     <td id="cell-1-0">&nbsp;</td>
     <td id="cell-1-1">&nbsp;</td>
     <td id="cell-1-2">
-      <div style="padding: 5px;">
-        <div id="banner">
-          <!-- Banner -->
-<div id="banner-content">
+      <!-- Banner -->
+<div class="banner" id="banner"><p>
 <table border="0" cellpadding="0" cellspacing="0" width="100%"><tr><td align="left" colspan="1" nowrap>
 <a shape="rect" href="http://cxf.apache.org/" title="Apache CXF"><span style="font-weight: bold; font-size: 170%; color: white">Apache CXF</span></a>
 </td><td align="right" colspan="1" nowrap>
 <a shape="rect" href="http://www.apache.org/" title="The Apache Software Foundation"><img border="0" alt="ASF Logo" src="http://cxf.apache.org/images/asf-logo.png"></a>
 </td></tr></table>
-</div>
-          <!-- Banner -->
-        </div>
-      </div>
+</p></div>
+      <!-- Banner -->
       <div id="top-menu">
         <table border="0" cellpadding="1" cellspacing="0" width="100%">
           <tr>
@@ -101,8 +99,8 @@ Apache CXF -- CXF 2.4.10 Release Notes
 
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
-
-<form enctype="application/x-www-form-urlencoded" method="get" id="cse-search-box" action="http://www.google.com/cse">
+<p>
+</p><form enctype="application/x-www-form-urlencoded" method="get" id="cse-search-box" action="http://www.google.com/cse">
   <div>
     <input type="hidden" name="cx" value="002890367768291051730:o99qiwa09y4">
     <input type="hidden" name="ie" value="UTF-8">
@@ -206,50 +204,7 @@ cxf dev list, dev@cxf.apache.org.  You c
 <h2><a shape="rect" name="CXF2.4.10ReleaseNotes-Changelog"></a>Changelog</h2>
 <p>For a more detailed view of new features and bug fixes, see the <a shape="rect" class="external-link" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310511&amp;styleName=Html&amp;Create=Create&amp;version=12322966">release notes</a>.</p>
 
-    
-    
-
-
-
-<div class="jiraissues_table">
-
-    <fieldset class="hidden">
-        <input type="hidden" name="retrieverUrlHtml" value="https://cwiki.apache.org/confluence/plugins/servlet/issue-retriever?url=http%3A%2F%2Fissues.apache.org%2Fjira%2Fsr%2Fjira.issueviews%3Asearchrequest-xml%2Ftemp%2FSearchRequest.xml%3F%26pid%3D12310511%26fixfor%3D12322966&amp;columns=type&amp;columns=key&amp;columns=summary&amp;columns=assignee&amp;columns=reporter&amp;columns=priority&amp;columns=status&amp;columns=resolution&amp;columns=created&amp;columns=updated&amp;columns=due&amp;useTrustedConnection=false">
-        <input type="hidden" name="sortField" value="key">
-        <input type="hidden" name="sortOrder" value="desc">
-        <input type="hidden" name="clickableUrl" value="http://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&amp;&amp;pid=12310511&amp;sorter/field=issuekey&amp;sorter/order=DESC&amp;tempMax=1000&amp;fixfor=12322966">
-        <input type="hidden" name="title" value="JIRA Issues">
-        <input type="hidden" name="requestedPage" value="1">
-        <input type="hidden" name="resultsPerPage" value="1000">
-        <input type="hidden" name="errormsg" value="Connection Error">
-        <input type="hidden" name="pagestat" value="Displaying {from} to {to} of {total} items">
-        <input type="hidden" name="procmsg" value="Processing, please wait...">
-        <input type="hidden" name="nomsg" value="No items">
-        <input type="hidden" name="useCache" value="true">
-        <input type="hidden" name="showTrustWarnings" value="true">
-                <input type="hidden" name="sortEnabled" value="true">
-        <input type="hidden" name="width" value="100%">
-                                <input type="hidden" class="columns nowrap" name="Type" value="type">
-                                <input type="hidden" class="columns nowrap" name="Key" value="key">
-                                <input type="hidden" class="columns" name="Summary" value="summary">
-                                <input type="hidden" class="columns nowrap" name="Assignee" value="assignee">
-                                <input type="hidden" class="columns nowrap" name="Reporter" value="reporter">
-                                <input type="hidden" class="columns nowrap" name="Priority" value="priority">
-                                <input type="hidden" class="columns nowrap" name="Status" value="status">
-                                <input type="hidden" class="columns nowrap" name="Resolution" value="resolution">
-                                <input type="hidden" class="columns nowrap" name="Created" value="created">
-                                <input type="hidden" class="columns nowrap" name="Updated" value="updated">
-                                <input type="hidden" class="columns nowrap" name="Due" value="due">
-                <input type="hidden" name="jiraissuesError" value="Error">
-    </fieldset>
-
-    <a shape="rect" name="jiraissues"></a>
-
-        <div class="trusted_warnings" style="display:none"><div class="panelMacro"><table class="noteMacro"><colgroup span="1"><col span="1" width="24"><col span="1"></colgroup><tr><td colspan="1" rowspan="1" valign="top"><img align="middle" src="https://cwiki.apache.org/confluence/images/icons/emoticons/warning.gif" width="16" height="16" alt="" border="0"></td><td colspan="1" rowspan="1"></td></tr></table></div></div>
-    
-        <iframe frameborder="0" scrolling="auto" class="jiraissues_errorMsgSandbox hidden"></iframe>
-</div>
-</div>
+<div class="error"><span class="error">Unknown macro: {jiraissues}</span> </div></div>
            </div>
            <!-- Content -->
          </td>

Modified: websites/production/cxf/content/cxf-244-release-notes.html
==============================================================================
--- websites/production/cxf/content/cxf-244-release-notes.html (original)
+++ websites/production/cxf/content/cxf-244-release-notes.html Mon Jun 24 17:10:51 2013
@@ -25,6 +25,8 @@
 <meta http-equiv="Content-type" content="text/html;charset=UTF-8">
 <meta name="keywords" content="business integration, EAI, SOA, Service Oriented Architecture, web services, SOAP, JBI, JMS, WSDL, XML, EDI, Electronic Data Interchange, standards support, integration standards, application integration, middleware, software, solutions, services, CXF, open source">
 <meta name="description" content="Apache CXF, Services Framework - CXF 2.4.4 Release Notes">
+
+
     <title>
 Apache CXF -- CXF 2.4.4 Release Notes
     </title>
@@ -42,19 +44,15 @@ Apache CXF -- CXF 2.4.4 Release Notes
     <td id="cell-1-0">&nbsp;</td>
     <td id="cell-1-1">&nbsp;</td>
     <td id="cell-1-2">
-      <div style="padding: 5px;">
-        <div id="banner">
-          <!-- Banner -->
-<div id="banner-content">
+      <!-- Banner -->
+<div class="banner" id="banner"><p>
 <table border="0" cellpadding="0" cellspacing="0" width="100%"><tr><td align="left" colspan="1" nowrap>
 <a shape="rect" href="http://cxf.apache.org/" title="Apache CXF"><span style="font-weight: bold; font-size: 170%; color: white">Apache CXF</span></a>
 </td><td align="right" colspan="1" nowrap>
 <a shape="rect" href="http://www.apache.org/" title="The Apache Software Foundation"><img border="0" alt="ASF Logo" src="http://cxf.apache.org/images/asf-logo.png"></a>
 </td></tr></table>
-</div>
-          <!-- Banner -->
-        </div>
-      </div>
+</p></div>
+      <!-- Banner -->
       <div id="top-menu">
         <table border="0" cellpadding="1" cellspacing="0" width="100%">
           <tr>
@@ -101,8 +99,8 @@ Apache CXF -- CXF 2.4.4 Release Notes
 
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
-
-<form enctype="application/x-www-form-urlencoded" method="get" id="cse-search-box" action="http://www.google.com/cse">
+<p>
+</p><form enctype="application/x-www-form-urlencoded" method="get" id="cse-search-box" action="http://www.google.com/cse">
   <div>
     <input type="hidden" name="cx" value="002890367768291051730:o99qiwa09y4">
     <input type="hidden" name="ie" value="UTF-8">

Modified: websites/production/cxf/content/cxf-245-release-notes.html
==============================================================================
--- websites/production/cxf/content/cxf-245-release-notes.html (original)
+++ websites/production/cxf/content/cxf-245-release-notes.html Mon Jun 24 17:10:51 2013
@@ -25,6 +25,8 @@
 <meta http-equiv="Content-type" content="text/html;charset=UTF-8">
 <meta name="keywords" content="business integration, EAI, SOA, Service Oriented Architecture, web services, SOAP, JBI, JMS, WSDL, XML, EDI, Electronic Data Interchange, standards support, integration standards, application integration, middleware, software, solutions, services, CXF, open source">
 <meta name="description" content="Apache CXF, Services Framework - CXF 2.4.5 Release Notes">
+
+
     <title>
 Apache CXF -- CXF 2.4.5 Release Notes
     </title>
@@ -42,19 +44,15 @@ Apache CXF -- CXF 2.4.5 Release Notes
     <td id="cell-1-0">&nbsp;</td>
     <td id="cell-1-1">&nbsp;</td>
     <td id="cell-1-2">
-      <div style="padding: 5px;">
-        <div id="banner">
-          <!-- Banner -->
-<div id="banner-content">
+      <!-- Banner -->
+<div class="banner" id="banner"><p>
 <table border="0" cellpadding="0" cellspacing="0" width="100%"><tr><td align="left" colspan="1" nowrap>
 <a shape="rect" href="http://cxf.apache.org/" title="Apache CXF"><span style="font-weight: bold; font-size: 170%; color: white">Apache CXF</span></a>
 </td><td align="right" colspan="1" nowrap>
 <a shape="rect" href="http://www.apache.org/" title="The Apache Software Foundation"><img border="0" alt="ASF Logo" src="http://cxf.apache.org/images/asf-logo.png"></a>
 </td></tr></table>
-</div>
-          <!-- Banner -->
-        </div>
-      </div>
+</p></div>
+      <!-- Banner -->
       <div id="top-menu">
         <table border="0" cellpadding="1" cellspacing="0" width="100%">
           <tr>
@@ -101,8 +99,8 @@ Apache CXF -- CXF 2.4.5 Release Notes
 
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
-
-<form enctype="application/x-www-form-urlencoded" method="get" id="cse-search-box" action="http://www.google.com/cse">
+<p>
+</p><form enctype="application/x-www-form-urlencoded" method="get" id="cse-search-box" action="http://www.google.com/cse">
   <div>
     <input type="hidden" name="cx" value="002890367768291051730:o99qiwa09y4">
     <input type="hidden" name="ie" value="UTF-8">
@@ -205,50 +203,7 @@ cxf dev list, dev@cxf.apache.org.  You c
 <h2><a shape="rect" name="CXF2.4.5ReleaseNotes-Changelog"></a>Changelog</h2>
 <p>For a more detailed view of new features and bug fixes, see the <a shape="rect" class="external-link" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310511&amp;styleName=Html&amp;Create=Create&amp;version=12318894">release notes</a>.</p>
 
-    
-    
-
-
-
-<div class="jiraissues_table">
-
-    <fieldset class="hidden">
-        <input type="hidden" name="retrieverUrlHtml" value="https://cwiki.apache.org/confluence/plugins/servlet/issue-retriever?url=http%3A%2F%2Fissues.apache.org%2Fjira%2Fsr%2Fjira.issueviews%3Asearchrequest-xml%2Ftemp%2FSearchRequest.xml%3F%26pid%3D12310511%26fixfor%3D12318894&amp;columns=type&amp;columns=key&amp;columns=summary&amp;columns=assignee&amp;columns=reporter&amp;columns=priority&amp;columns=status&amp;columns=resolution&amp;columns=created&amp;columns=updated&amp;columns=due&amp;useTrustedConnection=false">
-        <input type="hidden" name="sortField" value="key">
-        <input type="hidden" name="sortOrder" value="desc">
-        <input type="hidden" name="clickableUrl" value="http://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&amp;&amp;pid=12310511&amp;sorter/field=issuekey&amp;sorter/order=DESC&amp;tempMax=1000&amp;fixfor=12318894">
-        <input type="hidden" name="title" value="JIRA Issues">
-        <input type="hidden" name="requestedPage" value="1">
-        <input type="hidden" name="resultsPerPage" value="1000">
-        <input type="hidden" name="errormsg" value="Connection Error">
-        <input type="hidden" name="pagestat" value="Displaying {from} to {to} of {total} items">
-        <input type="hidden" name="procmsg" value="Processing, please wait...">
-        <input type="hidden" name="nomsg" value="No items">
-        <input type="hidden" name="useCache" value="true">
-        <input type="hidden" name="showTrustWarnings" value="true">
-                <input type="hidden" name="sortEnabled" value="true">
-        <input type="hidden" name="width" value="100%">
-                                <input type="hidden" class="columns nowrap" name="Type" value="type">
-                                <input type="hidden" class="columns nowrap" name="Key" value="key">
-                                <input type="hidden" class="columns" name="Summary" value="summary">
-                                <input type="hidden" class="columns nowrap" name="Assignee" value="assignee">
-                                <input type="hidden" class="columns nowrap" name="Reporter" value="reporter">
-                                <input type="hidden" class="columns nowrap" name="Priority" value="priority">
-                                <input type="hidden" class="columns nowrap" name="Status" value="status">
-                                <input type="hidden" class="columns nowrap" name="Resolution" value="resolution">
-                                <input type="hidden" class="columns nowrap" name="Created" value="created">
-                                <input type="hidden" class="columns nowrap" name="Updated" value="updated">
-                                <input type="hidden" class="columns nowrap" name="Due" value="due">
-                <input type="hidden" name="jiraissuesError" value="Error">
-    </fieldset>
-
-    <a shape="rect" name="jiraissues"></a>
-
-        <div class="trusted_warnings" style="display:none"><div class="panelMacro"><table class="noteMacro"><colgroup span="1"><col span="1" width="24"><col span="1"></colgroup><tr><td colspan="1" rowspan="1" valign="top"><img align="middle" src="https://cwiki.apache.org/confluence/images/icons/emoticons/warning.gif" width="16" height="16" alt="" border="0"></td><td colspan="1" rowspan="1"></td></tr></table></div></div>
-    
-        <iframe frameborder="0" scrolling="auto" class="jiraissues_errorMsgSandbox hidden"></iframe>
-</div>
-</div>
+<div class="error"><span class="error">Unknown macro: {jiraissues}</span> </div></div>
            </div>
            <!-- Content -->
          </td>

Modified: websites/production/cxf/content/cxf-246-release-notes.html
==============================================================================
--- websites/production/cxf/content/cxf-246-release-notes.html (original)
+++ websites/production/cxf/content/cxf-246-release-notes.html Mon Jun 24 17:10:51 2013
@@ -25,6 +25,8 @@
 <meta http-equiv="Content-type" content="text/html;charset=UTF-8">
 <meta name="keywords" content="business integration, EAI, SOA, Service Oriented Architecture, web services, SOAP, JBI, JMS, WSDL, XML, EDI, Electronic Data Interchange, standards support, integration standards, application integration, middleware, software, solutions, services, CXF, open source">
 <meta name="description" content="Apache CXF, Services Framework - CXF 2.4.6 Release Notes">
+
+
     <title>
 Apache CXF -- CXF 2.4.6 Release Notes
     </title>
@@ -42,19 +44,15 @@ Apache CXF -- CXF 2.4.6 Release Notes
     <td id="cell-1-0">&nbsp;</td>
     <td id="cell-1-1">&nbsp;</td>
     <td id="cell-1-2">
-      <div style="padding: 5px;">
-        <div id="banner">
-          <!-- Banner -->
-<div id="banner-content">
+      <!-- Banner -->
+<div class="banner" id="banner"><p>
 <table border="0" cellpadding="0" cellspacing="0" width="100%"><tr><td align="left" colspan="1" nowrap>
 <a shape="rect" href="http://cxf.apache.org/" title="Apache CXF"><span style="font-weight: bold; font-size: 170%; color: white">Apache CXF</span></a>
 </td><td align="right" colspan="1" nowrap>
 <a shape="rect" href="http://www.apache.org/" title="The Apache Software Foundation"><img border="0" alt="ASF Logo" src="http://cxf.apache.org/images/asf-logo.png"></a>
 </td></tr></table>
-</div>
-          <!-- Banner -->
-        </div>
-      </div>
+</p></div>
+      <!-- Banner -->
       <div id="top-menu">
         <table border="0" cellpadding="1" cellspacing="0" width="100%">
           <tr>
@@ -101,8 +99,8 @@ Apache CXF -- CXF 2.4.6 Release Notes
 
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
-
-<form enctype="application/x-www-form-urlencoded" method="get" id="cse-search-box" action="http://www.google.com/cse">
+<p>
+</p><form enctype="application/x-www-form-urlencoded" method="get" id="cse-search-box" action="http://www.google.com/cse">
   <div>
     <input type="hidden" name="cx" value="002890367768291051730:o99qiwa09y4">
     <input type="hidden" name="ie" value="UTF-8">
@@ -205,50 +203,7 @@ cxf dev list, dev@cxf.apache.org.  You c
 <h2><a shape="rect" name="CXF2.4.6ReleaseNotes-Changelog"></a>Changelog</h2>
 <p>For a more detailed view of new features and bug fixes, see the <a shape="rect" class="external-link" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310511&amp;styleName=Html&amp;Create=Create&amp;version=12319250">release notes</a>.</p>
 
-    
-    
-
-
-
-<div class="jiraissues_table">
-
-    <fieldset class="hidden">
-        <input type="hidden" name="retrieverUrlHtml" value="https://cwiki.apache.org/confluence/plugins/servlet/issue-retriever?url=http%3A%2F%2Fissues.apache.org%2Fjira%2Fsr%2Fjira.issueviews%3Asearchrequest-xml%2Ftemp%2FSearchRequest.xml%3F%26pid%3D12310511%26fixfor%3D12319250&amp;columns=type&amp;columns=key&amp;columns=summary&amp;columns=assignee&amp;columns=reporter&amp;columns=priority&amp;columns=status&amp;columns=resolution&amp;columns=created&amp;columns=updated&amp;columns=due&amp;useTrustedConnection=false">
-        <input type="hidden" name="sortField" value="key">
-        <input type="hidden" name="sortOrder" value="desc">
-        <input type="hidden" name="clickableUrl" value="http://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&amp;&amp;pid=12310511&amp;sorter/field=issuekey&amp;sorter/order=DESC&amp;tempMax=1000&amp;fixfor=12319250">
-        <input type="hidden" name="title" value="JIRA Issues">
-        <input type="hidden" name="requestedPage" value="1">
-        <input type="hidden" name="resultsPerPage" value="1000">
-        <input type="hidden" name="errormsg" value="Connection Error">
-        <input type="hidden" name="pagestat" value="Displaying {from} to {to} of {total} items">
-        <input type="hidden" name="procmsg" value="Processing, please wait...">
-        <input type="hidden" name="nomsg" value="No items">
-        <input type="hidden" name="useCache" value="true">
-        <input type="hidden" name="showTrustWarnings" value="true">
-                <input type="hidden" name="sortEnabled" value="true">
-        <input type="hidden" name="width" value="100%">
-                                <input type="hidden" class="columns nowrap" name="Type" value="type">
-                                <input type="hidden" class="columns nowrap" name="Key" value="key">
-                                <input type="hidden" class="columns" name="Summary" value="summary">
-                                <input type="hidden" class="columns nowrap" name="Assignee" value="assignee">
-                                <input type="hidden" class="columns nowrap" name="Reporter" value="reporter">
-                                <input type="hidden" class="columns nowrap" name="Priority" value="priority">
-                                <input type="hidden" class="columns nowrap" name="Status" value="status">
-                                <input type="hidden" class="columns nowrap" name="Resolution" value="resolution">
-                                <input type="hidden" class="columns nowrap" name="Created" value="created">
-                                <input type="hidden" class="columns nowrap" name="Updated" value="updated">
-                                <input type="hidden" class="columns nowrap" name="Due" value="due">
-                <input type="hidden" name="jiraissuesError" value="Error">
-    </fieldset>
-
-    <a shape="rect" name="jiraissues"></a>
-
-        <div class="trusted_warnings" style="display:none"><div class="panelMacro"><table class="noteMacro"><colgroup span="1"><col span="1" width="24"><col span="1"></colgroup><tr><td colspan="1" rowspan="1" valign="top"><img align="middle" src="https://cwiki.apache.org/confluence/images/icons/emoticons/warning.gif" width="16" height="16" alt="" border="0"></td><td colspan="1" rowspan="1"></td></tr></table></div></div>
-    
-        <iframe frameborder="0" scrolling="auto" class="jiraissues_errorMsgSandbox hidden"></iframe>
-</div>
-</div>
+<div class="error"><span class="error">Unknown macro: {jiraissues}</span> </div></div>
            </div>
            <!-- Content -->
          </td>

Modified: websites/production/cxf/content/cxf-247-release-notes.html
==============================================================================
--- websites/production/cxf/content/cxf-247-release-notes.html (original)
+++ websites/production/cxf/content/cxf-247-release-notes.html Mon Jun 24 17:10:51 2013
@@ -25,6 +25,8 @@
 <meta http-equiv="Content-type" content="text/html;charset=UTF-8">
 <meta name="keywords" content="business integration, EAI, SOA, Service Oriented Architecture, web services, SOAP, JBI, JMS, WSDL, XML, EDI, Electronic Data Interchange, standards support, integration standards, application integration, middleware, software, solutions, services, CXF, open source">
 <meta name="description" content="Apache CXF, Services Framework - CXF 2.4.7 Release Notes">
+
+
     <title>
 Apache CXF -- CXF 2.4.7 Release Notes
     </title>
@@ -42,19 +44,15 @@ Apache CXF -- CXF 2.4.7 Release Notes
     <td id="cell-1-0">&nbsp;</td>
     <td id="cell-1-1">&nbsp;</td>
     <td id="cell-1-2">
-      <div style="padding: 5px;">
-        <div id="banner">
-          <!-- Banner -->
-<div id="banner-content">
+      <!-- Banner -->
+<div class="banner" id="banner"><p>
 <table border="0" cellpadding="0" cellspacing="0" width="100%"><tr><td align="left" colspan="1" nowrap>
 <a shape="rect" href="http://cxf.apache.org/" title="Apache CXF"><span style="font-weight: bold; font-size: 170%; color: white">Apache CXF</span></a>
 </td><td align="right" colspan="1" nowrap>
 <a shape="rect" href="http://www.apache.org/" title="The Apache Software Foundation"><img border="0" alt="ASF Logo" src="http://cxf.apache.org/images/asf-logo.png"></a>
 </td></tr></table>
-</div>
-          <!-- Banner -->
-        </div>
-      </div>
+</p></div>
+      <!-- Banner -->
       <div id="top-menu">
         <table border="0" cellpadding="1" cellspacing="0" width="100%">
           <tr>
@@ -101,8 +99,8 @@ Apache CXF -- CXF 2.4.7 Release Notes
 
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
-
-<form enctype="application/x-www-form-urlencoded" method="get" id="cse-search-box" action="http://www.google.com/cse">
+<p>
+</p><form enctype="application/x-www-form-urlencoded" method="get" id="cse-search-box" action="http://www.google.com/cse">
   <div>
     <input type="hidden" name="cx" value="002890367768291051730:o99qiwa09y4">
     <input type="hidden" name="ie" value="UTF-8">
@@ -205,50 +203,7 @@ cxf dev list, dev@cxf.apache.org.  You c
 <h2><a shape="rect" name="CXF2.4.7ReleaseNotes-Changelog"></a>Changelog</h2>
 <p>For a more detailed view of new features and bug fixes, see the <a shape="rect" class="external-link" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310511&amp;styleName=Html&amp;Create=Create&amp;version=12319492">release notes</a>.</p>
 
-    
-    
-
-
-
-<div class="jiraissues_table">
-
-    <fieldset class="hidden">
-        <input type="hidden" name="retrieverUrlHtml" value="https://cwiki.apache.org/confluence/plugins/servlet/issue-retriever?url=http%3A%2F%2Fissues.apache.org%2Fjira%2Fsr%2Fjira.issueviews%3Asearchrequest-xml%2Ftemp%2FSearchRequest.xml%3F%26pid%3D12310511%26fixfor%3D12319492&amp;columns=type&amp;columns=key&amp;columns=summary&amp;columns=assignee&amp;columns=reporter&amp;columns=priority&amp;columns=status&amp;columns=resolution&amp;columns=created&amp;columns=updated&amp;columns=due&amp;useTrustedConnection=false">
-        <input type="hidden" name="sortField" value="key">
-        <input type="hidden" name="sortOrder" value="desc">
-        <input type="hidden" name="clickableUrl" value="http://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&amp;&amp;pid=12310511&amp;sorter/field=issuekey&amp;sorter/order=DESC&amp;tempMax=1000&amp;fixfor=12319492">
-        <input type="hidden" name="title" value="JIRA Issues">
-        <input type="hidden" name="requestedPage" value="1">
-        <input type="hidden" name="resultsPerPage" value="1000">
-        <input type="hidden" name="errormsg" value="Connection Error">
-        <input type="hidden" name="pagestat" value="Displaying {from} to {to} of {total} items">
-        <input type="hidden" name="procmsg" value="Processing, please wait...">
-        <input type="hidden" name="nomsg" value="No items">
-        <input type="hidden" name="useCache" value="true">
-        <input type="hidden" name="showTrustWarnings" value="true">
-                <input type="hidden" name="sortEnabled" value="true">
-        <input type="hidden" name="width" value="100%">
-                                <input type="hidden" class="columns nowrap" name="Type" value="type">
-                                <input type="hidden" class="columns nowrap" name="Key" value="key">
-                                <input type="hidden" class="columns" name="Summary" value="summary">
-                                <input type="hidden" class="columns nowrap" name="Assignee" value="assignee">
-                                <input type="hidden" class="columns nowrap" name="Reporter" value="reporter">
-                                <input type="hidden" class="columns nowrap" name="Priority" value="priority">
-                                <input type="hidden" class="columns nowrap" name="Status" value="status">
-                                <input type="hidden" class="columns nowrap" name="Resolution" value="resolution">
-                                <input type="hidden" class="columns nowrap" name="Created" value="created">
-                                <input type="hidden" class="columns nowrap" name="Updated" value="updated">
-                                <input type="hidden" class="columns nowrap" name="Due" value="due">
-                <input type="hidden" name="jiraissuesError" value="Error">
-    </fieldset>
-
-    <a shape="rect" name="jiraissues"></a>
-
-        <div class="trusted_warnings" style="display:none"><div class="panelMacro"><table class="noteMacro"><colgroup span="1"><col span="1" width="24"><col span="1"></colgroup><tr><td colspan="1" rowspan="1" valign="top"><img align="middle" src="https://cwiki.apache.org/confluence/images/icons/emoticons/warning.gif" width="16" height="16" alt="" border="0"></td><td colspan="1" rowspan="1"></td></tr></table></div></div>
-    
-        <iframe frameborder="0" scrolling="auto" class="jiraissues_errorMsgSandbox hidden"></iframe>
-</div>
-</div>
+<div class="error"><span class="error">Unknown macro: {jiraissues}</span> </div></div>
            </div>
            <!-- Content -->
          </td>

Modified: websites/production/cxf/content/cxf-248-release-notes.html
==============================================================================
--- websites/production/cxf/content/cxf-248-release-notes.html (original)
+++ websites/production/cxf/content/cxf-248-release-notes.html Mon Jun 24 17:10:51 2013
@@ -25,6 +25,8 @@
 <meta http-equiv="Content-type" content="text/html;charset=UTF-8">
 <meta name="keywords" content="business integration, EAI, SOA, Service Oriented Architecture, web services, SOAP, JBI, JMS, WSDL, XML, EDI, Electronic Data Interchange, standards support, integration standards, application integration, middleware, software, solutions, services, CXF, open source">
 <meta name="description" content="Apache CXF, Services Framework - CXF 2.4.8 Release Notes">
+
+
     <title>
 Apache CXF -- CXF 2.4.8 Release Notes
     </title>
@@ -42,19 +44,15 @@ Apache CXF -- CXF 2.4.8 Release Notes
     <td id="cell-1-0">&nbsp;</td>
     <td id="cell-1-1">&nbsp;</td>
     <td id="cell-1-2">
-      <div style="padding: 5px;">
-        <div id="banner">
-          <!-- Banner -->
-<div id="banner-content">
+      <!-- Banner -->
+<div class="banner" id="banner"><p>
 <table border="0" cellpadding="0" cellspacing="0" width="100%"><tr><td align="left" colspan="1" nowrap>
 <a shape="rect" href="http://cxf.apache.org/" title="Apache CXF"><span style="font-weight: bold; font-size: 170%; color: white">Apache CXF</span></a>
 </td><td align="right" colspan="1" nowrap>
 <a shape="rect" href="http://www.apache.org/" title="The Apache Software Foundation"><img border="0" alt="ASF Logo" src="http://cxf.apache.org/images/asf-logo.png"></a>
 </td></tr></table>
-</div>
-          <!-- Banner -->
-        </div>
-      </div>
+</p></div>
+      <!-- Banner -->
       <div id="top-menu">
         <table border="0" cellpadding="1" cellspacing="0" width="100%">
           <tr>
@@ -101,8 +99,8 @@ Apache CXF -- CXF 2.4.8 Release Notes
 
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
-
-<form enctype="application/x-www-form-urlencoded" method="get" id="cse-search-box" action="http://www.google.com/cse">
+<p>
+</p><form enctype="application/x-www-form-urlencoded" method="get" id="cse-search-box" action="http://www.google.com/cse">
   <div>
     <input type="hidden" name="cx" value="002890367768291051730:o99qiwa09y4">
     <input type="hidden" name="ie" value="UTF-8">
@@ -205,50 +203,7 @@ cxf dev list, dev@cxf.apache.org.  You c
 <h2><a shape="rect" name="CXF2.4.8ReleaseNotes-Changelog"></a>Changelog</h2>
 <p>For a more detailed view of new features and bug fixes, see the <a shape="rect" class="external-link" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310511&amp;styleName=Html&amp;Create=Create&amp;version=12320748">release notes</a>.</p>
 
-    
-    
-
-
-
-<div class="jiraissues_table">
-
-    <fieldset class="hidden">
-        <input type="hidden" name="retrieverUrlHtml" value="https://cwiki.apache.org/confluence/plugins/servlet/issue-retriever?url=http%3A%2F%2Fissues.apache.org%2Fjira%2Fsr%2Fjira.issueviews%3Asearchrequest-xml%2Ftemp%2FSearchRequest.xml%3F%26pid%3D12310511%26fixfor%3D12320748&amp;columns=type&amp;columns=key&amp;columns=summary&amp;columns=assignee&amp;columns=reporter&amp;columns=priority&amp;columns=status&amp;columns=resolution&amp;columns=created&amp;columns=updated&amp;columns=due&amp;useTrustedConnection=false">
-        <input type="hidden" name="sortField" value="key">
-        <input type="hidden" name="sortOrder" value="desc">
-        <input type="hidden" name="clickableUrl" value="http://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&amp;&amp;pid=12310511&amp;sorter/field=issuekey&amp;sorter/order=DESC&amp;tempMax=1000&amp;fixfor=12320748">
-        <input type="hidden" name="title" value="JIRA Issues">
-        <input type="hidden" name="requestedPage" value="1">
-        <input type="hidden" name="resultsPerPage" value="1000">
-        <input type="hidden" name="errormsg" value="Connection Error">
-        <input type="hidden" name="pagestat" value="Displaying {from} to {to} of {total} items">
-        <input type="hidden" name="procmsg" value="Processing, please wait...">
-        <input type="hidden" name="nomsg" value="No items">
-        <input type="hidden" name="useCache" value="true">
-        <input type="hidden" name="showTrustWarnings" value="true">
-                <input type="hidden" name="sortEnabled" value="true">
-        <input type="hidden" name="width" value="100%">
-                                <input type="hidden" class="columns nowrap" name="Type" value="type">
-                                <input type="hidden" class="columns nowrap" name="Key" value="key">
-                                <input type="hidden" class="columns" name="Summary" value="summary">
-                                <input type="hidden" class="columns nowrap" name="Assignee" value="assignee">
-                                <input type="hidden" class="columns nowrap" name="Reporter" value="reporter">
-                                <input type="hidden" class="columns nowrap" name="Priority" value="priority">
-                                <input type="hidden" class="columns nowrap" name="Status" value="status">
-                                <input type="hidden" class="columns nowrap" name="Resolution" value="resolution">
-                                <input type="hidden" class="columns nowrap" name="Created" value="created">
-                                <input type="hidden" class="columns nowrap" name="Updated" value="updated">
-                                <input type="hidden" class="columns nowrap" name="Due" value="due">
-                <input type="hidden" name="jiraissuesError" value="Error">
-    </fieldset>
-
-    <a shape="rect" name="jiraissues"></a>
-
-        <div class="trusted_warnings" style="display:none"><div class="panelMacro"><table class="noteMacro"><colgroup span="1"><col span="1" width="24"><col span="1"></colgroup><tr><td colspan="1" rowspan="1" valign="top"><img align="middle" src="https://cwiki.apache.org/confluence/images/icons/emoticons/warning.gif" width="16" height="16" alt="" border="0"></td><td colspan="1" rowspan="1"></td></tr></table></div></div>
-    
-        <iframe frameborder="0" scrolling="auto" class="jiraissues_errorMsgSandbox hidden"></iframe>
-</div>
-</div>
+<div class="error"><span class="error">Unknown macro: {jiraissues}</span> </div></div>
            </div>
            <!-- Content -->
          </td>

Modified: websites/production/cxf/content/cxf-249-release-notes.html
==============================================================================
--- websites/production/cxf/content/cxf-249-release-notes.html (original)
+++ websites/production/cxf/content/cxf-249-release-notes.html Mon Jun 24 17:10:51 2013
@@ -25,6 +25,8 @@
 <meta http-equiv="Content-type" content="text/html;charset=UTF-8">
 <meta name="keywords" content="business integration, EAI, SOA, Service Oriented Architecture, web services, SOAP, JBI, JMS, WSDL, XML, EDI, Electronic Data Interchange, standards support, integration standards, application integration, middleware, software, solutions, services, CXF, open source">
 <meta name="description" content="Apache CXF, Services Framework - CXF 2.4.9 Release Notes">
+
+
     <title>
 Apache CXF -- CXF 2.4.9 Release Notes
     </title>
@@ -42,19 +44,15 @@ Apache CXF -- CXF 2.4.9 Release Notes
     <td id="cell-1-0">&nbsp;</td>
     <td id="cell-1-1">&nbsp;</td>
     <td id="cell-1-2">
-      <div style="padding: 5px;">
-        <div id="banner">
-          <!-- Banner -->
-<div id="banner-content">
+      <!-- Banner -->
+<div class="banner" id="banner"><p>
 <table border="0" cellpadding="0" cellspacing="0" width="100%"><tr><td align="left" colspan="1" nowrap>
 <a shape="rect" href="http://cxf.apache.org/" title="Apache CXF"><span style="font-weight: bold; font-size: 170%; color: white">Apache CXF</span></a>
 </td><td align="right" colspan="1" nowrap>
 <a shape="rect" href="http://www.apache.org/" title="The Apache Software Foundation"><img border="0" alt="ASF Logo" src="http://cxf.apache.org/images/asf-logo.png"></a>
 </td></tr></table>
-</div>
-          <!-- Banner -->
-        </div>
-      </div>
+</p></div>
+      <!-- Banner -->
       <div id="top-menu">
         <table border="0" cellpadding="1" cellspacing="0" width="100%">
           <tr>
@@ -101,8 +99,8 @@ Apache CXF -- CXF 2.4.9 Release Notes
 
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
-
-<form enctype="application/x-www-form-urlencoded" method="get" id="cse-search-box" action="http://www.google.com/cse">
+<p>
+</p><form enctype="application/x-www-form-urlencoded" method="get" id="cse-search-box" action="http://www.google.com/cse">
   <div>
     <input type="hidden" name="cx" value="002890367768291051730:o99qiwa09y4">
     <input type="hidden" name="ie" value="UTF-8">
@@ -205,50 +203,7 @@ cxf dev list, dev@cxf.apache.org.  You c
 <h2><a shape="rect" name="CXF2.4.9ReleaseNotes-Changelog"></a>Changelog</h2>
 <p>For a more detailed view of new features and bug fixes, see the <a shape="rect" class="external-link" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310511&amp;styleName=Html&amp;Create=Create&amp;version=12321666">release notes</a>.</p>
 
-    
-    
-
-
-
-<div class="jiraissues_table">
-
-    <fieldset class="hidden">
-        <input type="hidden" name="retrieverUrlHtml" value="https://cwiki.apache.org/confluence/plugins/servlet/issue-retriever?url=http%3A%2F%2Fissues.apache.org%2Fjira%2Fsr%2Fjira.issueviews%3Asearchrequest-xml%2Ftemp%2FSearchRequest.xml%3F%26pid%3D12310511%26fixfor%3D12321666&amp;columns=type&amp;columns=key&amp;columns=summary&amp;columns=assignee&amp;columns=reporter&amp;columns=priority&amp;columns=status&amp;columns=resolution&amp;columns=created&amp;columns=updated&amp;columns=due&amp;useTrustedConnection=false">
-        <input type="hidden" name="sortField" value="key">
-        <input type="hidden" name="sortOrder" value="desc">
-        <input type="hidden" name="clickableUrl" value="http://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&amp;&amp;pid=12310511&amp;sorter/field=issuekey&amp;sorter/order=DESC&amp;tempMax=1000&amp;fixfor=12321666">
-        <input type="hidden" name="title" value="JIRA Issues">
-        <input type="hidden" name="requestedPage" value="1">
-        <input type="hidden" name="resultsPerPage" value="1000">
-        <input type="hidden" name="errormsg" value="Connection Error">
-        <input type="hidden" name="pagestat" value="Displaying {from} to {to} of {total} items">
-        <input type="hidden" name="procmsg" value="Processing, please wait...">
-        <input type="hidden" name="nomsg" value="No items">
-        <input type="hidden" name="useCache" value="true">
-        <input type="hidden" name="showTrustWarnings" value="true">
-                <input type="hidden" name="sortEnabled" value="true">
-        <input type="hidden" name="width" value="100%">
-                                <input type="hidden" class="columns nowrap" name="Type" value="type">
-                                <input type="hidden" class="columns nowrap" name="Key" value="key">
-                                <input type="hidden" class="columns" name="Summary" value="summary">
-                                <input type="hidden" class="columns nowrap" name="Assignee" value="assignee">
-                                <input type="hidden" class="columns nowrap" name="Reporter" value="reporter">
-                                <input type="hidden" class="columns nowrap" name="Priority" value="priority">
-                                <input type="hidden" class="columns nowrap" name="Status" value="status">
-                                <input type="hidden" class="columns nowrap" name="Resolution" value="resolution">
-                                <input type="hidden" class="columns nowrap" name="Created" value="created">
-                                <input type="hidden" class="columns nowrap" name="Updated" value="updated">
-                                <input type="hidden" class="columns nowrap" name="Due" value="due">
-                <input type="hidden" name="jiraissuesError" value="Error">
-    </fieldset>
-
-    <a shape="rect" name="jiraissues"></a>
-
-        <div class="trusted_warnings" style="display:none"><div class="panelMacro"><table class="noteMacro"><colgroup span="1"><col span="1" width="24"><col span="1"></colgroup><tr><td colspan="1" rowspan="1" valign="top"><img align="middle" src="https://cwiki.apache.org/confluence/images/icons/emoticons/warning.gif" width="16" height="16" alt="" border="0"></td><td colspan="1" rowspan="1"></td></tr></table></div></div>
-    
-        <iframe frameborder="0" scrolling="auto" class="jiraissues_errorMsgSandbox hidden"></iframe>
-</div>
-</div>
+<div class="error"><span class="error">Unknown macro: {jiraissues}</span> </div></div>
            </div>
            <!-- Content -->
          </td>

Modified: websites/production/cxf/content/cxf-251-release-notes.html
==============================================================================
--- websites/production/cxf/content/cxf-251-release-notes.html (original)
+++ websites/production/cxf/content/cxf-251-release-notes.html Mon Jun 24 17:10:51 2013
@@ -25,6 +25,8 @@
 <meta http-equiv="Content-type" content="text/html;charset=UTF-8">
 <meta name="keywords" content="business integration, EAI, SOA, Service Oriented Architecture, web services, SOAP, JBI, JMS, WSDL, XML, EDI, Electronic Data Interchange, standards support, integration standards, application integration, middleware, software, solutions, services, CXF, open source">
 <meta name="description" content="Apache CXF, Services Framework - CXF 2.5.1 Release Notes">
+
+
     <title>
 Apache CXF -- CXF 2.5.1 Release Notes
     </title>
@@ -42,19 +44,15 @@ Apache CXF -- CXF 2.5.1 Release Notes
     <td id="cell-1-0">&nbsp;</td>
     <td id="cell-1-1">&nbsp;</td>
     <td id="cell-1-2">
-      <div style="padding: 5px;">
-        <div id="banner">
-          <!-- Banner -->
-<div id="banner-content">
+      <!-- Banner -->
+<div class="banner" id="banner"><p>
 <table border="0" cellpadding="0" cellspacing="0" width="100%"><tr><td align="left" colspan="1" nowrap>
 <a shape="rect" href="http://cxf.apache.org/" title="Apache CXF"><span style="font-weight: bold; font-size: 170%; color: white">Apache CXF</span></a>
 </td><td align="right" colspan="1" nowrap>
 <a shape="rect" href="http://www.apache.org/" title="The Apache Software Foundation"><img border="0" alt="ASF Logo" src="http://cxf.apache.org/images/asf-logo.png"></a>
 </td></tr></table>
-</div>
-          <!-- Banner -->
-        </div>
-      </div>
+</p></div>
+      <!-- Banner -->
       <div id="top-menu">
         <table border="0" cellpadding="1" cellspacing="0" width="100%">
           <tr>
@@ -101,8 +99,8 @@ Apache CXF -- CXF 2.5.1 Release Notes
 
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
-
-<form enctype="application/x-www-form-urlencoded" method="get" id="cse-search-box" action="http://www.google.com/cse">
+<p>
+</p><form enctype="application/x-www-form-urlencoded" method="get" id="cse-search-box" action="http://www.google.com/cse">
   <div>
     <input type="hidden" name="cx" value="002890367768291051730:o99qiwa09y4">
     <input type="hidden" name="ie" value="UTF-8">
@@ -192,50 +190,7 @@ cxf dev list, dev@cxf.apache.org.  You c
 <h2><a shape="rect" name="CXF2.5.1ReleaseNotes-Changelog"></a>Changelog</h2>
 <p>For a more detailed view of new features and bug fixes, see the <a shape="rect" class="external-link" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310511&amp;styleName=Html&amp;Create=Create&amp;version=12318888">release notes</a>.</p>
 
-    
-    
-
-
-
-<div class="jiraissues_table">
-
-    <fieldset class="hidden">
-        <input type="hidden" name="retrieverUrlHtml" value="https://cwiki.apache.org/confluence/plugins/servlet/issue-retriever?url=http%3A%2F%2Fissues.apache.org%2Fjira%2Fsr%2Fjira.issueviews%3Asearchrequest-xml%2Ftemp%2FSearchRequest.xml%3F%26pid%3D12310511%26fixfor%3D12318888&amp;columns=type&amp;columns=key&amp;columns=summary&amp;columns=assignee&amp;columns=reporter&amp;columns=priority&amp;columns=status&amp;columns=resolution&amp;columns=created&amp;columns=updated&amp;columns=due&amp;useTrustedConnection=false">
-        <input type="hidden" name="sortField" value="key">
-        <input type="hidden" name="sortOrder" value="desc">
-        <input type="hidden" name="clickableUrl" value="http://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&amp;&amp;pid=12310511&amp;sorter/field=issuekey&amp;sorter/order=DESC&amp;tempMax=1000&amp;fixfor=12318888">
-        <input type="hidden" name="title" value="JIRA Issues">
-        <input type="hidden" name="requestedPage" value="1">
-        <input type="hidden" name="resultsPerPage" value="1000">
-        <input type="hidden" name="errormsg" value="Connection Error">
-        <input type="hidden" name="pagestat" value="Displaying {from} to {to} of {total} items">
-        <input type="hidden" name="procmsg" value="Processing, please wait...">
-        <input type="hidden" name="nomsg" value="No items">
-        <input type="hidden" name="useCache" value="true">
-        <input type="hidden" name="showTrustWarnings" value="true">
-                <input type="hidden" name="sortEnabled" value="true">
-        <input type="hidden" name="width" value="100%">
-                                <input type="hidden" class="columns nowrap" name="Type" value="type">
-                                <input type="hidden" class="columns nowrap" name="Key" value="key">
-                                <input type="hidden" class="columns" name="Summary" value="summary">
-                                <input type="hidden" class="columns nowrap" name="Assignee" value="assignee">
-                                <input type="hidden" class="columns nowrap" name="Reporter" value="reporter">
-                                <input type="hidden" class="columns nowrap" name="Priority" value="priority">
-                                <input type="hidden" class="columns nowrap" name="Status" value="status">
-                                <input type="hidden" class="columns nowrap" name="Resolution" value="resolution">
-                                <input type="hidden" class="columns nowrap" name="Created" value="created">
-                                <input type="hidden" class="columns nowrap" name="Updated" value="updated">
-                                <input type="hidden" class="columns nowrap" name="Due" value="due">
-                <input type="hidden" name="jiraissuesError" value="Error">
-    </fieldset>
-
-    <a shape="rect" name="jiraissues"></a>
-
-        <div class="trusted_warnings" style="display:none"><div class="panelMacro"><table class="noteMacro"><colgroup span="1"><col span="1" width="24"><col span="1"></colgroup><tr><td colspan="1" rowspan="1" valign="top"><img align="middle" src="https://cwiki.apache.org/confluence/images/icons/emoticons/warning.gif" width="16" height="16" alt="" border="0"></td><td colspan="1" rowspan="1"></td></tr></table></div></div>
-    
-        <iframe frameborder="0" scrolling="auto" class="jiraissues_errorMsgSandbox hidden"></iframe>
-</div>
-</div>
+<div class="error"><span class="error">Unknown macro: {jiraissues}</span> </div></div>
            </div>
            <!-- Content -->
          </td>