http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2118a439/content/news/2011/09/07/wicket-1.5-released.html
----------------------------------------------------------------------
diff --git a/content/news/2011/09/07/wicket-1.5-released.html 
b/content/news/2011/09/07/wicket-1.5-released.html
deleted file mode 100644
index cfae4b3..0000000
--- a/content/news/2011/09/07/wicket-1.5-released.html
+++ /dev/null
@@ -1,147 +0,0 @@
-<!DOCTYPE html>
-<html>
-    <head>
-        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
-        <meta charset="utf-8">
-        <title>Apache Wicket releases Wicket 1.5 | Apache Wicket</title>
-        <meta name="viewport" content="width=device-width, initial-scale=1" />
-
-        <link rel="shortcut icon" href="/favicon.ico" 
type="image/vnd.microsoft.icon" />
-        <link rel="stylesheet" href="/css/style.css" type="text/css" 
media="screen" />
-        <link 
href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" 
rel="stylesheet" />
-
-               <script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
-
-    </head>
-
-    <body class="">
-        <div class="header default">
-    <div class="l-container">
-<nav class="mainmenu">
-    <ul>
-               <!-- /start/quickstart.html || 
/news/2011/09/07/wicket-1.5-released.html -->
-       <li class=""><a href="/start/quickstart.html">Quick Start</a></li>
-               <!-- /start/download.html || 
/news/2011/09/07/wicket-1.5-released.html -->
-       <li class=""><a href="/start/download.html">Download</a></li>
-               <!-- /learn || /news/2011/09/07/wicket-1.5-released.html -->
-       <li class=""><a href="/learn">Documentation</a></li>
-               <!-- /help || /news/2011/09/07/wicket-1.5-released.html -->
-       <li class=""><a href="/help">Support</a></li>
-               <!-- /contribute || /news/2011/09/07/wicket-1.5-released.html 
-->
-       <li class=""><a href="/contribute">Contribute</a></li>
-               <!-- /community || /news/2011/09/07/wicket-1.5-released.html -->
-       <li class=""><a href="/community">Community</a></li>
-               <!-- /apache || /news/2011/09/07/wicket-1.5-released.html -->
-       <li class=""><a href="/apache">Apache</a></li>
-    </ul>
-</nav>
-        <div class="logo">
-    <a href="/"><img src="/img/logo-apachewicket-white.svg" alt="Apache 
Wicket"></a>
-</div>
-    </div>
-</div>
-<main>
-    <div class="l-container">
-        <header class="l-full preamble">
-            <h1>Apache Wicket releases Wicket 1.5</h1>
-        </header>
-        <section class="l-one-third right">
-            <div id="toc" class="toc"><div id="toc-title"><h2>Table of 
Contents</h2></div><ul><li class="toc--level-1 toc--section-1"><a 
href="#downloading-apache-wicket-15"><span class="toc-number">1</span> <span 
class="toc-text">Downloading Apache Wicket 1.5</span></a></li><li 
class="toc--level-1 toc--section-2"><a href="#most-notable-changes"><span 
class="toc-number">2</span> <span class="toc-text">Most notable 
changes</span></a><ul><li class="toc--level-2 toc--section-3"><a 
href="#inter-component-events"><span class="toc-number">2.1</span> <span 
class="toc-text">Inter-component events</span></a></li></ul></li></ul></div>
-        </section>
-        <section class="l-two-third left">
-            <div class="l-full">
-    <p class="meta">07 Sep 2011</p>
-    <p>The Apache Wicket team is proud to announce the immediate availability 
of the newest release of their component oriented open source Java web 
framework. Apache Wicket 1.5 has been in development for the last two years and 
brings many improvements over previous versions.</p>
-<h2 id="downloading-apache-wicket-15">Downloading Apache Wicket 1.5</h2>
-<p>You can download the release here: <a 
href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.0";>http://www.apache.org/dyn/closer.cgi/wicket/1.5.0</a></p>
-<p>Or use this in your Maven POM to upgrade to the new version:</p>
-<div class="highlight"><pre><code class="language-xml" data-lang="xml"><span 
class="nt">&lt;dependency&gt;</span>
-    <span class="nt">&lt;groupId&gt;</span>org.apache.wicket<span 
class="nt">&lt;/groupId&gt;</span>
-    <span class="nt">&lt;artifactId&gt;</span>wicket-core<span 
class="nt">&lt;/artifactId&gt;</span>
-    <span class="nt">&lt;version&gt;</span>1.5.0<span 
class="nt">&lt;/version&gt;</span>
-<span class="nt">&lt;/dependency&gt;</span></code></pre></div>
-<p>Please note that Wicket’s main artifact ID has been renamed to 
<code>wicket-core</code>.</p>
-<p>You will need to upgrade all modules (i.e. wicket, wicket-extensions, 
wicket-ioc, wicket-spring, etc) to 1.5.0. <strong>It is not possible to mix 
previous versions of Wicket with modules of this release.</strong></p>
-<h2 id="most-notable-changes">Most notable changes</h2>
-<p>With this release the Wicket team has revised many of its internals. A 
short list:</p>
-<ul>
-  <li>HTML5 components added: <code>EmailTextField</code>, 
<code>NumberTextField</code>, <code>UrlTextField</code> and 
<code>RangeTextField</code></li>
-  <li>New inter-component events (explained below)</li>
-  <li>Minimum required servlet API is servlet-api 2.5</li>
-  <li>All standard validators now extend <code>Behavior</code> to allow for 
client side validations</li>
-  <li><code>IBehavior</code> has been removed and 
<code>AbstractBehavior</code> has been deprecated, you should now extend 
<code>Behavior</code> instead</li>
-  <li>Simplified the <a 
href="https://cwiki.apache.org/confluence/display/WICKET/RequestCycle+in+Wicket+1.5";>request
 cycle processing</a> and made it more extensible</li>
-  <li>URL handling is now in one place</li>
-  <li>Wicket’s rendering code has been greatly simplified</li>
-  <li>Improved browser <a 
href="https://cwiki.apache.org/confluence/display/WICKET/Caching+in+Wicket+1.5";>caching
 support</a></li>
-  <li>ClientSideImageMap replaces old ImageMap</li>
-  <li>Better support for running behind proxies with 
<code>x-forwarded-for</code> header</li>
-  <li><a 
href="https://cwiki.apache.org/confluence/display/WICKET/RequestCycle+in+Wicket+1.5";>Request
 cycle listeners</a> make it easier to integrate frameworks in your Wicket 
