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 2017/09/13 15:05:57 UTC

svn commit: r1018111 [3/33] - in /websites/production/cxf/content: ./ cache/ docs/

Modified: websites/production/cxf/content/building.html
==============================================================================
--- websites/production/cxf/content/building.html (original)
+++ websites/production/cxf/content/building.html Wed Sep 13 15:05:52 2017
@@ -125,28 +125,28 @@ Apache CXF -- Building
 <p>Before building CXF, you need to setup an environment variable to give Maven more memory:<br clear="none">
 On Unix</p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<pre class="brush: bash; gutter: false; theme: Confluence" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
 export MAVEN_OPTS="-Xmx512M -XX:MaxPermSize=128M"
 </pre>
 </div></div>
 
 <p>On Windows</p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<pre class="brush: bash; gutter: false; theme: Confluence" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
 set MAVEN_OPTS=-Xmx512M -XX:MaxPermSize=128M
 </pre>
 </div></div>
 
 <p>On 64 bit Windows, or if you're obtaining out-of-memory or PermGen space errors, you may need to expand the memory requirements above further, to 768M and 192M.</p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<pre class="brush: bash; gutter: false; theme: Confluence" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
 set MAVEN_OPTS=-Xmx768M -XX:MaxPermSize=192M
 </pre>
 </div></div>
 
 <p>On 64bit Linux and Solaris platforms, or if you're obtaining out-of-memory or PermGen space errors, you may need to expand the memory requirements above further, to 768M and 192M.  However, if you are using a recent version of Java6 (update 14 or later) with 64bit vm, you can use the UseCompressedOops to save memory.   In that case, use:</p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<pre class="brush: bash; gutter: false; theme: Confluence" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
 export MAVEN_OPTS="-XX:MaxPermSize=128m -Xmx512M -XX:+UseCompressedOops"
 </pre>
 </div></div>
@@ -155,25 +155,25 @@ export MAVEN_OPTS="-XX:MaxPermSize=128m
 
 <p>To build CXF simply execute (from within the 'trunk' directory):</p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<pre class="brush: bash; gutter: false; theme: Confluence" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
 $ mvn install
 </pre>
 </div></div>
 <p>Or, "mvn clean install" for subsequent runs.  To build CXF without running checkstyle do:</p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<pre class="brush: bash; gutter: false; theme: Confluence" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
 $ mvn -Pnochecks
 </pre>
 </div></div>
 <p>To build CXF without running checkstyle or the tests do:</p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<pre class="brush: bash; gutter: false; theme: Confluence" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
 $ mvn -Pfastinstall
 </pre>
 </div></div>
 <p>To build CXF and deploy the sources to your local maven repo do the following. If you build this way you can start your <a shape="rect" href="http://cxf.apache.org/docs/building-your-cxf-project-with-maven.html">own cxf project from a pom file</a> and import it with maven eclipse:eclipse then you will have all sources correctly linked into your eclipse project:</p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<pre class="brush: bash; gutter: false; theme: Confluence" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
 $ mvn -Pfastinstall source:jar install
 </pre>
 </div></div>
@@ -183,13 +183,13 @@ $ mvn -Pfastinstall source:jar install
 <h2 id="Building-Buildingreleasable/testablekits">Building releasable/testable kits</h2>
 <p>The "distribution" stuff is in the distribution module.   At top level, you can run:</p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<pre class="brush: bash; gutter: false; theme: Confluence" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
 $ mvn install -Peverything
 </pre>
 </div></div>
 <p>which will cause EVERYTHING to build in one shot, including the distribution modules that are normally excluded.   As of CXF 2.3.0, it also will build all the samples to make sure they are fully buildable.   To speed it up, you can use the fastinstall profile with it:</p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<pre class="brush: bash; gutter: false; theme: Confluence" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
 $ mvn install -Peverything,fastinstall
 </pre>
 </div></div>

Modified: websites/production/cxf/content/cache/docs.pageCache
==============================================================================
Binary files - no diff available.

Modified: websites/production/cxf/content/cache/main.pageCache
==============================================================================
Binary files - no diff available.

Modified: websites/production/cxf/content/connecting-maven-eclipse-checkstyle-and-pmd.html
==============================================================================
--- websites/production/cxf/content/connecting-maven-eclipse-checkstyle-and-pmd.html (original)
+++ websites/production/cxf/content/connecting-maven-eclipse-checkstyle-and-pmd.html Wed Sep 13 15:05:52 2017
@@ -163,7 +163,7 @@ Eclipse is configured via a collection o
 Step 1: Check out CXF projects on the root level.<br clear="none">
 Step 2: Create your Eclipse workspace. By default maven plugin assumes that workspace is located in ../workspace relative to root CXF source directory. To customize it, just add following xml fragment into your maven settings.xml:</p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<pre class="brush: bash; gutter: false; theme: Confluence" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
   &lt;profiles&gt;
     &lt;profile&gt;
       &lt;id&gt;extra&lt;/id&gt;

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 Wed Sep 13 15:05:52 2017
@@ -131,7 +131,7 @@ To send a message into a physical channe
 <h3 id="CustomCXFTransport-SimplifiedClientWorkflow:">Simplified Client Workflow:</h3>
 <ul><li>Step1: JAX-WS client invokes a service, in this manner for example:
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeContent panelContent pdl">
-<pre class="brush: bash; gutter: false; theme: Confluence" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
         URL wsdlURL = this.getClass().getResource("/HelloWorld.wsdl");
         HelloWorldService service = new HelloWorldService(wsdlURL, SERVICE_NAME);        
         HelloWorld hw = service.getHelloWorldPort();       