application</li>
-  <li>Consistent naming: methods with <code>Javascript</code> in the name have 
been renamed to use proper capitalization: <code>JavaScript</code></li>
-  <li>Switching to HTTPS is as simple as configuring a new root mapper to make 
Wicket HTTPS aware and annotating a page with @RequireHttps</li>
-</ul>
-<p>A longer list of changes and improvements can be found in our <a 
href="http://s.apache.org/wicket-1.5-migration";>migration guide</a>.</p>
-<h3 id="inter-component-events">Inter-component events</h3>
-<p>Wicket 1.5 offers a simple, yet flexible, way for component to communicate 
with each other in a decoupled manner. The two major interfaces that facilitate 
this are:</p>
-<div class="highlight"><pre><code class="language-java" data-lang="java"><span 
class="cm">/**</span>
-<span class="cm"> * Objects that can send events</span>
-<span class="cm"> */</span>
-<span class="kd">public</span> <span class="kd">interface</span> <span 
class="nc">IEventSource</span> <span class="o">{</span>
-    <span class="o">&lt;</span><span class="n">T</span><span 
class="o">&gt;</span> <span class="kt">void</span> <span 
class="nf">send</span><span class="o">(</span><span class="n">IEventSink</span> 
<span class="n">sink</span><span class="o">,</span> <span 
class="n">Broadcast</span> <span class="n">broadcast</span><span 
class="o">,</span> <span class="n">T</span> <span class="n">payload</span><span 
class="o">);</span>
-<span class="o">}</span></code></pre></div>
-<p>and</p>
-<div class="highlight"><pre><code class="language-java" data-lang="java"><span 
class="cm">/**</span>
-<span class="cm"> * Objects that can receive events</span>
-<span class="cm"> */</span>
-<span class="kd">public</span> <span class="kd">interface</span> <span 
class="nc">IEventSink</span>
-<span class="o">{</span>
-    <span class="cm">/**</span>
-<span class="cm">     * Called when an event is sent to this sink</span>
-<span class="cm">     */</span>
-    <span class="kt">void</span> <span class="nf">onEvent</span><span 
class="o">(</span><span class="n">IEvent</span><span class="o">&lt;?&gt;</span> 
<span class="n">event</span><span class="o">);</span>
-<span class="o">}</span></code></pre></div>
-<p>The classes that implement these interfaces, and can thus participate in 
the event mechanism are: <code>Component</code>, <code>RequestCycle</code>, 
<code>Session</code>, and <code>Application</code>.</p>
-<p>The mechanism allows for different event broadcast methods defined here:</p>
-<div class="highlight"><pre><code class="language-java" data-lang="java"><span 
class="cm">/**</span>
-<span class="cm"> * Defines the event broadcast type.</span>
-<span class="cm"> */</span>
-<span class="kd">public</span> <span class="kd">enum</span> <span 
class="n">Broadcast</span> <span class="o">{</span>
-    <span class="n">BREADTH</span><span class="o">,</span>
-    <span class="n">DEPTH</span><span class="o">,</span>
-    <span class="n">BUBBLE</span><span class="o">,</span>
-    <span class="n">EXACT</span><span class="o">;</span>
-<span class="o">}</span></code></pre></div>
-<p>There is an example in wicket-examples which demonstrates the usage of 
this.</p>
-<p>Applications can register custom event dispatchers in 
<code>FrameworkSettings</code>; the dispatchers can be used to build custom 
event delivery mechanisms. For example a custom <code>IEventDispatcher</code> 
mechanism can route events to annotated methods, for example:</p>
-<div class="highlight"><pre><code class="language-java" data-lang="java"><span 
class="kd">public</span> <span class="kd">class</span> <span 
class="nc">MyComponent</span> <span class="kd">extends</span> <span 
class="n">Component</span> <span class="o">{</span>
-    <span class="nd">@OnEvent</span>
-    <span class="kd">private</span> <span class="kt">void</span> <span 
class="nf">onUserAdded</span><span class="o">(</span><span 
class="n">UserAddedEvent</span> <span class="n">event</span><span 
class="o">)</span> <span class="o">{...}</span>
-<span class="o">}</span></code></pre></div>
-<p>where <code>UserAddedEvent</code> is the event payload object.</p>
-<p>The default <code>Component#onEvent</code> method will be called even if 
custom dispatchers are registered.</p>
-<p>A default event is raised whenever Wicket begins to create an AJAX 
response. The payload of the event is the <code>AjaxRequestTarget</code> used 
for event. Sample implementation:</p>
-<div class="highlight"><pre><code class="language-java" data-lang="java"><span 
class="c1">// component that always adds itself to the ajax response</span>
-<span class="kd">public</span> <span class="kd">class</span> <span 
class="nc">MyComponent</span> <span class="kd">extends</span> <span 
class="n">Component</span> <span class="o">{</span>
-    <span class="kd">public</span> <span class="kt">void</span> <span 
class="nf">onEvent</span><span class="o">(</span><span class="n">IEvent</span> 
<span class="n">event</span><span class="o">)</span> <span class="o">{</span>
-        <span class="k">if</span> <span class="o">(</span><span 
class="n">event</span><span class="o">.</span><span 
class="na">getPayload</span><span class="o">()</span> <span 
class="k">instanceof</span> <span class="n">AjaxRequestTarget</span><span 
class="o">)</span> <span class="o">{</span>
-            <span class="o">((</span><span 
class="n">AjaxRequestTarget</span><span class="o">)</span><span 
class="n">event</span><span class="o">.</span><span 
class="na">getPayload</span><span class="o">()).</span><span 
class="na">add</span><span class="o">(</span><span class="k">this</span><span 
class="o">);</span>
-         <span class="o">}</span>
-    <span class="o">}</span>
-<span class="o">}</span></code></pre></div>
-</div>
-        </section>
-    </div>
-</main>
-        <footer class="l-container">
-            <div class="l-full">
-    <img height="60px" src="/img/asf_logo.gif" style="float:left">
-    Copyright © 2015 — The Apache Software Foundation. Apache Wicket,
-    Wicket, Apache, the Apache feather logo, and the Apache Wicket
-    project logo are trademarks of The Apache Software Foundation. All
-    other marks mentioned may be trademarks or registered trademarks of
-    their respective owners.
-</div>
-        </footer>
-    </body>
-
-</html>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2118a439/content/news/2011/09/29/wicket-1-5-1-released.html
----------------------------------------------------------------------
diff --git a/content/news/2011/09/29/wicket-1-5-1-released.html 
b/content/news/2011/09/29/wicket-1-5-1-released.html
new file mode 100644
index 0000000..7201a2a
--- /dev/null
+++ b/content/news/2011/09/29/wicket-1-5-1-released.html
@@ -0,0 +1,83 @@
+<!DOCTYPE html>
+<html>
+    <head>
+        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+        <meta charset="utf-8">
+        <title>Wicket 1.5.1 released | Apache Wicket</title>
+        <meta name="viewport" content="width=device-width, initial-scale=1" />
+
+        <link rel="shortcut icon" href="/favicon.ico" 
type="image/vnd.microsoft.icon" />
+        <link rel="stylesheet" href="/css/style.css" type="text/css" 
media="screen" />
+        <link 
href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" 
rel="stylesheet" />
+
+               <script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
+
+    </head>
+
+    <body class="">
+        <div class="header default">
+    <div class="l-container">
+<nav class="mainmenu">
+    <ul>
+               <!-- /start/quickstart.html || 
/news/2011/09/29/wicket-1-5-1-released.html -->
+       <li class=""><a href="/start/quickstart.html">Quick Start</a></li>
+               <!-- /start/download.html || 
/news/2011/09/29/wicket-1-5-1-released.html -->
+       <li class=""><a href="/start/download.html">Download</a></li>
+               <!-- /learn || /news/2011/09/29/wicket-1-5-1-released.html -->
+       <li class=""><a href="/learn">Documentation</a></li>
+               <!-- /help || /news/2011/09/29/wicket-1-5-1-released.html -->
+       <li class=""><a href="/help">Support</a></li>
+               <!-- /contribute || /news/2011/09/29/wicket-1-5-1-released.html 
-->
+       <li class=""><a href="/contribute">Contribute</a></li>
+               <!-- /community || /news/2011/09/29/wicket-1-5-1-released.html 
-->
+       <li class=""><a href="/community">Community</a></li>
+               <!-- /apache || /news/2011/09/29/wicket-1-5-1-released.html -->
+       <li class=""><a href="/apache">Apache</a></li>
+    </ul>
+</nav>
+        <div class="logo">
+    <a href="/"><img src="/img/logo-apachewicket-white.svg" alt="Apache 
Wicket"></a>
+</div>
+    </div>
+</div>
+<main>
+    <div class="l-container">
+        <header class="l-full preamble">
+            <h1>Wicket 1.5.1 released</h1>
+        </header>
+        <section class="l-one-third right">
+        </section>
+        <section class="l-two-third left">
+            <div class="l-full">
+    <p class="meta">29 Sep 2011</p>
+    <p>This is the first maintenance release of the Wicket 1.5.x series. This 
release brings over 40 bug fixes and 15 improvements.</p>
+<ul>
+  <li><a 
href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.5.1";>Subversion 
tag</a></li>
+  <li><a 
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?&amp;version=12315430&amp;projectId=12310561";>Changelog</a></li>
+  <li>To use in Maven:</li>
+</ul>
+<figure class="highlight"><pre><code class="language-xml" 
data-lang="xml"><span class="nt">&lt;dependency&gt;</span>
+    <span class="nt">&lt;groupId&gt;</span>org.apache.wicket<span 
class="nt">&lt;/groupId&gt;</span>
+    <span class="nt">&lt;artifactId&gt;</span>wicket-core<span 
class="nt">&lt;/artifactId&gt;</span>
+    <span class="nt">&lt;version&gt;</span>1.5.1<span 
class="nt">&lt;/version&gt;</span>
+<span class="nt">&lt;/dependency&gt;</span></code></pre></figure>
+<ul>
+  <li>Download the <a 
href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.1";>full distribution</a> 
(including source)</li>
+</ul>
+</div>
+        </section>
+    </div>
+</main>
+        <footer class="l-container">
+            <div class="l-full">
+    <img height="60px" src="/img/asf_logo.gif" style="float:left">
+    Copyright © 2015 — The Apache Software Foundation. Apache Wicket,
+    Wicket, Apache, the Apache feather logo, and the Apache Wicket
+    project logo are trademarks of The Apache Software Foundation. All
+    other marks mentioned may be trademarks or registered trademarks of
+    their respective owners.
+</div>
+        </footer>
+    </body>
+
+</html>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2118a439/content/news/2011/09/29/wicket-1.5.1-released.html
----------------------------------------------------------------------
diff --git a/content/news/2011/09/29/wicket-1.5.1-released.html 
b/content/news/2011/09/29/wicket-1.5.1-released.html
deleted file mode 100644
index 97ccc86..0000000
--- a/content/news/2011/09/29/wicket-1.5.1-released.html
+++ /dev/null
@@ -1,83 +0,0 @@
-<!DOCTYPE html>
-<html>
-    <head>
-        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
-        <meta charset="utf-8">
-        <title>Wicket 1.5.1 released | Apache Wicket</title>
-        <meta name="viewport" content="width=device-width, initial-scale=1" />
-
-        <link rel="shortcut icon" href="/favicon.ico" 
type="image/vnd.microsoft.icon" />
-        <link rel="stylesheet" href="/css/style.css" type="text/css" 
media="screen" />
-        <link 
href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" 
rel="stylesheet" />
-
-               <script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
-
-    </head>
-
-    <body class="">
-        <div class="header default">
-    <div class="l-container">
-<nav class="mainmenu">
-    <ul>
-               <!-- /start/quickstart.html || 
/news/2011/09/29/wicket-1.5.1-released.html -->
-       <li class=""><a href="/start/quickstart.html">Quick Start</a></li>
-               <!-- /start/download.html || 
/news/2011/09/29/wicket-1.5.1-released.html -->
-       <li class=""><a href="/start/download.html">Download</a></li>
-               <!-- /learn || /news/2011/09/29/wicket-1.5.1-released.html -->
-       <li class=""><a href="/learn">Documentation</a></li>
-               <!-- /help || /news/2011/09/29/wicket-1.5.1-released.html -->
-       <li class=""><a href="/help">Support</a></li>
-               <!-- /contribute || /news/2011/09/29/wicket-1.5.1-released.html 
-->
-       <li class=""><a href="/contribute">Contribute</a></li>
-               <!-- /community || /news/2011/09/29/wicket-1.5.1-released.html 
-->
-       <li class=""><a href="/community">Community</a></li>
-               <!-- /apache || /news/2011/09/29/wicket-1.5.1-released.html -->
-       <li class=""><a href="/apache">Apache</a></li>
-    </ul>
-</nav>
-        <div class="logo">
-    <a href="/"><img src="/img/logo-apachewicket-white.svg" alt="Apache 
Wicket"></a>
-</div>
-    </div>
-</div>
-<main>
-    <div class="l-container">
-        <header class="l-full preamble">
-            <h1>Wicket 1.5.1 released</h1>
-        </header>
-        <section class="l-one-third right">
-        </section>
-        <section class="l-two-third left">
-            <div class="l-full">
-    <p class="meta">29 Sep 2011</p>
-    <p>This is the first maintenance release of the Wicket 1.5.x series. This 
release brings over 40 bug fixes and 15 improvements.</p>
-<ul>
-  <li><a 
href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.5.1";>Subversion 
tag</a></li>
-  <li><a 
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?&amp;version=12315430&amp;projectId=12310561";>Changelog</a></li>
-  <li>To use in Maven:</li>
-</ul>
-<div class="highlight"><pre><code class="language-xml" data-lang="xml"><span 
class="nt">&lt;dependency&gt;</span>
-    <span class="nt">&lt;groupId&gt;</span>org.apache.wicket<span 
class="nt">&lt;/groupId&gt;</span>
-    <span class="nt">&lt;artifactId&gt;</span>wicket-core<span 
class="nt">&lt;/artifactId&gt;</span>
-    <span class="nt">&lt;version&gt;</span>1.5.1<span 
class="nt">&lt;/version&gt;</span>
-<span class="nt">&lt;/dependency&gt;</span></code></pre></div>
-<ul>
-  <li>Download the <a 
href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.1";>full distribution</a> 
(including source)</li>
-</ul>
-</div>
-        </section>
-    </div>
-</main>
-        <footer class="l-container">
-            <div class="l-full">
-    <img height="60px" src="/img/asf_logo.gif" style="float:left">
-    Copyright © 2015 — The Apache Software Foundation. Apache Wicket,
-    Wicket, Apache, the Apache feather logo, and the Apache Wicket
-    project logo are trademarks of The Apache Software Foundation. All
-    other marks mentioned may be trademarks or registered trademarks of
-    their respective owners.
-</div>
-        </footer>
-    </body>
-
-</html>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2118a439/content/news/2011/09/index.html
----------------------------------------------------------------------
diff --git a/content/news/2011/09/index.html b/content/news/2011/09/index.html
index 3c20750..a589f87 100644
--- a/content/news/2011/09/index.html
+++ b/content/news/2011/09/index.html
@@ -50,7 +50,7 @@
        <h3>Apache Wicket releases Wicket 1.5</h3>
   <p><small>07 Sep 2011</small></p>
        <p>The Apache Wicket team is proud to announce the immediate 
availability o...</p>
-       <a href="/news/2011/09/07/wicket-1.5-released.html">more</a></li>
+       <a href="/news/2011/09/07/wicket-1-5-released.html">more</a></li>
 </div>
 <div class="news">
        <h3>Wicket 1.5.1 released</h3>
@@ -61,15 +61,16 @@
   <li><a 
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?&amp;version=12315430&amp;projectId=12310561";>Changelog</a></li>
   <li>To use in Maven:</li>
 </ul>
-<div class="highlight"><pre><code class="language-xml" data-lang="xml"><span 
class="nt">&lt;dependency&gt;</span>
-    <span class="nt">&lt;grou...</span></code></pre></div>
-       <a href="/news/2011/09/29/wicket-1.5.1-released.html">more</a></li>
+<figure class="highlight"><pre><code class="language-xml" 
data-lang="xml"><span class="nt">&lt;dependency&gt;</span>
+    <span class="nt">&lt;grou...</span></code></pre></figure>
+       <a href="/news/2011/09/29/wicket-1-5-1-released.html">more</a></li>
 </div>
         </div>
         <div class="l-one-third">
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</a></li>
+            <li><a href="/news/2015/11">November</a></li>
             <li><a href="/news/2015/10">October</a></li>
             <li><a href="/news/2015/07">July</a></li>
             <li><a href="/news/2015/06">June</a></li>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2118a439/content/news/2011/10/17/wicket-1-4-19-released.html
----------------------------------------------------------------------
diff --git a/content/news/2011/10/17/wicket-1-4-19-released.html 
b/content/news/2011/10/17/wicket-1-4-19-released.html
new file mode 100644
index 0000000..b66e775
--- /dev/null
+++ b/content/news/2011/10/17/wicket-1-4-19-released.html
@@ -0,0 +1,83 @@
+<!DOCTYPE html>
+<html>
+    <head>
+        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+        <meta charset="utf-8">
+        <title>Wicket 1.4.19 released | Apache Wicket</title>
+        <meta name="viewport" content="width=device-width, initial-scale=1" />
+
+        <link rel="shortcut icon" href="/favicon.ico" 
type="image/vnd.microsoft.icon" />
+        <link rel="stylesheet" href="/css/style.css" type="text/css" 
media="screen" />
+        <link 
href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" 
rel="stylesheet" />
+
+               <script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
+
+    </head>
+
+    <body class="">
+        <div class="header default">
+    <div class="l-container">
+<nav class="mainmenu">
+    <ul>
+               <!-- /start/quickstart.html || 
/news/2011/10/17/wicket-1-4-19-released.html -->
+       <li class=""><a href="/start/quickstart.html">Quick Start</a></li>
+               <!-- /start/download.html || 
/news/2011/10/17/wicket-1-4-19-released.html -->
+       <li class=""><a href="/start/download.html">Download</a></li>
+               <!-- /learn || /news/2011/10/17/wicket-1-4-19-released.html -->
+       <li class=""><a href="/learn">Documentation</a></li>
+               <!-- /help || /news/2011/10/17/wicket-1-4-19-released.html -->
+       <li class=""><a href="/help">Support</a></li>
+               <!-- /contribute || 
/news/2011/10/17/wicket-1-4-19-released.html -->
+       <li class=""><a href="/contribute">Contribute</a></li>
+               <!-- /community || /news/2011/10/17/wicket-1-4-19-released.html 
-->
+       <li class=""><a href="/community">Community</a></li>
+               <!-- /apache || /news/2011/10/17/wicket-1-4-19-released.html -->
+       <li class=""><a href="/apache">Apache</a></li>
+    </ul>
+</nav>
+        <div class="logo">
+    <a href="/"><img src="/img/logo-apachewicket-white.svg" alt="Apache 
Wicket"></a>
+</div>
+    </div>
+</div>
+<main>
+    <div class="l-container">
+        <header class="l-full preamble">
+            <h1>Wicket 1.4.19 released</h1>
+        </header>
+        <section class="l-one-third right">
+        </section>
+        <section class="l-two-third left">
+            <div class="l-full">
+    <p class="meta">17 Oct 2011</p>
+    <p>This is nineteenth release of the Wicket 1.4.x series. This is 
primarily a minor bugfix release on the 1.4.x (stable) branch.</p>
+<ul>
+  <li><a 
href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.19";>Subversion 
tag</a></li>
+  <li><a 
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;version=12317570";>Changelog</a></li>
+  <li>To use in Maven:</li>
+</ul>
+<figure class="highlight"><pre><code class="language-xml" 
data-lang="xml"><span class="nt">&lt;dependency&gt;</span>
+    <span class="nt">&lt;groupId&gt;</span>org.apache.wicket<span 
class="nt">&lt;/groupId&gt;</span>
+    <span class="nt">&lt;artifactId&gt;</span>wicket<span 
class="nt">&lt;/artifactId&gt;</span>
+    <span class="nt">&lt;version&gt;</span>1.4.19<span 
class="nt">&lt;/version&gt;</span>
+<span class="nt">&lt;/dependency&gt;</span></code></pre></figure>
+<ul>
+  <li>Download the <a 
href="http://www.apache.org/dyn/closer.cgi/wicket/1.4.19";>full distribution</a> 
(including source)</li>
+</ul>
+</div>
+        </section>
+    </div>
+</main>
+        <footer class="l-container">
+            <div class="l-full">
+    <img height="60px" src="/img/asf_logo.gif" style="float:left">
+    Copyright © 2015 — The Apache Software Foundation. Apache Wicket,
+    Wicket, Apache, the Apache feather logo, and the Apache Wicket
+    project logo are trademarks of The Apache Software Foundation. All
+    other marks mentioned may be trademarks or registered trademarks of
+    their respective owners.
+</div>
+        </footer>
+    </body>
+
+</html>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2118a439/content/news/2011/10/17/wicket-1.4.19-released.html
----------------------------------------------------------------------
diff --git a/content/news/2011/10/17/wicket-1.4.19-released.html 
b/content/news/2011/10/17/wicket-1.4.19-released.html
deleted file mode 100644
index cbad88a..0000000
--- a/content/news/2011/10/17/wicket-1.4.19-released.html
+++ /dev/null
@@ -1,83 +0,0 @@
-<!DOCTYPE html>
-<html>
-    <head>
-        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
-        <meta charset="utf-8">
-        <title>Wicket 1.4.19 released | Apache Wicket</title>
-        <meta name="viewport" content="width=device-width, initial-scale=1" />
-
-        <link rel="shortcut icon" href="/favicon.ico" 
type="image/vnd.microsoft.icon" />
-        <link rel="stylesheet" href="/css/style.css" type="text/css" 
media="screen" />
-        <link 
href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" 
rel="stylesheet" />
-
-               <script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
-
-    </head>
-
-    <body class="">
-        <div class="header default">
-    <div class="l-container">
-<nav class="mainmenu">
-    <ul>
-               <!-- /start/quickstart.html || 
/news/2011/10/17/wicket-1.4.19-released.html -->
-       <li class=""><a href="/start/quickstart.html">Quick Start</a></li>
-               <!-- /start/download.html || 
/news/2011/10/17/wicket-1.4.19-released.html -->
-       <li class=""><a href="/start/download.html">Download</a></li>
-               <!-- /learn || /news/2011/10/17/wicket-1.4.19-released.html -->
-       <li class=""><a href="/learn">Documentation</a></li>
-               <!-- /help || /news/2011/10/17/wicket-1.4.19-released.html -->
-       <li class=""><a href="/help">Support</a></li>
-               <!-- /contribute || 
/news/2011/10/17/wicket-1.4.19-released.html -->
-       <li class=""><a href="/contribute">Contribute</a></li>
-               <!-- /community || /news/2011/10/17/wicket-1.4.19-released.html 
-->
-       <li class=""><a href="/community">Community</a></li>
-               <!-- /apache || /news/2011/10/17/wicket-1.4.19-released.html -->
-       <li class=""><a href="/apache">Apache</a></li>
-    </ul>
-</nav>
-        <div class="logo">
-    <a href="/"><img src="/img/logo-apachewicket-white.svg" alt="Apache 
Wicket"></a>
-</div>
-    </div>
-</div>
-<main>
-    <div class="l-container">
-        <header class="l-full preamble">
-            <h1>Wicket 1.4.19 released</h1>
-        </header>
-        <section class="l-one-third right">
-        </section>
-        <section class="l-two-third left">
-            <div class="l-full">
-    <p class="meta">17 Oct 2011</p>
-    <p>This is nineteenth release of the Wicket 1.4.x series. This is 
primarily a minor bugfix release on the 1.4.x (stable) branch.</p>
-<ul>
-  <li><a 
href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.19";>Subversion 
tag</a></li>
-  <li><a 
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;version=12317570";>Changelog</a></li>
-  <li>To use in Maven:</li>
-</ul>
-<div class="highlight"><pre><code class="language-xml" data-lang="xml"><span 
class="nt">&lt;dependency&gt;</span>
-    <span class="nt">&lt;groupId&gt;</span>org.apache.wicket<span 
class="nt">&lt;/groupId&gt;</span>
-    <span class="nt">&lt;artifactId&gt;</span>wicket<span 
class="nt">&lt;/artifactId&gt;</span>
-    <span class="nt">&lt;version&gt;</span>1.4.19<span 
class="nt">&lt;/version&gt;</span>
-<span class="nt">&lt;/dependency&gt;</span></code></pre></div>
-<ul>
-  <li>Download the <a 
href="http://www.apache.org/dyn/closer.cgi/wicket/1.4.19";>full distribution</a> 
(including source)</li>
-</ul>
-</div>
-        </section>
-    </div>
-</main>
-        <footer class="l-container">
-            <div class="l-full">
-    <img height="60px" src="/img/asf_logo.gif" style="float:left">
-    Copyright © 2015 — The Apache Software Foundation. Apache Wicket,
-    Wicket, Apache, the Apache feather logo, and the Apache Wicket
-    project logo are trademarks of The Apache Software Foundation. All
-    other marks mentioned may be trademarks or registered trademarks of
-    their respective owners.
-</div>
-        </footer>
-    </body>
-
-</html>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2118a439/content/news/2011/10/24/wicket-1-5-2-released.html
----------------------------------------------------------------------
diff --git a/content/news/2011/10/24/wicket-1-5-2-released.html 
b/content/news/2011/10/24/wicket-1-5-2-released.html
new file mode 100644
index 0000000..13ccaae
--- /dev/null
+++ b/content/news/2011/10/24/wicket-1-5-2-released.html
@@ -0,0 +1,83 @@
+<!DOCTYPE html>
+<html>
+    <head>
+        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+        <meta charset="utf-8">
+        <title>Wicket 1.5.2 released | Apache Wicket</title>
+        <meta name="viewport" content="width=device-width, initial-scale=1" />
+
+        <link rel="shortcut icon" href="/favicon.ico" 
type="image/vnd.microsoft.icon" />
+        <link rel="stylesheet" href="/css/style.css" type="text/css" 
media="screen" />
+        <link 
href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" 
rel="stylesheet" />
+
+               <script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
+
+    </head>
+
+    <body class="">
+        <div class="header default">
+    <div class="l-container">
+<nav class="mainmenu">
+    <ul>
+               <!-- /start/quickstart.html || 
/news/2011/10/24/wicket-1-5-2-released.html -->
+       <li class=""><a href="/start/quickstart.html">Quick Start</a></li>
+               <!-- /start/download.html || 
/news/2011/10/24/wicket-1-5-2-released.html -->
+       <li class=""><a href="/start/download.html">Download</a></li>
+               <!-- /learn || /news/2011/10/24/wicket-1-5-2-released.html -->
+       <li class=""><a href="/learn">Documentation</a></li>
+               <!-- /help || /news/2011/10/24/wicket-1-5-2-released.html -->
+       <li class=""><a href="/help">Support</a></li>
+               <!-- /contribute || /news/2011/10/24/wicket-1-5-2-released.html 
-->
+       <li class=""><a href="/contribute">Contribute</a></li>
+               <!-- /community || /news/2011/10/24/wicket-1-5-2-released.html 
-->
+       <li class=""><a href="/community">Community</a></li>
+               <!-- /apache || /news/2011/10/24/wicket-1-5-2-released.html -->
+       <li class=""><a href="/apache">Apache</a></li>
+    </ul>
+</nav>
+        <div class="logo">
+    <a href="/"><img src="/img/logo-apachewicket-white.svg" alt="Apache 
Wicket"></a>
+</div>
+    </div>
+</div>
+<main>
+    <div class="l-container">
+        <header class="l-full preamble">
+            <h1>Wicket 1.5.2 released</h1>
+        </header>
+        <section class="l-one-third right">
+        </section>
+        <section class="l-two-third left">
+            <div class="l-full">
+    <p class="meta">24 Oct 2011</p>
+    <p>This is the second maintenance release of the Wicket 1.5.x series. This 
release brings over 25 bug fixes and 5 improvements.</p>
+<ul>
+  <li><a 
href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.5.2";>Subversion 
tag</a></li>
+  <li><a 
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;version=12318078";>Changelog</a></li>
+  <li>To use in Maven:</li>
+</ul>
+<figure class="highlight"><pre><code class="language-xml" 
data-lang="xml"><span class="nt">&lt;dependency&gt;</span>
+    <span class="nt">&lt;groupId&gt;</span>org.apache.wicket<span 
class="nt">&lt;/groupId&gt;</span>
+    <span class="nt">&lt;artifactId&gt;</span>wicket-core<span 
class="nt">&lt;/artifactId&gt;</span>
+    <span class="nt">&lt;version&gt;</span>1.5.2<span 
class="nt">&lt;/version&gt;</span>
+<span class="nt">&lt;/dependency&gt;</span></code></pre></figure>
+<ul>
+  <li>Download the <a 
href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.2";>full distribution</a> 
(including source)</li>
+</ul>
+</div>
+        </section>
+    </div>
+</main>
+        <footer class="l-container">
+            <div class="l-full">
+    <img height="60px" src="/img/asf_logo.gif" style="float:left">
+    Copyright © 2015 — The Apache Software Foundation. Apache Wicket,
+    Wicket, Apache, the Apache feather logo, and the Apache Wicket
+    project logo are trademarks of The Apache Software Foundation. All
+    other marks mentioned may be trademarks or registered trademarks of
+    their respective owners.
+</div>
+        </footer>
+    </body>
+
+</html>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2118a439/content/news/2011/10/24/wicket-1.5.2-released.html
----------------------------------------------------------------------
diff --git a/content/news/2011/10/24/wicket-1.5.2-released.html 
b/content/news/2011/10/24/wicket-1.5.2-released.html
deleted file mode 100644
index e06abda..0000000
--- a/content/news/2011/10/24/wicket-1.5.2-released.html
+++ /dev/null
@@ -1,83 +0,0 @@
-<!DOCTYPE html>
-<html>
-    <head>
-        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
-        <meta charset="utf-8">
-        <title>Wicket 1.5.2 released | Apache Wicket</title>
-        <meta name="viewport" content="width=device-width, initial-scale=1" />
-
-        <link rel="shortcut icon" href="/favicon.ico" 
type="image/vnd.microsoft.icon" />
-        <link rel="stylesheet" href="/css/style.css" type="text/css" 
media="screen" />
-        <link 
href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" 
rel="stylesheet" />
-
-               <script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
-
-    </head>
-
-    <body class="">
-        <div class="header default">
-    <div class="l-container">
-<nav class="mainmenu">
-    <ul>
-               <!-- /start/quickstart.html || 
/news/2011/10/24/wicket-1.5.2-released.html -->
-       <li class=""><a href="/start/quickstart.html">Quick Start</a></li>
-               <!-- /start/download.html || 
/news/2011/10/24/wicket-1.5.2-released.html -->
-       <li class=""><a href="/start/download.html">Download</a></li>
-               <!-- /learn || /news/2011/10/24/wicket-1.5.2-released.html -->
-       <li class=""><a href="/learn">Documentation</a></li>
-               <!-- /help || /news/2011/10/24/wicket-1.5.2-released.html -->
-       <li class=""><a href="/help">Support</a></li>
-               <!-- /contribute || /news/2011/10/24/wicket-1.5.2-released.html 
-->
-       <li class=""><a href="/contribute">Contribute</a></li>
-               <!-- /community || /news/2011/10/24/wicket-1.5.2-released.html 
-->
-       <li class=""><a href="/community">Community</a></li>
-               <!-- /apache || /news/2011/10/24/wicket-1.5.2-released.html -->
-       <li class=""><a href="/apache">Apache</a></li>
-    </ul>
-</nav>
-        <div class="logo">
-    <a href="/"><img src="/img/logo-apachewicket-white.svg" alt="Apache 
Wicket"></a>
-</div>
-    </div>
-</div>
-<main>
-    <div class="l-container">
-        <header class="l-full preamble">
-            <h1>Wicket 1.5.2 released</h1>
-        </header>
-        <section class="l-one-third right">
-        </section>
-        <section class="l-two-third left">
-            <div class="l-full">
-    <p class="meta">24 Oct 2011</p>
-    <p>This is the second maintenance release of the Wicket 1.5.x series. This 
release brings over 25 bug fixes and 5 improvements.</p>
-<ul>
-  <li><a 
href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.5.2";>Subversion 
tag</a></li>
-  <li><a 
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;version=12318078";>Changelog</a></li>
-  <li>To use in Maven:</li>
-</ul>
-<div class="highlight"><pre><code class="language-xml" data-lang="xml"><span 
class="nt">&lt;dependency&gt;</span>
-    <span class="nt">&lt;groupId&gt;</span>org.apache.wicket<span 
class="nt">&lt;/groupId&gt;</span>
-    <span class="nt">&lt;artifactId&gt;</span>wicket-core<span 
class="nt">&lt;/artifactId&gt;</span>
-    <span class="nt">&lt;version&gt;</span>1.5.2<span 
class="nt">&lt;/version&gt;</span>
-<span class="nt">&lt;/dependency&gt;</span></code></pre></div>
-<ul>
-  <li>Download the <a 
href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.2";>full distribution</a> 
(including source)</li>
-</ul>
-</div>
-        </section>
-    </div>
-</main>
-        <footer class="l-container">
-            <div class="l-full">
-    <img height="60px" src="/img/asf_logo.gif" style="float:left">
-    Copyright © 2015 — The Apache Software Foundation. Apache Wicket,
-    Wicket, Apache, the Apache feather logo, and the Apache Wicket
-    project logo are trademarks of The Apache Software Foundation. All
-    other marks mentioned may be trademarks or registered trademarks of
-    their respective owners.
-</div>
-        </footer>
-    </body>
-
-</html>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2118a439/content/news/2011/10/index.html
----------------------------------------------------------------------
diff --git a/content/news/2011/10/index.html b/content/news/2011/10/index.html
index b4c0a1c..394a1eb 100644
--- a/content/news/2011/10/index.html
+++ b/content/news/2011/10/index.html
@@ -55,9 +55,9 @@
   <li><a 
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;version=12317570";>Changelog</a></li>
   <li>To use in Maven:</li>
 </ul>