@@ -143,7 +143,7 @@ To send a message into a physical channe
 <h3 id="CustomCXFTransport-SimplifiedServiceWorkflow:">Simplified Service Workflow:</h3>
 <ul><li>Step1: JAX-WS service is registered for example in this way:
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeContent panelContent pdl">
-<pre class="brush: bash; gutter: false; theme: Confluence" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
 	HelloWorldImpl serverImpl = new HelloWorldImpl();
 	Endpoint.publish("udp://localhost:9000/hello", serverImpl);
 </pre>
@@ -154,7 +154,7 @@ To send a message into a physical channe
 <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 pdl" style="border-style: solid;border-width: 1px;"><div class="codeContent panelContent pdl">
-<pre class="brush: bash; gutter: false; theme: Confluence" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
      Bus bus = BusFactory.getThreadDefaultBus();
      DestinationFactoryManagerImpl dfm = bus.getExtension(DestinationFactoryManagerImpl.class);
      CustomTransportFactory customTransport = new CustomTransportFactory();
@@ -170,7 +170,7 @@ To register transport factory programmat
 
 <p>For Spring configuration, the following could be used instead:</p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<pre class="brush: bash; gutter: false; theme: Confluence" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
 	&lt;bean class="org.company.cxf.transport.CustomTransportFactory"
 		lazy-init="false"&gt;
 		&lt;property name="transportIds"&gt;
@@ -188,7 +188,7 @@ b) The Port address element should be bo
 
 <p>Sample:</p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<pre class="brush: bash; gutter: false; theme: Confluence" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
 &lt;wsdl:definitions 
     xmlns:transport="http://cxf.apache.org/transports/TRANSPORT_PREFIX" &#8230;&gt; &#8230;
 &#8230;

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 Wed Sep 13 15:05:52 2017
@@ -175,7 +175,7 @@ cxf dev list, dev@cxf.apache.org.  You c
 
 
     <style type="text/css">
-        #refresh-module-1069777389 .icon {
+        #refresh-module-234623456 .icon {
             background-position: left center;
             background-repeat: no-repeat;
             display: inline-block;
@@ -186,13 +186,13 @@ cxf dev list, dev@cxf.apache.org.  You c
             vertical-align: text-bottom;
         }
     </style>
-<div id="refresh-module-1069777389">
+<div id="refresh-module-234623456">
     <p>
         
                     
             
                     
-        </p><div id="jira-issues-1069777389" style="width: 100%;  overflow: auto;">
+        </p><div id="jira-issues-234623456" style="width: 100%;  overflow: auto;">
             <table class="aui" style="padding:5px !important;vertical-align: top;"><tbody><tr><td></td></tr><tr><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">T</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Key</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Summary</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Assignee</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Reporter</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style
 ="text-align: left; text-transform: capitalize; padding:5px !important;">P</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Status</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Resolution</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Created</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Updated</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Due</th></tr><tr class="rowNormal"><td colspan="1" nowrap>
                                                                             <a shape="rect" href="https://issues.apache.org/jira/browse/CXF-4545?src=confmacro"><img class="icon" src="https://issues.apache.org/jira/images/icons/issuetypes/bug.png" alt="Bug"></a>
                                                                     </td><td colspan="1" nowrap>
@@ -709,7 +709,7 @@ cxf dev list, dev@cxf.apache.org.  You c
                                                                                                             </td></tr></tbody></table>
         </div>
                                 <div class="refresh-issues-bottom">
-                <span id="total-issues-count-1069777389">
+                <span id="total-issues-count-234623456">
                                                                     <a shape="rect" title="View all matching issues in JIRA." href="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&amp;src=confmacro">
                                                             19 issues
                                                 </a>

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 Wed Sep 13 15:05:52 2017
@@ -174,7 +174,7 @@ cxf dev list, dev@cxf.apache.org.  You c
 
 
     <style type="text/css">
-        #refresh-module-1870924979 .icon {
+        #refresh-module-799165954 .icon {
             background-position: left center;
             background-repeat: no-repeat;
             display: inline-block;
@@ -185,13 +185,13 @@ cxf dev list, dev@cxf.apache.org.  You c
             vertical-align: text-bottom;
         }
     </style>
-<div id="refresh-module-1870924979">
+<div id="refresh-module-799165954">
     <p>
         
                     
             
                     
-        </p><div id="jira-issues-1870924979" style="width: 100%;  overflow: auto;">
+        </p><div id="jira-issues-799165954" style="width: 100%;  overflow: auto;">
             <table class="aui" style="padding:5px !important;vertical-align: top;"><tbody><tr><td></td></tr><tr><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">T</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Key</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Summary</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Assignee</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Reporter</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style
 ="text-align: left; text-transform: capitalize; padding:5px !important;">P</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Status</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Resolution</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Created</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Updated</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Due</th></tr><tr class="rowNormal"><td colspan="1" nowrap>
                                                                             <a shape="rect" href="https://issues.apache.org/jira/browse/CXF-3975?src=confmacro"><img class="icon" src="https://issues.apache.org/jira/images/icons/issuetypes/improvement.png" alt="Improvement"></a>
                                                                     </td><td colspan="1" nowrap>
@@ -735,7 +735,7 @@ cxf dev list, dev@cxf.apache.org.  You c
                                                                                                             </td></tr></tbody></table>
         </div>
                                 <div class="refresh-issues-bottom">
-                <span id="total-issues-count-1870924979">
+                <span id="total-issues-count-799165954">
                                                                         <span>Showing 20 out of</span>
                                                 <a shape="rect" title="View all matching issues in JIRA." href="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&amp;src=confmacro">
                                                             42 issues

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 Wed Sep 13 15:05:52 2017
@@ -174,7 +174,7 @@ cxf dev list, dev@cxf.apache.org.  You c
 
 
     <style type="text/css">