-<div class="highlight"><pre><code class="language-xml" data-lang="xml"><span 
class="nt">&lt;dependency&gt;</span>
-    <span class="nt">&lt;group...</span></code></pre></div>
-       <a href="/news/2011/10/17/wicket-1.4.19-released.html">more</a></li>
+<figure class="highlight"><pre><code class="language-xml" 
data-lang="xml"><span class="nt">&lt;dependency&gt;</span>
+    <span class="nt">&lt;group...</span></code></pre></figure>
+       <a href="/news/2011/10/17/wicket-1-4-19-released.html">more</a></li>
 </div>
 <div class="news">
        <h3>Wicket 1.5.2 released</h3>
@@ -68,15 +68,16 @@
   <li><a 
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;version=12318078";>Changelog</a></li>
   <li>To use in Maven:</li>
 </ul>
-<div class="highlight"><pre><code class="language-xml" data-lang="xml"><span 
class="nt">&lt;dependency&gt;</span>
-    <span class="nt">&lt;grou...</span></code></pre></div>
-       <a href="/news/2011/10/24/wicket-1.5.2-released.html">more</a></li>
+<figure class="highlight"><pre><code class="language-xml" 
data-lang="xml"><span class="nt">&lt;dependency&gt;</span>
+    <span class="nt">&lt;grou...</span></code></pre></figure>
+       <a href="/news/2011/10/24/wicket-1-5-2-released.html">more</a></li>
 </div>
         </div>
         <div class="l-one-third">
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</a></li>
+            <li><a href="/news/2015/11">November</a></li>
             <li><a href="/news/2015/10">October</a></li>
             <li><a href="/news/2015/07">July</a></li>
             <li><a href="/news/2015/06">June</a></li>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2118a439/content/news/2011/11/14/wicket-1-5-3-released.html
----------------------------------------------------------------------
diff --git a/content/news/2011/11/14/wicket-1-5-3-released.html 
b/content/news/2011/11/14/wicket-1-5-3-released.html
new file mode 100644
index 0000000..96c4037
--- /dev/null
+++ b/content/news/2011/11/14/wicket-1-5-3-released.html
@@ -0,0 +1,83 @@
+<!DOCTYPE html>
+<html>
+    <head>
+        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+        <meta charset="utf-8">
+        <title>Wicket 1.5.3 released | Apache Wicket</title>
+        <meta name="viewport" content="width=device-width, initial-scale=1" />
+
+        <link rel="shortcut icon" href="/favicon.ico" 
type="image/vnd.microsoft.icon" />
+        <link rel="stylesheet" href="/css/style.css" type="text/css" 
media="screen" />
+        <link 
href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" 
rel="stylesheet" />
+
+               <script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
+
+    </head>
+
+    <body class="">
+        <div class="header default">
+    <div class="l-container">
+<nav class="mainmenu">
+    <ul>
+               <!-- /start/quickstart.html || 
/news/2011/11/14/wicket-1-5-3-released.html -->
+       <li class=""><a href="/start/quickstart.html">Quick Start</a></li>
+               <!-- /start/download.html || 
/news/2011/11/14/wicket-1-5-3-released.html -->
+       <li class=""><a href="/start/download.html">Download</a></li>
+               <!-- /learn || /news/2011/11/14/wicket-1-5-3-released.html -->
+       <li class=""><a href="/learn">Documentation</a></li>
+               <!-- /help || /news/2011/11/14/wicket-1-5-3-released.html -->
+       <li class=""><a href="/help">Support</a></li>
+               <!-- /contribute || /news/2011/11/14/wicket-1-5-3-released.html 
-->
+       <li class=""><a href="/contribute">Contribute</a></li>
+               <!-- /community || /news/2011/11/14/wicket-1-5-3-released.html 
-->
+       <li class=""><a href="/community">Community</a></li>
+               <!-- /apache || /news/2011/11/14/wicket-1-5-3-released.html -->
+       <li class=""><a href="/apache">Apache</a></li>
+    </ul>
+</nav>
+        <div class="logo">
+    <a href="/"><img src="/img/logo-apachewicket-white.svg" alt="Apache 
Wicket"></a>
+</div>
+    </div>
+</div>
+<main>
+    <div class="l-container">
+        <header class="l-full preamble">
+            <h1>Wicket 1.5.3 released</h1>
+        </header>
+        <section class="l-one-third right">
+        </section>
+        <section class="l-two-third left">
+            <div class="l-full">
+    <p class="meta">14 Nov 2011</p>
+    <p>This is the third maintenance release of the Wicket 1.5.x series. This 
release brings over 40 bug fixes and improvements.</p>
+<ul>
+  <li><a 
href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.5.3";>Subversion 
tag</a></li>
+  <li><a 
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;version=12318550";>Changelog</a></li>
+  <li>To use in Maven:</li>
+</ul>
+<figure class="highlight"><pre><code class="language-xml" 
data-lang="xml"><span class="nt">&lt;dependency&gt;</span>
+    <span class="nt">&lt;groupId&gt;</span>org.apache.wicket<span 
class="nt">&lt;/groupId&gt;</span>
+    <span class="nt">&lt;artifactId&gt;</span>wicket-core<span 
class="nt">&lt;/artifactId&gt;</span>
+    <span class="nt">&lt;version&gt;</span>1.5.3<span 
class="nt">&lt;/version&gt;</span>
+<span class="nt">&lt;/dependency&gt;</span></code></pre></figure>
+<ul>
+  <li>Download the <a 
href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.3";>full distribution</a> 
(including source)</li>
+</ul>
+</div>
+        </section>
+    </div>
+</main>
+        <footer class="l-container">
+            <div class="l-full">
+    <img height="60px" src="/img/asf_logo.gif" style="float:left">
+    Copyright © 2015 — The Apache Software Foundation. Apache Wicket,
+    Wicket, Apache, the Apache feather logo, and the Apache Wicket
+    project logo are trademarks of The Apache Software Foundation. All
+    other marks mentioned may be trademarks or registered trademarks of
+    their respective owners.
+</div>
+        </footer>
+    </body>
+
+</html>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2118a439/content/news/2011/11/14/wicket-1.5.3-released.html
----------------------------------------------------------------------
diff --git a/content/news/2011/11/14/wicket-1.5.3-released.html 
b/content/news/2011/11/14/wicket-1.5.3-released.html
deleted file mode 100644
index c87ea24..0000000
--- a/content/news/2011/11/14/wicket-1.5.3-released.html
+++ /dev/null
@@ -1,83 +0,0 @@
-<!DOCTYPE html>
-<html>
-    <head>
-        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
-        <meta charset="utf-8">
-        <title>Wicket 1.5.3 released | Apache Wicket</title>
-        <meta name="viewport" content="width=device-width, initial-scale=1" />
-
-        <link rel="shortcut icon" href="/favicon.ico" 
type="image/vnd.microsoft.icon" />
-        <link rel="stylesheet" href="/css/style.css" type="text/css" 
media="screen" />
-        <link 
href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" 
rel="stylesheet" />
-
-               <script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
-
-    </head>
-
-    <body class="">
-        <div class="header default">
-    <div class="l-container">
-<nav class="mainmenu">
-    <ul>
-               <!-- /start/quickstart.html || 
/news/2011/11/14/wicket-1.5.3-released.html -->
-       <li class=""><a href="/start/quickstart.html">Quick Start</a></li>
-               <!-- /start/download.html || 
/news/2011/11/14/wicket-1.5.3-released.html -->
-       <li class=""><a href="/start/download.html">Download</a></li>
-               <!-- /learn || /news/2011/11/14/wicket-1.5.3-released.html -->
-       <li class=""><a href="/learn">Documentation</a></li>
-               <!-- /help || /news/2011/11/14/wicket-1.5.3-released.html -->
-       <li class=""><a href="/help">Support</a></li>
-               <!-- /contribute || /news/2011/11/14/wicket-1.5.3-released.html 
-->
-       <li class=""><a href="/contribute">Contribute</a></li>
-               <!-- /community || /news/2011/11/14/wicket-1.5.3-released.html 
-->
-       <li class=""><a href="/community">Community</a></li>
-               <!-- /apache || /news/2011/11/14/wicket-1.5.3-released.html -->
-       <li class=""><a href="/apache">Apache</a></li>
-    </ul>
-</nav>
-        <div class="logo">
-    <a href="/"><img src="/img/logo-apachewicket-white.svg" alt="Apache 
Wicket"></a>
-</div>
-    </div>
-</div>
-<main>
-    <div class="l-container">
-        <header class="l-full preamble">
-            <h1>Wicket 1.5.3 released</h1>
-        </header>
-        <section class="l-one-third right">
-        </section>
-        <section class="l-two-third left">
-            <div class="l-full">
-    <p class="meta">14 Nov 2011</p>
-    <p>This is the third maintenance release of the Wicket 1.5.x series. This 
release brings over 40 bug fixes and improvements.</p>
-<ul>
-  <li><a 
href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.5.3";>Subversion 
tag</a></li>
-  <li><a 
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;version=12318550";>Changelog</a></li>
-  <li>To use in Maven:</li>
-</ul>
-<div class="highlight"><pre><code class="language-xml" data-lang="xml"><span 
class="nt">&lt;dependency&gt;</span>
-    <span class="nt">&lt;groupId&gt;</span>org.apache.wicket<span 
class="nt">&lt;/groupId&gt;</span>
-    <span class="nt">&lt;artifactId&gt;</span>wicket-core<span 
class="nt">&lt;/artifactId&gt;</span>
-    <span class="nt">&lt;version&gt;</span>1.5.3<span 
class="nt">&lt;/version&gt;</span>
-<span class="nt">&lt;/dependency&gt;</span></code></pre></div>
-<ul>
-  <li>Download the <a 
href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.3";>full distribution</a> 
(including source)</li>
-</ul>
-</div>
-        </section>
-    </div>
-</main>
-        <footer class="l-container">
-            <div class="l-full">
-    <img height="60px" src="/img/asf_logo.gif" style="float:left">
-    Copyright © 2015 — The Apache Software Foundation. Apache Wicket,
-    Wicket, Apache, the Apache feather logo, and the Apache Wicket
-    project logo are trademarks of The Apache Software Foundation. All
-    other marks mentioned may be trademarks or registered trademarks of
-    their respective owners.
-</div>
-        </footer>
-    </body>
-
-</html>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2118a439/content/news/2011/11/index.html
----------------------------------------------------------------------
diff --git a/content/news/2011/11/index.html b/content/news/2011/11/index.html
index dfd1504..342d53f 100644
--- a/content/news/2011/11/index.html
+++ b/content/news/2011/11/index.html
@@ -55,15 +55,16 @@
   <li><a 
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;version=12318550";>Changelog</a></li>
   <li>To use in Maven:</li>
 </ul>
-<div class="highlight"><pre><code class="language-xml" data-lang="xml"><span 
class="nt">&lt;dependency&gt;</span>
-    <span 
class="nt">&lt;groupId&gt;</span>org.apache.wicket...</code></pre></div>
-       <a href="/news/2011/11/14/wicket-1.5.3-released.html">more</a></li>
+<figure class="highlight"><pre><code class="language-xml" 
data-lang="xml"><span class="nt">&lt;dependency&gt;</span>
+    <span 
class="nt">&lt;groupId&gt;</span>org.apache.wicket...</code></pre></figure>
+       <a href="/news/2011/11/14/wicket-1-5-3-released.html">more</a></li>
 </div>
         </div>
         <div class="l-one-third">
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</a></li>
+            <li><a href="/news/2015/11">November</a></li>
             <li><a href="/news/2015/10">October</a></li>
             <li><a href="/news/2015/07">July</a></li>
             <li><a href="/news/2015/06">June</a></li>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2118a439/content/news/2011/index.html
----------------------------------------------------------------------
diff --git a/content/news/2011/index.html b/content/news/2011/index.html
index 5b4858b..cd8e96c 100644
--- a/content/news/2011/index.html
+++ b/content/news/2011/index.html
@@ -52,10 +52,10 @@
                   <p>This section contains all news items published in <a 
href="/news/2011/11">November 2011</a>.</p>
               </div>
                   <div class="l-full">
-                       <h3 
id="/news/2011/11/14/wicket-1.5.3-released.html">Wicket 1.5.3 released</h3>
+                       <h3 
id="/news/2011/11/14/wicket-1-5-3-released.html">Wicket 1.5.3 released</h3>
                       <small>14 Nov 2011</small>
                        <p>This is the third maintenance release of the Wicket 
1.5.x series. This release brings over 40 bug fixes and improvements. 
Subversion tag Changelog To use...
-                       <a 
href="/news/2011/11/14/wicket-1.5.3-released.html">more</a></li></p>
+                       <a 
href="/news/2011/11/14/wicket-1-5-3-released.html">more</a></li></p>
                   </div>
               <hr>
               <div class="l-first"></div>
@@ -64,16 +64,16 @@
                   <p>This section contains all news items published in <a 
href="/news/2011/10">October 2011</a>.</p>
               </div>
                   <div class="l-full">
-                       <h3 
id="/news/2011/10/24/wicket-1.5.2-released.html">Wicket 1.5.2 released</h3>
+                       <h3 
id="/news/2011/10/24/wicket-1-5-2-released.html">Wicket 1.5.2 released</h3>
                       <small>24 Oct 2011</small>
                        <p>This is the second maintenance release of the Wicket 
1.5.x series. This release brings over 25 bug fixes and 5 improvements. 
Subversion tag Changelog To...
-                       <a 
href="/news/2011/10/24/wicket-1.5.2-released.html">more</a></li></p>
+                       <a 
href="/news/2011/10/24/wicket-1-5-2-released.html">more</a></li></p>
                   </div>
                   <div class="l-full">
-                       <h3 
id="/news/2011/10/17/wicket-1.4.19-released.html">Wicket 1.4.19 released</h3>
+                       <h3 
id="/news/2011/10/17/wicket-1-4-19-released.html">Wicket 1.4.19 released</h3>
                       <small>17 Oct 2011</small>
                        <p>This is nineteenth release of the Wicket 1.4.x 
series. This is primarily a minor bugfix release on the 1.4.x (stable) branch. 
Subversion tag Changelog To...
-                       <a 
href="/news/2011/10/17/wicket-1.4.19-released.html">more</a></li></p>
+                       <a 
href="/news/2011/10/17/wicket-1-4-19-released.html">more</a></li></p>
                   </div>
               <hr>
               <div class="l-first"></div>
@@ -82,16 +82,16 @@
                   <p>This section contains all news items published in <a 
href="/news/2011/09">September 2011</a>.</p>
               </div>
                   <div class="l-full">