-        #refresh-module-848196585 .icon {
+        #refresh-module-1772311068 .icon {
             background-position: left center;
             background-repeat: no-repeat;
             display: inline-block;
@@ -185,13 +185,13 @@ cxf dev list, dev@cxf.apache.org.  You c
             vertical-align: text-bottom;
         }
     </style>
-<div id="refresh-module-848196585">
+<div id="refresh-module-1772311068">
     <p>
         
                     
             
                     
-        </p><div id="jira-issues-848196585" style="width: 100%;  overflow: auto;">
+        </p><div id="jira-issues-1772311068" style="width: 100%;  overflow: auto;">
             <table class="aui" style="padding:5px !important;vertical-align: top;"><tbody><tr><td></td></tr><tr><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">T</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Key</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Summary</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Assignee</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Reporter</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style
 ="text-align: left; text-transform: capitalize; padding:5px !important;">P</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Status</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Resolution</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Created</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Updated</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Due</th></tr><tr class="rowNormal"><td colspan="1" nowrap>
                                                                             <a shape="rect" href="https://issues.apache.org/jira/browse/CXF-4045?src=confmacro"><img class="icon" src="https://issues.apache.org/jira/images/icons/issuetypes/bug.png" alt="Bug"></a>
                                                                     </td><td colspan="1" nowrap>
@@ -735,7 +735,7 @@ cxf dev list, dev@cxf.apache.org.  You c
                                                                                                             </td></tr></tbody></table>
         </div>
                                 <div class="refresh-issues-bottom">
-                <span id="total-issues-count-848196585">
+                <span id="total-issues-count-1772311068">
                                                                         <span>Showing 20 out of</span>
                                                 <a shape="rect" title="View all matching issues in JIRA." href="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&amp;src=confmacro">
                                                             28 issues

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 Wed Sep 13 15:05:52 2017
@@ -174,7 +174,7 @@ cxf dev list, dev@cxf.apache.org.  You c
 
 
     <style type="text/css">
-        #refresh-module-1651803753 .icon {
+        #refresh-module-660884397 .icon {
             background-position: left center;
             background-repeat: no-repeat;
             display: inline-block;
@@ -185,13 +185,13 @@ cxf dev list, dev@cxf.apache.org.  You c
             vertical-align: text-bottom;
         }
     </style>
-<div id="refresh-module-1651803753">
+<div id="refresh-module-660884397">
     <p>
         
                     
             
                     
-        </p><div id="jira-issues-1651803753" style="width: 100%;  overflow: auto;">
+        </p><div id="jira-issues-660884397" style="width: 100%;  overflow: auto;">
             <table class="aui" style="padding:5px !important;vertical-align: top;"><tbody><tr><td></td></tr><tr><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">T</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Key</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Summary</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Assignee</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Reporter</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style
 ="text-align: left; text-transform: capitalize; padding:5px !important;">P</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Status</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Resolution</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Created</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Updated</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Due</th></tr><tr class="rowNormal"><td colspan="1" nowrap>
                                                                             <a shape="rect" href="https://issues.apache.org/jira/browse/CXF-4231?src=confmacro"><img class="icon" src="https://issues.apache.org/jira/images/icons/issuetypes/bug.png" alt="Bug"></a>
                                                                     </td><td colspan="1" nowrap>
@@ -735,7 +735,7 @@ cxf dev list, dev@cxf.apache.org.  You c
                                                                                                             </td></tr></tbody></table>
         </div>
                                 <div class="refresh-issues-bottom">
-                <span id="total-issues-count-1651803753">
+                <span id="total-issues-count-660884397">
                                                                         <span>Showing 20 out of</span>
                                                 <a shape="rect" title="View all matching issues in JIRA." href="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&amp;src=confmacro">
                                                             78 issues

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 Wed Sep 13 15:05:52 2017
@@ -174,7 +174,7 @@ cxf dev list, dev@cxf.apache.org.  You c
 
 
     <style type="text/css">
-        #refresh-module-233822826 .icon {
+        #refresh-module-2051780454 .icon {
             background-position: left center;
             background-repeat: no-repeat;
             display: inline-block;
@@ -185,13 +185,13 @@ cxf dev list, dev@cxf.apache.org.  You c
             vertical-align: text-bottom;
         }
     </style>
-<div id="refresh-module-233822826">
+<div id="refresh-module-2051780454">
     <p>
         
                     
             
                     
-        </p><div id="jira-issues-233822826" style="width: 100%;  overflow: auto;">
+        </p><div id="jira-issues-2051780454" style="width: 100%;  overflow: auto;">
             <table class="aui" style="padding:5px !important;vertical-align: top;"><tbody><tr><td></td></tr><tr><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">T</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Key</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Summary</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Assignee</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Reporter</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style
 ="text-align: left; text-transform: capitalize; padding:5px !important;">P</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Status</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Resolution</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Created</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Updated</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Due</th></tr><tr class="rowNormal"><td colspan="1" nowrap>
                                                                             <a shape="rect" href="https://issues.apache.org/jira/browse/CXF-4349?src=confmacro"><img class="icon" src="https://issues.apache.org/jira/images/icons/issuetypes/bug.png" alt="Bug"></a>
                                                                     </td><td colspan="1" nowrap>
@@ -735,7 +735,7 @@ cxf dev list, dev@cxf.apache.org.  You c
                                                                                                             </td></tr></tbody></table>
         </div>
                                 <div class="refresh-issues-bottom">