-                       <h3 
id="/news/2011/09/29/wicket-1.5.1-released.html">Wicket 1.5.1 released</h3>
+                       <h3 
id="/news/2011/09/29/wicket-1-5-1-released.html">Wicket 1.5.1 released</h3>
                       <small>29 Sep 2011</small>
                        <p>This is the first maintenance release of the Wicket 
1.5.x series. This release brings over 40 bug fixes and 15 improvements. 
Subversion tag Changelog To...
-                       <a 
href="/news/2011/09/29/wicket-1.5.1-released.html">more</a></li></p>
+                       <a 
href="/news/2011/09/29/wicket-1-5-1-released.html">more</a></li></p>
                   </div>
                   <div class="l-full">
-                       <h3 
id="/news/2011/09/07/wicket-1.5-released.html">Apache Wicket releases Wicket 
1.5</h3>
+                       <h3 
id="/news/2011/09/07/wicket-1-5-released.html">Apache Wicket releases Wicket 
1.5</h3>
                       <small>07 Sep 2011</small>
                        <p>The Apache Wicket team is proud to announce the 
immediate availability of the newest release of their component oriented open 
source Java web framework. Apache...
-                       <a 
href="/news/2011/09/07/wicket-1.5-released.html">more</a></li></p>
+                       <a 
href="/news/2011/09/07/wicket-1-5-released.html">more</a></li></p>
                   </div>
               <hr>
               <div class="l-first"></div>
@@ -100,10 +100,10 @@
                   <p>This section contains all news items published in <a 
href="/news/2011/08">August 2011</a>.</p>
               </div>
                   <div class="l-full">
-                       <h3 id="/news/2011/08/28/1.5-RC7-released.html">Wicket 
1.5-RC7 released</h3>
+                       <h3 id="/news/2011/08/28/1-5-rc7-released.html">Wicket 
1.5-RC7 released</h3>
                       <small>28 Aug 2011</small>
                        <p>The Wicket Team is proud to introduce the seventh 
Release Candidate in Wicket 1.5 series. See the changelog for the list of bug 
fixes and...
-                       <a 
href="/news/2011/08/28/1.5-RC7-released.html">more</a></li></p>
+                       <a 
href="/news/2011/08/28/1-5-rc7-released.html">more</a></li></p>
                   </div>
                   <div class="l-full">
                        <h3 
id="/news/2011/08/23/cve-2011-2712.html">CVE-2011-2712 - Apache Wicket XSS 
vulnerability</h3>
@@ -112,10 +112,10 @@
                        <a 
href="/news/2011/08/23/cve-2011-2712.html">more</a></li></p>
                   </div>
                   <div class="l-full">
-                       <h3 
id="/news/2011/08/09/wicket-1.4.18-released.html">Wicket 1.4.18 released</h3>
+                       <h3 
id="/news/2011/08/09/wicket-1-4-18-released.html">Wicket 1.4.18 released</h3>
                       <small>09 Aug 2011</small>
                        <p>This is eightteenth release of the Wicket 1.4.x 
series. This is primarily a minor bugfix release on the 1.4.x (stable) branch. 
Subversion tag Changelog To...
-                       <a 
href="/news/2011/08/09/wicket-1.4.18-released.html">more</a></li></p>
+                       <a 
href="/news/2011/08/09/wicket-1-4-18-released.html">more</a></li></p>
                   </div>
               <hr>
               <div class="l-first"></div>
@@ -124,10 +124,10 @@
                   <p>This section contains all news items published in <a 
href="/news/2011/06">June 2011</a>.</p>
               </div>
                   <div class="l-full">
-                       <h3 
id="/news/2011/06/25/wicket-1.5-RC5.1-released.html">Wicket 1.5-RC5.1 
released</h3>
+                       <h3 
id="/news/2011/06/25/wicket-1-5-rc5-1-released.html">Wicket 1.5-RC5.1 
released</h3>
                       <small>25 Jun 2011</small>
                        <p>The Wicket Team is proud to introduce the fourth 
Release Candidate in Wicket 1.5 series. See the changelog for the list of bug 
fixes and...
-                       <a 
href="/news/2011/06/25/wicket-1.5-RC5.1-released.html">more</a></li></p>
+                       <a 
href="/news/2011/06/25/wicket-1-5-rc5-1-released.html">more</a></li></p>
                   </div>
               <hr>
               <div class="l-first"></div>
@@ -142,10 +142,10 @@
                        <a 
href="/news/2011/05/17/wicket-cookbook-contest.html">more</a></li></p>
                   </div>
                   <div class="l-full">
-                       <h3 
id="/news/2011/05/11/wicket-1.5-RC4.2-released.html">Wicket 1.5-RC4.2 
released</h3>
+                       <h3 
id="/news/2011/05/11/wicket-1-5-rc4-2-released.html">Wicket 1.5-RC4.2 
released</h3>
                       <small>11 May 2011</small>
                        <p>The Wicket Team is proud to introduce the fourth 
Release Candidate in Wicket 1.5 series. See the changelog for the list of bug 
fixes and...
-                       <a 
href="/news/2011/05/11/wicket-1.5-RC4.2-released.html">more</a></li></p>
+                       <a 
href="/news/2011/05/11/wicket-1-5-rc4-2-released.html">more</a></li></p>
                   </div>
               <hr>
               <div class="l-first"></div>
@@ -154,16 +154,16 @@
                   <p>This section contains all news items published in <a 
href="/news/2011/04">April 2011</a>.</p>
               </div>
                   <div class="l-full">
-                       <h3 
id="/news/2011/04/02/wicket-1.5-RC3-released.html">Wicket 1.5-RC3 released</h3>
+                       <h3 
id="/news/2011/04/02/wicket-1-5-rc3-released.html">Wicket 1.5-RC3 released</h3>
                       <small>02 Apr 2011</small>
                        <p>The Wicket Team is proud to introduce the third 
Release Candidate in Wicket 1.5 series. See the changelog for the list of bug 
fixes and...
-                       <a 
href="/news/2011/04/02/wicket-1.5-RC3-released.html">more</a></li></p>
+                       <a 
href="/news/2011/04/02/wicket-1-5-rc3-released.html">more</a></li></p>
                   </div>
                   <div class="l-full">
-                       <h3 
id="/news/2011/04/02/wicket-1.4.17-released.html">Wicket 1.4.17 released</h3>
+                       <h3 
id="/news/2011/04/02/wicket-1-4-17-released.html">Wicket 1.4.17 released</h3>
                       <small>02 Apr 2011</small>
                        <p>This is seventeenth release of the Wicket 1.4.x 
series. This is primarily a minor bugfix release on the 1.4.x (stable) branch. 
Subversion tag Changelog To...
-                       <a 
href="/news/2011/04/02/wicket-1.4.17-released.html">more</a></li></p>
+                       <a 
href="/news/2011/04/02/wicket-1-4-17-released.html">more</a></li></p>
                   </div>
               <hr>
               <div class="l-first"></div>
@@ -184,16 +184,16 @@
                   <p>This section contains all news items published in <a 
href="/news/2011/02">February 2011</a>.</p>
               </div>
                   <div class="l-full">
-                       <h3 
id="/news/2011/02/25/wicket-1.5-rc2-released.html">Wicket 1.5-rc2 released</h3>
+                       <h3 
id="/news/2011/02/25/wicket-1-5-rc2-released.html">Wicket 1.5-rc2 released</h3>
                       <small>25 Feb 2011</small>
                        <p>The Wicket Team is proud to introduce the second 
Release Candidate in Wicket 1.5 series. See the changelog for the list of bug 
fixes and...
-                       <a 
href="/news/2011/02/25/wicket-1.5-rc2-released.html">more</a></li></p>
+                       <a 
href="/news/2011/02/25/wicket-1-5-rc2-released.html">more</a></li></p>
                   </div>
                   <div class="l-full">
-                       <h3 
id="/news/2011/02/25/wicket-1.4.16-released.html">Wicket 1.4.16 released</h3>
+                       <h3 
id="/news/2011/02/25/wicket-1-4-16-released.html">Wicket 1.4.16 released</h3>
                       <small>25 Feb 2011</small>
                        <p>This is sixteenth release of the Wicket 1.4.x 
series. This is primarily a minor bugfix release on the 1.4.x (stable) branch. 
Subversion tag Changelog To...
-                       <a 
href="/news/2011/02/25/wicket-1.4.16-released.html">more</a></li></p>
+                       <a 
href="/news/2011/02/25/wicket-1-4-16-released.html">more</a></li></p>
                   </div>
               <hr>
               <div class="l-first"></div>
@@ -202,10 +202,10 @@
                   <p>This section contains all news items published in <a 
href="/news/2011/01">January 2011</a>.</p>
               </div>
                   <div class="l-full">
-                       <h3 
id="/news/2011/01/22/wicket-1.5-RC1-released.html">Wicket 1.5-RC1 released</h3>
+                       <h3 
id="/news/2011/01/22/wicket-1-5-rc1-released.html">Wicket 1.5-RC1 released</h3>
                       <small>22 Jan 2011</small>
                        <p>The Wicket Team is proud to introduce the first 
Release Candidate in Wicket 1.5 series. The 1.5 series provides the following 
major improvements: * A...
-                       <a 
href="/news/2011/01/22/wicket-1.5-RC1-released.html">more</a></li></p>
+                       <a 
href="/news/2011/01/22/wicket-1-5-rc1-released.html">more</a></li></p>
                   </div>
               <hr>
               <div class="l-first"></div>
@@ -215,6 +215,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</a></li>
+            <li><a href="/news/2015/11">November</a></li>
             <li><a href="/news/2015/10">October</a></li>
             <li><a href="/news/2015/07">July</a></li>
             <li><a href="/news/2015/06">June</a></li>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2118a439/content/news/2012/01/23/wicket-1-5-4-released.html
----------------------------------------------------------------------
diff --git a/content/news/2012/01/23/wicket-1-5-4-released.html 
b/content/news/2012/01/23/wicket-1-5-4-released.html
new file mode 100644
index 0000000..7a7ebd6
--- /dev/null
+++ b/content/news/2012/01/23/wicket-1-5-4-released.html
@@ -0,0 +1,83 @@
+<!DOCTYPE html>
+<html>
+    <head>
+        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+        <meta charset="utf-8">
+        <title>Wicket 1.5.4 released | Apache Wicket</title>
+        <meta name="viewport" content="width=device-width, initial-scale=1" />
+
+        <link rel="shortcut icon" href="/favicon.ico" 
type="image/vnd.microsoft.icon" />
+        <link rel="stylesheet" href="/css/style.css" type="text/css" 
media="screen" />
+        <link 
href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" 
rel="stylesheet" />
+
+               <script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
+
+    </head>
+
+    <body class="">
+        <div class="header default">
+    <div class="l-container">
+<nav class="mainmenu">
+    <ul>
+               <!-- /start/quickstart.html || 
/news/2012/01/23/wicket-1-5-4-released.html -->
+       <li class=""><a href="/start/quickstart.html">Quick Start</a></li>
+               <!-- /start/download.html || 
/news/2012/01/23/wicket-1-5-4-released.html -->
+       <li class=""><a href="/start/download.html">Download</a></li>
+               <!-- /learn || /news/2012/01/23/wicket-1-5-4-released.html -->
+       <li class=""><a href="/learn">Documentation</a></li>
+               <!-- /help || /news/2012/01/23/wicket-1-5-4-released.html -->
+       <li class=""><a href="/help">Support</a></li>
+               <!-- /contribute || /news/2012/01/23/wicket-1-5-4-released.html 
-->
+       <li class=""><a href="/contribute">Contribute</a></li>
+               <!-- /community || /news/2012/01/23/wicket-1-5-4-released.html 
-->
+       <li class=""><a href="/community">Community</a></li>
+               <!-- /apache || /news/2012/01/23/wicket-1-5-4-released.html -->
+       <li class=""><a href="/apache">Apache</a></li>
+    </ul>
+</nav>
+        <div class="logo">
+    <a href="/"><img src="/img/logo-apachewicket-white.svg" alt="Apache 
Wicket"></a>
+</div>
+    </div>
+</div>
+<main>
+    <div class="l-container">
+        <header class="l-full preamble">
+            <h1>Wicket 1.5.4 released</h1>
+        </header>
+        <section class="l-one-third right">
+        </section>
+        <section class="l-two-third left">
+            <div class="l-full">
+    <p class="meta">23 Jan 2012</p>
+    <p>This is the fourth maintenance release of the Wicket 1.5.x series. This 
release brings over 68 bug fixes and improvements.</p>
+<ul>
+  <li><a 
href="http://git-wip-us.apache.org/repos/asf/wicket/repo?p=wicket.git;a=shortlog;h=refs/tags/release/wicket-1.5.4";>Git
 tag</a></li>
+  <li><a 
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;version=12319051";>Changelog</a></li>
+  <li>To use in Maven:</li>
+</ul>
+<figure class="highlight"><pre><code class="language-xml" 
data-lang="xml"><span class="nt">&lt;dependency&gt;</span>
+    <span class="nt">&lt;groupId&gt;</span>org.apache.wicket<span 
class="nt">&lt;/groupId&gt;</span>
+    <span class="nt">&lt;artifactId&gt;</span>wicket-core<span 
class="nt">&lt;/artifactId&gt;</span>
+    <span class="nt">&lt;version&gt;</span>1.5.4<span 
class="nt">&lt;/version&gt;</span>
+<span class="nt">&lt;/dependency&gt;</span></code></pre></figure>
+<ul>
+  <li>Download the <a 
href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.4";>full distribution</a> 
(including source)</li>
+</ul>
+</div>
+        </section>
+    </div>
+</main>
+        <footer class="l-container">
+            <div class="l-full">
+    <img height="60px" src="/img/asf_logo.gif" style="float:left">
+    Copyright © 2015 — The Apache Software Foundation. Apache Wicket,
+    Wicket, Apache, the Apache feather logo, and the Apache Wicket
+    project logo are trademarks of The Apache Software Foundation. All
+    other marks mentioned may be trademarks or registered trademarks of
+    their respective owners.
+</div>
+        </footer>
+    </body>
+
+</html>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2118a439/content/news/2012/01/23/wicket-1.5.4-released.html
----------------------------------------------------------------------
diff --git a/content/news/2012/01/23/wicket-1.5.4-released.html 
b/content/news/2012/01/23/wicket-1.5.4-released.html
deleted file mode 100644
index d19c382..0000000
--- a/content/news/2012/01/23/wicket-1.5.4-released.html
+++ /dev/null
@@ -1,83 +0,0 @@
-<!DOCTYPE html>
-<html>
-    <head>
-        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
-        <meta charset="utf-8">
-        <title>Wicket 1.5.4 released | Apache Wicket</title>
-        <meta name="viewport" content="width=device-width, initial-scale=1" />
-
-        <link rel="shortcut icon" href="/favicon.ico" 
type="image/vnd.microsoft.icon" />
-        <link rel="stylesheet" href="/css/style.css" type="text/css" 
media="screen" />
-        <link 
href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" 
rel="stylesheet" />
-
-               <script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
-
-    </head>
-
-    <body class="">
-        <div class="header default">
-    <div class="l-container">
-<nav class="mainmenu">
-    <ul>
-               <!-- /start/quickstart.html || 
/news/2012/01/23/wicket-1.5.4-released.html -->
-       <li class=""><a href="/start/quickstart.html">Quick Start</a></li>
-               <!-- /start/download.html || 
/news/2012/01/23/wicket-1.5.4-released.html -->
-       <li class=""><a href="/start/download.html">Download</a></li>
-               <!-- /learn || /news/2012/01/23/wicket-1.5.4-released.html -->
-       <li class=""><a href="/learn">Documentation</a></li>
-               <!-- /help || /news/2012/01/23/wicket-1.5.4-released.html -->
-       <li class=""><a href="/help">Support</a></li>
-               <!-- /contribute || /news/2012/01/23/wicket-1.5.4-released.html 
-->
-       <li class=""><a href="/contribute">Contribute</a></li>
-               <!-- /community || /news/2012/01/23/wicket-1.5.4-released.html 
-->
-       <li class=""><a href="/community">Community</a></li>
-               <!-- /apache || /news/2012/01/23/wicket-1.5.4-released.html -->
-       <li class=""><a href="/apache">Apache</a></li>
-    </ul>
-</nav>
-        <div class="logo">
-    <a href="/"><img src="/img/logo-apachewicket-white.svg" alt="Apache 
Wicket"></a>
-</div>
-    </div>
-</div>
-<main>
-    <div class="l-container">
-        <header class="l-full preamble">
-            <h1>Wicket 1.5.4 released</h1>
-        </header>
-        <section class="l-one-third right">
-        </section>
-        <section class="l-two-third left">
-            <div class="l-full">
-    <p class="meta">23 Jan 2012</p>
-    <p>This is the fourth maintenance release of the Wicket 1.5.x series. This 
release brings over 68 bug fixes and improvements.</p>
-<ul>
-  <li><a 
href="http://git-wip-us.apache.org/repos/asf/wicket/repo?p=wicket.git;a=shortlog;h=refs/tags/release/wicket-1.5.4";>Git
 tag</a></li>
-  <li><a 
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;version=12319051";>Changelog</a></li>
-  <li>To use in Maven:</li>
-</ul>
-<div class="highlight"><pre><code class="language-xml" data-lang="xml"><span 
class="nt">&lt;dependency&gt;</span>
-    <span class="nt">&lt;groupId&gt;</span>org.apache.wicket<span 
class="nt">&lt;/groupId&gt;</span>
-    <span class="nt">&lt;artifactId&gt;</span>wicket-core<span 
class="nt">&lt;/artifactId&gt;</span>
-    <span class="nt">&lt;version&gt;</span>1.5.4<span 
class="nt">&lt;/version&gt;</span>
-<span class="nt">&lt;/dependency&gt;</span></code></pre></div>
-<ul>
-  <li>Download the <a 
href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.4";>full distribution</a> 
(including source)</li>
-</ul>
-</div>
-        </section>
-    </div>
-</main>
-        <footer class="l-container">
-            <div class="l-full">
-    <img height="60px" src="/img/asf_logo.gif" style="float:left">
-    Copyright © 2015 — The Apache Software Foundation. Apache Wicket,
-    Wicket, Apache, the Apache feather logo, and the Apache Wicket
-    project logo are trademarks of The Apache Software Foundation. All
-    other marks mentioned may be trademarks or registered trademarks of
-    their respective owners.
-</div>
-        </footer>
-    </body>
-
-</html>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2118a439/content/news/2012/01/index.html
----------------------------------------------------------------------
diff --git a/content/news/2012/01/index.html b/content/news/2012/01/index.html
index 48fee2e..803e5a7 100644
--- a/content/news/2012/01/index.html
+++ b/content/news/2012/01/index.html
@@ -55,15 +55,16 @@
   <li><a 
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;version=12319051";>Changelog</a></li>
   <li>To use in Maven:</li>
 </ul>
-<div class="highlight"><pre><code class="language-xml" data-lang="xml"><span 
class="nt">&lt;dependency&gt;</span>
-    <span class="nt">&lt;groupId&gt;</span>org.apache.wi...</code></pre></div>
-       <a href="/news/2012/01/23/wicket-1.5.4-released.html">more</a></li>
+<figure class="highlight"><pre><code class="language-xml" 
data-lang="xml"><span class="nt">&lt;dependency&gt;</span>
+    <span 
class="nt">&lt;groupId&gt;</span>org.apache.wi...</code></pre></figure>
+       <a href="/news/2012/01/23/wicket-1-5-4-released.html">more</a></li>
 </div>
         </div>
         <div class="l-one-third">
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</a></li>
+            <li><a href="/news/2015/11">November</a></li>
             <li><a href="/news/2015/10">October</a></li>
             <li><a href="/news/2015/07">July</a></li>
             <li><a href="/news/2015/06">June</a></li>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2118a439/content/news/2012/03/12/wicket-1-4-20-released.html
----------------------------------------------------------------------
diff --git a/content/news/2012/03/12/wicket-1-4-20-released.html 
b/content/news/2012/03/12/wicket-1-4-20-released.html
new file mode 100644
index 0000000..50d344d
--- /dev/null
+++ b/content/news/2012/03/12/wicket-1-4-20-released.html
@@ -0,0 +1,83 @@
+<!DOCTYPE html>
+<html>
+    <head>
+        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+        <meta charset="utf-8">
+        <title>Wicket 1.4.20 released | Apache Wicket</title>
+        <meta name="viewport" content="width=device-width, initial-scale=1" />
+
+        <link rel="shortcut icon" href="/favicon.ico" 
type="image/vnd.microsoft.icon" />
+        <link rel="stylesheet" href="/css/style.css" type="text/css" 
media="screen" />
+        <link 
href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" 
rel="stylesheet" />
+
+               <script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
+
+    </head>
+
+    <body class="">
+        <div class="header default">
+    <div class="l-container">
+<nav class="mainmenu">
+    <ul>
+               <!-- /start/quickstart.html || 
/news/2012/03/12/wicket-1-4-20-released.html -->
+       <li class=""><a href="/start/quickstart.html">Quick Start</a></li>
+               <!-- /start/download.html || 
/news/2012/03/12/wicket-1-4-20-released.html -->
+       <li class=""><a href="/start/download.html">Download</a></li>
+               <!-- /learn || /news/2012/03/12/wicket-1-4-20-released.html -->
+       <li class=""><a href="/learn">Documentation</a></li>
+               <!-- /help || /news/2012/03/12/wicket-1-4-20-released.html -->
+       <li class=""><a href="/help">Support</a></li>
+               <!-- /contribute || 
/news/2012/03/12/wicket-1-4-20-released.html -->
+       <li class=""><a href="/contribute">Contribute</a></li>
+               <!-- /community || /news/2012/03/12/wicket-1-4-20-released.html 
-->
+       <li class=""><a href="/community">Community</a></li>
+               <!-- /apache || /news/2012/03/12/wicket-1-4-20-released.html -->
+       <li class=""><a href="/apache">Apache</a></li>
+    </ul>
+</nav>
+        <div class="logo">
+    <a href="/"><img src="/img/logo-apachewicket-white.svg" alt="Apache 
Wicket"></a>
+</div>
+    </div>
+</div>
+<main>
+    <div class="l-container">
+        <header class="l-full preamble">
+            <h1>Wicket 1.4.20 released</h1>
+        </header>
+        <section class="l-one-third right">
+        </section>
+        <section class="l-two-third left">
+            <div class="l-full">
+    <p class="meta">12 Mar 2012</p>
+    <p>This is twentieth release of the Wicket 1.4.x series. This is primarily 
a minor bugfix release on the 1.4.x (stable) branch.</p>
+<ul>
+  <li><a 
href="http://git-wip-us.apache.org/repos/asf/wicket/repo?p=wicket.git;a=shortlog;h=refs/tags/release/wicket-1.4.20";>Subversion
 tag</a></li>