-                <span id="total-issues-count-233822826">
+                <span id="total-issues-count-2051780454">
                                                                         <span>Showing 20 out of</span>
                                                 <a shape="rect" title="View all matching issues in JIRA." href="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&amp;src=confmacro">
                                                             43 issues

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 Wed Sep 13 15:05:52 2017
@@ -174,7 +174,7 @@ cxf dev list, dev@cxf.apache.org.  You c
 
 
     <style type="text/css">
-        #refresh-module-836950453 .icon {
+        #refresh-module-1688556793 .icon {
             background-position: left center;
             background-repeat: no-repeat;
             display: inline-block;
@@ -185,13 +185,13 @@ cxf dev list, dev@cxf.apache.org.  You c
             vertical-align: text-bottom;
         }
     </style>
-<div id="refresh-module-836950453">
+<div id="refresh-module-1688556793">
     <p>
         
                     
             
                     
-        </p><div id="jira-issues-836950453" style="width: 100%;  overflow: auto;">
+        </p><div id="jira-issues-1688556793" style="width: 100%;  overflow: auto;">
             <table class="aui" style="padding:5px !important;vertical-align: top;"><tbody><tr><td></td></tr><tr><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">T</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Key</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Summary</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Assignee</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Reporter</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style
 ="text-align: left; text-transform: capitalize; padding:5px !important;">P</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Status</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Resolution</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Created</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Updated</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Due</th></tr><tr class="rowNormal"><td colspan="1" nowrap>
                                                                             <a shape="rect" href="https://issues.apache.org/jira/browse/CXF-4470?src=confmacro"><img class="icon" src="https://issues.apache.org/jira/images/icons/issuetypes/bug.png" alt="Bug"></a>
                                                                     </td><td colspan="1" nowrap>
@@ -735,7 +735,7 @@ cxf dev list, dev@cxf.apache.org.  You c
                                                                                                             </td></tr></tbody></table>
         </div>
                                 <div class="refresh-issues-bottom">
-                <span id="total-issues-count-836950453">
+                <span id="total-issues-count-1688556793">
                                                                         <span>Showing 20 out of</span>
                                                 <a shape="rect" title="View all matching issues in JIRA." href="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&amp;src=confmacro">
                                                             43 issues

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 Wed Sep 13 15:05:52 2017
@@ -161,7 +161,7 @@ cxf dev list, dev@cxf.apache.org.  You c
 
 
     <style type="text/css">
-        #refresh-module-740295604 .icon {
+        #refresh-module-366190469 .icon {
             background-position: left center;
             background-repeat: no-repeat;
             display: inline-block;
@@ -172,13 +172,13 @@ cxf dev list, dev@cxf.apache.org.  You c
             vertical-align: text-bottom;
         }
     </style>
-<div id="refresh-module-740295604">
+<div id="refresh-module-366190469">
     <p>
         
                     
             
                     
-        </p><div id="jira-issues-740295604" style="width: 100%;  overflow: auto;">
+        </p><div id="jira-issues-366190469" style="width: 100%;  overflow: auto;">
             <table class="aui" style="padding:5px !important;vertical-align: top;"><tbody><tr><td></td></tr><tr><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">T</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Key</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Summary</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Assignee</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Reporter</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style
 ="text-align: left; text-transform: capitalize; padding:5px !important;">P</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Status</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Resolution</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Created</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Updated</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Due</th></tr><tr class="rowNormal"><td colspan="1" nowrap>
                                                                             <a shape="rect" href="https://issues.apache.org/jira/browse/CXF-3994?src=confmacro"><img class="icon" src="https://issues.apache.org/jira/images/icons/issuetypes/bug.png" alt="Bug"></a>
                                                                     </td><td colspan="1" nowrap>
@@ -722,7 +722,7 @@ cxf dev list, dev@cxf.apache.org.  You c
                                                                                                             </td></tr></tbody></table>
         </div>
                                 <div class="refresh-issues-bottom">
-                <span id="total-issues-count-740295604">
+                <span id="total-issues-count-366190469">
                                                                         <span>Showing 20 out of</span>
                                                 <a shape="rect" title="View all matching issues in JIRA." href="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&amp;src=confmacro">
                                                             80 issues

Modified: websites/production/cxf/content/cxf-2510-release-notes.html
==============================================================================
--- websites/production/cxf/content/cxf-2510-release-notes.html (original)
+++ websites/production/cxf/content/cxf-2510-release-notes.html Wed Sep 13 15:05:52 2017
@@ -163,7 +163,7 @@ cxf dev list, dev@cxf.apache.org.  You c
 
 
     <style type="text/css">
-        #refresh-module-118315105 .icon {
+        #refresh-module-440658637 .icon {
             background-position: left center;
             background-repeat: no-repeat;
             display: inline-block;
@@ -174,13 +174,13 @@ cxf dev list, dev@cxf.apache.org.  You c
             vertical-align: text-bottom;
         }
     </style>
-<div id="refresh-module-118315105">
+<div id="refresh-module-440658637">
     <p>
         
                     
             
                     
-        </p><div id="jira-issues-118315105" style="width: 100%;  overflow: auto;">
+        </p><div id="jira-issues-440658637" style="width: 100%;  overflow: auto;">
             <table class="aui" style="padding:5px !important;vertical-align: top;"><tbody><tr><td></td></tr><tr><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">T</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Key</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Summary</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Assignee</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Reporter</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style
 ="text-align: left; text-transform: capitalize; padding:5px !important;">P</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Status</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Resolution</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Created</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Updated</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Due</th></tr><tr class="rowNormal"><td colspan="1" nowrap>
                                                                             <a shape="rect" href="https://issues.apache.org/jira/browse/CXF-4932?src=confmacro"><img class="icon" src="https://issues.apache.org/jira/images/icons/issuetypes/bug.png" alt="Bug"></a>
                                                                     </td><td colspan="1" nowrap>
@@ -724,7 +724,7 @@ cxf dev list, dev@cxf.apache.org.  You c
                                                                                                             </td></tr></tbody></table>
         </div>
                                 <div class="refresh-issues-bottom">
-                <span id="total-issues-count-118315105">
+                <span id="total-issues-count-440658637">
                                                                         <span>Showing 20 out of</span>
                                                 <a shape="rect" title="View all matching issues in JIRA." href="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=12324007&amp;src=confmacro">
                                                             33 issues

Modified: websites/production/cxf/content/cxf-2511-release-notes.html
==============================================================================
--- websites/production/cxf/content/cxf-2511-release-notes.html (original)
+++ websites/production/cxf/content/cxf-2511-release-notes.html Wed Sep 13 15:05:52 2017
@@ -165,7 +165,7 @@ cxf dev list, dev@cxf.apache.org.  You c
 
 
     <style type="text/css">
-        #refresh-module-988194632 .icon {
+        #refresh-module-977540114 .icon {
             background-position: left center;
             background-repeat: no-repeat;
             display: inline-block;
@@ -176,13 +176,13 @@ cxf dev list, dev@cxf.apache.org.  You c
             vertical-align: text-bottom;
         }
     </style>
-<div id="refresh-module-988194632">
+<div id="refresh-module-977540114">
     <p>
         
                     
             
                     
-        </p><div id="jira-issues-988194632" style="width: 100%;  overflow: auto;">
+        </p><div id="jira-issues-977540114" style="width: 100%;  overflow: auto;">
             <table class="aui" style="padding:5px !important;vertical-align: top;"><tbody><tr><td></td></tr><tr><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">T</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Key</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Summary</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Assignee</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Reporter</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style
 ="text-align: left; text-transform: capitalize; padding:5px !important;">P</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Status</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Resolution</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Created</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Updated</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Due</th></tr><tr class="rowNormal"><td colspan="1" nowrap>
                                                                             <a shape="rect" href="https://issues.apache.org/jira/browse/CXF-5237?src=confmacro"><img class="icon" src="https://issues.apache.org/jira/images/icons/issuetypes/bug.png" alt="Bug"></a>
                                                                     </td><td colspan="1" nowrap>
@@ -726,7 +726,7 @@ cxf dev list, dev@cxf.apache.org.  You c
                                                                                                             </td></tr></tbody></table>
         </div>
                                 <div class="refresh-issues-bottom">
-                <span id="total-issues-count-988194632">
+                <span id="total-issues-count-977540114">
                                                                         <span>Showing 20 out of</span>
                                                 <a shape="rect" title="View all matching issues in JIRA." href="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=12324275&amp;src=confmacro">
                                                             49 issues

Modified: websites/production/cxf/content/cxf-252-release-notes.html
==============================================================================
--- websites/production/cxf/content/cxf-252-release-notes.html (original)
+++ websites/production/cxf/content/cxf-252-release-notes.html Wed Sep 13 15:05:52 2017
@@ -161,7 +161,7 @@ cxf dev list, dev@cxf.apache.org.  You c
 
 
     <style type="text/css">
-        #refresh-module-1221155321 .icon {
+        #refresh-module-2013193305 .icon {
             background-position: left center;
             background-repeat: no-repeat;
             display: inline-block;
@@ -172,13 +172,13 @@ cxf dev list, dev@cxf.apache.org.  You c
             vertical-align: text-bottom;
         }
     </style>
-<div id="refresh-module-1221155321">
+<div id="refresh-module-2013193305">
     <p>
         
                     
             
                     
-        </p><div id="jira-issues-1221155321" style="width: 100%;  overflow: auto;">
+        </p><div id="jira-issues-2013193305" style="width: 100%;  overflow: auto;">
             <table class="aui" style="padding:5px !important;vertical-align: top;"><tbody><tr><td></td></tr><tr><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">T</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Key</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Summary</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Assignee</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Reporter</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style
 ="text-align: left; text-transform: capitalize; padding:5px !important;">P</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Status</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Resolution</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Created</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Updated</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Due</th></tr><tr class="rowNormal"><td colspan="1" nowrap>
                                                                             <a shape="rect" href="https://issues.apache.org/jira/browse/CXF-4235?src=confmacro"><img class="icon" src="https://issues.apache.org/jira/images/icons/issuetypes/task.png" alt="Task"></a>
                                                                     </td><td colspan="1" nowrap>
@@ -722,7 +722,7 @@ cxf dev list, dev@cxf.apache.org.  You c
                                                                                                             </td></tr></tbody></table>
         </div>
                                 <div class="refresh-issues-bottom">
-                <span id="total-issues-count-1221155321">
+                <span id="total-issues-count-2013193305">
                                                                         <span>Showing 20 out of</span>
                                                 <a shape="rect" title="View all matching issues in JIRA." href="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=12319249&amp;src=confmacro">
                                                             49 issues

Modified: websites/production/cxf/content/cxf-253-release-notes.html
==============================================================================
--- websites/production/cxf/content/cxf-253-release-notes.html (original)
+++ websites/production/cxf/content/cxf-253-release-notes.html Wed Sep 13 15:05:52 2017
@@ -161,7 +161,7 @@ cxf dev list, dev@cxf.apache.org.  You c
 
 
     <style type="text/css">
-        #refresh-module-1133199838 .icon {
+        #refresh-module-579239364 .icon {
             background-position: left center;
             background-repeat: no-repeat;
             display: inline-block;
@@ -172,13 +172,13 @@ cxf dev list, dev@cxf.apache.org.  You c
             vertical-align: text-bottom;
         }
     </style>