+  <li><a 
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;version=12318545";>Changelog</a></li>
+  <li>To use in Maven:</li>
+</ul>
+<figure class="highlight"><pre><code class="language-xml" 
data-lang="xml"><span class="nt">&lt;dependency&gt;</span>
+    <span class="nt">&lt;groupId&gt;</span>org.apache.wicket<span 
class="nt">&lt;/groupId&gt;</span>
+    <span class="nt">&lt;artifactId&gt;</span>wicket<span 
class="nt">&lt;/artifactId&gt;</span>
+    <span class="nt">&lt;version&gt;</span>1.4.20<span 
class="nt">&lt;/version&gt;</span>
+<span class="nt">&lt;/dependency&gt;</span></code></pre></figure>
+<ul>
+  <li>Download the <a 
href="http://www.apache.org/dyn/closer.cgi/wicket/1.4.20";>full distribution</a> 
(including source)</li>
+</ul>
+</div>
+        </section>
+    </div>
+</main>
+        <footer class="l-container">
+            <div class="l-full">
+    <img height="60px" src="/img/asf_logo.gif" style="float:left">
+    Copyright © 2015 — The Apache Software Foundation. Apache Wicket,
+    Wicket, Apache, the Apache feather logo, and the Apache Wicket
+    project logo are trademarks of The Apache Software Foundation. All
+    other marks mentioned may be trademarks or registered trademarks of
+    their respective owners.
+</div>
+        </footer>
+    </body>
+
+</html>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2118a439/content/news/2012/03/12/wicket-1-5-5-released.html
----------------------------------------------------------------------
diff --git a/content/news/2012/03/12/wicket-1-5-5-released.html 
b/content/news/2012/03/12/wicket-1-5-5-released.html
new file mode 100644
index 0000000..af4d62d
--- /dev/null
+++ b/content/news/2012/03/12/wicket-1-5-5-released.html
@@ -0,0 +1,83 @@
+<!DOCTYPE html>
+<html>
+    <head>
+        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+        <meta charset="utf-8">
+        <title>Wicket 1.5.5 released | Apache Wicket</title>
+        <meta name="viewport" content="width=device-width, initial-scale=1" />
+
+        <link rel="shortcut icon" href="/favicon.ico" 
type="image/vnd.microsoft.icon" />
+        <link rel="stylesheet" href="/css/style.css" type="text/css" 
media="screen" />
+        <link 
href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" 
rel="stylesheet" />
+
+               <script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
+
+    </head>
+
+    <body class="">
+        <div class="header default">
+    <div class="l-container">
+<nav class="mainmenu">
+    <ul>
+               <!-- /start/quickstart.html || 
/news/2012/03/12/wicket-1-5-5-released.html -->
+       <li class=""><a href="/start/quickstart.html">Quick Start</a></li>
+               <!-- /start/download.html || 
/news/2012/03/12/wicket-1-5-5-released.html -->
+       <li class=""><a href="/start/download.html">Download</a></li>
+               <!-- /learn || /news/2012/03/12/wicket-1-5-5-released.html -->
+       <li class=""><a href="/learn">Documentation</a></li>
+               <!-- /help || /news/2012/03/12/wicket-1-5-5-released.html -->
+       <li class=""><a href="/help">Support</a></li>
+               <!-- /contribute || /news/2012/03/12/wicket-1-5-5-released.html 
-->
+       <li class=""><a href="/contribute">Contribute</a></li>
+               <!-- /community || /news/2012/03/12/wicket-1-5-5-released.html 
-->
+       <li class=""><a href="/community">Community</a></li>
+               <!-- /apache || /news/2012/03/12/wicket-1-5-5-released.html -->
+       <li class=""><a href="/apache">Apache</a></li>
+    </ul>
+</nav>
+        <div class="logo">
+    <a href="/"><img src="/img/logo-apachewicket-white.svg" alt="Apache 
Wicket"></a>
+</div>
+    </div>
+</div>
+<main>
+    <div class="l-container">
+        <header class="l-full preamble">
+            <h1>Wicket 1.5.5 released</h1>
+        </header>
+        <section class="l-one-third right">
+        </section>
+        <section class="l-two-third left">
+            <div class="l-full">
+    <p class="meta">12 Mar 2012</p>
+    <p>This is the fifth maintenance release of the Wicket 1.5.x series. This 
release brings over 50 bug fixes and improvements.</p>
+<ul>
+  <li><a 
href="http://git-wip-us.apache.org/repos/asf/wicket/repo?p=wicket.git;a=shortlog;h=refs/tags/release/wicket-1.5.5";>Git
 tag</a></li>
+  <li><a 
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;version=12319052";>Changelog</a></li>
+  <li>To use in Maven:</li>
+</ul>
+<figure class="highlight"><pre><code class="language-xml" 
data-lang="xml"><span class="nt">&lt;dependency&gt;</span>
+    <span class="nt">&lt;groupId&gt;</span>org.apache.wicket<span 
class="nt">&lt;/groupId&gt;</span>
+    <span class="nt">&lt;artifactId&gt;</span>wicket-core<span 
class="nt">&lt;/artifactId&gt;</span>
+    <span class="nt">&lt;version&gt;</span>1.5.5<span 
class="nt">&lt;/version&gt;</span>
+<span class="nt">&lt;/dependency&gt;</span></code></pre></figure>
+<ul>
+  <li>Download the <a 
href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.5";>full distribution</a> 
(including source)</li>
+</ul>
+</div>
+        </section>
+    </div>
+</main>
+        <footer class="l-container">
+            <div class="l-full">
+    <img height="60px" src="/img/asf_logo.gif" style="float:left">
+    Copyright © 2015 — The Apache Software Foundation. Apache Wicket,
+    Wicket, Apache, the Apache feather logo, and the Apache Wicket
+    project logo are trademarks of The Apache Software Foundation. All
+    other marks mentioned may be trademarks or registered trademarks of
+    their respective owners.
+</div>
+        </footer>
+    </body>
+
+</html>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2118a439/content/news/2012/03/12/wicket-1.4.20-released.html
----------------------------------------------------------------------
diff --git a/content/news/2012/03/12/wicket-1.4.20-released.html 
b/content/news/2012/03/12/wicket-1.4.20-released.html
deleted file mode 100644
index d30de14..0000000
--- a/content/news/2012/03/12/wicket-1.4.20-released.html
+++ /dev/null
@@ -1,83 +0,0 @@
-<!DOCTYPE html>
-<html>
-    <head>
-        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
-        <meta charset="utf-8">
-        <title>Wicket 1.4.20 released | Apache Wicket</title>
-        <meta name="viewport" content="width=device-width, initial-scale=1" />
-
-        <link rel="shortcut icon" href="/favicon.ico" 
type="image/vnd.microsoft.icon" />
-        <link rel="stylesheet" href="/css/style.css" type="text/css" 
media="screen" />
-        <link 
href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" 
rel="stylesheet" />
-
-               <script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
-
-    </head>
-
-    <body class="">
-        <div class="header default">
-    <div class="l-container">
-<nav class="mainmenu">
-    <ul>
-               <!-- /start/quickstart.html || 
/news/2012/03/12/wicket-1.4.20-released.html -->
-       <li class=""><a href="/start/quickstart.html">Quick Start</a></li>
-               <!-- /start/download.html || 
/news/2012/03/12/wicket-1.4.20-released.html -->
-       <li class=""><a href="/start/download.html">Download</a></li>
-               <!-- /learn || /news/2012/03/12/wicket-1.4.20-released.html -->
-       <li class=""><a href="/learn">Documentation</a></li>
-               <!-- /help || /news/2012/03/12/wicket-1.4.20-released.html -->
-       <li class=""><a href="/help">Support</a></li>
-               <!-- /contribute || 
/news/2012/03/12/wicket-1.4.20-released.html -->
-       <li class=""><a href="/contribute">Contribute</a></li>
-               <!-- /community || /news/2012/03/12/wicket-1.4.20-released.html 
-->
-       <li class=""><a href="/community">Community</a></li>
-               <!-- /apache || /news/2012/03/12/wicket-1.4.20-released.html -->
-       <li class=""><a href="/apache">Apache</a></li>
-    </ul>
-</nav>
-        <div class="logo">
-    <a href="/"><img src="/img/logo-apachewicket-white.svg" alt="Apache 
Wicket"></a>
-</div>
-    </div>
-</div>
-<main>
-    <div class="l-container">
-        <header class="l-full preamble">
-            <h1>Wicket 1.4.20 released</h1>
-        </header>
-        <section class="l-one-third right">
-        </section>
-        <section class="l-two-third left">
-            <div class="l-full">
-    <p class="meta">12 Mar 2012</p>
-    <p>This is twentieth release of the Wicket 1.4.x series. This is primarily 
a minor bugfix release on the 1.4.x (stable) branch.</p>
-<ul>
-  <li><a 
href="http://git-wip-us.apache.org/repos/asf/wicket/repo?p=wicket.git;a=shortlog;h=refs/tags/release/wicket-1.4.20";>Subversion
 tag</a></li>
-  <li><a 
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;version=12318545";>Changelog</a></li>
-  <li>To use in Maven:</li>
-</ul>
-<div class="highlight"><pre><code class="language-xml" data-lang="xml"><span 
class="nt">&lt;dependency&gt;</span>
-    <span class="nt">&lt;groupId&gt;</span>org.apache.wicket<span 
class="nt">&lt;/groupId&gt;</span>
-    <span class="nt">&lt;artifactId&gt;</span>wicket<span 
class="nt">&lt;/artifactId&gt;</span>
-    <span class="nt">&lt;version&gt;</span>1.4.20<span 
class="nt">&lt;/version&gt;</span>
-<span class="nt">&lt;/dependency&gt;</span></code></pre></div>
-<ul>
-  <li>Download the <a 
href="http://www.apache.org/dyn/closer.cgi/wicket/1.4.20";>full distribution</a> 
(including source)</li>
-</ul>
-</div>
-        </section>
-    </div>
-</main>
-        <footer class="l-container">
-            <div class="l-full">
-    <img height="60px" src="/img/asf_logo.gif" style="float:left">
-    Copyright © 2015 — The Apache Software Foundation. Apache Wicket,
-    Wicket, Apache, the Apache feather logo, and the Apache Wicket
-    project logo are trademarks of The Apache Software Foundation. All
-    other marks mentioned may be trademarks or registered trademarks of
-    their respective owners.
-</div>
-        </footer>
-    </body>
-
-</html>

Reply via email to