-<div id="refresh-module-1133199838">
+<div id="refresh-module-579239364">
     <p>
         
                     
             
                     
-        </p><div id="jira-issues-1133199838" style="width: 100%;  overflow: auto;">
+        </p><div id="jira-issues-579239364" style="width: 100%;  overflow: auto;">
             <table class="aui" style="padding:5px !important;vertical-align: top;"><tbody><tr><td></td></tr><tr><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">T</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Key</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Summary</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Assignee</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Reporter</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style
 ="text-align: left; text-transform: capitalize; padding:5px !important;">P</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Status</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Resolution</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Created</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Updated</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Due</th></tr><tr class="rowNormal"><td colspan="1" nowrap>
                                                                             <a shape="rect" href="https://issues.apache.org/jira/browse/CXF-4238?src=confmacro"><img class="icon" src="https://issues.apache.org/jira/images/icons/issuetypes/bug.png" alt="Bug"></a>
                                                                     </td><td colspan="1" nowrap>
@@ -722,7 +722,7 @@ cxf dev list, dev@cxf.apache.org.  You c
                                                                                                             </td></tr></tbody></table>
         </div>
                                 <div class="refresh-issues-bottom">
-                <span id="total-issues-count-1133199838">
+                <span id="total-issues-count-579239364">
                                                                         <span>Showing 20 out of</span>
                                                 <a shape="rect" title="View all matching issues in JIRA." href="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=12319491&amp;src=confmacro">
                                                             116 issues

Modified: websites/production/cxf/content/cxf-254-release-notes.html
==============================================================================
--- websites/production/cxf/content/cxf-254-release-notes.html (original)
+++ websites/production/cxf/content/cxf-254-release-notes.html Wed Sep 13 15:05:52 2017
@@ -161,7 +161,7 @@ cxf dev list, dev@cxf.apache.org.  You c
 
 
     <style type="text/css">
-        #refresh-module-804319817 .icon {
+        #refresh-module-786964074 .icon {
             background-position: left center;
             background-repeat: no-repeat;
             display: inline-block;
@@ -172,13 +172,13 @@ cxf dev list, dev@cxf.apache.org.  You c
             vertical-align: text-bottom;
         }
     </style>
-<div id="refresh-module-804319817">
+<div id="refresh-module-786964074">
     <p>
         
                     
             
                     
-        </p><div id="jira-issues-804319817" style="width: 100%;  overflow: auto;">
+        </p><div id="jira-issues-786964074" style="width: 100%;  overflow: auto;">
             <table class="aui" style="padding:5px !important;vertical-align: top;"><tbody><tr><td></td></tr><tr><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">T</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Key</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Summary</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Assignee</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Reporter</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style
 ="text-align: left; text-transform: capitalize; padding:5px !important;">P</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Status</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Resolution</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Created</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Updated</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Due</th></tr><tr class="rowNormal"><td colspan="1" nowrap>
                                                                             <a shape="rect" href="https://issues.apache.org/jira/browse/CXF-4349?src=confmacro"><img class="icon" src="https://issues.apache.org/jira/images/icons/issuetypes/bug.png" alt="Bug"></a>
                                                                     </td><td colspan="1" nowrap>
@@ -722,7 +722,7 @@ cxf dev list, dev@cxf.apache.org.  You c
                                                                                                             </td></tr></tbody></table>
         </div>
                                 <div class="refresh-issues-bottom">
-                <span id="total-issues-count-804319817">
+                <span id="total-issues-count-786964074">
                                                                         <span>Showing 20 out of</span>
                                                 <a shape="rect" title="View all matching issues in JIRA." href="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=12320747&amp;src=confmacro">
                                                             73 issues

Modified: websites/production/cxf/content/cxf-255-release-notes.html
==============================================================================
--- websites/production/cxf/content/cxf-255-release-notes.html (original)
+++ websites/production/cxf/content/cxf-255-release-notes.html Wed Sep 13 15:05:52 2017
@@ -161,7 +161,7 @@ cxf dev list, dev@cxf.apache.org.  You c
 
 
     <style type="text/css">
-        #refresh-module-1555728816 .icon {
+        #refresh-module-985950232 .icon {
             background-position: left center;
             background-repeat: no-repeat;
             display: inline-block;
@@ -172,13 +172,13 @@ cxf dev list, dev@cxf.apache.org.  You c
             vertical-align: text-bottom;
         }
     </style>
-<div id="refresh-module-1555728816">
+<div id="refresh-module-985950232">
     <p>
         
                     
             
                     
-        </p><div id="jira-issues-1555728816" style="width: 100%;  overflow: auto;">
+        </p><div id="jira-issues-985950232" style="width: 100%;  overflow: auto;">
             <table class="aui" style="padding:5px !important;vertical-align: top;"><tbody><tr><td></td></tr><tr><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">T</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Key</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Summary</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Assignee</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Reporter</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style
 ="text-align: left; text-transform: capitalize; padding:5px !important;">P</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Status</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Resolution</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Created</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Updated</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Due</th></tr><tr class="rowNormal"><td colspan="1" nowrap>
                                                                             <a shape="rect" href="https://issues.apache.org/jira/browse/CXF-4470?src=confmacro"><img class="icon" src="https://issues.apache.org/jira/images/icons/issuetypes/bug.png" alt="Bug"></a>
                                                                     </td><td colspan="1" nowrap>
@@ -722,7 +722,7 @@ cxf dev list, dev@cxf.apache.org.  You c
                                                                                                             </td></tr></tbody></table>
         </div>
                                 <div class="refresh-issues-bottom">
-                <span id="total-issues-count-1555728816">
+                <span id="total-issues-count-985950232">
                                                                         <span>Showing 20 out of</span>
                                                 <a shape="rect" title="View all matching issues in JIRA." href="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=12321667&amp;src=confmacro">
                                                             56 issues

Modified: websites/production/cxf/content/cxf-256-release-notes.html
==============================================================================
--- websites/production/cxf/content/cxf-256-release-notes.html (original)
+++ websites/production/cxf/content/cxf-256-release-notes.html Wed Sep 13 15:05:52 2017
@@ -161,7 +161,7 @@ cxf dev list, dev@cxf.apache.org.  You c
 
 
     <style type="text/css">
-        #refresh-module-1987269894 .icon {
+        #refresh-module-805153014 .icon {
             background-position: left center;
             background-repeat: no-repeat;
             display: inline-block;
@@ -172,13 +172,13 @@ cxf dev list, dev@cxf.apache.org.  You c
             vertical-align: text-bottom;
         }
     </style>
-<div id="refresh-module-1987269894">
+<div id="refresh-module-805153014">
     <p>
         
                     
             
                     
-        </p><div id="jira-issues-1987269894" style="width: 100%;  overflow: auto;">
+        </p><div id="jira-issues-805153014" style="width: 100%;  overflow: auto;">
             <table class="aui" style="padding:5px !important;vertical-align: top;"><tbody><tr><td></td></tr><tr><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">T</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Key</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Summary</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Assignee</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Reporter</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style
 ="text-align: left; text-transform: capitalize; padding:5px !important;">P</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Status</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Resolution</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Created</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Updated</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Due</th></tr><tr class="rowNormal"><td colspan="1" nowrap>
                                                                             <a shape="rect" href="https://issues.apache.org/jira/browse/CXF-4552?src=confmacro"><img class="icon" src="https://issues.apache.org/jira/images/icons/issuetypes/bug.png" alt="Bug"></a>
                                                                     </td><td colspan="1" nowrap>
@@ -722,7 +722,7 @@ cxf dev list, dev@cxf.apache.org.  You c
                                                                                                             </td></tr></tbody></table>
         </div>
                                 <div class="refresh-issues-bottom">
-                <span id="total-issues-count-1987269894">
+                <span id="total-issues-count-805153014">
                                                                         <span>Showing 20 out of</span>
                                                 <a shape="rect" title="View all matching issues in JIRA." href="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=12322965&amp;src=confmacro">
                                                             34 issues

Modified: websites/production/cxf/content/cxf-257-release-notes.html
==============================================================================
--- websites/production/cxf/content/cxf-257-release-notes.html (original)
+++ websites/production/cxf/content/cxf-257-release-notes.html Wed Sep 13 15:05:52 2017
@@ -161,7 +161,7 @@ cxf dev list, dev@cxf.apache.org.  You c
 
 
     <style type="text/css">
-        #refresh-module-1447640206 .icon {
+        #refresh-module-785134057 .icon {
             background-position: left center;
             background-repeat: no-repeat;
             display: inline-block;
@@ -172,13 +172,13 @@ cxf dev list, dev@cxf.apache.org.  You c
             vertical-align: text-bottom;
         }
     </style>
-<div id="refresh-module-1447640206">
+<div id="refresh-module-785134057">
     <p>
         
                     
             
                     
-        </p><div id="jira-issues-1447640206" style="width: 100%;  overflow: auto;">
+        </p><div id="jira-issues-785134057" style="width: 100%;  overflow: auto;">
             <table class="aui" style="padding:5px !important;vertical-align: top;"><tbody><tr><td></td></tr><tr><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">T</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Key</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Summary</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Assignee</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Reporter</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style
 ="text-align: left; text-transform: capitalize; padding:5px !important;">P</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Status</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Resolution</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Created</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Updated</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Due</th></tr><tr class="rowNormal"><td colspan="1" nowrap>
                                                                             <a shape="rect" href="https://issues.apache.org/jira/browse/CXF-4683?src=confmacro"><img class="icon" src="https://issues.apache.org/jira/images/icons/issuetypes/bug.png" alt="Bug"></a>
                                                                     </td><td colspan="1" nowrap>
@@ -722,7 +722,7 @@ cxf dev list, dev@cxf.apache.org.  You c
                                                                                                             </td></tr></tbody></table>
         </div>
                                 <div class="refresh-issues-bottom">
-                <span id="total-issues-count-1447640206">
+                <span id="total-issues-count-785134057">
                                                                         <span>Showing 20 out of</span>
                                                 <a shape="rect" title="View all matching issues in JIRA." href="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=12323349&amp;src=confmacro">
                                                             56 issues

Modified: websites/production/cxf/content/cxf-258-release-notes.html
==============================================================================
--- websites/production/cxf/content/cxf-258-release-notes.html (original)
+++ websites/production/cxf/content/cxf-258-release-notes.html Wed Sep 13 15:05:52 2017
@@ -161,7 +161,7 @@ cxf dev list, dev@cxf.apache.org.  You c
 
 
     <style type="text/css">
-        #refresh-module-76561739 .icon {
+        #refresh-module-443148904 .icon {
             background-position: left center;
             background-repeat: no-repeat;
             display: inline-block;
@@ -172,13 +172,13 @@ cxf dev list, dev@cxf.apache.org.  You c
             vertical-align: text-bottom;
         }
     </style>
-<div id="refresh-module-76561739">
+<div id="refresh-module-443148904">
     <p>
         
                     
             
                     
-        </p><div id="jira-issues-76561739" style="width: 100%;  overflow: auto;">
+        </p><div id="jira-issues-443148904" style="width: 100%;  overflow: auto;">
             <table class="aui" style="padding:5px !important;vertical-align: top;"><tbody><tr><td></td></tr><tr><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">T</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Key</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Summary</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Assignee</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Reporter</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style
 ="text-align: left; text-transform: capitalize; padding:5px !important;">P</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Status</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Resolution</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Created</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Updated</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Due</th></tr><tr class="rowNormal"><td colspan="1" nowrap>
                                                                             <a shape="rect" href="https://issues.apache.org/jira/browse/CXF-4729?src=confmacro"><img class="icon" src="https://issues.apache.org/jira/images/icons/issuetypes/task.png" alt="Task"></a>
                                                                     </td><td colspan="1" nowrap>
@@ -722,7 +722,7 @@ cxf dev list, dev@cxf.apache.org.  You c
                                                                                                             </td></tr></tbody></table>
         </div>
                                 <div class="refresh-issues-bottom">
-                <span id="total-issues-count-76561739">
+                <span id="total-issues-count-443148904">
                                                                         <span>Showing 20 out of</span>
                                                 <a shape="rect" title="View all matching issues in JIRA." href="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=12323606&amp;src=confmacro">
                                                             22 issues

Modified: websites/production/cxf/content/cxf-259-release-notes.html
==============================================================================
--- websites/production/cxf/content/cxf-259-release-notes.html (original)
+++ websites/production/cxf/content/cxf-259-release-notes.html Wed Sep 13 15:05:52 2017
@@ -161,7 +161,7 @@ cxf dev list, dev@cxf.apache.org.  You c
 
 
     <style type="text/css">
-        #refresh-module-1301287766 .icon {
+        #refresh-module-1716159088 .icon {
             background-position: left center;
             background-repeat: no-repeat;
             display: inline-block;
@@ -172,13 +172,13 @@ cxf dev list, dev@cxf.apache.org.  You c
             vertical-align: text-bottom;
         }
     </style>
-<div id="refresh-module-1301287766">
+<div id="refresh-module-1716159088">
     <p>
         
                     
             
                     
-        </p><div id="jira-issues-1301287766" style="width: 100%;  overflow: auto;">
+        </p><div id="jira-issues-1716159088" style="width: 100%;  overflow: auto;">
             <table class="aui" style="padding:5px !important;vertical-align: top;"><tbody><tr><td></td></tr><tr><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">T</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Key</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Summary</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Assignee</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Reporter</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style
 ="text-align: left; text-transform: capitalize; padding:5px !important;">P</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Status</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Resolution</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Created</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Updated</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Due</th></tr><tr class="rowNormal"><td colspan="1" nowrap>
                                                                             <a shape="rect" href="https://issues.apache.org/jira/browse/CXF-4787?src=confmacro"><img class="icon" src="https://issues.apache.org/jira/images/icons/issuetypes/bug.png" alt="Bug"></a>
                                                                     </td><td colspan="1" nowrap>
@@ -668,7 +668,7 @@ cxf dev list, dev@cxf.apache.org.  You c
                                                                                                             </td></tr></tbody></table>
         </div>
                                 <div class="refresh-issues-bottom">
-                <span id="total-issues-count-1301287766">
+                <span id="total-issues-count-1716159088">
                                                                     <a shape="rect" title="View all matching issues in JIRA." href="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=12323912&amp;src=confmacro">
                                                             18 issues
                                                 </a>

Modified: websites/production/cxf/content/cxf-261-release-notes.html
==============================================================================
--- websites/production/cxf/content/cxf-261-release-notes.html (original)
+++ websites/production/cxf/content/cxf-261-release-notes.html Wed Sep 13 15:05:52 2017
@@ -161,7 +161,7 @@ cxf dev list, dev@cxf.apache.org.  You c
 
 
     <style type="text/css">
-        #refresh-module-651792282 .icon {
+        #refresh-module-1234110246 .icon {
             background-position: left center;
             background-repeat: no-repeat;
             display: inline-block;
@@ -172,13 +172,13 @@ cxf dev list, dev@cxf.apache.org.  You c
             vertical-align: text-bottom;
         }
     </style>
-<div id="refresh-module-651792282">
+<div id="refresh-module-1234110246">
     <p>
         
                     
             
                     
-        </p><div id="jira-issues-651792282" style="width: 100%;  overflow: auto;">
+        </p><div id="jira-issues-1234110246" style="width: 100%;  overflow: auto;">
             <table class="aui" style="padding:5px !important;vertical-align: top;"><tbody><tr><td></td></tr><tr><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">T</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Key</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Summary</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Assignee</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Reporter</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style
 ="text-align: left; text-transform: capitalize; padding:5px !important;">P</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Status</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Resolution</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Created</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Updated</th><th colspan="1" rowspan="1" class="jira-macro-table-underline-pdfexport" style="text-align: left; text-transform: capitalize; padding:5px !important;">Due</th></tr><tr class="rowNormal"><td colspan="1" nowrap>
                                                                             <a shape="rect" href="https://issues.apache.org/jira/browse/CXF-4421?src=confmacro"><img class="icon" src="https://issues.apache.org/jira/images/icons/issuetypes/bug.png" alt="Bug"></a>
                                                                     </td><td colspan="1" nowrap>
@@ -722,7 +722,7 @@ cxf dev list, dev@cxf.apache.org.  You c
                                                                                                             </td></tr></tbody></table>
         </div>
                                 <div class="refresh-issues-bottom">
-                <span id="total-issues-count-651792282">
+                <span id="total-issues-count-1234110246">
                                                                         <span>Showing 20 out of</span>
                                                 <a shape="rect" title="View all matching issues in JIRA." href="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=12320746&amp;src=confmacro">
                                                             98 issues