Site regenerated for Wicket 7.1.0
diff --git a/_config.yml b/_config.yml
index e211bdb..88a6c66 100644
--- a/_config.yml
+++ b/_config.yml
@@ -15,15 +15,15 @@
 sass:
     sass_dir: _sass
 wicket:
-  version:    7.0.0
+  version:    7.1.0
   version_80: 8.0.0-SNAPSHOT
-  version_70: 7.0.0
+  version_70: 7.1.0
   version_60: 6.20.0
-  version_15: 1.5.13
+  version_15: 1.5.14
   version_14: 1.4.23
   version_13: 1.3.7
   released:   2015-07-10
-  versions:   [6.20.0, 1.5.13, 1.4.23, 7.0.0, 1.5-SNAPSHOT, 6.21.0-SNAPSHOT, 7.1.0-SNAPSHOT]
+  versions:   [6.20.0, 1.5.14, 1.4.23, 7.1.0, 1.5-SNAPSHOT, 6.21.0-SNAPSHOT, 7.2.0-SNAPSHOT]
 
 navigation:
 - id: start
diff --git a/_posts/2015/2015-10-24-wicket-1.5.14-released.md b/_posts/2015/2015-10-24-wicket-1.5.14-released.md
new file mode 100644
index 0000000..bad759f
--- /dev/null
+++ b/_posts/2015/2015-10-24-wicket-1.5.14-released.md
@@ -0,0 +1,30 @@
+---
+layout: post
+title: Wicket 1.5.14 released
+---
+
+This is the fourteenth maintenance release of the Wicket 1.5.x series. This release brings over 4 bug fixes and 1 improvement.
+
+
+    CHANGELOG for 1.5.14:
+
+** Bug
+
+    * [WICKET-5838] - Last-modified header of external markup is ignored
+    * [WICKET-5927] - Velocity remote code execution
+    * [WICKET-6000] - Wicket 1.5 DTD link on website does not point to valid location
+    * [WICKET-6005] - WicketRuntimeException from AjaxPagingNavigator#onAjaxEvent
+
+** Improvement
+
+    * [WICKET-5974] - Change AjaxPagingNavigator#onAjaxEvent() to only consider parent components that have setOutputMarkupId(true)
+
+* To use in Maven:
+{% highlight xml %}
+<dependency>
+    <groupId>org.apache.wicket</groupId>
+    <artifactId>wicket-core</artifactId>
+    <version>1.5.14</version>
+</dependency>
+{% endhighlight %}
+* Download the [full distribution](http://www.apache.org/dyn/closer.cgi/wicket/1.5.14) (including sources)
diff --git a/_posts/2015/2015-10-25-wicket-7.1.0-released.md b/_posts/2015/2015-10-25-wicket-7.1.0-released.md
new file mode 100644
index 0000000..ac3b608
--- /dev/null
+++ b/_posts/2015/2015-10-25-wicket-7.1.0-released.md
@@ -0,0 +1,131 @@
+The Apache Wicket PMC is proud to announce Apache Wicket 7.1.0!
+
+This release marks another minor release of Wicket 7. We
+use semantic versioning for the development of Wicket, and as such no
+API breaks are present breaks are present in this release compared to
+7.0.0.
+
+New and noteworthy
+------------------
+
+Significant improvement in performance while adding components to
+the component hierarchy. There was a regression in performance
+introduced by component queuing. The algorithm checked if there were
+any components to be dequeued, but did so in a O(n^2) way. This was
+fixed.
+
+Upon further investigation we found that adding components is O(n^2)
+since 1.3 (when memory was scarce and expensive). We fixed that and
+made it roughly O(1).
+
+This means that when you have a page with 10k components on it, the
+adding won't slow you down any more, and the new way of adding
+components will scrape a few ms off your overall average response time.
+
+This release also fixes several bugs where head sections were not rendered,
+i18n JavaScript resources could not be loaded, Range: header parsing and
+a couple of component queuing issues.
+
+Using this release
+------------------
+
+With Apache Maven update your dependency to (and don't forget to
+update any other dependencies on Wicket projects to the same version):
+
+<dependency>
+    <groupId>org.apache.wicket</groupId>
+    <artifactId>wicket-core</artifactId>
+    <version>7.1.0</version>
+</dependency>
+
+Or download and build the distribution yourself, or use our
+convenience binary package
+
+ * Source: http://www.apache.org/dyn/closer.cgi/wicket/7.1.0
+ * Binary: http://www.apache.org/dyn/closer.cgi/wicket/7.1.0/binaries
+
+Upgrading from earlier versions
+-------------------------------
+
+If you upgrade from 7.y.z this release is a drop in replacement. If
+you come from a version prior to 7.0.0, please read our Wicket 7
+migration guide found at
+
+ * http://s.apache.org/wicket7migrate
+
+Have fun!
+
+— The Wicket team
+
+
+========================================================================
+
+The signatures for the source release artefacts:
+
+    
+Signature for apache-wicket-7.1.0.zip:
+
+    -----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iEYEABECAAYFAlYldl4ACgkQJBX8W/xy/UWlUgCbBKvmDioyZceDBykv52eWYNai
+b9AAn2AUlg5FotVMaQtOdtQsQfuy4X/D
+=Vuhh
+-----END PGP SIGNATURE-----
+    
+Signature for apache-wicket-7.1.0.tar.gz:
+
+    -----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iEYEABECAAYFAlYldl4ACgkQJBX8W/xy/UXNzgCgtL4H8bRjZewltF1BX7H3F+Ph
+6KUAnA0k2BVi5E//uw9RLm7MklYJOdV+
+=Za2v
+-----END PGP SIGNATURE-----
+    
+========================================================================
+
+    CHANGELOG for 7.1.0:
+    
+** Bug
+
+    * [WICKET-5882] - AutoComplete suggestion list disappear when I click on autoComplete scrollbar in IE
+    * [WICKET-5941] - Headers not rendered for components inside TransparentWebMarkupContainer on ajax update
+    * [WICKET-5959] - HTML input placeholder text breaks AutoCompleteTextField in IE11
+    * [WICKET-5960] - Page header isn't rendered for pages where URL has changed during render
+    * [WICKET-5964] - Queuing a component within an enclosure
+    * [WICKET-5965] - Queuing a component in head
+    * [WICKET-5966] - ResourceUtils.getLocaleFromFilename can't handle minimized resources well
+    * [WICKET-5967] - Unable to load i18n minified js
+    * [WICKET-5968] - CachingResourceLocator lookup key doesn't take strict into account
+    * [WICKET-5970] - UrlRenderer does not render fragments
+    * [WICKET-5973] - IllegalArgumentException 'bytes' cannot be negative. on opening Inspector
+    * [WICKET-5975] - AjaxFallbackOrderByBorder wicketOrder[Up|Down|None] class missing
+    * [WICKET-5978] - LazyInitProxyFactory fills permgen space
+    * [WICKET-5980] - When using Servlet 3.0 filter Wicket calculates filter path wrong
+    * [WICKET-5981] - Significant Performance Degradation From Wicket 6.20.0 to Wicket 7.0.0
+    * [WICKET-5983] - O(n^2) complexity in MarkupContainer.add
+    * [WICKET-5988] - WICKET-5981 breaks forms inside borders
+    * [WICKET-5989] - BaseWicketTester#startComponentInPage fails for pages with <wicket:header-items></wicket:header> placeholder
+    * [WICKET-5993] - AjaxButton - image is not shown even though type="image" is in html-template 
+    * [WICKET-5994] - Mounted TemplateResourceReference throws  org.apache.wicket.WicketRuntimeException when https is used
+    * [WICKET-5995] - "Range" header parsing is broken
+    * [WICKET-5996] - Mounted packages throw IllegalArgumentException when visiting base package url.
+    * [WICKET-5997] - Compatibility problem with Websphere liberty profile
+    * [WICKET-5999] - AjaxFormValidatingBehavior not updates initially hidden feedback component
+    * [WICKET-6005] - WicketRuntimeException from AjaxPagingNavigator#onAjaxEvent
+
+** Improvement
+
+    * [WICKET-5948] - wicket-ajax.js probably doesn't traverse the children of <div> or <span>
+    * [WICKET-5971] - Code cleanup in ServletWebResponse
+    * [WICKET-5974] - Change AjaxPagingNavigator#onAjaxEvent() to only consider parent components that have setOutputMarkupId(true)
+    * [WICKET-5976] - Improve the documentation of FeedbackMessages first(int level)
+    * [WICKET-5984] - ReplaceHandlerException lacks an accessor for the replacement RequestHandler
+    * [WICKET-5986] - NumberTextField<N> should use Models for minimum, maximum and step
+
+** Task
+
+    * [WICKET-5951] - Upgrade Atmosphere to 2.2.8
+
+
diff --git a/content/atom.xml b/content/atom.xml
index 3739f7d..7315015 100644
--- a/content/atom.xml
+++ b/content/atom.xml
@@ -3,7 +3,7 @@
     <title>Apache Wicket</title>
     <link href="http://wicket.apache.org/atom.xml" rel="self"/>
     <link href="http://wicket.apache.org/"/>
-    <updated>2015-10-11T14:21:23+02:00</updated>
+    <updated>2015-10-26T22:39:43+01:00</updated>
     <id>http://wicket.apache.org/</id>
     <author>
         <name>Apache Wicket</name>
@@ -12,6 +12,186 @@
  
 
     <entry>
+        <title>Wicket 7.1.0 Released</title>
+        <link href="http://wicket.apache.org/news/2015/10/25/wicket-7.1.0-released.html"/>
+        <updated>2015-10-25T00:00:00+02:00</updated>
+        <id>http://wicket.apache.org/news/2015/10/25/wicket-7.1.0-released</id>
+        <content type="html">&lt;p&gt;The Apache Wicket PMC is proud to announce Apache Wicket 7.1.0!&lt;/p&gt;
+
+&lt;p&gt;This release marks another minor release of Wicket 7. We
+use semantic versioning for the development of Wicket, and as such no
+API breaks are present breaks are present in this release compared to
+7.0.0.&lt;/p&gt;
+
+&lt;h2 id=&quot;new-and-noteworthy&quot;&gt;New and noteworthy&lt;/h2&gt;
+
+&lt;p&gt;Significant improvement in performance while adding components to
+the component hierarchy. There was a regression in performance
+introduced by component queuing. The algorithm checked if there were
+any components to be dequeued, but did so in a O(n^2) way. This was
+fixed.&lt;/p&gt;
+
+&lt;p&gt;Upon further investigation we found that adding components is O(n^2)
+since 1.3 (when memory was scarce and expensive). We fixed that and
+made it roughly O(1).&lt;/p&gt;
+
+&lt;p&gt;This means that when you have a page with 10k components on it, the
+adding won’t slow you down any more, and the new way of adding
+components will scrape a few ms off your overall average response time.&lt;/p&gt;
+
+&lt;p&gt;This release also fixes several bugs where head sections were not rendered,
+i18n JavaScript resources could not be loaded, Range: header parsing and
+a couple of component queuing issues.&lt;/p&gt;
+
+&lt;h2 id=&quot;using-this-release&quot;&gt;Using this release&lt;/h2&gt;
+
+&lt;p&gt;With Apache Maven update your dependency to (and don’t forget to
+update any other dependencies on Wicket projects to the same version):&lt;/p&gt;
+
+&lt;dependency&gt;
+    &lt;groupid&gt;org.apache.wicket&lt;/groupid&gt;
+    &lt;artifactid&gt;wicket-core&lt;/artifactid&gt;
+    &lt;version&gt;7.1.0&lt;/version&gt;
+&lt;/dependency&gt;
+
+&lt;p&gt;Or download and build the distribution yourself, or use our
+convenience binary package&lt;/p&gt;
+
+&lt;ul&gt;
+  &lt;li&gt;Source: http://www.apache.org/dyn/closer.cgi/wicket/7.1.0&lt;/li&gt;
+  &lt;li&gt;Binary: http://www.apache.org/dyn/closer.cgi/wicket/7.1.0/binaries&lt;/li&gt;
+&lt;/ul&gt;
+
+&lt;h2 id=&quot;upgrading-from-earlier-versions&quot;&gt;Upgrading from earlier versions&lt;/h2&gt;
+
+&lt;p&gt;If you upgrade from 7.y.z this release is a drop in replacement. If
+you come from a version prior to 7.0.0, please read our Wicket 7
+migration guide found at&lt;/p&gt;
+
+&lt;ul&gt;
+  &lt;li&gt;http://s.apache.org/wicket7migrate&lt;/li&gt;
+&lt;/ul&gt;
+
+&lt;p&gt;Have fun!&lt;/p&gt;
+
+&lt;p&gt;— The Wicket team&lt;/p&gt;
+
+&lt;p&gt;========================================================================&lt;/p&gt;
+
+&lt;p&gt;The signatures for the source release artefacts:&lt;/p&gt;
+
+&lt;p&gt;Signature for apache-wicket-7.1.0.zip:&lt;/p&gt;
+
+&lt;pre&gt;&lt;code&gt;-----BEGIN PGP SIGNATURE----- Comment: GPGTools - https://gpgtools.org
+&lt;/code&gt;&lt;/pre&gt;
+
+&lt;p&gt;iEYEABECAAYFAlYldl4ACgkQJBX8W/xy/UWlUgCbBKvmDioyZceDBykv52eWYNai
+b9AAn2AUlg5FotVMaQtOdtQsQfuy4X/D
+=Vuhh
+—–END PGP SIGNATURE—–&lt;/p&gt;
+
+&lt;p&gt;Signature for apache-wicket-7.1.0.tar.gz:&lt;/p&gt;
+
+&lt;pre&gt;&lt;code&gt;-----BEGIN PGP SIGNATURE----- Comment: GPGTools - https://gpgtools.org
+&lt;/code&gt;&lt;/pre&gt;
+
+&lt;p&gt;iEYEABECAAYFAlYldl4ACgkQJBX8W/xy/UXNzgCgtL4H8bRjZewltF1BX7H3F+Ph
+6KUAnA0k2BVi5E//uw9RLm7MklYJOdV+
+=Za2v
+—–END PGP SIGNATURE—–&lt;/p&gt;
+
+&lt;p&gt;========================================================================&lt;/p&gt;
+
+&lt;pre&gt;&lt;code&gt;CHANGELOG for 7.1.0:
+&lt;/code&gt;&lt;/pre&gt;
+
+&lt;p&gt;** Bug&lt;/p&gt;
+
+&lt;pre&gt;&lt;code&gt;* [WICKET-5882] - AutoComplete suggestion list disappear when I click on autoComplete scrollbar in IE
+* [WICKET-5941] - Headers not rendered for components inside TransparentWebMarkupContainer on ajax update
+* [WICKET-5959] - HTML input placeholder text breaks AutoCompleteTextField in IE11
+* [WICKET-5960] - Page header isn't rendered for pages where URL has changed during render
+* [WICKET-5964] - Queuing a component within an enclosure
+* [WICKET-5965] - Queuing a component in head
+* [WICKET-5966] - ResourceUtils.getLocaleFromFilename can't handle minimized resources well
+* [WICKET-5967] - Unable to load i18n minified js
+* [WICKET-5968] - CachingResourceLocator lookup key doesn't take strict into account
+* [WICKET-5970] - UrlRenderer does not render fragments
+* [WICKET-5973] - IllegalArgumentException 'bytes' cannot be negative. on opening Inspector
+* [WICKET-5975] - AjaxFallbackOrderByBorder wicketOrder[Up|Down|None] class missing
+* [WICKET-5978] - LazyInitProxyFactory fills permgen space
+* [WICKET-5980] - When using Servlet 3.0 filter Wicket calculates filter path wrong
+* [WICKET-5981] - Significant Performance Degradation From Wicket 6.20.0 to Wicket 7.0.0
+* [WICKET-5983] - O(n^2) complexity in MarkupContainer.add
+* [WICKET-5988] - WICKET-5981 breaks forms inside borders
+* [WICKET-5989] - BaseWicketTester#startComponentInPage fails for pages with &amp;lt;wicket:header-items&amp;gt;&amp;lt;/wicket:header&amp;gt; placeholder
+* [WICKET-5993] - AjaxButton - image is not shown even though type=&quot;image&quot; is in html-template 
+* [WICKET-5994] - Mounted TemplateResourceReference throws  org.apache.wicket.WicketRuntimeException when https is used
+* [WICKET-5995] - &quot;Range&quot; header parsing is broken
+* [WICKET-5996] - Mounted packages throw IllegalArgumentException when visiting base package url.
+* [WICKET-5997] - Compatibility problem with Websphere liberty profile
+* [WICKET-5999] - AjaxFormValidatingBehavior not updates initially hidden feedback component
+* [WICKET-6005] - WicketRuntimeException from AjaxPagingNavigator#onAjaxEvent
+&lt;/code&gt;&lt;/pre&gt;
+
+&lt;p&gt;** Improvement&lt;/p&gt;
+
+&lt;pre&gt;&lt;code&gt;* [WICKET-5948] - wicket-ajax.js probably doesn't traverse the children of &amp;lt;div&amp;gt; or &amp;lt;span&amp;gt;
+* [WICKET-5971] - Code cleanup in ServletWebResponse
+* [WICKET-5974] - Change AjaxPagingNavigator#onAjaxEvent() to only consider parent components that have setOutputMarkupId(true)
+* [WICKET-5976] - Improve the documentation of FeedbackMessages first(int level)
+* [WICKET-5984] - ReplaceHandlerException lacks an accessor for the replacement RequestHandler
+* [WICKET-5986] - NumberTextField&amp;lt;N&amp;gt; should use Models for minimum, maximum and step
+&lt;/code&gt;&lt;/pre&gt;
+
+&lt;p&gt;** Task&lt;/p&gt;
+
+&lt;pre&gt;&lt;code&gt;* [WICKET-5951] - Upgrade Atmosphere to 2.2.8
+&lt;/code&gt;&lt;/pre&gt;
+
+</content>
+    </entry>
+
+    <entry>
+        <title>Wicket 1.5.14 released</title>
+        <link href="http://wicket.apache.org/news/2015/10/24/wicket-1.5.14-released.html"/>
+        <updated>2015-10-24T00:00:00+02:00</updated>
+        <id>http://wicket.apache.org/news/2015/10/24/wicket-1.5.14-released</id>
+        <content type="html">&lt;p&gt;This is the fourteenth maintenance release of the Wicket 1.5.x series. This release brings over 4 bug fixes and 1 improvement.&lt;/p&gt;
+
+&lt;pre&gt;&lt;code&gt;CHANGELOG for 1.5.14:
+&lt;/code&gt;&lt;/pre&gt;
+
+&lt;p&gt;** Bug&lt;/p&gt;
+
+&lt;pre&gt;&lt;code&gt;* [WICKET-5838] - Last-modified header of external markup is ignored
+* [WICKET-5927] - Velocity remote code execution
+* [WICKET-6000] - Wicket 1.5 DTD link on website does not point to valid location
+* [WICKET-6005] - WicketRuntimeException from AjaxPagingNavigator#onAjaxEvent
+&lt;/code&gt;&lt;/pre&gt;
+
+&lt;p&gt;** Improvement&lt;/p&gt;
+
+&lt;pre&gt;&lt;code&gt;* [WICKET-5974] - Change AjaxPagingNavigator#onAjaxEvent() to only consider parent components that have setOutputMarkupId(true)
+&lt;/code&gt;&lt;/pre&gt;
+
+&lt;ul&gt;
+  &lt;li&gt;To use in Maven:&lt;/li&gt;
+&lt;/ul&gt;
+
+&lt;div class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-xml&quot; data-lang=&quot;xml&quot;&gt;&lt;span class=&quot;nt&quot;&gt;&amp;lt;dependency&amp;gt;&lt;/span&gt;
+    &lt;span class=&quot;nt&quot;&gt;&amp;lt;groupId&amp;gt;&lt;/span&gt;org.apache.wicket&lt;span class=&quot;nt&quot;&gt;&amp;lt;/groupId&amp;gt;&lt;/span&gt;
+    &lt;span class=&quot;nt&quot;&gt;&amp;lt;artifactId&amp;gt;&lt;/span&gt;wicket-core&lt;span class=&quot;nt&quot;&gt;&amp;lt;/artifactId&amp;gt;&lt;/span&gt;
+    &lt;span class=&quot;nt&quot;&gt;&amp;lt;version&amp;gt;&lt;/span&gt;1.5.14&lt;span class=&quot;nt&quot;&gt;&amp;lt;/version&amp;gt;&lt;/span&gt;
+&lt;span class=&quot;nt&quot;&gt;&amp;lt;/dependency&amp;gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
+
+&lt;ul&gt;
+  &lt;li&gt;Download the &lt;a href=&quot;http://www.apache.org/dyn/closer.cgi/wicket/1.5.14&quot;&gt;full distribution&lt;/a&gt; (including sources)&lt;/li&gt;
+&lt;/ul&gt;
+</content>
+    </entry>
+
+    <entry>
         <title>Apache Wicket v7.0 released</title>
         <link href="http://wicket.apache.org/news/2015/07/28/wicket-7.0-released.html"/>
         <updated>2015-07-28T00:00:00+02:00</updated>
@@ -176,16 +356,16 @@
 
 &lt;pre&gt;&lt;code&gt;* [WICKET-5790] - VariableInterpolator &amp;amp; #getThrowExceptionOnMissingResource
 * [WICKET-5814] - CryptoMapper clears feedback messages
-* [WICKET-5816] - Apps can&#39;t use Application.setName instead of WicketFilter for e.g. JMX names
+* [WICKET-5816] - Apps can't use Application.setName instead of WicketFilter for e.g. JMX names
 * [WICKET-5822] - AjaxSelfUpdatingTimer stops working after ajax download
 * [WICKET-5825] - Deployment of wicket-examples.war fails in Tomcat
 * [WICKET-5828] - PageProvider not serializable
 * [WICKET-5834] - NPE in DefaultPropertyResolver
-* [WICKET-5835] - InlineEnclosure doesn&#39;t call child.configure() before updating its visilbity
+* [WICKET-5835] - InlineEnclosure doesn't call child.configure() before updating its visilbity
 * [WICKET-5837] - JUnit tests may fail because of AbstractDefaultAjaxBehavior
 * [WICKET-5838] - Last-modified header of external markup is ignored
 * [WICKET-5841] - continueToOriginalDestination() discards new cookies
-* [WICKET-5843] - CryptoMapper doesn&#39;t work with context relative UrlResourceReferences
+* [WICKET-5843] - CryptoMapper doesn't work with context relative UrlResourceReferences
 * [WICKET-5845] - AuthenticatedWebSession.get() returns a new session with signedIn false
 * [WICKET-5850] - LazyInitProxyFactory causes NoClassDefFound org/apache/wicket/proxy/ILazyInitProxy in case of multimodule deployment
 * [WICKET-5851] - PackageResourceTest#packageResourceGuard test fails under Windows
@@ -197,7 +377,7 @@
 * [WICKET-5861] - BigDecimalConverter does not allow parsing of values great than Double.MAX_VALUE
 * [WICKET-5862] - Wicket Container visibility bug
 * [WICKET-5864] - Multipart Ajax form submit does not release the channel in case of connection failure
-* [WICKET-5869] - Kittencaptcha doesn&#39;t calculate click y-coordinate correctly
+* [WICKET-5869] - Kittencaptcha doesn't calculate click y-coordinate correctly
 * [WICKET-5870] - wicket-event-jquery.js: Wicket.Browser.isIE11() does not return boolean
 * [WICKET-5874] - WicketTester TagTester does not work as expected when using non self closing tags
 * [WICKET-5879] - Using an AjaxSubmitLink to hide its form results in an exception
@@ -218,7 +398,7 @@
 * [WICKET-5912] - NPE in Page#hasInvisibleTransparentChild
 * [WICKET-5915] - The application can not find /META-INF/wicket/**.properties on Windows systems
 * [WICKET-5916] - StackOverflowError when calling getObject() from load() in LDM
-* [WICKET-5917] - Do not use jQuery&#39;s $ in String snippets in Java code
+* [WICKET-5917] - Do not use jQuery's $ in String snippets in Java code
 &lt;/code&gt;&lt;/pre&gt;
 
 &lt;h4 id=&quot;improvement&quot;&gt;Improvement&lt;/h4&gt;
@@ -227,12 +407,12 @@
 * [WICKET-5749] - Wicket-auth-roles should deal with resource authorization
 * [WICKET-5789] - Make org.apache.wicket.protocol.ws.javax.WicketServerEndpointConfig publicly visible
 * [WICKET-5801] - Responsive Images
-* [WICKET-5823] - DefaultAuthenticationStrategy should be modified to reduce copy/paste while extending it&#39;s functionality
+* [WICKET-5823] - DefaultAuthenticationStrategy should be modified to reduce copy/paste while extending it's functionality
 * [WICKET-5829] - rename PageSettings#recreateMountedPagesAfterExpiry
 * [WICKET-5831] - Improve unsafe Id reporting in the AbstractRepeater
-* [WICKET-5832] - Do not fail at CDI&#39;s ConversationPropagator when running in non-http thread
+* [WICKET-5832] - Do not fail at CDI's ConversationPropagator when running in non-http thread
 * [WICKET-5833] - Add a way to get all opened web socket connections per user session
-* [WICKET-5840] - WicketTester doesn&#39;t support #clickLink() for ExternalLink component
+* [WICKET-5840] - WicketTester doesn't support #clickLink() for ExternalLink component
 * [WICKET-5859] - Add Hebrew and Arabic translations
 * [WICKET-5860] - Cross-Site Websocket Hijacking protection
 * [WICKET-5863] - Overiding disableCaching in ServletWebResponse is ignored when responce is buffered
@@ -431,15 +611,15 @@
         <id>http://wicket.apache.org/news/2015/02/13/new-committer-Sebastien-Briquet</id>
         <content type="html">&lt;p&gt;The Project Management Committee (PMC) for Apache Wicket 
 has asked Sebastien Briquet to become a committer and we are pleased 
-to announce that he has accepted.&lt;/p&gt;
+to announce that he has accepted. &lt;/p&gt;
 
 &lt;p&gt;Sebastien has been involved with Wicket for several years now by developing one of the most successful integrations with JavaScript libraries, namely Wicket jQuery UI, reporting bugs, contributing fixes and participating in discussions.&lt;/p&gt;
 
 &lt;p&gt;Being a committer will enable him to help us even easier in the future.&lt;/p&gt;
 
-&lt;p&gt;Please welcome Sebastien Briquet to our team!&lt;/p&gt;
+&lt;p&gt;Please welcome Sebastien Briquet to our team! &lt;/p&gt;
 
-&lt;p&gt;Bienvenue Sebastien!&lt;/p&gt;
+&lt;p&gt;Bienvenue Sebastien! &lt;/p&gt;
 </content>
     </entry>
 
@@ -553,18 +733,18 @@
   &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5748&quot;&gt;WICKET-5748&lt;/a&gt; - StackOverflowError while trying to get the Markup of WicketHeadContainer&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5751&quot;&gt;WICKET-5751&lt;/a&gt; - NullPointerException in IntHashMap&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5752&quot;&gt;WICKET-5752&lt;/a&gt; - ReplacementResourceBundleReference should return the dependencies for the replacing resource ref&lt;/li&gt;
-  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5759&quot;&gt;WICKET-5759&lt;/a&gt; - AjaxRequestAttributes extra parameters aren&#39;t properly handled in getCallbackFunction()&lt;/li&gt;
+  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5759&quot;&gt;WICKET-5759&lt;/a&gt; - AjaxRequestAttributes extra parameters aren't properly handled in getCallbackFunction()&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5770&quot;&gt;WICKET-5770&lt;/a&gt; - PageParametersEncoder should not decode parameters with no name&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5772&quot;&gt;WICKET-5772&lt;/a&gt; - LoadableDetachableModel caches null value if load() fails, bug in getObject() {attached = true;}&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5777&quot;&gt;WICKET-5777&lt;/a&gt; - Reload of page leads to WicketRuntimeException&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5782&quot;&gt;WICKET-5782&lt;/a&gt; - Missing escaping in MultiFileUploadField.js - sort of XSS&lt;/li&gt;
-  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5783&quot;&gt;WICKET-5783&lt;/a&gt; - Multiple events in AjaxEventBehavior with prefix &#39;on&#39;&lt;/li&gt;
+  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5783&quot;&gt;WICKET-5783&lt;/a&gt; - Multiple events in AjaxEventBehavior with prefix 'on'&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5784&quot;&gt;WICKET-5784&lt;/a&gt; - arraycopy with bad length in AbstractRequestLogger:172&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5793&quot;&gt;WICKET-5793&lt;/a&gt; - Request for static resource creating a session in 6.13.0+&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5800&quot;&gt;WICKET-5800&lt;/a&gt; - wicket:enclosure within FormComponentPanel causes exception related to dequeueing&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5809&quot;&gt;WICKET-5809&lt;/a&gt; - URL IPv6 parsing&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5811&quot;&gt;WICKET-5811&lt;/a&gt; - Infinite loop issue in PropertyValidator#createUnresolvablePropertyMessage(FormComponent&amp;lt;&amp;gt;)&lt;/li&gt;
-  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5812&quot;&gt;WICKET-5812&lt;/a&gt; - AtmosphereBehavior wrongly sets Ajax base url to &#39;.&#39;&lt;/li&gt;
+  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5812&quot;&gt;WICKET-5812&lt;/a&gt; - AtmosphereBehavior wrongly sets Ajax base url to '.'&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5817&quot;&gt;WICKET-5817&lt;/a&gt; - Wicket-JMX should depend on asm-util&lt;/li&gt;
 &lt;/ul&gt;
 
@@ -573,8 +753,8 @@
 &lt;ul&gt;
   &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-4703&quot;&gt;WICKET-4703&lt;/a&gt; - StringResourceModel should provide an overridable getString(Component) method&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5746&quot;&gt;WICKET-5746&lt;/a&gt; - Fire an event once all JS event listeners are registered&lt;/li&gt;
-  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5753&quot;&gt;WICKET-5753&lt;/a&gt; - It is impossible to determine the form submitting component&#39;s inputName when AjaxFormSubmitBehavior is used&lt;/li&gt;
-  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5754&quot;&gt;WICKET-5754&lt;/a&gt; - (String)ResourceModel&#39;s defaultValue could be an IModel&amp;lt;String&amp;gt;&lt;/li&gt;
+  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5753&quot;&gt;WICKET-5753&lt;/a&gt; - It is impossible to determine the form submitting component's inputName when AjaxFormSubmitBehavior is used&lt;/li&gt;
+  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5754&quot;&gt;WICKET-5754&lt;/a&gt; - (String)ResourceModel's defaultValue could be an IModel&amp;lt;String&amp;gt;&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5756&quot;&gt;WICKET-5756&lt;/a&gt; - Allow to use custom ciphers when using SunJceCrypt class&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5758&quot;&gt;WICKET-5758&lt;/a&gt; - Portuguese translation&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5760&quot;&gt;WICKET-5760&lt;/a&gt; - Add constructor (String, Serializable, String) to AttributeAppender&lt;/li&gt;
@@ -601,7 +781,7 @@
   &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5806&quot;&gt;WICKET-5806&lt;/a&gt; - Wicket.Log should log (at least errors) in the browser console even when Wicket Ajax Debug window is disabled&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5808&quot;&gt;WICKET-5808&lt;/a&gt; - SpringBean, support generic beans&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5818&quot;&gt;WICKET-5818&lt;/a&gt; - Add support for httpOnly cookies to CookieDefaults&lt;/li&gt;
-  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5820&quot;&gt;WICKET-5820&lt;/a&gt; - improve StringResourceModel&#39;s resource key interpolation for null&lt;/li&gt;
+  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5820&quot;&gt;WICKET-5820&lt;/a&gt; - improve StringResourceModel's resource key interpolation for null&lt;/li&gt;
 &lt;/ul&gt;
 
 &lt;h4 id=&quot;new-features&quot;&gt;New Features&lt;/h4&gt;
@@ -711,15 +891,15 @@
   &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5747&quot;&gt;WICKET-5747&lt;/a&gt; - Wicket Ajax Click handling gets requeued in OnDomReady so fire out of order&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5752&quot;&gt;WICKET-5752&lt;/a&gt; - ReplacementResourceBundleReference should return the dependencies for the replacing resource ref&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5755&quot;&gt;WICKET-5755&lt;/a&gt; - Restoring focus after Ajax replace no longer works in IE8&lt;/li&gt;
-  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5759&quot;&gt;WICKET-5759&lt;/a&gt; - AjaxRequestAttributes extra parameters aren&#39;t properly handled in getCallbackFunction()&lt;/li&gt;
+  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5759&quot;&gt;WICKET-5759&lt;/a&gt; - AjaxRequestAttributes extra parameters aren't properly handled in getCallbackFunction()&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5770&quot;&gt;WICKET-5770&lt;/a&gt; - PageParametersEncoder should not decode parameters with no name&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5782&quot;&gt;WICKET-5782&lt;/a&gt; - Missing escaping in MultiFileUploadField.js - sort of XSS&lt;/li&gt;
-  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5783&quot;&gt;WICKET-5783&lt;/a&gt; - Multiple events in AjaxEventBehavior with prefix &#39;on&#39;&lt;/li&gt;
+  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5783&quot;&gt;WICKET-5783&lt;/a&gt; - Multiple events in AjaxEventBehavior with prefix 'on'&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5784&quot;&gt;WICKET-5784&lt;/a&gt; - arraycopy with bad length in AbstractRequestLogger:172&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5793&quot;&gt;WICKET-5793&lt;/a&gt; - Request for static resource creating a session in 6.13.0+&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5809&quot;&gt;WICKET-5809&lt;/a&gt; - URL IPv6 parsing&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5811&quot;&gt;WICKET-5811&lt;/a&gt; - Infinite loop issue in PropertyValidator#createUnresolvablePropertyMessage(FormComponent&amp;lt;&amp;gt;)&lt;/li&gt;
-  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5812&quot;&gt;WICKET-5812&lt;/a&gt; - AtmosphereBehavior wrongly sets Ajax base url to &#39;.&#39;&lt;/li&gt;
+  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5812&quot;&gt;WICKET-5812&lt;/a&gt; - AtmosphereBehavior wrongly sets Ajax base url to '.'&lt;/li&gt;
 &lt;/ul&gt;
 
 &lt;h4 id=&quot;improvement&quot;&gt;Improvement&lt;/h4&gt;
@@ -727,8 +907,8 @@
 &lt;ul&gt;
   &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-4703&quot;&gt;WICKET-4703&lt;/a&gt; - StringResourceModel should provide an overridable getString(Component) method&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5746&quot;&gt;WICKET-5746&lt;/a&gt; - Fire an event once all JS event listeners are registered&lt;/li&gt;
-  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5753&quot;&gt;WICKET-5753&lt;/a&gt; - It is impossible to determine the form submitting component&#39;s inputName when AjaxFormSubmitBehavior is used&lt;/li&gt;
-  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5754&quot;&gt;WICKET-5754&lt;/a&gt; - (String)ResourceModel&#39;s defaultValue could be an IModel&amp;lt;String&amp;gt;&lt;/li&gt;
+  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5753&quot;&gt;WICKET-5753&lt;/a&gt; - It is impossible to determine the form submitting component's inputName when AjaxFormSubmitBehavior is used&lt;/li&gt;
+  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5754&quot;&gt;WICKET-5754&lt;/a&gt; - (String)ResourceModel's defaultValue could be an IModel&amp;lt;String&amp;gt;&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5756&quot;&gt;WICKET-5756&lt;/a&gt; - Allow to use custom ciphers when using SunJceCrypt class&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5758&quot;&gt;WICKET-5758&lt;/a&gt; - Portuguese translation&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5760&quot;&gt;WICKET-5760&lt;/a&gt; - Add constructor (String, Serializable, String) to AttributeAppender&lt;/li&gt;
@@ -870,7 +1050,7 @@
   &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5326&quot;&gt;WICKET-5326&lt;/a&gt; - Wicket doesn’t encrypt links and Ajax URLs for mounted pages when CryptoMapper is used&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5689&quot;&gt;WICKET-5689&lt;/a&gt; - Nested Redirects and REDIRECT_TO_BUFFER&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5698&quot;&gt;WICKET-5698&lt;/a&gt; - WebApplication#unmount() unmounts the whole compound mapper if some of its inner ones matches&lt;/li&gt;
-  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5701&quot;&gt;WICKET-5701&lt;/a&gt; - WebSocketRequestHandler is not set as a scheduled and thus RequestCycle#find(AjaxRequestTarget.class) doesn’t work&lt;/li&gt;
+  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5701&quot;&gt;WICKET-5701&lt;/a&gt; - WebSocketRequestHandler is not set as a scheduled and thus RequestCycle#find(AjaxRequestTarget.class) doesn’t work &lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5704&quot;&gt;WICKET-5704&lt;/a&gt; - IllegalArgument exception with wicket:child in ajaxrequest&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5706&quot;&gt;WICKET-5706&lt;/a&gt; - ResourceUtils.getLocaleFromFilename cannot handle filenames with classifiers&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5711&quot;&gt;WICKET-5711&lt;/a&gt; - OnChangeAjaxBehavior should listen for both ‘inputchange’ and ‘change’ events for TextField and TextArea&lt;/li&gt;
@@ -897,7 +1077,7 @@
   &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5350&quot;&gt;WICKET-5350&lt;/a&gt; - Enhancement for AbstractChoice and WildcardListModel API&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5691&quot;&gt;WICKET-5691&lt;/a&gt; - Wicket FileUploadField.getFileUploads() should never return null.&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5692&quot;&gt;WICKET-5692&lt;/a&gt; - Misleading message in PropertyValidator&lt;/li&gt;
-  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5694&quot;&gt;WICKET-5694&lt;/a&gt; - Add WicketTester assertion methods for component’s markup style, variation and locale&lt;/li&gt;
+  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5694&quot;&gt;WICKET-5694&lt;/a&gt; - Add WicketTester assertion methods for component’s markup style, variation and locale &lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5695&quot;&gt;WICKET-5695&lt;/a&gt; - Use Log4j 2.x for the archetype&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5697&quot;&gt;WICKET-5697&lt;/a&gt; - Rework Spring application to use annotations based configuration&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5708&quot;&gt;WICKET-5708&lt;/a&gt; - Making FormComponent.convertInput() public&lt;/li&gt;
@@ -937,164 +1117,4 @@
 </content>
     </entry>
 
-    <entry>
-        <title>Apache Wicket 6.18.0 released</title>
-        <link href="http://wicket.apache.org/news/2014/11/05/wicket-6.18.0-released.html"/>
-        <updated>2014-11-05T00:00:00+01:00</updated>
-        <id>http://wicket.apache.org/news/2014/11/05/wicket-6.18.0-released</id>
-        <content type="html">&lt;p&gt;The Apache Wicket PMC is proud to announce Apache Wicket 6.18.0!&lt;/p&gt;
-
-&lt;p&gt;This release marks another minor release of Wicket 6. Starting
-with Wicket 6 we use semantic versioning for the future development
-of Wicket, and as such no API breaks are present in this release
-compared to 6.0.0.&lt;/p&gt;
-
-&lt;h3 id=&quot;using-this-release&quot;&gt;Using this release&lt;/h3&gt;
-
-&lt;p&gt;With Apache Maven update your dependency to (and don’t forget to
-update any other dependencies on Wicket projects to the same version):&lt;/p&gt;
-
-&lt;div class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-xml&quot; data-lang=&quot;xml&quot;&gt;&lt;span class=&quot;nt&quot;&gt;&amp;lt;dependency&amp;gt;&lt;/span&gt;
-    &lt;span class=&quot;nt&quot;&gt;&amp;lt;groupId&amp;gt;&lt;/span&gt;org.apache.wicket&lt;span class=&quot;nt&quot;&gt;&amp;lt;/groupId&amp;gt;&lt;/span&gt;
-    &lt;span class=&quot;nt&quot;&gt;&amp;lt;artifactId&amp;gt;&lt;/span&gt;wicket-core&lt;span class=&quot;nt&quot;&gt;&amp;lt;/artifactId&amp;gt;&lt;/span&gt;
-    &lt;span class=&quot;nt&quot;&gt;&amp;lt;version&amp;gt;&lt;/span&gt;6.18.0&lt;span class=&quot;nt&quot;&gt;&amp;lt;/version&amp;gt;&lt;/span&gt;
-&lt;span class=&quot;nt&quot;&gt;&amp;lt;/dependency&amp;gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
-
-&lt;p&gt;Or download and build the distribution yourself, or use our
-convenience binary package&lt;/p&gt;
-
-&lt;ul&gt;
-  &lt;li&gt;Source: &lt;a href=&quot;http://www.apache.org/dyn/closer.cgi/wicket/6.18.0&quot;&gt;http://www.apache.org/dyn/closer.cgi/wicket/6.18.0&lt;/a&gt;&lt;/li&gt;
-  &lt;li&gt;Binary: &lt;a href=&quot;http://www.apache.org/dyn/closer.cgi/wicket/6.18.0/binaries&quot;&gt;http://www.apache.org/dyn/closer.cgi/wicket/6.18.0/binaries&lt;/a&gt;&lt;/li&gt;
-&lt;/ul&gt;
-
-&lt;h3 id=&quot;upgrading-from-earlier-versions&quot;&gt;Upgrading from earlier versions&lt;/h3&gt;
-
-&lt;p&gt;If you upgrade from 6.y.z this release is a drop in replacement. If
-you come from a version prior to 6.0.0, please read our Wicket 6
-migration guide found at&lt;/p&gt;
-
-&lt;ul&gt;
-  &lt;li&gt;&lt;a href=&quot;https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+6.0&quot;&gt;migration to Wicket 6&lt;/a&gt;&lt;/li&gt;
-&lt;/ul&gt;
-
-&lt;p&gt;Have fun!&lt;/p&gt;
-
-&lt;p&gt;— The Wicket team&lt;/p&gt;
-
-&lt;h3 id=&quot;this-release&quot;&gt;This release&lt;/h3&gt;
-
-&lt;p&gt;Below you can find the cryptographic signatures for the distributions
-and the release notes.&lt;/p&gt;
-
-&lt;h4 id=&quot;the-signatures-for-the-source-release-artefacts&quot;&gt;The signatures for the source release artefacts:&lt;/h4&gt;
-
-&lt;p&gt;Signature for apache-wicket-6.18.0.zip:&lt;/p&gt;
-
-&lt;div class=&quot;highlight&quot;&gt;&lt;pre&gt;
------BEGIN PGP SIGNATURE-----
-Version: GnuPG/MacGPG2 v2.0.22 (Darwin)
-Comment: GPGTools - https://gpgtools.org
-
-iEYEABECAAYFAlRTb2UACgkQJBX8W/xy/UW1egCg1LOkWMrnD+FJoHKjp7Gulyvm
-s+UAoMNN/mgMKo+p33h3vt4fnLTemLGT
-=RpfO
------END PGP SIGNATURE-----
-&lt;/pre&gt;&lt;/div&gt;
-
-&lt;p&gt;Signature for apache-wicket-6.18.0.tar.gz:&lt;/p&gt;
-
-&lt;div class=&quot;highlight&quot;&gt;&lt;pre&gt;
------BEGIN PGP SIGNATURE-----
-Version: GnuPG/MacGPG2 v2.0.22 (Darwin)
-Comment: GPGTools - https://gpgtools.org
-
-iEYEABECAAYFAlRTb2UACgkQJBX8W/xy/UVZcACguyKdrM0byfMp5IWqzwFMx5Lo
-i6UAn25gHcC0w8QWiNJXV7u99iTHssaP
-=+QQW
------END PGP SIGNATURE-----
-&lt;/pre&gt;&lt;/div&gt;
-
-&lt;h4 id=&quot;changelog-for-6180&quot;&gt;CHANGELOG for 6.18.0:&lt;/h4&gt;
-
-&lt;p&gt;The following changes were made in Wicket for this release.&lt;/p&gt;
-
-&lt;h4 id=&quot;bug&quot;&gt;Bug&lt;/h4&gt;
-
-&lt;ul&gt;
-  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5265&quot;&gt;WICKET-5265&lt;/a&gt; - FencedFeedbackPanel is broken with RefreshingView(and it’s implementations)&lt;/li&gt;
-  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5326&quot;&gt;WICKET-5326&lt;/a&gt; - Wicket doesn’t encrypt links and Ajax URLs for mounted pages when CryptoMapper is used&lt;/li&gt;
-  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5689&quot;&gt;WICKET-5689&lt;/a&gt; - Nested Redirects and REDIRECT_TO_BUFFER&lt;/li&gt;
-  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5698&quot;&gt;WICKET-5698&lt;/a&gt; - WebApplication#unmount() unmounts the whole compound mapper if some of its inner ones matches&lt;/li&gt;
-  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5699&quot;&gt;WICKET-5699&lt;/a&gt; - wicket-atmosphere 0.20 should use wicket-webjars 0.4.3&lt;/li&gt;
-  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5701&quot;&gt;WICKET-5701&lt;/a&gt; - WebSocketRequestHandler is not set as a scheduled and thus RequestCycle#find(AjaxRequestTarget.class) doesn’t work&lt;/li&gt;
-  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5704&quot;&gt;WICKET-5704&lt;/a&gt; - IllegalArgument exception with wicket:child in ajaxrequest&lt;/li&gt;
-  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5706&quot;&gt;WICKET-5706&lt;/a&gt; - ResourceUtils.getLocaleFromFilename cannot handle filenames with classifiers&lt;/li&gt;
-  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5711&quot;&gt;WICKET-5711&lt;/a&gt; - OnChangeAjaxBehavior should listen for both ‘inputchange’ and ‘change’ events for TextField and TextArea&lt;/li&gt;
-  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5712&quot;&gt;WICKET-5712&lt;/a&gt; - SecuritySettings.setEnforceMounts() does not work when the mounted mapper is not in the root compound mapper&lt;/li&gt;
-  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5714&quot;&gt;WICKET-5714&lt;/a&gt; - MockHttpServletRequest.buildRequest() should work for parameters with multiple values with multipart content type&lt;/li&gt;
-  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5716&quot;&gt;WICKET-5716&lt;/a&gt; - wicket-autocomplete prevents “change”-listener when leaving input via mouse click&lt;/li&gt;
-  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5717&quot;&gt;WICKET-5717&lt;/a&gt; - Url.parse/toString should support fragment&lt;/li&gt;
-  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5719&quot;&gt;WICKET-5719&lt;/a&gt; - Wicket-atmosphere should warn about phone home&lt;/li&gt;
-  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5720&quot;&gt;WICKET-5720&lt;/a&gt; - Method Strings.join doesn’t work correctly if separator is empty.&lt;/li&gt;
-  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5723&quot;&gt;WICKET-5723&lt;/a&gt; - CheckGroupSelector with disabled checks&lt;/li&gt;
-  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5731&quot;&gt;WICKET-5731&lt;/a&gt; - Using “Submit” button in Ajax DropDownChoice example leads to broken HTML page&lt;/li&gt;
-  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5736&quot;&gt;WICKET-5736&lt;/a&gt; - Atmosphere Eventbus throws Concurrent Modification Exception&lt;/li&gt;
-&lt;/ul&gt;
-
-&lt;h4 id=&quot;improvement&quot;&gt;Improvement&lt;/h4&gt;
-
-&lt;ul&gt;
-  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5691&quot;&gt;WICKET-5691&lt;/a&gt; - Wicket FileUploadField.getFileUploads() should never return null.&lt;/li&gt;
-  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5692&quot;&gt;WICKET-5692&lt;/a&gt; - Misleading message in PropertyValidator&lt;/li&gt;
-  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5694&quot;&gt;WICKET-5694&lt;/a&gt; - Add WicketTester assertion methods for component’s markup style, variation and locale&lt;/li&gt;
-  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5710&quot;&gt;WICKET-5710&lt;/a&gt; - StringValidator should set ‘minlength’ attribute to input and textarea&lt;/li&gt;
-  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5715&quot;&gt;WICKET-5715&lt;/a&gt; - Allow setting ‘async’ attribute on reference &lt;script&gt; elements&lt;/script&gt;&lt;/li&gt;
-  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5718&quot;&gt;WICKET-5718&lt;/a&gt; - Upgrade Atmosphere to 2.2.2&lt;/li&gt;
-  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5725&quot;&gt;WICKET-5725&lt;/a&gt; - Add NumberTextField(String,Class&lt;t&gt;) constructor&lt;/t&gt;&lt;/li&gt;
-  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5729&quot;&gt;WICKET-5729&lt;/a&gt; - Avoid using input names that conflict with JavaScript DOM API method and attribute names&lt;/li&gt;
-  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5735&quot;&gt;WICKET-5735&lt;/a&gt; - Propagate fileSizeMax attribute to org.apache.commons.fileupload.FileUploadBase&lt;/li&gt;
-  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5740&quot;&gt;WICKET-5740&lt;/a&gt; - Provide a way to adapt the lock timeout based on the page class/id&lt;/li&gt;
-&lt;/ul&gt;
-
-&lt;h4 id=&quot;new-feature&quot;&gt;New Feature&lt;/h4&gt;
-
-&lt;ul&gt;
-  &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-5677&quot;&gt;WICKET-5677&lt;/a&gt; - Components should have onAdd to complement onRemove&lt;/li&gt;
-&lt;/ul&gt;
-
-</content>
-    </entry>
-
-    <entry>
-        <title>CVE-2014-3526 - Apache Wicket Information disclosure vulnerability</title>
-        <link href="http://wicket.apache.org/news/2014/09/22/cve-2014-3526.html"/>
-        <updated>2014-09-22T00:00:00+02:00</updated>
-        <id>http://wicket.apache.org/news/2014/09/22/cve-2014-3526</id>
-        <content type="html">&lt;p&gt;Severity: Important&lt;/p&gt;
-
-&lt;p&gt;Vendor:
-The Apache Software Foundation&lt;/p&gt;
-
-&lt;p&gt;Versions Affected:
-Apache Wicket 1.5.11, 6.16.0 and 7.0.0-M2&lt;/p&gt;
-
-&lt;p&gt;Description:&lt;/p&gt;
-
-&lt;p&gt;When rendering a web page Wicket checks the request url against the one at the render time. It is possible the application to change the page parameters (this includes both the query parameters and parameters encoded into the request path). When the requested url differs with the one at the rendering time Wicket stores the response (i.e. the page markup) at the server side and issues an HTTP redirect to the new url. When the second request comes Wicket just flushes the stored response from the first request into the http output stream. This way the browser address bar shows the updated page parameters.
-When storing the page markup at the server side Wicket uses as an identifier a pair of the current session id plus the new url. However, Wicket does not check if user session is temporary (i.e. sessionId is null).
-This could lead to a security issue if two or more users with a temporary session are redirected to the same url at the same time. Then user1 might see the markup for user2 which has overridden the markup for user1 while user1 was following the HTTP redirect. In this way user-sensitive informations can be seen by other users.&lt;/p&gt;
-
-&lt;p&gt;The application developers are recommended to upgrade to: 
-- &lt;a href=&quot;/news/2014/09/15/wicket-1.5.12-released.html&quot;&gt;Apache Wicket 1.5.12&lt;/a&gt;
-- &lt;a href=&quot;/news/2014/08/24/wicket-6.17.0-released.html&quot;&gt;Apache Wicket 6.17.0&lt;/a&gt;
-- &lt;a href=&quot;/news/2014/08/23/wicket-7.0.0-M3-released.html&quot;&gt;Apache Wicket 7.0.0-M3&lt;/a&gt;&lt;/p&gt;
-
-&lt;p&gt;Credit:
-This issue was reported by Andrea Del Bene and Martin Grigorov!&lt;/p&gt;
-
-&lt;p&gt;Apache Wicket Team&lt;/p&gt;
-</content>
-    </entry>
-
 </feed>
diff --git a/content/community/index.html b/content/community/index.html
index 3358334..d1741ef 100644
--- a/content/community/index.html
+++ b/content/community/index.html
@@ -74,7 +74,7 @@
 offers a complete showcase of the available features.</p>
 <hr />
 <h2 id="tumblr">Tumblr account</h2>
-<p>You can show everyone what you have done with Wicket posting a screenshot at <a href="http://builtwithwicket.tumblr.com/">our Tumblr account</a></p>
+<p>You can show everyone what you have done with Wicket posting a screenshot at <a href="http://builtwithwicket.tumblr.com/">our Tumblr account</a> </p>
         </section>
     </div>
 </main>
diff --git a/content/contribute/release.html b/content/contribute/release.html
index 70fe96f..ea81546 100644
--- a/content/contribute/release.html
+++ b/content/contribute/release.html
@@ -86,11 +86,11 @@
 <div class="highlight"><pre><code class="language-console" data-lang="console"><span class="go">gpg --armor --detach-sign --use-agent --sign pom.xml</span>
 <span class="go">rm pom.xml.asc</span></code></pre></div>
 <ul>
-  <li>Create release branch:</li>
+  <li>Create release branch: </li>
 </ul>
 <div class="highlight"><pre><code class="language-console" data-lang="console"><span class="go">mvn release:branch -DbranchName=build/wicket-$NEWVERSION</span></code></pre></div>
 <ul>
-  <li>Checkout the release branch:</li>
+  <li>Checkout the release branch: </li>
 </ul>
 <div class="highlight"><pre><code class="language-console" data-lang="console"><span class="go">git checkout build/wicket-$NEWVERSION</span></code></pre></div>
 <ul>
@@ -132,7 +132,7 @@
 <h4 id="staging-the-build">Staging the build</h4>
 <div class="highlight"><pre><code class="language-console" data-lang="console"><span class="go">ssh APACHE_ID@people.apache.org mkdir public_html/wicket-$NEWVERSION</span>
 <span class="go">scp apache-wicket-* APACHE_ID@people.apache.org:public_html/wicket-$NEWVERSION</span></code></pre></div>
-<p><strong>TODO</strong> figure out how to let <code>release:perform</code> work from a local checkout, such that we can actually <em>stage</em> the build instead of having to push the tag to our git repo.</p>
+<p><strong>TODO</strong> figure out how to let <code>release:perform</code> work from a local checkout, such that we can actually <em>stage</em> the build instead of having to push the tag to our git repo. </p>
 <p>The following steps are ONLY necessary as long as the above TODO has not been resolved.</p>
 <div class="highlight"><pre><code class="language-console" data-lang="console"><span class="go">git push origin build/wicket-$NEWVERSION:refs/heads/build/wicket-$NEWVERSION</span>
 <span class="go">git push -tags origin</span></code></pre></div>
diff --git a/content/contribute/write.html b/content/contribute/write.html
index 2ca1698..b40dee6 100644
--- a/content/contribute/write.html
+++ b/content/contribute/write.html
@@ -87,7 +87,7 @@
 <p>You can check out the website running at <a href="http://localhost:4000">localhost, port 4000</a>.</p>
 <h2 id="write">Write some documentation</h2>
 <p>Jekyll can render HTML from markdown syntax and textile syntax. <strong>For our site
-we use markdown</strong>.</p>
+we use markdown</strong>. </p>
 <h3 id="page-template">Page template</h3>
 <p>Each page needs to have a YAML preamble that specifies the rendered template
 and other variables. If it doesn’t include the YAML preamble, it won’t be
diff --git a/content/doap.rdf b/content/doap.rdf
index 7d87120..eb99e83 100644
--- a/content/doap.rdf
+++ b/content/doap.rdf
@@ -26,7 +26,7 @@
 			<Version>
 				<name>Latest Stable Release</name>
 				<created>2015-07-10</created>
-				<revision>7.0.0</revision>
+				<revision>7.1.0</revision>
 			</Version>
 		</release>
 		<repository>
diff --git a/content/help/email.html b/content/help/email.html
index 9dba2cc..144b5ab 100644
--- a/content/help/email.html
+++ b/content/help/email.html
@@ -130,7 +130,7 @@
 <p>The Apache Software Foundation takes a very active stance in
 eliminating security problems against the Apache Wicket web framework.</p>
 <p>For reporting and discussing a security issue you should contact the
-Wicket PMC privately.</p>
+Wicket PMC privately. </p>
 <p><strong>** PLEASE DO NOT CREATE A SECURITY REPORT IN OUR ISSUE TRACKER **</strong></p>
 <p>The issue tracker for Wicket is not the appropriate venue for reporting
 security issues as the issue tracker is publicly accessible. Instead,
diff --git a/content/help/index.html b/content/help/index.html
index d56f9e2..71fc7a8 100644
--- a/content/help/index.html
+++ b/content/help/index.html
@@ -90,7 +90,7 @@
 <p>The Apache Software Foundation takes a very active stance in
 eliminating security problems against the Apache Wicket web framework.</p>
 <p>For reporting and discussing a security issue you should contact the
-Wicket PMC privately.</p>
+Wicket PMC privately. </p>
 <p><strong>** PLEASE DO NOT CREATE A SECURITY REPORT IN OUR ISSUE TRACKER **</strong></p>
 <p>The issue tracker for Wicket is not the appropriate venue for reporting
 security issues as the issue tracker is publicly accessible. Instead,
@@ -115,7 +115,7 @@
 problem via the <a href="https://issues.apache.org/jira/browse/WICKET">Issue
 Tracker</a>. You may also
 find it useful to discuss your issues with the community on one of the
-Mailing Lists.</p>
+Mailing Lists. </p>
 <p>Before asking for help with your issue, it’s a very good idea to search
 for your issue in the mailing list archives and the FAQ. The majority
 of issues can be solved in this manner without having to send an email
@@ -147,12 +147,12 @@
 discover a bug in Wicket 6.2.0, it might be fixed in a newer version
 (the current version of Wicket 6.x is 6.20.0).</p>
 <p>So we ask you to try the latest version of the branch of Wicket you are
-working on. If the bug still remains,</p>
+working on. If the bug still remains,  </p>
 <p>Check if your version is no longer maintained on our download page. If
 your version is no longer maintained we kindly ask you to upgrade your
 project to a newer, maintained version of Wicket. For example if you
 have a project that depends on Wicket 1.3.7, please consider upgrading
-to Wicket 7.0.0.</p>
+to Wicket 7.1.0. </p>
 <h3 id="compatible">Using Compatible Versions of Supporting Libraries</h3>
 <p>If you are using a supporting library from either the Wicket project,
 Wicket Stuff or another project, please ensure that the version you use
diff --git a/content/help/reportabug.html b/content/help/reportabug.html
index 2fe63f5..3e1e424 100644
--- a/content/help/reportabug.html
+++ b/content/help/reportabug.html
@@ -64,7 +64,7 @@
   <li><strong>Be clear and concise in your language.</strong> Wording a short but useful 
 summary, with a description that contains all the steps leading up to the
 error plus any extra circumstantial evidence, is not always easy, but its
-vital to getting the issue resolved, and really valuable.</li>
+vital to getting the issue resolved, and really valuable. </li>
   <li><strong>Watch the bug.</strong> The developers may ask you for more information via the
 issue comments, so its good practices to check in on the issue whilst its
 still open.</li>
@@ -146,7 +146,7 @@
   <li>The plugin should automagically resolve the quickstart’s Wicket dependency from the project rather than a .jar</li>
   <li>Find WicketApplication.java</li>
   <li>Click through to WebApplication class from the extends section of the class definition.</li>
-  <li>If all is well, you should be taken to the Wicket project .java version of WebApplication rather than a .class file from a .jar</li>
+  <li>If all is well, you should be taken to the Wicket project .java version of WebApplication rather than a .class file from a .jar  </li>
 </ul>
 <h3 id="proving-a-bug-exists">Proving a bug exists</h3>
 <ul>
diff --git a/content/help/security.html b/content/help/security.html
index f2b36f0..de27f0a 100644
--- a/content/help/security.html
+++ b/content/help/security.html
@@ -53,7 +53,7 @@
 <p>The Apache Software Foundation takes a very active stance in
 eliminating security problems against the Apache Wicket web framework.</p>
 <p>For reporting and discussing a security issue you should contact the
-Wicket PMC privately.</p>
+Wicket PMC privately. </p>
 <p><strong>** PLEASE DO NOT CREATE A SECURITY REPORT IN OUR ISSUE TRACKER **</strong></p>
 <p>The issue tracker for Wicket is not the appropriate venue for reporting
 security issues as the issue tracker is publicly accessible. Instead,
diff --git a/content/index.html b/content/index.html
index 8e34df9..c2944ad 100644
--- a/content/index.html
+++ b/content/index.html
@@ -244,31 +244,109 @@
 </div>
 <div class="l-two-third">
     <article>
-        <h2>Apache Wicket v7.0 released</h2>
-        <small>28 Jul 2015</small>
-        <p>The Apache Software Foundation announces Apache Wicket™ v7.0 Open Source Java web framework that powers thousands of web applications and web sites for governments, stores, universities, cities, banks, email providers, and more.</p>
-<p>The Apache Software Foundation (ASF), the all-volunteer developers, stewards, and incubators of nearly 150 Open Source projects and initiatives, today announced Apache™ Wicket™ v7.0, the Open Source Java web framework for high performance, scalable, component oriented web applications. 
-This marks the seventh major release of the project that celebrated its 10 year anniversary last year.</p>
-<p>This framework allows Java developers to write web applications using components. 
-This way developers can reason about the user interface in user interface building blocks, making it easier to link specific user interactions to server-side code. 
-Wicket is a high performance framework processing billions of requests daily across the world.</p>
-<p>“With this release we have added a major improvement to our framework, making development with Wicket even easier.”, said Martijn Dashorst, Vice President of Apache Wicket.
-“By adding ‘Component Queuing’ we have divorced the strict relationship between the Java component classes and the markup. This has been a headache for many users and sparked one of the longest discussions on our community lists. We finally put this issue to bed.”</p>
-<p>“Other major improvements are the move towards Java 7, newer Java EE standards, security features and the addition of new components. Wicket now bundles a cross site request forgery (CSRF) prevention measure, and provides support for inline images using the data: protocol,” continued Martijn Dashorst.</p>
-<p>Apache Wicket v7.0 reflects over 2 years of development, testing and feedback from hundreds of knowledgable users, bringing a highly stable, production ready release of the popular web framework.
-The release consist of almost 300 features, improvements and fixes. In accordance with Semantic Versioning, this major release contains <a href="https://s.apache.org/wicket7migrate">several documented API breaks</a>. Following the Semantic Versioning standard, future minor releases of Wicket v7 will remain API compatible.</p>
-<h3 id="availability-and-oversight">Availability and Oversight</h3>
-<p>As with all Apache products, Apache Wicket software is released under the Apache License v2.0, and is overseen by a self-selected team of active contributors to the project.
-A Project Management Committee (PMC) guides the Project’s day-to-day operations, including community development and product releases.
-Apache Wicket release notes, source code, documentation, and related resources are available at <a href="https://wicket.apache.org">https://wicket.apache.org</a>.</p>
-<h3 id="about-the-apache-software-foundation-asf">About The Apache Software Foundation (ASF)</h3>
-<p>Established in 1999, the all-volunteer Foundation oversees nearly one hundred fifty leading Open Source projects, including Apache HTTP Server — the world’s most popular Web server software.
-Through the ASF’s meritocratic process known as “The Apache Way,” more than 350 individual Members and 3,000 Committers successfully collaborate to develop freely available enterprise-grade software, benefiting millions of users worldwide: thousands of software solutions are distributed under the Apache License; and the community actively participates in ASF mailing lists, mentoring initiatives, and ApacheCon, the Foundation’s official user conference, trainings, and expo.
-The ASF is a US 501(3)(c) not-for-profit charity, funded by individual donations and corporate sponsors including AMD, Basis Technology, Cloudera, Facebook, Google, IBM, HP, Hortonworks, Matt Mullenweg, Microsoft, PSW Group, SpringSource/VMware, and Yahoo!.
-For more information, visit <a href="https://www.apache.org/">https://www.apache.org/</a>.</p>
-<p>“Apache”, “Apache Wicket”, and “ApacheCon” are trademarks of The Apache Software Foundation.
-All other brands and trademarks are the property of their respective owners.</p>
-        <a href="/news/2015/07/28/wicket-7.0-released.html">Read more...</a> 
+        <h2>Wicket 7.1.0 Released</h2>
+        <small>25 Oct 2015</small>
+        <p>The Apache Wicket PMC is proud to announce Apache Wicket 7.1.0!</p>
+<p>This release marks another minor release of Wicket 7. We
+use semantic versioning for the development of Wicket, and as such no
+API breaks are present breaks are present in this release compared to
+7.0.0.</p>
+<h2 id="new-and-noteworthy">New and noteworthy</h2>
+<p>Significant improvement in performance while adding components to
+the component hierarchy. There was a regression in performance
+introduced by component queuing. The algorithm checked if there were
+any components to be dequeued, but did so in a O(n^2) way. This was
+fixed.</p>
+<p>Upon further investigation we found that adding components is O(n^2)
+since 1.3 (when memory was scarce and expensive). We fixed that and
+made it roughly O(1).</p>
+<p>This means that when you have a page with 10k components on it, the
+adding won’t slow you down any more, and the new way of adding
+components will scrape a few ms off your overall average response time.</p>
+<p>This release also fixes several bugs where head sections were not rendered,
+i18n JavaScript resources could not be loaded, Range: header parsing and
+a couple of component queuing issues.</p>
+<h2 id="using-this-release">Using this release</h2>
+<p>With Apache Maven update your dependency to (and don’t forget to
+update any other dependencies on Wicket projects to the same version):</p>
+<dependency>
+    <groupid>org.apache.wicket</groupid>
+    <artifactid>wicket-core</artifactid>
+    <version>7.1.0</version>
+</dependency>
+<p>Or download and build the distribution yourself, or use our
+convenience binary package</p>
+<ul>
+  <li>Source: http://www.apache.org/dyn/closer.cgi/wicket/7.1.0</li>
+  <li>Binary: http://www.apache.org/dyn/closer.cgi/wicket/7.1.0/binaries</li>
+</ul>
+<h2 id="upgrading-from-earlier-versions">Upgrading from earlier versions</h2>
+<p>If you upgrade from 7.y.z this release is a drop in replacement. If
+you come from a version prior to 7.0.0, please read our Wicket 7
+migration guide found at</p>
+<ul>
+  <li>http://s.apache.org/wicket7migrate</li>
+</ul>
+<p>Have fun!</p>
+<p>— The Wicket team</p>
+<p>========================================================================</p>
+<p>The signatures for the source release artefacts:</p>
+<p>Signature for apache-wicket-7.1.0.zip:</p>
+<pre><code>-----BEGIN PGP SIGNATURE----- Comment: GPGTools - https://gpgtools.org
+</code></pre>
+<p>iEYEABECAAYFAlYldl4ACgkQJBX8W/xy/UWlUgCbBKvmDioyZceDBykv52eWYNai
+b9AAn2AUlg5FotVMaQtOdtQsQfuy4X/D
+=Vuhh
+—–END PGP SIGNATURE—–</p>
+<p>Signature for apache-wicket-7.1.0.tar.gz:</p>
+<pre><code>-----BEGIN PGP SIGNATURE----- Comment: GPGTools - https://gpgtools.org
+</code></pre>
+<p>iEYEABECAAYFAlYldl4ACgkQJBX8W/xy/UXNzgCgtL4H8bRjZewltF1BX7H3F+Ph
+6KUAnA0k2BVi5E//uw9RLm7MklYJOdV+
+=Za2v
+—–END PGP SIGNATURE—–</p>
+<p>========================================================================</p>
+<pre><code>CHANGELOG for 7.1.0:
+</code></pre>
+<p>** Bug</p>
+<pre><code>* [WICKET-5882] - AutoComplete suggestion list disappear when I click on autoComplete scrollbar in IE
+* [WICKET-5941] - Headers not rendered for components inside TransparentWebMarkupContainer on ajax update
+* [WICKET-5959] - HTML input placeholder text breaks AutoCompleteTextField in IE11
+* [WICKET-5960] - Page header isn't rendered for pages where URL has changed during render
+* [WICKET-5964] - Queuing a component within an enclosure
+* [WICKET-5965] - Queuing a component in head
+* [WICKET-5966] - ResourceUtils.getLocaleFromFilename can't handle minimized resources well
+* [WICKET-5967] - Unable to load i18n minified js
+* [WICKET-5968] - CachingResourceLocator lookup key doesn't take strict into account
+* [WICKET-5970] - UrlRenderer does not render fragments
+* [WICKET-5973] - IllegalArgumentException 'bytes' cannot be negative. on opening Inspector
+* [WICKET-5975] - AjaxFallbackOrderByBorder wicketOrder[Up|Down|None] class missing
+* [WICKET-5978] - LazyInitProxyFactory fills permgen space
+* [WICKET-5980] - When using Servlet 3.0 filter Wicket calculates filter path wrong
+* [WICKET-5981] - Significant Performance Degradation From Wicket 6.20.0 to Wicket 7.0.0
+* [WICKET-5983] - O(n^2) complexity in MarkupContainer.add
+* [WICKET-5988] - WICKET-5981 breaks forms inside borders
+* [WICKET-5989] - BaseWicketTester#startComponentInPage fails for pages with &lt;wicket:header-items&gt;&lt;/wicket:header&gt; placeholder
+* [WICKET-5993] - AjaxButton - image is not shown even though type="image" is in html-template 
+* [WICKET-5994] - Mounted TemplateResourceReference throws  org.apache.wicket.WicketRuntimeException when https is used
+* [WICKET-5995] - "Range" header parsing is broken
+* [WICKET-5996] - Mounted packages throw IllegalArgumentException when visiting base package url.
+* [WICKET-5997] - Compatibility problem with Websphere liberty profile
+* [WICKET-5999] - AjaxFormValidatingBehavior not updates initially hidden feedback component
+* [WICKET-6005] - WicketRuntimeException from AjaxPagingNavigator#onAjaxEvent
+</code></pre>
+<p>** Improvement</p>
+<pre><code>* [WICKET-5948] - wicket-ajax.js probably doesn't traverse the children of &lt;div&gt; or &lt;span&gt;
+* [WICKET-5971] - Code cleanup in ServletWebResponse
+* [WICKET-5974] - Change AjaxPagingNavigator#onAjaxEvent() to only consider parent components that have setOutputMarkupId(true)
+* [WICKET-5976] - Improve the documentation of FeedbackMessages first(int level)
+* [WICKET-5984] - ReplaceHandlerException lacks an accessor for the replacement RequestHandler
+* [WICKET-5986] - NumberTextField&lt;N&gt; should use Models for minimum, maximum and step
+</code></pre>
+<p>** Task</p>
+<pre><code>* [WICKET-5951] - Upgrade Atmosphere to 2.2.8
+</code></pre>
+        <a href="/news/2015/10/25/wicket-7.1.0-released.html">Read more...</a> 
     </article>
 </div>
 <div class="l-one-third news">
@@ -280,6 +358,18 @@
 get updates in your favorite RSS reader the moment they happen.</p>
 <ul>
 <li>
+    <h3>Wicket 1.5.14 released</h3>
+    <small>24 Oct 2015</small>
+    This is the fourteenth maintenance release of the Wicket 1.5.x series. This release brings over 4 bug fixes and 1 improvement. CHANGELOG for 1.5.14: **...
+    <a href="/news/2015/10/24/wicket-1.5.14-released.html">more</a>
+</li>
+<li>
+    <h3>Apache Wicket v7.0 released</h3>
+    <small>28 Jul 2015</small>
+    The Apache Software Foundation announces Apache Wicket™ v7.0 Open Source Java web framework that powers thousands of web applications and web sites for governments, stores,...
+    <a href="/news/2015/07/28/wicket-7.0-released.html">more</a>
+</li>
+<li>
     <h3>Apache Wicket 7.0.0-M6 released</h3>
     <small>21 Jun 2015</small>
     The Apache Wicket PMC is proud to announce Apache Wicket 7.0.0-M6! We have released another milestone release for Apache Wicket 7. We aim to finalise...
@@ -297,18 +387,6 @@
     This is the thirteenth maintenance release of the Wicket 1.5.x series. This release brings over 1 bug fix and 1 improvement. Git tag Changelog To...
     <a href="/news/2015/02/13/wicket-1.5.13-released.html">more</a>
 </li>
-<li>
-    <h3>New committer - Sebastien Briquet</h3>
-    <small>13 Feb 2015</small>
-    The Project Management Committee (PMC) for Apache Wicket has asked Sebastien Briquet to become a committer and we are pleased to announce that he has...
-    <a href="/news/2015/02/13/new-committer-Sebastien-Briquet.html">more</a>
-</li>
-<li>
-    <h3>Apache Wicket 7.0.0-M5 released</h3>
-    <small>02 Feb 2015</small>
-    The Apache Wicket PMC is proud to announce Apache Wicket 7.0.0-M5! We have released another milestone release for Apache Wicket 7. We aim to finalise...
-    <a href="/news/2015/02/02/wicket-7.0.0-M5-released.html">more</a>
-</li>
 </ul>
 </div>
 <div class="l-first"></div>
diff --git a/content/learn/examples/dropdownchoice.html b/content/learn/examples/dropdownchoice.html
index ba29948..ebb72d3 100644
--- a/content/learn/examples/dropdownchoice.html
+++ b/content/learn/examples/dropdownchoice.html
@@ -107,7 +107,7 @@
 <p>This page has three components:</p>
 <ul>
   <li>a form (needed to process the input),</li>
-  <li>a label (to show the name of the employee) and</li>
+  <li>a label (to show the name of the employee) and </li>
   <li>a select box for picking the manager.</li>
 </ul>
 <p>We will focus on the select box, because that will be our <code>DropDownChoice</code>.
diff --git a/content/learn/index.html b/content/learn/index.html
index ef9a649..8d31536 100644
--- a/content/learn/index.html
+++ b/content/learn/index.html
@@ -72,14 +72,14 @@
 <p>Here are the most recent headlines:</p>
 <ul>
   <li>
+    <p><a href="/news/2015/10/25/wicket-7.1.0-released.html">Wicket 7.1.0 Released</a> <small>25 Oct 2015</small></p>
+  </li>
+  <li>
+    <p><a href="/news/2015/10/24/wicket-1.5.14-released.html">Wicket 1.5.14 released</a> <small>24 Oct 2015</small></p>
+  </li>
+  <li>
     <p><a href="/news/2015/07/28/wicket-7.0-released.html">Apache Wicket v7.0 released</a> <small>28 Jul 2015</small></p>
   </li>
-  <li>
-    <p><a href="/news/2015/06/21/wicket-7.0.0-M6-released.html">Apache Wicket 7.0.0-M6 released</a> <small>21 Jun 2015</small></p>
-  </li>
-  <li>
-    <p><a href="/news/2015/06/14/wicket-6.20.0-released.html">Apache Wicket 6.20.0 released</a> <small>14 Jun 2015</small></p>
-  </li>
 </ul>
 <p>The complete articles and all other news items are available in the <a href="/news">archives</a>.</p>
 <hr />
@@ -105,7 +105,7 @@
       <li><a href="http://ci.apache.org/projects/wicket/guide/7.x/guide/single.pdf">PDF</a></li>
     </ul>
   </li>
-  <li>Wicket 6.x
+  <li>Wicket 6.x 
     <ul>
       <li><a href="http://ci.apache.org/projects/wicket/guide/6.x/">HTML</a></li>
       <li><a href="http://ci.apache.org/projects/wicket/guide/6.x/guide/single.html">HTML (single page)</a></li>
@@ -138,8 +138,8 @@
 newer version you can run into all of the changes that were applied to
 Wicket’s API. We have done our best to document all the changes and
 provide migration paths between the different Wicket versions.</p>
-<p>Here’s a list of the migration guides:</p>
-<div class="button-bar">
+<p>Here’s a list of the migration guides:
+&lt;div class="button-bar"&gt;
     <a class="button" href="http://s.apache.org/wicket8migration">
         Wicket 8<br />
 		migration guide
@@ -152,8 +152,8 @@
         Wicket 6<br />
 		migration guide
     </a>
-</div>
-<div class="button-bar">
+&lt;/div&gt;
+&lt;div class="button-bar"&gt;
     <a class="button" href="http://s.apache.org/wicket5migrate">
         Wicket 1.5<br />
 		migration guide
@@ -166,7 +166,7 @@
         Wicket 1.3<br />
 		migration guide
     </a>
-</div>
+&lt;/div&gt;</p>
 <p>If you encounter a change that was not in the migration guide, don’t
 hesitate to notify us.</p>
 <hr />
diff --git a/content/news/2009/07/index.html b/content/news/2009/07/index.html
index b16ee58..476d763 100644
--- a/content/news/2009/07/index.html
+++ b/content/news/2009/07/index.html
@@ -70,6 +70,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2009/08/index.html b/content/news/2009/08/index.html
index 6754629..956d495 100644
--- a/content/news/2009/08/index.html
+++ b/content/news/2009/08/index.html
@@ -61,6 +61,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2009/10/index.html b/content/news/2009/10/index.html
index 77aa860..d4051da 100644
--- a/content/news/2009/10/index.html
+++ b/content/news/2009/10/index.html
@@ -69,6 +69,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2009/12/index.html b/content/news/2009/12/index.html
index 601d5e7..c7bac93 100644
--- a/content/news/2009/12/index.html
+++ b/content/news/2009/12/index.html
@@ -70,6 +70,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2009/index.html b/content/news/2009/index.html
index 7ee170e..4e89c81 100644
--- a/content/news/2009/index.html
+++ b/content/news/2009/index.html
@@ -119,6 +119,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2010/02/index.html b/content/news/2010/02/index.html
index c2cd6c2..15cb29f 100644
--- a/content/news/2010/02/index.html
+++ b/content/news/2010/02/index.html
@@ -57,6 +57,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2010/03/index.html b/content/news/2010/03/index.html
index 0743e3f..9f19999 100644
--- a/content/news/2010/03/index.html
+++ b/content/news/2010/03/index.html
@@ -59,6 +59,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2010/05/24/wicket-1.4.9-released.html b/content/news/2010/05/24/wicket-1.4.9-released.html
index 4a29c4f..28fc57b 100644
--- a/content/news/2010/05/24/wicket-1.4.9-released.html
+++ b/content/news/2010/05/24/wicket-1.4.9-released.html
@@ -54,9 +54,9 @@
     <p>This is the ninth maintenance release of the 1.4.x series and brings over
 fifteen bug fixes and improvements.</p>
 <ul>
-  <li><a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.9/">Subversion tag</a></li>
+  <li><a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.9/">Subversion tag</a> </li>
   <li><a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;styleName=Html&amp;version=12314962">Changelog</a></li>
-  <li>To use in Maven:</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>
diff --git a/content/news/2010/05/index.html b/content/news/2010/05/index.html
index 17dccd7..a101161 100644
--- a/content/news/2010/05/index.html
+++ b/content/news/2010/05/index.html
@@ -66,12 +66,13 @@
 	<p>This is the ninth maintenance release of the 1.4.x series and brings over
 fifteen bug fixes and improvements.</p>
 <ul>
-  <li><a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.9/">Subversion tag</a></li>
+  <li>
+<a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.9/">Subversion tag</a> </li>
   <li><a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;styleName=Html&amp;version=12314962">Changelog</a></li>
-  <li>To use in Maven:</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.apa...</code></pre></div>
+    <span class="nt">&lt;groupId&gt;</span>org.apach...</code></pre></div>
 	<a href="/news/2010/05/24/wicket-1.4.9-released.html">more</a></li>
 </div>
         </div>
@@ -79,6 +80,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2010/08/11/wicket-1.4.10-released.html b/content/news/2010/08/11/wicket-1.4.10-released.html
index 9dcb336..3e95785 100644
--- a/content/news/2010/08/11/wicket-1.4.10-released.html
+++ b/content/news/2010/08/11/wicket-1.4.10-released.html
@@ -54,7 +54,7 @@
 thirty bug fixes and improvements.</p>
 <p>As well as bringing bug fixes and small improvements, 1.4.10 brings two major new features:
 * Delayed component initialization
-* Component configuration</p>
+* Component configuration </p>
 <p>Delayed component initialization allows developers to initialize their components outside of a constructor, when more environment is available to the component instance. From the javadoc:</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">Component</span> <span class="o">{</span>
 	<span class="cm">/**</span>
@@ -146,9 +146,9 @@
 	<span class="kd">protected</span> <span class="kt">void</span> <span class="nf">onConfigure</span><span class="o">()</span> <span class="o">{}</span>
 <span class="o">}</span></code></pre></div>
 <ul>
-  <li><a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.10/">Subversion tag</a></li>
+  <li><a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.10/">Subversion tag</a> </li>
   <li><a href="https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&amp;mode=hide&amp;sorter/order=DESC&amp;sorter/field=priority&amp;pid=12310561&amp;fixfor=12315070">Changelog</a></li>
-  <li>To use in Maven:</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>
diff --git a/content/news/2010/08/11/wicket-1.5-M1-released.html b/content/news/2010/08/11/wicket-1.5-M1-released.html
index 2d71688..14df0d5 100644
--- a/content/news/2010/08/11/wicket-1.5-M1-released.html
+++ b/content/news/2010/08/11/wicket-1.5-M1-released.html
@@ -55,8 +55,8 @@
 <p>This release is NOT production-ready, it is more of a technology demo that should facilitate user-feedback we can fold into the next milestone.</p>
 <ul>
   <li><a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+1.5">Migration notes</a></li>
-  <li><a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.5-M1/">Subversion tag</a></li>
-  <li>To use in Maven:</li>
+  <li><a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.5-M1/">Subversion tag</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>
diff --git a/content/news/2010/08/index.html b/content/news/2010/08/index.html
index 833e85d..6d8c3c4 100644
--- a/content/news/2010/08/index.html
+++ b/content/news/2010/08/index.html
@@ -57,7 +57,7 @@
   <p><small>11 Aug 2010</small></p>
 	<p>This is the tenth maintenance release of the 1.4.x series and brings over
 thirty bug fixes and improvements.</p>
-<p>As well as bringing bug fixes and small improvements, 1.4.10 bri...</p>
+<p>As well as bringing bug fixes and small improvements, 1.4.10 brin...</p>
 	<a href="/news/2010/08/11/wicket-1.4.10-released.html">more</a></li>
 </div>
 <div class="news">
@@ -79,6 +79,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2010/09/09/wicket-1.4.11-released.html b/content/news/2010/09/09/wicket-1.4.11-released.html
index 551ac11..88f4c9b 100644
--- a/content/news/2010/09/09/wicket-1.4.11-released.html
+++ b/content/news/2010/09/09/wicket-1.4.11-released.html
@@ -53,9 +53,9 @@
     <p>This is the eleventh maintenance release of the 1.4.x series and brings over
 fifty bug fixes and improvements.</p>
 <ul>
-  <li><a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.11/">Subversion tag</a></li>
+  <li><a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.11/">Subversion tag</a> </li>
   <li><a href="https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&amp;&amp;pid=12310561&amp;fixfor=12315236&amp;sorter/field=issuekey&amp;sorter/order=DESC">Changelog</a></li>
-  <li>To use in Maven:</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>
diff --git a/content/news/2010/09/17/wicket.1.4.12-released.html b/content/news/2010/09/17/wicket.1.4.12-released.html
index e744826..ddaea53 100644
--- a/content/news/2010/09/17/wicket.1.4.12-released.html
+++ b/content/news/2010/09/17/wicket.1.4.12-released.html
@@ -52,9 +52,9 @@
     <p class="meta">17 Sep 2010</p>
     <p>This is the twelfth maintenance release of the 1.4.x series. This release brings a fix to a <a href="https://issues.apache.org/jira/browse/WICKET-3040">critical bug</a> which prevented ajax form submits in FireFox.</p>
 <ul>
-  <li><a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.12">Subversion tag</a></li>
+  <li><a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.12">Subversion tag</a> </li>
   <li><a href="https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&amp;&amp;pid=12310561&amp;fixfor=12315312&amp;sorter/field=priority&amp;sorter/order=DESC">Changelog</a></li>
-  <li>To use in Maven:</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>
diff --git a/content/news/2010/09/17/wicket.1.5-M2.1-released.html b/content/news/2010/09/17/wicket.1.5-M2.1-released.html
index c192f75..7e0543c 100644
--- a/content/news/2010/09/17/wicket.1.5-M2.1-released.html
+++ b/content/news/2010/09/17/wicket.1.5-M2.1-released.html
@@ -53,11 +53,11 @@
     <p>This is the second milestone of the new 1.5.x Wicket series. The focus of 1.5.x is to 
 provide our users with a more powerful and flexible request processing pipeline.</p>
 <p>This release is NOT production-ready, it is more of a technology demo that should facilitate user-feedback we can fold into the next milestone.</p>
-<p>New and noteworthy items in this milestone include <a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+1.5#MigrationtoWicket1.5-Intercomponentevents">Inter-component event mechanism</a> which allows components to communicate in a decoupled fashion, and improved <a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+1.5#MigrationtoWicket1.5-getResourceSettings%2528%2529.setAddLastModifiedTimeToResourceReferenceUrl%2528%2529hasbeenreplaced">resource caching</a>.</p>
+<p>New and noteworthy items in this milestone include <a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+1.5#MigrationtoWicket1.5-Intercomponentevents">Inter-component event mechanism</a> which allows components to communicate in a decoupled fashion, and improved <a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+1.5#MigrationtoWicket1.5-getResourceSettings%2528%2529.setAddLastModifiedTimeToResourceReferenceUrl%2528%2529hasbeenreplaced">resource caching</a>. </p>
 <ul>
   <li><a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+1.5">Migration notes</a></li>
-  <li><a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.5-M2.1">Subversion tag</a></li>
-  <li>To use in Maven:</li>
+  <li><a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.5-M2.1">Subversion tag</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>
diff --git a/content/news/2010/09/index.html b/content/news/2010/09/index.html
index 2f6a2b7..f80e970 100644
--- a/content/news/2010/09/index.html
+++ b/content/news/2010/09/index.html
@@ -52,12 +52,13 @@
 	<p>This is the eleventh maintenance release of the 1.4.x series and brings over
 fifty bug fixes and improvements.</p>
 <ul>
-  <li><a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.11/">Subversion tag</a></li>
+  <li>
+<a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.11/">Subversion tag</a> </li>
   <li><a href="https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&amp;&amp;pid=12310561&amp;fixfor=12315236&amp;sorter/field=issuekey&amp;sorter/order=DESC">Changelog</a></li>
-  <li>To use in Maven:</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.apac...</code></pre></div>
+    <span class="nt">&lt;groupId&gt;</span>org.apache...</code></pre></div>
 	<a href="/news/2010/09/09/wicket-1.4.11-released.html">more</a></li>
 </div>
 <div class="news">
@@ -65,10 +66,11 @@
   <p><small>17 Sep 2010</small></p>
 	<p>This is the twelfth maintenance release of the 1.4.x series. This release brings a fix to a <a href="https://issues.apache.org/jira/browse/WICKET-3040">critical bug</a> which prevented ajax form submits in FireFox.</p>
 <ul>
-  <li><a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.12">Subversion tag</a></li>
+  <li>
+<a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.12">Subversion tag</a> </li>
   <li><a href="https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&amp;&amp;pid=12310561&amp;fixfor=12315312&amp;sorter/field=priority&amp;sorter/order=DESC">Changelog</a></li>
-  <li>To use in Maven:</li>
-...</ul>
+  <li>To u...</li>
+</ul>
 	<a href="/news/2010/09/17/wicket.1.4.12-released.html">more</a></li>
 </div>
 <div class="news">
@@ -84,6 +86,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2010/11/01/wicket-1.4.13-released.html b/content/news/2010/11/01/wicket-1.4.13-released.html
index fb8d04f..4a04a0a 100644
--- a/content/news/2010/11/01/wicket-1.4.13-released.html
+++ b/content/news/2010/11/01/wicket-1.4.13-released.html
@@ -52,9 +52,9 @@
     <p class="meta">01 Nov 2010</p>
     <p>This is thirteenth 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.13">Subversion tag</a></li>
+  <li><a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.13">Subversion tag</a> </li>
   <li><a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;styleName=Html&amp;version=12315330">Changelog</a></li>
-  <li>To use in Maven:</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>
diff --git a/content/news/2010/11/05/wicket-1.5-M3-released.html b/content/news/2010/11/05/wicket-1.5-M3-released.html
index 08c5c14..0e660d4 100644
--- a/content/news/2010/11/05/wicket-1.5-M3-released.html
+++ b/content/news/2010/11/05/wicket-1.5-M3-released.html
@@ -52,9 +52,9 @@
     <p class="meta">05 Nov 2010</p>
     <p>This is another milestone release from trunk (in-development branch).  This release includes several enhancments and fixes, which can be seen in the changelog (linked below).</p>
 <ul>
-  <li><a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.5-M3">Subversion tag</a></li>
+  <li><a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.5-M3">Subversion tag</a> </li>
   <li><a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;styleName=Html&amp;version=12315329">Changelog</a></li>
-  <li>To use in Maven:</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>
diff --git a/content/news/2010/11/29/wicket-1.4.14-released.html b/content/news/2010/11/29/wicket-1.4.14-released.html
index 4686ee6..b2ef470 100644
--- a/content/news/2010/11/29/wicket-1.4.14-released.html
+++ b/content/news/2010/11/29/wicket-1.4.14-released.html
@@ -52,9 +52,9 @@
     <p class="meta">29 Nov 2010</p>
     <p>This is fourteenth 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.14">Subversion tag</a></li>
+  <li><a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.14">Subversion tag</a> </li>
   <li><a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;styleName=Html&amp;version=12315480">Changelog</a></li>
-  <li>To use in Maven:</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>
diff --git a/content/news/2010/11/index.html b/content/news/2010/11/index.html
index 68fc5e3..2522d6e 100644
--- a/content/news/2010/11/index.html
+++ b/content/news/2010/11/index.html
@@ -51,12 +51,13 @@
   <p><small>01 Nov 2010</small></p>
 	<p>This is thirteenth 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.13">Subversion tag</a></li>
+  <li>
+<a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.13">Subversion tag</a> </li>
   <li><a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;styleName=Html&amp;version=12315330">Changelog</a></li>
-  <li>To use in Maven:</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>
+    <span class="nt">&lt;groupId...</span></code></pre></div>
 	<a href="/news/2010/11/01/wicket-1.4.13-released.html">more</a></li>
 </div>
 <div class="news">
@@ -64,8 +65,9 @@
   <p><small>05 Nov 2010</small></p>
 	<p>This is another milestone release from trunk (in-development branch).  This release includes several enhancments and fixes, which can be seen in the changelog (linked below).</p>
 <ul>
-  <li><a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.5-M3">Subversion tag</a></li>
-  <li><a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;styleName=Html&amp;version=12315329">Changel...</a></li>
+  <li>
+<a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.5-M3">Subversion tag</a> </li>
+  <li><a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;styleName=Html&amp;version=12315329">Changelo...</a></li>
 </ul>
 	<a href="/news/2010/11/05/wicket-1.5-M3-released.html">more</a></li>
 </div>
@@ -83,12 +85,13 @@
   <p><small>29 Nov 2010</small></p>
 	<p>This is fourteenth 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.14">Subversion tag</a></li>
+  <li>
+<a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.14">Subversion tag</a> </li>
   <li><a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;styleName=Html&amp;version=12315480">Changelog</a></li>
-  <li>To use in Maven:</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>
+    <span class="nt">&lt;groupId...</span></code></pre></div>
 	<a href="/news/2010/11/29/wicket-1.4.14-released.html">more</a></li>
 </div>
         </div>
@@ -96,6 +99,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2010/12/24/wicket-1.4.15-released.html b/content/news/2010/12/24/wicket-1.4.15-released.html
index c144610..76dd454 100644
--- a/content/news/2010/12/24/wicket-1.4.15-released.html
+++ b/content/news/2010/12/24/wicket-1.4.15-released.html
@@ -52,9 +52,9 @@
     <p class="meta">24 Dec 2010</p>
     <p>This is fifteenth 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.15">Subversion tag</a></li>
+  <li><a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.15">Subversion tag</a> </li>
   <li><a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;styleName=Html&amp;version=12315900">Changelog</a></li>
-  <li>To use in Maven:</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>
diff --git a/content/news/2010/12/index.html b/content/news/2010/12/index.html
index 7e82379..c65c524 100644
--- a/content/news/2010/12/index.html
+++ b/content/news/2010/12/index.html
@@ -51,12 +51,13 @@
   <p><small>24 Dec 2010</small></p>
 	<p>This is fifteenth 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.15">Subversion tag</a></li>
+  <li>
+<a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.15">Subversion tag</a> </li>
   <li><a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;styleName=Html&amp;version=12315900">Changelog</a></li>
-  <li>To use in Maven:</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>
+    <span class="nt">&lt;groupI...</span></code></pre></div>
 	<a href="/news/2010/12/24/wicket-1.4.15-released.html">more</a></li>
 </div>
         </div>
@@ -64,6 +65,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2010/index.html b/content/news/2010/index.html
index b7abaa8..498e827 100644
--- a/content/news/2010/index.html
+++ b/content/news/2010/index.html
@@ -191,6 +191,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2011/01/22/wicket-1.5-RC1-released.html b/content/news/2011/01/22/wicket-1.5-RC1-released.html
index 597c0c4..57dbcb9 100644
--- a/content/news/2011/01/22/wicket-1.5-RC1-released.html
+++ b/content/news/2011/01/22/wicket-1.5-RC1-released.html
@@ -60,7 +60,7 @@
 <p>Release Artifacts:
 * <a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.5-RC1">Subversion tag</a> 
 * <a href="https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&amp;&amp;pid=12310561&amp;fixfor=12315483&amp;sorter/field=issuekey&amp;sorter/order=DESC">Changelog</a>
-* To use in Maven:</p>
+* To use in Maven: </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<span class="nt">&lt;/artifactId&gt;</span>
diff --git a/content/news/2011/01/index.html b/content/news/2011/01/index.html
index 7fbbd9c..3164b60 100644
--- a/content/news/2011/01/index.html
+++ b/content/news/2011/01/index.html
@@ -57,6 +57,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2011/02/25/wicket-1.4.16-released.html b/content/news/2011/02/25/wicket-1.4.16-released.html
index 78da297..845150b 100644
--- a/content/news/2011/02/25/wicket-1.4.16-released.html
+++ b/content/news/2011/02/25/wicket-1.4.16-released.html
@@ -52,9 +52,9 @@
     <p class="meta">25 Feb 2011</p>
     <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.</p>
 <ul>
-  <li><a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.16">Subversion tag</a></li>
+  <li><a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.16">Subversion tag</a> </li>
   <li><a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;version=12316020">Changelog</a></li>
-  <li>To use in Maven:</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>
diff --git a/content/news/2011/02/25/wicket-1.5-rc2-released.html b/content/news/2011/02/25/wicket-1.5-rc2-released.html
index 8a1db00..8beb615 100644
--- a/content/news/2011/02/25/wicket-1.5-rc2-released.html
+++ b/content/news/2011/02/25/wicket-1.5-rc2-released.html
@@ -55,7 +55,7 @@
 <p>Release Artifacts:
 * <a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.5-rc2">Subversion tag</a> 
 * <a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;version=12316059">Changelog</a>
-* To use in Maven:</p>
+* To use in Maven: </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>
diff --git a/content/news/2011/02/index.html b/content/news/2011/02/index.html
index 1e0558e..097c4c2 100644
--- a/content/news/2011/02/index.html
+++ b/content/news/2011/02/index.html
@@ -51,12 +51,13 @@
   <p><small>25 Feb 2011</small></p>
 	<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.</p>
 <ul>
-  <li><a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.16">Subversion tag</a></li>
+  <li>
+<a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.16">Subversion tag</a> </li>
   <li><a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;version=12316020">Changelog</a></li>
-  <li>To use in Maven:</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>
+    <span class="nt">&lt;groupI...</span></code></pre></div>
 	<a href="/news/2011/02/25/wicket-1.4.16-released.html">more</a></li>
 </div>
 <div class="news">
@@ -71,6 +72,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2011/03/index.html b/content/news/2011/03/index.html
index 8af1786..641a7c6 100644
--- a/content/news/2011/03/index.html
+++ b/content/news/2011/03/index.html
@@ -58,6 +58,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2011/04/02/wicket-1.4.17-released.html b/content/news/2011/04/02/wicket-1.4.17-released.html
index 2e31d23..7900fa3 100644
--- a/content/news/2011/04/02/wicket-1.4.17-released.html
+++ b/content/news/2011/04/02/wicket-1.4.17-released.html
@@ -52,9 +52,9 @@
     <p class="meta">02 Apr 2011</p>
     <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.</p>
 <ul>
-  <li><a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.17">Subversion tag</a></li>
+  <li><a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.17">Subversion tag</a> </li>
   <li><a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;version=12316219">Changelog</a></li>
-  <li>To use in Maven:</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>
diff --git a/content/news/2011/04/02/wicket-1.5-RC3-released.html b/content/news/2011/04/02/wicket-1.5-RC3-released.html
index 5d64a35..eb531cd 100644
--- a/content/news/2011/04/02/wicket-1.5-RC3-released.html
+++ b/content/news/2011/04/02/wicket-1.5-RC3-released.html
@@ -55,7 +55,7 @@
 <p>Release Artifacts:
 * <a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.5-RC3">Subversion tag</a> 
 * <a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;version=12316220">Changelog</a>
-* To use in Maven:</p>
+* To use in Maven: </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>
diff --git a/content/news/2011/04/index.html b/content/news/2011/04/index.html
index f3aa2d5..419593a 100644
--- a/content/news/2011/04/index.html
+++ b/content/news/2011/04/index.html
@@ -51,12 +51,13 @@
   <p><small>02 Apr 2011</small></p>
 	<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.</p>
 <ul>
-  <li><a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.17">Subversion tag</a></li>
+  <li>
+<a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.17">Subversion tag</a> </li>
   <li><a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;version=12316219">Changelog</a></li>
-  <li>To use in Maven:</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;groupI...</span></code></pre></div>
+    <span class="nt">&lt;groupId&gt;...</span></code></pre></div>
 	<a href="/news/2011/04/02/wicket-1.4.17-released.html">more</a></li>
 </div>
 <div class="news">
@@ -71,6 +72,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2011/05/11/wicket-1.5-RC4.2-released.html b/content/news/2011/05/11/wicket-1.5-RC4.2-released.html
index 303b68e..3a98cf2 100644
--- a/content/news/2011/05/11/wicket-1.5-RC4.2-released.html
+++ b/content/news/2011/05/11/wicket-1.5-RC4.2-released.html
@@ -55,7 +55,7 @@
 <p>Release Artifacts:
 * <a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.5-RC4.2">Subversion tag</a> 
 * <a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;version=12316330">Changelog</a>
-* To use in Maven:</p>
+* To use in Maven: </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>
diff --git a/content/news/2011/05/index.html b/content/news/2011/05/index.html
index fc91033..b9b7cb3 100644
--- a/content/news/2011/05/index.html
+++ b/content/news/2011/05/index.html
@@ -66,6 +66,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2011/06/25/wicket-1.5-RC5.1-released.html b/content/news/2011/06/25/wicket-1.5-RC5.1-released.html
index 378fc2d..f28cf91 100644
--- a/content/news/2011/06/25/wicket-1.5-RC5.1-released.html
+++ b/content/news/2011/06/25/wicket-1.5-RC5.1-released.html
@@ -55,7 +55,7 @@
 <p>Release Artifacts:
 * <a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.5-RC5.1">Subversion tag</a> 
 * <a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;version=12316423">Changelog</a>
-* To use in Maven:</p>
+* To use in Maven: </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>
diff --git a/content/news/2011/06/index.html b/content/news/2011/06/index.html
index d261ca5..9d039ca 100644
--- a/content/news/2011/06/index.html
+++ b/content/news/2011/06/index.html
@@ -58,6 +58,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2011/08/09/wicket-1.4.18-released.html b/content/news/2011/08/09/wicket-1.4.18-released.html
index 556b67c..26d5e52 100644
--- a/content/news/2011/08/09/wicket-1.4.18-released.html
+++ b/content/news/2011/08/09/wicket-1.4.18-released.html
@@ -52,9 +52,9 @@
     <p class="meta">09 Aug 2011</p>
     <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.</p>
 <ul>
-  <li><a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.18">Subversion tag</a></li>
+  <li><a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.18">Subversion tag</a> </li>
   <li><a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;version=12316329">Changelog</a></li>
-  <li>To use in Maven:</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>
diff --git a/content/news/2011/08/28/1.5-RC7-released.html b/content/news/2011/08/28/1.5-RC7-released.html
index 317846f..8fafe73 100644
--- a/content/news/2011/08/28/1.5-RC7-released.html
+++ b/content/news/2011/08/28/1.5-RC7-released.html
@@ -56,7 +56,7 @@
 * <a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.5-RC7">Subversion tag</a> 
 * <a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;version=12316657">Changelog RC6</a>
 * <a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;version=12317645">Changelog RC7</a>
-* To use in Maven:</p>
+* To use in Maven: </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>
diff --git a/content/news/2011/08/index.html b/content/news/2011/08/index.html
index 3cf5cdd..f245172 100644
--- a/content/news/2011/08/index.html
+++ b/content/news/2011/08/index.html
@@ -51,12 +51,13 @@
   <p><small>09 Aug 2011</small></p>
 	<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.</p>
 <ul>
-  <li><a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.18">Subversion tag</a></li>
+  <li>
+<a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.18">Subversion tag</a> </li>
   <li><a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;version=12316329">Changelog</a></li>
-  <li>To use in Maven:</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;groupI...</span></code></pre></div>
+    <span class="nt">&lt;groupId&gt;...</span></code></pre></div>
 	<a href="/news/2011/08/09/wicket-1.4.18-released.html">more</a></li>
 </div>
 <div class="news">
@@ -84,6 +85,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2011/09/07/wicket-1.5-released.html b/content/news/2011/09/07/wicket-1.5-released.html
index cfae4b3..a5d939d 100644
--- a/content/news/2011/09/07/wicket-1.5-released.html
+++ b/content/news/2011/09/07/wicket-1.5-released.html
@@ -80,7 +80,7 @@
   <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>
+<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>
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
index 97ccc86..4a83a66 100644
--- a/content/news/2011/09/29/wicket-1.5.1-released.html
+++ b/content/news/2011/09/29/wicket-1.5.1-released.html
@@ -52,9 +52,9 @@
     <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="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>
+  <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>
diff --git a/content/news/2011/09/index.html b/content/news/2011/09/index.html
index 208a34d..f77ed1b 100644
--- a/content/news/2011/09/index.html
+++ b/content/news/2011/09/index.html
@@ -57,12 +57,13 @@
   <p><small>29 Sep 2011</small></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="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>
+  <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>
+    <span class="nt">&lt;groupI...</span></code></pre></div>
 	<a href="/news/2011/09/29/wicket-1.5.1-released.html">more</a></li>
 </div>
         </div>
@@ -70,6 +71,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
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
index cbad88a..d13af6c 100644
--- a/content/news/2011/10/17/wicket-1.4.19-released.html
+++ b/content/news/2011/10/17/wicket-1.4.19-released.html
@@ -52,9 +52,9 @@
     <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="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>
+  <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>
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
index e06abda..27c2212 100644
--- a/content/news/2011/10/24/wicket-1.5.2-released.html
+++ b/content/news/2011/10/24/wicket-1.5.2-released.html
@@ -52,9 +52,9 @@
     <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="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>
+  <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>
diff --git a/content/news/2011/10/index.html b/content/news/2011/10/index.html
index 31c1af5..0b72c8d 100644
--- a/content/news/2011/10/index.html
+++ b/content/news/2011/10/index.html
@@ -51,12 +51,13 @@
   <p><small>17 Oct 2011</small></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="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>
+  <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>
+    <span class="nt">&lt;groupId...</span></code></pre></div>
 	<a href="/news/2011/10/17/wicket-1.4.19-released.html">more</a></li>
 </div>
 <div class="news">
@@ -64,12 +65,13 @@
   <p><small>24 Oct 2011</small></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="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>
+  <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>
+    <span class="nt">&lt;groupI...</span></code></pre></div>
 	<a href="/news/2011/10/24/wicket-1.5.2-released.html">more</a></li>
 </div>
         </div>
@@ -77,6 +79,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2011/11/index.html b/content/news/2011/11/index.html
index 8be671b..dfd1504 100644
--- a/content/news/2011/11/index.html
+++ b/content/news/2011/11/index.html
@@ -64,6 +64,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2011/index.html b/content/news/2011/index.html
index ad2bf08..5b4858b 100644
--- a/content/news/2011/index.html
+++ b/content/news/2011/index.html
@@ -215,6 +215,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2012/01/index.html b/content/news/2012/01/index.html
index ada04bd..48fee2e 100644
--- a/content/news/2012/01/index.html
+++ b/content/news/2012/01/index.html
@@ -64,6 +64,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2012/03/index.html b/content/news/2012/03/index.html
index 1fb6353..b861cec 100644
--- a/content/news/2012/03/index.html
+++ b/content/news/2012/03/index.html
@@ -112,6 +112,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2012/05/index.html b/content/news/2012/05/index.html
index a64bc36..1defbbf 100644
--- a/content/news/2012/05/index.html
+++ b/content/news/2012/05/index.html
@@ -74,6 +74,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2012/06/index.html b/content/news/2012/06/index.html
index 0750ef2..ddff06d 100644
--- a/content/news/2012/06/index.html
+++ b/content/news/2012/06/index.html
@@ -70,6 +70,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2012/07/index.html b/content/news/2012/07/index.html
index 11109d5..37763e4 100644
--- a/content/news/2012/07/index.html
+++ b/content/news/2012/07/index.html
@@ -63,6 +63,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2012/08/index.html b/content/news/2012/08/index.html
index e650ba7..eda148e 100644
--- a/content/news/2012/08/index.html
+++ b/content/news/2012/08/index.html
@@ -64,6 +64,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2012/09/05/wicket-6.0.0-released.html b/content/news/2012/09/05/wicket-6.0.0-released.html
index 36ee019..541c68a 100644
--- a/content/news/2012/09/05/wicket-6.0.0-released.html
+++ b/content/news/2012/09/05/wicket-6.0.0-released.html
@@ -52,12 +52,12 @@
     <p class="meta">05 Sep 2012</p>
     <blockquote>
   <p>“With great pleasure we announce the availability of Apache Wicket 6.0.0”</p>
-  <p>– Martijn Dashorst, Vice President, Apache Wicket</p>
+  <p>– Martijn Dashorst, Vice President, Apache Wicket </p>
 </blockquote>
 <p>Apache Wicket v6.0.0 is the 6th major release of the popular open source Java web framework. Numerous enhancements make Apache Wicket v6.0.0 a solid choice for web
 development:</p>
 <ul>
-  <li>Out-of-the box JQuery integration</li>
+  <li>Out-of-the box JQuery integration </li>
   <li>Complete control over AJAX requests</li>
   <li>Improved event registration in browsers</li>
   <li>Support for large datasets in components</li>
diff --git a/content/news/2012/09/index.html b/content/news/2012/09/index.html
index 89452eb..230175d 100644
--- a/content/news/2012/09/index.html
+++ b/content/news/2012/09/index.html
@@ -63,9 +63,9 @@
   <p><small>05 Sep 2012</small></p>
 	<blockquote>
   <p>“With great pleasure we announce the availability of Apache Wicket 6.0.0”</p>
-  <p>– Martijn Dashorst, Vice President, Apache Wicket</p>
+  <p>– Martijn Dashorst, Vice President, Apache Wicket </p>
 </blockquote>
-<p>Apache Wicket v6.0.0 is the 6th major release of the popular open source Java web framework. Numerous enhancem...</p>
+<p>Apache Wicket v6.0.0 is the 6th major release of the popular open source Java web framework. Numerous enhanceme...</p>
 	<a href="/news/2012/09/05/wicket-6.0.0-released.html">more</a></li>
 </div>
 <div class="news">
@@ -86,6 +86,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2012/10/index.html b/content/news/2012/10/index.html
index 33c9726..275e208 100644
--- a/content/news/2012/10/index.html
+++ b/content/news/2012/10/index.html
@@ -74,6 +74,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2012/11/index.html b/content/news/2012/11/index.html
index 3d872e9..fd185bd 100644
--- a/content/news/2012/11/index.html
+++ b/content/news/2012/11/index.html
@@ -72,6 +72,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2012/12/index.html b/content/news/2012/12/index.html
index ebe595d..54eec8c 100644
--- a/content/news/2012/12/index.html
+++ b/content/news/2012/12/index.html
@@ -59,6 +59,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2012/index.html b/content/news/2012/index.html
index b4bb2ce..a952519 100644
--- a/content/news/2012/index.html
+++ b/content/news/2012/index.html
@@ -239,6 +239,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2013/01/index.html b/content/news/2013/01/index.html
index 2b5d85c..1586871 100644
--- a/content/news/2013/01/index.html
+++ b/content/news/2013/01/index.html
@@ -59,6 +59,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2013/02/15/wicket-6.6.0-released.html b/content/news/2013/02/15/wicket-6.6.0-released.html
index cec6ec6..8f71ff7 100644
--- a/content/news/2013/02/15/wicket-6.6.0-released.html
+++ b/content/news/2013/02/15/wicket-6.6.0-released.html
@@ -58,7 +58,7 @@
 <h3 id="new-and-noteworthy">New and noteworthy</h3>
 <h4 id="wicketfor-attribute-for-html-label-tags">wicket:for attribute for html label tags</h4>
 <p>While already available for some time, the wicket-1.5.xsd now contains
-a valid definition for the <code>wicket:for</code> attribute such that it</p>
+a valid definition for the <code>wicket:for</code> attribute such that it </p>
 <blockquote>
   <p>Can be used in HTML <code>&lt;label&gt;</code> element to automatically link it
 to a form element. The value of this attribute must have the same value of
@@ -112,7 +112,7 @@
   <li><a href="https://issues.apache.org/jira/browse/WICKET-5011">WICKET-5011</a> - Allow Select to work with non-equals objects</li>
   <li><a href="https://issues.apache.org/jira/browse/WICKET-5013">WICKET-5013</a> - Wicket Enclosure fails with more than one component</li>
   <li><a href="https://issues.apache.org/jira/browse/WICKET-5014">WICKET-5014</a> - Changes in WicketObjects.sizeof(final Serializable object) clashes with <code>&lt;header-contribution&gt;</code> in AjaxResponse</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5019">WICKET-5019</a> - Handling of NO_MINIFIED_NAME in PackageResourceReference#internalGetMinifiedName()</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5019">WICKET-5019</a> - Handling of NO_MINIFIED_NAME in PackageResourceReference#internalGetMinifiedName()   </li>
   <li><a href="https://issues.apache.org/jira/browse/WICKET-5020">WICKET-5020</a> - InlineEnclosureHandler always uses “wicket” namespace</li>
   <li><a href="https://issues.apache.org/jira/browse/WICKET-5024">WICKET-5024</a> - Global ajax event for precondition is not called</li>
   <li><a href="https://issues.apache.org/jira/browse/WICKET-5027">WICKET-5027</a> - FormTester#getInputValue() does not support Select/SelectOption nor other custom components</li>
diff --git a/content/news/2013/02/index.html b/content/news/2013/02/index.html
index 8288af7..1d03d4f 100644
--- a/content/news/2013/02/index.html
+++ b/content/news/2013/02/index.html
@@ -72,6 +72,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2013/03/index.html b/content/news/2013/03/index.html
index 1c9d983..e64e252 100644
--- a/content/news/2013/03/index.html
+++ b/content/news/2013/03/index.html
@@ -64,6 +64,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2013/04/12/wicket-6.7.0-released.html b/content/news/2013/04/12/wicket-6.7.0-released.html
index a03d82d..2aeb943 100644
--- a/content/news/2013/04/12/wicket-6.7.0-released.html
+++ b/content/news/2013/04/12/wicket-6.7.0-released.html
@@ -105,7 +105,7 @@
   <li><a href="https://issues.apache.org/jira/browse/WICKET-4903">WICKET-4903</a> - relativeUrl’s begins with ./</li>
   <li><a href="https://issues.apache.org/jira/browse/WICKET-4907">WICKET-4907</a> - UrlResourceReference generates broken relative URLs</li>
   <li><a href="https://issues.apache.org/jira/browse/WICKET-4942">WICKET-4942</a> - Double slash ‘//’ in starting url makes Url.parse output a relative Url</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-4989">WICKET-4989</a> - WicketTester should send copies of its cookies</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-4989">WICKET-4989</a> - WicketTester should send copies of its cookies </li>
   <li><a href="https://issues.apache.org/jira/browse/WICKET-4995">WICKET-4995</a> - Using CryptoMapper causes page to render twice</li>
   <li><a href="https://issues.apache.org/jira/browse/WICKET-5039">WICKET-5039</a> - Manual invocation of FunctionsExecutor#notify() is broken</li>
   <li><a href="https://issues.apache.org/jira/browse/WICKET-5041">WICKET-5041</a> - DefaultCssAutoCompleteTextField should have Constructor (String id)</li>
@@ -158,7 +158,7 @@
   <li><a href="https://issues.apache.org/jira/browse/WICKET-5050">WICKET-5050</a> - AutoComplete should not request suggestions if input is no longer active element</li>
   <li><a href="https://issues.apache.org/jira/browse/WICKET-5057">WICKET-5057</a> - FilteringHeaderResponse requires a usage of FilteringHeaderResponse.IHeaderResponseFilter for no reason when FilteredHeaderItem is used</li>
   <li><a href="https://issues.apache.org/jira/browse/WICKET-5062">WICKET-5062</a> - Update the list of HTML void elements with the latest HTML5 ones</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5065">WICKET-5065</a> - Improve UrlRenderer to be able to render urls without scheme and/or host</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5065">WICKET-5065</a> - Improve UrlRenderer to be able to render urls without scheme and/or host </li>
   <li><a href="https://issues.apache.org/jira/browse/WICKET-5066">WICKET-5066</a> - Allow PackageResource to decide itself whether it could be accepted or not</li>
   <li><a href="https://issues.apache.org/jira/browse/WICKET-5074">WICKET-5074</a> - Improvement for MockHttpServletRequest and FormTester to support ‘multiple’ input type of fileUpload</li>
   <li><a href="https://issues.apache.org/jira/browse/WICKET-5079">WICKET-5079</a> - Allow WebApplication-specific Spring configuration</li>
diff --git a/content/news/2013/04/index.html b/content/news/2013/04/index.html
index d301d84..6771227 100644
--- a/content/news/2013/04/index.html
+++ b/content/news/2013/04/index.html
@@ -59,6 +59,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2013/05/index.html b/content/news/2013/05/index.html
index a6ce30d..76a3452 100644
--- a/content/news/2013/05/index.html
+++ b/content/news/2013/05/index.html
@@ -59,6 +59,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2013/06/27/wicket-6.9.0-released.html b/content/news/2013/06/27/wicket-6.9.0-released.html
index 10c3dbf..26bbfda 100644
--- a/content/news/2013/06/27/wicket-6.9.0-released.html
+++ b/content/news/2013/06/27/wicket-6.9.0-released.html
@@ -116,7 +116,7 @@
   <li><a href="https://issues.apache.org/jira/browse/WICKET-5199">WICKET-5199</a> - Component.getBehaviors(Class&lt;M&gt; type) documentation is obsolete</li>
   <li><a href="https://issues.apache.org/jira/browse/WICKET-5207">WICKET-5207</a> - Use documented jQuery APIs for triggering the special event ‘inputchange’</li>
   <li><a href="https://issues.apache.org/jira/browse/WICKET-5208">WICKET-5208</a> - Contribute jQuery 1.x or 2.x depending on the user agent</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5210">WICKET-5210</a> - JQuery problem because component appears twice in DOM while Ajax refresh</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5210">WICKET-5210</a> - JQuery problem because component appears twice in DOM while Ajax refresh </li>
   <li><a href="https://issues.apache.org/jira/browse/WICKET-5211">WICKET-5211</a> - Make CryptoMapper extendable</li>
   <li><a href="https://issues.apache.org/jira/browse/WICKET-5215">WICKET-5215</a> - Better exception message when Page instantiation fails in DefaultPageFactory</li>
   <li><a href="https://issues.apache.org/jira/browse/WICKET-5219">WICKET-5219</a> - ServletWebResponse should call #setHeader() to set Ajax-Location for redirect</li>
diff --git a/content/news/2013/06/index.html b/content/news/2013/06/index.html
index 040c71e..a2d24bb 100644
--- a/content/news/2013/06/index.html
+++ b/content/news/2013/06/index.html
@@ -59,6 +59,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2013/07/10/wicket-6.9.1-released.html b/content/news/2013/07/10/wicket-6.9.1-released.html
index 6a62207..7f1f42d 100644
--- a/content/news/2013/07/10/wicket-6.9.1-released.html
+++ b/content/news/2013/07/10/wicket-6.9.1-released.html
@@ -63,7 +63,7 @@
 decided to remove deprecated APIs from their codebase from JQuery 1.9
 and up. This means that JQuery plugins using these deprecated APIs no
 longer work. See the JQuery migration guide for more information,
-available from http://jquery.com/upgrade-guide/1.9/</p>
+available from http://jquery.com/upgrade-guide/1.9/ </p>
 <p>If your application depends on these deprecated APIs you can easily
 downgrade to JQuery 1.8.3-the previously provided JQuery that still
 contains these APIs. Download the 1.8.3 release of jquery and add it
diff --git a/content/news/2013/07/index.html b/content/news/2013/07/index.html
index d60f295..7976c2c 100644
--- a/content/news/2013/07/index.html
+++ b/content/news/2013/07/index.html
@@ -58,6 +58,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2013/08/18/wicket-6.10.0-released.html b/content/news/2013/08/18/wicket-6.10.0-released.html
index 99fa130..4479afc 100644
--- a/content/news/2013/08/18/wicket-6.10.0-released.html
+++ b/content/news/2013/08/18/wicket-6.10.0-released.html
@@ -76,7 +76,7 @@
 decided to remove deprecated APIs from their codebase from JQuery 1.9
 and up. This means that JQuery plugins using these deprecated APIs no
 longer work. See the JQuery migration guide for more information,
-available from http://jquery.com/upgrade-guide/1.9/</p>
+available from http://jquery.com/upgrade-guide/1.9/ </p>
 <p>If your application depends on these deprecated APIs you can easily
 downgrade to JQuery 1.8.3-the previously provided JQuery that still
 contains these APIs. Download the 1.8.3 release of jquery and add it
diff --git a/content/news/2013/08/index.html b/content/news/2013/08/index.html
index e66f792..5c4c2d1 100644
--- a/content/news/2013/08/index.html
+++ b/content/news/2013/08/index.html
@@ -59,6 +59,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2013/09/index.html b/content/news/2013/09/index.html
index 2b58494..84287e3 100644
--- a/content/news/2013/09/index.html
+++ b/content/news/2013/09/index.html
@@ -59,6 +59,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2013/11/01/wicket-6.12.0-released.html b/content/news/2013/11/01/wicket-6.12.0-released.html
index 34c068e..a9f514c 100644
--- a/content/news/2013/11/01/wicket-6.12.0-released.html
+++ b/content/news/2013/11/01/wicket-6.12.0-released.html
@@ -64,7 +64,7 @@
   <li>Add Wicket.Event.unsubscribe method</li>
   <li>Allow form components to trim the input themselves</li>
   <li>Allow DebugBar contributors to be removed</li>
-  <li>Session management doesn’t work with Jetty’s JDBCSessionManager</li>
+  <li>Session management doesn’t work with Jetty’s JDBCSessionManager </li>
   <li>HeaderItem to be Serializable</li>
 </ul>
 <h3 id="jquery-update-in-690">JQuery update in 6.9.0</h3>
@@ -155,7 +155,7 @@
   <li><a href="https://issues.apache.org/jira/browse/WICKET-5381">WICKET-5381</a> - Add Wicket.Event.unsubscribe method</li>
   <li><a href="https://issues.apache.org/jira/browse/WICKET-5384">WICKET-5384</a> - Allow form components to trim the input themselves</li>
   <li><a href="https://issues.apache.org/jira/browse/WICKET-5388">WICKET-5388</a> - Allow DebugBar contributors to be removed</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5390">WICKET-5390</a> - Session management doesn’t work with Jetty’s JDBCSessionManager</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5390">WICKET-5390</a> - Session management doesn’t work with Jetty’s JDBCSessionManager </li>
   <li><a href="https://issues.apache.org/jira/browse/WICKET-5395">WICKET-5395</a> - HeaderItem to be Serializable</li>
 </ul>
 <h4 id="wish">Wish</h4>
diff --git a/content/news/2013/11/index.html b/content/news/2013/11/index.html
index 512875d..bb82c24 100644
--- a/content/news/2013/11/index.html
+++ b/content/news/2013/11/index.html
@@ -59,6 +59,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2013/index.html b/content/news/2013/index.html
index b982b01..1ffc482 100644
--- a/content/news/2013/index.html
+++ b/content/news/2013/index.html
@@ -179,6 +179,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2014/01/index.html b/content/news/2014/01/index.html
index 406b33d..15ed980 100644
--- a/content/news/2014/01/index.html
+++ b/content/news/2014/01/index.html
@@ -59,6 +59,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2014/02/index.html b/content/news/2014/02/index.html
index 32d6d23..ec0969c 100644
--- a/content/news/2014/02/index.html
+++ b/content/news/2014/02/index.html
@@ -111,6 +111,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2014/04/23/wicket-6.15.0-released.html b/content/news/2014/04/23/wicket-6.15.0-released.html
index 66f28af..b98c863 100644
--- a/content/news/2014/04/23/wicket-6.15.0-released.html
+++ b/content/news/2014/04/23/wicket-6.15.0-released.html
@@ -59,7 +59,7 @@
 <p>This release fixes 25 bugs and adds the following improvements:</p>
 <ul>
   <li>The second level page store has been disabled by default (see issue <a href="https://issues.apache.org/jira/browse/WICKET-5554">WICKET-5554</a> for more details).</li>
-  <li>Created new placeholder tag to indicate where header contributions should appear. See this <a href="http://wicketinaction.com/2014/03/header-contributions-positioning/">blog post entry</a> or paragraph 15.8 of the official guide.</li>
+  <li>Created new placeholder tag to indicate where header contributions should appear. See this <a href="http://wicketinaction.com/2014/03/header-contributions-positioning/">blog post entry</a> or paragraph 15.8 of the official guide. </li>
 </ul>
 <p>This release also celebrates the 10th birthday of Wicket!</p>
 <h3 id="using-this-release">Using this release</h3>
diff --git a/content/news/2014/04/index.html b/content/news/2014/04/index.html
index 5dc0e63..f3460c0 100644
--- a/content/news/2014/04/index.html
+++ b/content/news/2014/04/index.html
@@ -70,6 +70,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2014/06/index.html b/content/news/2014/06/index.html
index 5fcdfcb..ef4ea4f 100644
--- a/content/news/2014/06/index.html
+++ b/content/news/2014/06/index.html
@@ -70,6 +70,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2014/08/24/wicket-6.17.0-released.html b/content/news/2014/08/24/wicket-6.17.0-released.html
index 162c8a9..6578bea 100644
--- a/content/news/2014/08/24/wicket-6.17.0-released.html
+++ b/content/news/2014/08/24/wicket-6.17.0-released.html
@@ -60,7 +60,7 @@
 <ul>
   <li>Rename log4j.properties in the quickstart when creating a project for WildFly</li>
   <li>Make is possible to position the choice label before/after/around the choice</li>
-  <li>StringResourceModel with custom locale</li>
+  <li>StringResourceModel with custom locale </li>
   <li>Added an HeaderItem for meta data tags such as ‘meta’ or canonical link</li>
 </ul>
 <p>The full list of improvements and fixes can be found at the end of this
diff --git a/content/news/2014/08/index.html b/content/news/2014/08/index.html
index 6c402b0..8d58342 100644
--- a/content/news/2014/08/index.html
+++ b/content/news/2014/08/index.html
@@ -70,6 +70,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2014/09/index.html b/content/news/2014/09/index.html
index f9e72a2..2abc0de 100644
--- a/content/news/2014/09/index.html
+++ b/content/news/2014/09/index.html
@@ -78,6 +78,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2014/11/05/wicket-6.18.0-released.html b/content/news/2014/11/05/wicket-6.18.0-released.html
index e35bb2a..cd2181a 100644
--- a/content/news/2014/11/05/wicket-6.18.0-released.html
+++ b/content/news/2014/11/05/wicket-6.18.0-released.html
@@ -111,7 +111,7 @@
   <li><a href="https://issues.apache.org/jira/browse/WICKET-5689">WICKET-5689</a> - Nested Redirects and REDIRECT_TO_BUFFER</li>
   <li><a href="https://issues.apache.org/jira/browse/WICKET-5698">WICKET-5698</a> - WebApplication#unmount() unmounts the whole compound mapper if some of its inner ones matches</li>
   <li><a href="https://issues.apache.org/jira/browse/WICKET-5699">WICKET-5699</a> - wicket-atmosphere 0.20 should use wicket-webjars 0.4.3</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5701">WICKET-5701</a> - WebSocketRequestHandler is not set as a scheduled and thus RequestCycle#find(AjaxRequestTarget.class) doesn’t work</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5701">WICKET-5701</a> - WebSocketRequestHandler is not set as a scheduled and thus RequestCycle#find(AjaxRequestTarget.class) doesn’t work </li>
   <li><a href="https://issues.apache.org/jira/browse/WICKET-5704">WICKET-5704</a> - IllegalArgument exception with wicket:child in ajaxrequest</li>
   <li><a href="https://issues.apache.org/jira/browse/WICKET-5706">WICKET-5706</a> - ResourceUtils.getLocaleFromFilename cannot handle filenames with classifiers</li>
   <li><a href="https://issues.apache.org/jira/browse/WICKET-5711">WICKET-5711</a> - OnChangeAjaxBehavior should listen for both ‘inputchange’ and ‘change’ events for TextField and TextArea</li>
@@ -129,7 +129,7 @@
 <ul>
   <li><a href="https://issues.apache.org/jira/browse/WICKET-5691">WICKET-5691</a> - Wicket FileUploadField.getFileUploads() should never return null.</li>
   <li><a href="https://issues.apache.org/jira/browse/WICKET-5692">WICKET-5692</a> - Misleading message in PropertyValidator</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5694">WICKET-5694</a> - Add WicketTester assertion methods for component’s markup style, variation and locale</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5694">WICKET-5694</a> - Add WicketTester assertion methods for component’s markup style, variation and locale </li>
   <li><a href="https://issues.apache.org/jira/browse/WICKET-5710">WICKET-5710</a> - StringValidator should set ‘minlength’ attribute to input and textarea</li>
   <li><a href="https://issues.apache.org/jira/browse/WICKET-5715">WICKET-5715</a> - Allow setting ‘async’ attribute on reference <script> elements</script></li>
   <li><a href="https://issues.apache.org/jira/browse/WICKET-5718">WICKET-5718</a> - Upgrade Atmosphere to 2.2.2</li>
diff --git a/content/news/2014/11/05/wicket-7.0.0-M4-released.html b/content/news/2014/11/05/wicket-7.0.0-M4-released.html
index 884d3f8..6198dd9 100644
--- a/content/news/2014/11/05/wicket-7.0.0-M4-released.html
+++ b/content/news/2014/11/05/wicket-7.0.0-M4-released.html
@@ -123,7 +123,7 @@
   <li><a href="https://issues.apache.org/jira/browse/WICKET-5326">WICKET-5326</a> - Wicket doesn’t encrypt links and Ajax URLs for mounted pages when CryptoMapper is used</li>
   <li><a href="https://issues.apache.org/jira/browse/WICKET-5689">WICKET-5689</a> - Nested Redirects and REDIRECT_TO_BUFFER</li>
   <li><a href="https://issues.apache.org/jira/browse/WICKET-5698">WICKET-5698</a> - WebApplication#unmount() unmounts the whole compound mapper if some of its inner ones matches</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5701">WICKET-5701</a> - WebSocketRequestHandler is not set as a scheduled and thus RequestCycle#find(AjaxRequestTarget.class) doesn’t work</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5701">WICKET-5701</a> - WebSocketRequestHandler is not set as a scheduled and thus RequestCycle#find(AjaxRequestTarget.class) doesn’t work </li>
   <li><a href="https://issues.apache.org/jira/browse/WICKET-5704">WICKET-5704</a> - IllegalArgument exception with wicket:child in ajaxrequest</li>
   <li><a href="https://issues.apache.org/jira/browse/WICKET-5706">WICKET-5706</a> - ResourceUtils.getLocaleFromFilename cannot handle filenames with classifiers</li>
   <li><a href="https://issues.apache.org/jira/browse/WICKET-5711">WICKET-5711</a> - OnChangeAjaxBehavior should listen for both ‘inputchange’ and ‘change’ events for TextField and TextArea</li>
@@ -148,7 +148,7 @@
   <li><a href="https://issues.apache.org/jira/browse/WICKET-5350">WICKET-5350</a> - Enhancement for AbstractChoice and WildcardListModel API</li>
   <li><a href="https://issues.apache.org/jira/browse/WICKET-5691">WICKET-5691</a> - Wicket FileUploadField.getFileUploads() should never return null.</li>
   <li><a href="https://issues.apache.org/jira/browse/WICKET-5692">WICKET-5692</a> - Misleading message in PropertyValidator</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5694">WICKET-5694</a> - Add WicketTester assertion methods for component’s markup style, variation and locale</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5694">WICKET-5694</a> - Add WicketTester assertion methods for component’s markup style, variation and locale </li>
   <li><a href="https://issues.apache.org/jira/browse/WICKET-5695">WICKET-5695</a> - Use Log4j 2.x for the archetype</li>
   <li><a href="https://issues.apache.org/jira/browse/WICKET-5697">WICKET-5697</a> - Rework Spring application to use annotations based configuration</li>
   <li><a href="https://issues.apache.org/jira/browse/WICKET-5708">WICKET-5708</a> - Making FormComponent.convertInput() public</li>
diff --git a/content/news/2014/11/index.html b/content/news/2014/11/index.html
index 039d2bc..cdf0c4c 100644
--- a/content/news/2014/11/index.html
+++ b/content/news/2014/11/index.html
@@ -66,6 +66,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2014/index.html b/content/news/2014/index.html
index dece063..0475526 100644
--- a/content/news/2014/index.html
+++ b/content/news/2014/index.html
@@ -191,6 +191,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2015/02/13/new-committer-Sebastien-Briquet.html b/content/news/2015/02/13/new-committer-Sebastien-Briquet.html
index 2c29898..28a2ee2 100644
--- a/content/news/2015/02/13/new-committer-Sebastien-Briquet.html
+++ b/content/news/2015/02/13/new-committer-Sebastien-Briquet.html
@@ -52,11 +52,11 @@
     <p class="meta">13 Feb 2015</p>
     <p>The Project Management Committee (PMC) for Apache Wicket 
 has asked Sebastien Briquet to become a committer and we are pleased 
-to announce that he has accepted.</p>
+to announce that he has accepted. </p>
 <p>Sebastien has been involved with Wicket for several years now by developing one of the most successful integrations with JavaScript libraries, namely Wicket jQuery UI, reporting bugs, contributing fixes and participating in discussions.</p>
 <p>Being a committer will enable him to help us even easier in the future.</p>
-<p>Please welcome Sebastien Briquet to our team!</p>
-<p>Bienvenue Sebastien!</p>
+<p>Please welcome Sebastien Briquet to our team! </p>
+<p>Bienvenue Sebastien! </p>
 </div>
         </section>
     </div>
diff --git a/content/news/2015/02/index.html b/content/news/2015/02/index.html
index 876f0ed..6e909f1 100644
--- a/content/news/2015/02/index.html
+++ b/content/news/2015/02/index.html
@@ -66,8 +66,8 @@
   <p><small>13 Feb 2015</small></p>
 	<p>The Project Management Committee (PMC) for Apache Wicket 
 has asked Sebastien Briquet to become a committer and we are pleased 
-to announce that he has accepted.</p>
-<p>Sebastien has been involved with Wicket for several years now by developing one of the most successful integrations with JavaScript libraries, namely Wicket jQuery UI, reporting bugs, contributing fixe...</p>
+to announce that he has accepted. </p>
+<p>Sebastien has been involved with Wicket for several years now by developing one of the most successful integrations with JavaScript libraries, namely Wicket jQuery UI, reporting bugs, contributing fixes...</p>
 	<a href="/news/2015/02/13/new-committer-Sebastien-Briquet.html">more</a></li>
 </div>
 <div class="news">
@@ -88,6 +88,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2015/06/index.html b/content/news/2015/06/index.html
index b348bb1..0d82df5 100644
--- a/content/news/2015/06/index.html
+++ b/content/news/2015/06/index.html
@@ -66,6 +66,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2015/07/index.html b/content/news/2015/07/index.html
index acee0d7..d2f0527 100644
--- a/content/news/2015/07/index.html
+++ b/content/news/2015/07/index.html
@@ -57,6 +57,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/2015/10/24/wicket-1.5.14-released.html b/content/news/2015/10/24/wicket-1.5.14-released.html
new file mode 100644
index 0000000..1cece8e
--- /dev/null
+++ b/content/news/2015/10/24/wicket-1.5.14-released.html
@@ -0,0 +1,92 @@
+<!DOCTYPE html>
+<html>
+    <head>
+        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+        <meta charset="utf-8">
+        <title>Wicket 1.5.14 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/2015/10/24/wicket-1.5.14-released.html -->
+    	<li class=""><a href="/start/quickstart.html">Quick Start</a></li>
+		<!-- /start/download.html || /news/2015/10/24/wicket-1.5.14-released.html -->
+    	<li class=""><a href="/start/download.html">Download</a></li>
+		<!-- /learn || /news/2015/10/24/wicket-1.5.14-released.html -->
+    	<li class=""><a href="/learn">Documentation</a></li>
+		<!-- /help || /news/2015/10/24/wicket-1.5.14-released.html -->
+    	<li class=""><a href="/help">Support</a></li>
+		<!-- /contribute || /news/2015/10/24/wicket-1.5.14-released.html -->
+    	<li class=""><a href="/contribute">Contribute</a></li>
+		<!-- /community || /news/2015/10/24/wicket-1.5.14-released.html -->
+    	<li class=""><a href="/community">Community</a></li>
+		<!-- /apache || /news/2015/10/24/wicket-1.5.14-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.14 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 2015</p>
+    <p>This is the fourteenth maintenance release of the Wicket 1.5.x series. This release brings over 4 bug fixes and 1 improvement.</p>
+<pre><code>CHANGELOG for 1.5.14:
+</code></pre>
+<p>** Bug</p>
+<pre><code>* [WICKET-5838] - Last-modified header of external markup is ignored
+* [WICKET-5927] - Velocity remote code execution
+* [WICKET-6000] - Wicket 1.5 DTD link on website does not point to valid location
+* [WICKET-6005] - WicketRuntimeException from AjaxPagingNavigator#onAjaxEvent
+</code></pre>
+<p>** Improvement</p>
+<pre><code>* [WICKET-5974] - Change AjaxPagingNavigator#onAjaxEvent() to only consider parent components that have setOutputMarkupId(true)
+</code></pre>
+<ul>
+  <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.14<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.14">full distribution</a> (including sources)</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>
diff --git a/content/news/2015/10/25/wicket-7.1.0-released.html b/content/news/2015/10/25/wicket-7.1.0-released.html
new file mode 100644
index 0000000..1cc5568
--- /dev/null
+++ b/content/news/2015/10/25/wicket-7.1.0-released.html
@@ -0,0 +1,133 @@
+<p>The Apache Wicket PMC is proud to announce Apache Wicket 7.1.0!</p>
+
+<p>This release marks another minor release of Wicket 7. We
+use semantic versioning for the development of Wicket, and as such no
+API breaks are present breaks are present in this release compared to
+7.0.0.</p>
+
+<h2 id="new-and-noteworthy">New and noteworthy</h2>
+
+<p>Significant improvement in performance while adding components to
+the component hierarchy. There was a regression in performance
+introduced by component queuing. The algorithm checked if there were
+any components to be dequeued, but did so in a O(n^2) way. This was
+fixed.</p>
+
+<p>Upon further investigation we found that adding components is O(n^2)
+since 1.3 (when memory was scarce and expensive). We fixed that and
+made it roughly O(1).</p>
+
+<p>This means that when you have a page with 10k components on it, the
+adding won’t slow you down any more, and the new way of adding
+components will scrape a few ms off your overall average response time.</p>
+
+<p>This release also fixes several bugs where head sections were not rendered,
+i18n JavaScript resources could not be loaded, Range: header parsing and
+a couple of component queuing issues.</p>
+
+<h2 id="using-this-release">Using this release</h2>
+
+<p>With Apache Maven update your dependency to (and don’t forget to
+update any other dependencies on Wicket projects to the same version):</p>
+
+<dependency>
+    <groupid>org.apache.wicket</groupid>
+    <artifactid>wicket-core</artifactid>
+    <version>7.1.0</version>
+</dependency>
+
+<p>Or download and build the distribution yourself, or use our
+convenience binary package</p>
+
+<ul>
+  <li>Source: http://www.apache.org/dyn/closer.cgi/wicket/7.1.0</li>
+  <li>Binary: http://www.apache.org/dyn/closer.cgi/wicket/7.1.0/binaries</li>
+</ul>
+
+<h2 id="upgrading-from-earlier-versions">Upgrading from earlier versions</h2>
+
+<p>If you upgrade from 7.y.z this release is a drop in replacement. If
+you come from a version prior to 7.0.0, please read our Wicket 7
+migration guide found at</p>
+
+<ul>
+  <li>http://s.apache.org/wicket7migrate</li>
+</ul>
+
+<p>Have fun!</p>
+
+<p>— The Wicket team</p>
+
+<p>========================================================================</p>
+
+<p>The signatures for the source release artefacts:</p>
+
+<p>Signature for apache-wicket-7.1.0.zip:</p>
+
+<pre><code>-----BEGIN PGP SIGNATURE----- Comment: GPGTools - https://gpgtools.org
+</code></pre>
+
+<p>iEYEABECAAYFAlYldl4ACgkQJBX8W/xy/UWlUgCbBKvmDioyZceDBykv52eWYNai
+b9AAn2AUlg5FotVMaQtOdtQsQfuy4X/D
+=Vuhh
+—–END PGP SIGNATURE—–</p>
+
+<p>Signature for apache-wicket-7.1.0.tar.gz:</p>
+
+<pre><code>-----BEGIN PGP SIGNATURE----- Comment: GPGTools - https://gpgtools.org
+</code></pre>
+
+<p>iEYEABECAAYFAlYldl4ACgkQJBX8W/xy/UXNzgCgtL4H8bRjZewltF1BX7H3F+Ph
+6KUAnA0k2BVi5E//uw9RLm7MklYJOdV+
+=Za2v
+—–END PGP SIGNATURE—–</p>
+
+<p>========================================================================</p>
+
+<pre><code>CHANGELOG for 7.1.0:
+</code></pre>
+
+<p>** Bug</p>
+
+<pre><code>* [WICKET-5882] - AutoComplete suggestion list disappear when I click on autoComplete scrollbar in IE
+* [WICKET-5941] - Headers not rendered for components inside TransparentWebMarkupContainer on ajax update
+* [WICKET-5959] - HTML input placeholder text breaks AutoCompleteTextField in IE11
+* [WICKET-5960] - Page header isn't rendered for pages where URL has changed during render
+* [WICKET-5964] - Queuing a component within an enclosure
+* [WICKET-5965] - Queuing a component in head
+* [WICKET-5966] - ResourceUtils.getLocaleFromFilename can't handle minimized resources well
+* [WICKET-5967] - Unable to load i18n minified js
+* [WICKET-5968] - CachingResourceLocator lookup key doesn't take strict into account
+* [WICKET-5970] - UrlRenderer does not render fragments
+* [WICKET-5973] - IllegalArgumentException 'bytes' cannot be negative. on opening Inspector
+* [WICKET-5975] - AjaxFallbackOrderByBorder wicketOrder[Up|Down|None] class missing
+* [WICKET-5978] - LazyInitProxyFactory fills permgen space
+* [WICKET-5980] - When using Servlet 3.0 filter Wicket calculates filter path wrong
+* [WICKET-5981] - Significant Performance Degradation From Wicket 6.20.0 to Wicket 7.0.0
+* [WICKET-5983] - O(n^2) complexity in MarkupContainer.add
+* [WICKET-5988] - WICKET-5981 breaks forms inside borders
+* [WICKET-5989] - BaseWicketTester#startComponentInPage fails for pages with &lt;wicket:header-items&gt;&lt;/wicket:header&gt; placeholder
+* [WICKET-5993] - AjaxButton - image is not shown even though type="image" is in html-template 
+* [WICKET-5994] - Mounted TemplateResourceReference throws  org.apache.wicket.WicketRuntimeException when https is used
+* [WICKET-5995] - "Range" header parsing is broken
+* [WICKET-5996] - Mounted packages throw IllegalArgumentException when visiting base package url.
+* [WICKET-5997] - Compatibility problem with Websphere liberty profile
+* [WICKET-5999] - AjaxFormValidatingBehavior not updates initially hidden feedback component
+* [WICKET-6005] - WicketRuntimeException from AjaxPagingNavigator#onAjaxEvent
+</code></pre>
+
+<p>** Improvement</p>
+
+<pre><code>* [WICKET-5948] - wicket-ajax.js probably doesn't traverse the children of &lt;div&gt; or &lt;span&gt;
+* [WICKET-5971] - Code cleanup in ServletWebResponse
+* [WICKET-5974] - Change AjaxPagingNavigator#onAjaxEvent() to only consider parent components that have setOutputMarkupId(true)
+* [WICKET-5976] - Improve the documentation of FeedbackMessages first(int level)
+* [WICKET-5984] - ReplaceHandlerException lacks an accessor for the replacement RequestHandler
+* [WICKET-5986] - NumberTextField&lt;N&gt; should use Models for minimum, maximum and step
+</code></pre>
+
+<p>** Task</p>
+
+<pre><code>* [WICKET-5951] - Upgrade Atmosphere to 2.2.8
+</code></pre>
+
diff --git a/content/news/2015/10/index.html b/content/news/2015/10/index.html
new file mode 100644
index 0000000..835377b
--- /dev/null
+++ b/content/news/2015/10/index.html
@@ -0,0 +1,167 @@
+<!DOCTYPE html>
+<html>
+    <head>
+        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+        <meta charset="utf-8">
+        <title>Monthly archive for October 2015 | 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/2015/10 -->
+    	<li class=""><a href="/start/quickstart.html">Quick Start</a></li>
+		<!-- /start/download.html || /news/2015/10 -->
+    	<li class=""><a href="/start/download.html">Download</a></li>
+		<!-- /learn || /news/2015/10 -->
+    	<li class=""><a href="/learn">Documentation</a></li>
+		<!-- /help || /news/2015/10 -->
+    	<li class=""><a href="/help">Support</a></li>
+		<!-- /contribute || /news/2015/10 -->
+    	<li class=""><a href="/contribute">Contribute</a></li>
+		<!-- /community || /news/2015/10 -->
+    	<li class=""><a href="/community">Community</a></li>
+		<!-- /apache || /news/2015/10 -->
+    	<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>Monthly archive for October 2015</h1>
+        </header>
+        <div class="l-two-third">
+<div class="news">
+	<h3>Wicket 1.5.14 released</h3>
+  <p><small>24 Oct 2015</small></p>
+	<p>This is the fourteenth maintenance release of the Wicket 1.5.x series. This release brings over 4 bug fixes and 1 improvement.</p>
+<pre><code>CHANGELOG for 1.5.14:
+</code></pre>
+<p>** Bug</p>
+<pre><code>* [WICKET-5838] - Last-modified header of external markup is ignored
+* [WICKET-5927] - Velocity remote code execution
+* [WICKET-6000] - Wicket 1.5 DTD link on website does not point to valid location
+* [WICKET-6005] - WicketRuntimeException...</code></pre>
+	<a href="/news/2015/10/24/wicket-1.5.14-released.html">more</a></li>
+</div>
+<div class="news">
+	<h3>Wicket 7.1.0 Released</h3>
+  <p><small>25 Oct 2015</small></p>
+	<p>The Apache Wicket PMC is proud to announce Apache Wicket 7.1.0!</p>
+<p>This release marks another minor release of Wicket 7. We
+use semantic ...</p>
+	<a href="/news/2015/10/25/wicket-7.1.0-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/10">October</a></li>
+            <li><a href="/news/2015/07">July</a></li>
+            <li><a href="/news/2015/06">June</a></li>
+            <li><a href="/news/2015/02">February</a></li>
+            </ul>
+            <h2>2014</h2>
+            <ul>
+            <li><a href="/news/2014">All of 2014</a></li>
+            <li><a href="/news/2014/11">November</a></li>
+            <li><a href="/news/2014/09">September</a></li>
+            <li><a href="/news/2014/08">August</a></li>
+            <li><a href="/news/2014/06">June</a></li>
+            <li><a href="/news/2014/04">April</a></li>
+            <li><a href="/news/2014/02">February</a></li>
+            <li><a href="/news/2014/01">January</a></li>
+            </ul>
+            <h2>2013</h2>
+            <ul>
+            <li><a href="/news/2013">All of 2013</a></li>
+            <li><a href="/news/2013/11">November</a></li>
+            <li><a href="/news/2013/09">September</a></li>
+            <li><a href="/news/2013/08">August</a></li>
+            <li><a href="/news/2013/07">July</a></li>
+            <li><a href="/news/2013/06">June</a></li>
+            <li><a href="/news/2013/05">May</a></li>
+            <li><a href="/news/2013/04">April</a></li>
+            <li><a href="/news/2013/03">March</a></li>
+            <li><a href="/news/2013/02">February</a></li>
+            <li><a href="/news/2013/01">January</a></li>
+            </ul>
+            <h2>2012</h2>
+            <ul>
+            <li><a href="/news/2012">All of 2012</a></li>
+            <li><a href="/news/2012/12">December</a></li>
+            <li><a href="/news/2012/11">November</a></li>
+            <li><a href="/news/2012/10">October</a></li>
+            <li><a href="/news/2012/09">September</a></li>
+            <li><a href="/news/2012/08">August</a></li>
+            <li><a href="/news/2012/07">July</a></li>
+            <li><a href="/news/2012/06">June</a></li>
+            <li><a href="/news/2012/05">May</a></li>
+            <li><a href="/news/2012/03">March</a></li>
+            <li><a href="/news/2012/01">January</a></li>
+            </ul>
+            <h2>2011</h2>
+            <ul>
+            <li><a href="/news/2011">All of 2011</a></li>
+            <li><a href="/news/2011/11">November</a></li>
+            <li><a href="/news/2011/10">October</a></li>
+            <li><a href="/news/2011/09">September</a></li>
+            <li><a href="/news/2011/08">August</a></li>
+            <li><a href="/news/2011/06">June</a></li>
+            <li><a href="/news/2011/05">May</a></li>
+            <li><a href="/news/2011/04">April</a></li>
+            <li><a href="/news/2011/03">March</a></li>
+            <li><a href="/news/2011/02">February</a></li>
+            <li><a href="/news/2011/01">January</a></li>
+            </ul>
+            <h2>2010</h2>
+            <ul>
+            <li><a href="/news/2010">All of 2010</a></li>
+            <li><a href="/news/2010/12">December</a></li>
+            <li><a href="/news/2010/11">November</a></li>
+            <li><a href="/news/2010/09">September</a></li>
+            <li><a href="/news/2010/08">August</a></li>
+            <li><a href="/news/2010/05">May</a></li>
+            <li><a href="/news/2010/03">March</a></li>
+            <li><a href="/news/2010/02">February</a></li>
+            </ul>
+            <h2>2009</h2>
+            <ul>
+            <li><a href="/news/2009">All of 2009</a></li>
+            <li><a href="/news/2009/12">December</a></li>
+            <li><a href="/news/2009/10">October</a></li>
+            <li><a href="/news/2009/08">August</a></li>
+            <li><a href="/news/2009/07">July</a></li>
+            </ul>
+        </div>
+    </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>
diff --git a/content/news/2015/index.html b/content/news/2015/index.html
index 3616735..4db91f8 100644
--- a/content/news/2015/index.html
+++ b/content/news/2015/index.html
@@ -48,6 +48,24 @@
         <div class="l-two-third">
       <div class="l-first">
               <div  class="l-full">
+                  <h1>All News for October 2015</h1>
+                  <p>This section contains all news items published in <a href="/news/2015/10">October 2015</a>.</p>
+              </div>
+                  <div class="l-full">
+              		<h3 id="/news/2015/10/25/wicket-7.1.0-released.html">Wicket 7.1.0 Released</h3>
+                      <small>25 Oct 2015</small>
+              		<p>The Apache Wicket PMC is proud to announce Apache Wicket 7.1.0! This release marks another minor release of Wicket 7. We use semantic versioning for...
+              		<a href="/news/2015/10/25/wicket-7.1.0-released.html">more</a></li></p>
+                  </div>
+                  <div class="l-full">
+              		<h3 id="/news/2015/10/24/wicket-1.5.14-released.html">Wicket 1.5.14 released</h3>
+                      <small>24 Oct 2015</small>
+              		<p>This is the fourteenth maintenance release of the Wicket 1.5.x series. This release brings over 4 bug fixes and 1 improvement. CHANGELOG for 1.5.14: **...
+              		<a href="/news/2015/10/24/wicket-1.5.14-released.html">more</a></li></p>
+                  </div>
+              <hr>
+              <div class="l-first"></div>
+              <div  class="l-full">
                   <h1>All News for July 2015</h1>
                   <p>This section contains all news items published in <a href="/news/2015/07">July 2015</a>.</p>
               </div>
@@ -113,6 +131,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/news/index.html b/content/news/index.html
index 1eb32d3..4f31df8 100644
--- a/content/news/index.html
+++ b/content/news/index.html
@@ -52,6 +52,18 @@
   <h1 id="all-news-for-2015">All News for 2015</h1>
   <p>This section contains all news items published in <a href="/news/2015">2015</a>.</p>
   <article>
+	<h3 id="/news/2015/10/25/wicket-7.1.0-released.html">Wicket 7.1.0 Released</h3>
+    <small>25 Oct 2015</small>
+	<p>The Apache Wicket PMC is proud to announce Apache Wicket 7.1.0! This release marks another minor release of Wicket 7. We use semantic versioning for the development of Wicket, and as such no API breaks are present breaks are present in this release compared to 7.0.0. New and noteworthy Significant...
+	<a href="/news/2015/10/25/wicket-7.1.0-released.html">more</a></p>
+</article>
+  <article>
+	<h3 id="/news/2015/10/24/wicket-1.5.14-released.html">Wicket 1.5.14 released</h3>
+    <small>24 Oct 2015</small>
+	<p>This is the fourteenth maintenance release of the Wicket 1.5.x series. This release brings over 4 bug fixes and 1 improvement. CHANGELOG for 1.5.14: ** Bug * [WICKET-5838] - Last-modified header of external markup is ignored * [WICKET-5927] - Velocity remote code execution * [WICKET-6000] - Wicket 1.5 DTD link...
+	<a href="/news/2015/10/24/wicket-1.5.14-released.html">more</a></p>
+</article>
+  <article>
 	<h3 id="/news/2015/07/28/wicket-7.0-released.html">Apache Wicket v7.0 released</h3>
     <small>28 Jul 2015</small>
 	<p>The Apache Software Foundation announces Apache Wicket™ v7.0 Open Source Java web framework that powers thousands of web applications and web sites for governments, stores, universities, cities, banks, email providers, and more. The Apache Software Foundation (ASF), the all-volunteer developers, stewards, and incubators of nearly 150 Open Source projects and...
@@ -528,9 +540,9 @@
 	<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
+  Subversion tag 
   Changelog
-  To use in Maven:
+  To use in Maven: 
 &lt;dependency&gt;
     &lt;groupId&gt;org.apache.wicket&lt;/groupId&gt;
     &lt;artifactId&gt;wicket-core&lt;/artifactId&gt;
@@ -543,9 +555,9 @@
 	<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
+  Subversion tag 
   Changelog
-  To use in Maven:
+  To use in Maven: 
 &lt;dependency&gt;
     &lt;groupId&gt;org.apache.wicket&lt;/groupId&gt;
     &lt;artifactId&gt;wicket&lt;/artifactId&gt;
@@ -558,9 +570,9 @@
 	<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
+  Subversion tag 
   Changelog
-  To use in Maven:
+  To use in Maven: 
 &lt;dependency&gt;
     &lt;groupId&gt;org.apache.wicket&lt;/groupId&gt;
     &lt;artifactId&gt;wicket-core&lt;/artifactId&gt;
@@ -591,9 +603,9 @@
 	<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
+  Subversion tag 
   Changelog
-  To use in Maven:
+  To use in Maven: 
 &lt;dependency&gt;
     &lt;groupId&gt;org.apache.wicket&lt;/groupId&gt;
     &lt;artifactId&gt;wicket&lt;/artifactId&gt;
@@ -634,9 +646,9 @@
 	<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
+  Subversion tag 
   Changelog
-  To use in Maven:
+  To use in Maven: 
 &lt;dependency&gt;
     &lt;groupId&gt;org.apache.wicket&lt;/groupId&gt;
     &lt;artifactId&gt;wicket&lt;/artifactId&gt;
@@ -661,9 +673,9 @@
 	<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
+  Subversion tag 
   Changelog
-  To use in Maven:
+  To use in Maven: 
 &lt;dependency&gt;
     &lt;groupId&gt;org.apache.wicket&lt;/groupId&gt;
     &lt;artifactId&gt;wicket&lt;/artifactId&gt;
@@ -687,9 +699,9 @@
 	<h3 id="/news/2010/12/24/wicket-1.4.15-released.html">Wicket 1.4.15 released</h3>
     <small>24 Dec 2010</small>
 	<p>This is fifteenth release of the Wicket 1.4.x series. This is primarily a minor bugfix release on the 1.4.x (stable) branch.
-  Subversion tag
+  Subversion tag 
   Changelog
-  To use in Maven:
+  To use in Maven: 
 &lt;dependency&gt;
     &lt;groupId&gt;org.apache.wicket&lt;/groupId&gt;
     &lt;artifactId&gt;wicket&lt;/artifactId&gt;
@@ -702,9 +714,9 @@
 	<h3 id="/news/2010/11/29/wicket-1.4.14-released.html">Wicket 1.4.14 released</h3>
     <small>29 Nov 2010</small>
 	<p>This is fourteenth release of the Wicket 1.4.x series. This is primarily a minor bugfix release on the 1.4.x (stable) branch.
-  Subversion tag
+  Subversion tag 
   Changelog
-  To use in Maven:
+  To use in Maven: 
 &lt;dependency&gt;
     &lt;groupId&gt;org.apache.wicket&lt;/groupId&gt;
     &lt;artifactId&gt;wicket&lt;/artifactId&gt;
@@ -723,9 +735,9 @@
 	<h3 id="/news/2010/11/05/wicket-1.5-M3-released.html">Wicket 1.5-M3 released</h3>
     <small>05 Nov 2010</small>
 	<p>This is another milestone release from trunk (in-development branch).  This release includes several enhancments and fixes, which can be seen in the changelog (linked below).
-  Subversion tag
+  Subversion tag 
   Changelog
-  To use in Maven:
+  To use in Maven: 
 &lt;dependency&gt;
     &lt;groupId&gt;org.apache.wicket&lt;/groupId&gt;
     &lt;artifactId&gt;wicket&lt;/artifactId&gt;
@@ -738,9 +750,9 @@
 	<h3 id="/news/2010/11/01/wicket-1.4.13-released.html">Wicket 1.4.13 released</h3>
     <small>01 Nov 2010</small>
 	<p>This is thirteenth release of the Wicket 1.4.x series. This is primarily a minor bugfix release on the 1.4.x (stable) branch.
-  Subversion tag
+  Subversion tag 
   Changelog
-  To use in Maven:
+  To use in Maven: 
 &lt;dependency&gt;
     &lt;groupId&gt;org.apache.wicket&lt;/groupId&gt;
     &lt;artifactId&gt;wicket&lt;/artifactId&gt;
@@ -759,9 +771,9 @@
 	<h3 id="/news/2010/09/17/wicket.1.4.12-released.html">Wicket 1.4.12 released</h3>
     <small>17 Sep 2010</small>
 	<p>This is the twelfth maintenance release of the 1.4.x series. This release brings a fix to a critical bug which prevented ajax form submits in FireFox.
-  Subversion tag
+  Subversion tag 
   Changelog
-  To use in Maven:
+  To use in Maven: 
 &lt;dependency&gt;
     &lt;groupId&gt;org.apache.wicket&lt;/groupId&gt;
     &lt;artifactId&gt;wicket&lt;/artifactId&gt;
@@ -775,9 +787,9 @@
     <small>09 Sep 2010</small>
 	<p>This is the eleventh maintenance release of the 1.4.x series and brings over
 fifty bug fixes and improvements.
-  Subversion tag
+  Subversion tag 
   Changelog
-  To use in Maven:
+  To use in Maven: 
 &lt;dependency&gt;
     &lt;groupId&gt;org.apache.wicket&lt;/groupId&gt;
     &lt;artifactId&gt;wicket&lt;/artifactId&gt;
@@ -906,6 +918,7 @@
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</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>
             <li><a href="/news/2015/02">February</a></li>
diff --git a/content/start/download.html b/content/start/download.html
index c9a4ea2..0487b70 100644
--- a/content/start/download.html
+++ b/content/start/download.html
@@ -86,7 +86,7 @@
 	</tr>
 	<tr>
 		<td><a href="wicket-7.x.html">Wicket 7.x</a></td>
-		<td>7.0.0</td>
+		<td>7.1.0</td>
 		<td>current, supported</td>
 	</tr>
 	<tr>
@@ -96,7 +96,7 @@
 	</tr>
 	<tr>
 		<td><a href="wicket-1.5.x.html">Wicket 1.5.x</a></td>
-		<td>1.5.13</td>
+		<td>1.5.14</td>
 		<td>security fixes only, upgrade to 6.x or 7.x</td>
 	</tr>
 </table>
diff --git a/content/start/quickstart.html b/content/start/quickstart.html
index 5aa6419..a3b2026 100644
--- a/content/start/quickstart.html
+++ b/content/start/quickstart.html
@@ -119,12 +119,12 @@
   <div>
     <label title="Wicket Version" for="version">Wicket Version</label>
     <select onchange="changeIt();" id="version">
-	<option value="7.1.0-SNAPSHOT">7.1.0-SNAPSHOT</option>
+	<option value="7.2.0-SNAPSHOT">7.2.0-SNAPSHOT</option>
 	<option value="6.21.0-SNAPSHOT">6.21.0-SNAPSHOT</option>
 	<option value="1.5-SNAPSHOT">1.5-SNAPSHOT</option>
-	<option value="7.0.0" selected="selected">7.0.0</option>
+	<option value="7.1.0" selected="selected">7.1.0</option>
 	<option value="1.4.23">1.4.23</option>
-	<option value="1.5.13">1.5.13</option>
+	<option value="1.5.14">1.5.14</option>
 	<option value="6.20.0">6.20.0</option>
     </select>
   </div>
diff --git a/content/start/wicket-1.3.x.html b/content/start/wicket-1.3.x.html
index 2a1709e..d148f11 100644
--- a/content/start/wicket-1.3.x.html
+++ b/content/start/wicket-1.3.x.html
@@ -67,7 +67,7 @@
 <p>This release branch <strong>does not</strong> follow semantic versioning. Upgrading
 between minor versions may break binary compatibility.</p>
 <h2 id="download">Download</h2>
-<p>The most recent release in this branch is: <strong>1.3.7</strong>.</p>
+<p>The most recent release in this branch is: <strong>1.3.7</strong>. </p>
 <p>You can get the release using Maven or download it manually.</p>
 <h3 id="using-apache-maven">Using Apache Maven</h3>
 <p>Use the following Maven dependency to use Wicket in your project:</p>
diff --git a/content/start/wicket-1.4.x.html b/content/start/wicket-1.4.x.html
index 01a01e2..7ee8f25 100644
--- a/content/start/wicket-1.4.x.html
+++ b/content/start/wicket-1.4.x.html
@@ -70,7 +70,7 @@
 <p>To see what changed in this release (and prior releases) you can read
 the <a href="http://archive.apache.org/dist/wicket/1.4.23/CHANGELOG-1.4">change log</a>.</p>
 <h2 id="download">Download</h2>
-<p>The most recent release in this branch is: <strong>1.4.23</strong>.</p>
+<p>The most recent release in this branch is: <strong>1.4.23</strong>. </p>
 <p>You can get the release using Maven or download it manually.</p>
 <h3 id="using-apache-maven">Using Apache Maven</h3>
 <p>Use the following Maven dependency to use Wicket in your project:</p>
@@ -98,9 +98,9 @@
 <p>Or use the following links to get the pre-packaged binaries instead:</p>
 <ul>
   <li>Download binaries <a href="http://www.apache.org/dyn/closer.cgi/wicket/1.4.23/binaries/apache-wicket-1.4.23.tar.gz">apache-wicket-1.4.23-bin.tar.gz</a>
-(<a href="http://archive.apache.org/dist/wicket/1.4.23/binaries/apache-wicket-7.0.0.tar.gz.asc">PGP</a>,
-<a href="http://archive.apache.org/dist/wicket/1.4.23/binaries/apache-wicket-7.0.0.tar.gz.md5">MD5</a>,
-<a href="http://archive.apache.org/dist/wicket/1.4.23/binaries/apache-wicket-7.0.0.tar.gz.sha">SHA</a>
+(<a href="http://archive.apache.org/dist/wicket/1.4.23/binaries/apache-wicket-7.1.0.tar.gz.asc">PGP</a>,
+<a href="http://archive.apache.org/dist/wicket/1.4.23/binaries/apache-wicket-7.1.0.tar.gz.md5">MD5</a>,
+<a href="http://archive.apache.org/dist/wicket/1.4.23/binaries/apache-wicket-7.1.0.tar.gz.sha">SHA</a>
 )</li>
   <li>Download binaries <a href="http://www.apache.org/dyn/closer.cgi/wicket/1.4.23/binaries/apache-wicket-1.4.23.zip">apache-wicket-1.4.23-bin.zip</a>
 (<a href="http://archive.apache.org/dist/wicket/1.4.23/binaries/apache-wicket-1.4.23.zip.asc">PGP</a>,
diff --git a/content/start/wicket-1.5.x.html b/content/start/wicket-1.5.x.html
index 7508d62..7b11d0a 100644
--- a/content/start/wicket-1.5.x.html
+++ b/content/start/wicket-1.5.x.html
@@ -70,16 +70,16 @@
 between minor versions may break binary compatibility.</p>
 <h3 id="change-log">Change log</h3>
 <p>To see what changed in this release (and prior releases) you can read
-the <a href="http://archive.apache.org/dist/wicket/1.5.13/CHANGELOG-1.5">change log</a>.</p>
+the <a href="http://archive.apache.org/dist/wicket/1.5.14/CHANGELOG-1.5">change log</a>.</p>
 <h2 id="download">Download</h2>
-<p>The most recent release in this branch is: <strong>1.5.13</strong>.</p>
+<p>The most recent release in this branch is: <strong>1.5.14</strong>. </p>
 <p>You can get the release using Maven or download it manually.</p>
 <h3 id="using-apache-maven">Using Apache Maven</h3>
 <p>Use the following Maven dependency to use Wicket in your project:</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.13<span class="nt">&lt;/version&gt;</span>
+    <span class="nt">&lt;version&gt;</span>1.5.14<span class="nt">&lt;/version&gt;</span>
 <span class="nt">&lt;/dependency&gt;</span></code></pre></div>
 <p>Add the snippet above to your project’s POM in the dependency
 (management) section.</p>
@@ -91,23 +91,23 @@
 <p>Use the following links to download Wicket manually to build Wicket
 from source:</p>
 <ul>
-  <li>Download source <a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.13/apache-wicket-1.5.13-source.tgz">apache-wicket-1.5.13-source.tar.gz</a>
-(<a href="http://archive.apache.org/dist/wicket/1.5.13/apache-wicket-1.5.13-source.tgz.asc">PGP</a>,
-<a href="http://archive.apache.org/dist/wicket/1.5.13/apache-wicket-1.5.13-source.tgz.md5">MD5</a>,
-<a href="http://archive.apache.org/dist/wicket/1.5.13/apache-wicket-1.5.13-source.tgz.sha">SHA</a>
+  <li>Download source <a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.14/apache-wicket-1.5.14-source.tgz">apache-wicket-1.5.14-source.tar.gz</a>
+(<a href="http://archive.apache.org/dist/wicket/1.5.14/apache-wicket-1.5.14-source.tgz.asc">PGP</a>,
+<a href="http://archive.apache.org/dist/wicket/1.5.14/apache-wicket-1.5.14-source.tgz.md5">MD5</a>,
+<a href="http://archive.apache.org/dist/wicket/1.5.14/apache-wicket-1.5.14-source.tgz.sha">SHA</a>
 )</li>
 </ul>
 <p>Or use the following links to get the pre-packaged binaries instead:</p>
 <ul>
-  <li>Download binaries <a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.13/binaries/apache-wicket-1.5.13.tar.gz">apache-wicket-1.5.13.tar.gz</a>
-(<a href="http://archive.apache.org/dist/wicket/1.5.13/binaries/apache-wicket-1.5.13.tar.gz.asc">PGP</a>,
-<a href="http://archive.apache.org/dist/wicket/1.5.13/binaries/apache-wicket-1.5.13.tar.gz.md5">MD5</a>,
-<a href="http://archive.apache.org/dist/wicket/1.5.13/binaries/apache-wicket-1.5.13.tar.gz.sha">SHA</a>
+  <li>Download binaries <a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.14/binaries/apache-wicket-1.5.14.tar.gz">apache-wicket-1.5.14.tar.gz</a>
+(<a href="http://archive.apache.org/dist/wicket/1.5.14/binaries/apache-wicket-1.5.14.tar.gz.asc">PGP</a>,
+<a href="http://archive.apache.org/dist/wicket/1.5.14/binaries/apache-wicket-1.5.14.tar.gz.md5">MD5</a>,
+<a href="http://archive.apache.org/dist/wicket/1.5.14/binaries/apache-wicket-1.5.14.tar.gz.sha">SHA</a>
 )</li>
-  <li>Download binaries <a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.13/binaries/apache-wicket-1.5.13.zip">apache-wicket-1.5.13.zip</a>
-(<a href="http://archive.apache.org/dist/wicket/1.5.13/binaries/apache-wicket-1.5.13.zip.asc">PGP</a>,
-<a href="http://archive.apache.org/dist/wicket/1.5.13/binaries/apache-wicket-1.5.13.zip.md5">MD5</a>,
-<a href="http://archive.apache.org/dist/wicket/1.5.13/binaries/apache-wicket-1.5.13.zip.sha">SHA</a>
+  <li>Download binaries <a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.14/binaries/apache-wicket-1.5.14.zip">apache-wicket-1.5.14.zip</a>
+(<a href="http://archive.apache.org/dist/wicket/1.5.14/binaries/apache-wicket-1.5.14.zip.asc">PGP</a>,
+<a href="http://archive.apache.org/dist/wicket/1.5.14/binaries/apache-wicket-1.5.14.zip.md5">MD5</a>,
+<a href="http://archive.apache.org/dist/wicket/1.5.14/binaries/apache-wicket-1.5.14.zip.sha">SHA</a>
 )</li>
 </ul>
 <p>Note that the binary packages and the source packages don’t contain any
diff --git a/content/start/wicket-6.x.html b/content/start/wicket-6.x.html
index 0b57cb5..4480912 100644
--- a/content/start/wicket-6.x.html
+++ b/content/start/wicket-6.x.html
@@ -74,7 +74,7 @@
 <p>To see what changed in this release (and prior releases) you can read
 the <a href="http://archive.apache.org/dist/wicket/6.20.0/CHANGELOG-6.x">change log</a>.</p>
 <h2 id="download">Download</h2>
-<p>The most recent release in this branch is: <strong>6.20.0</strong>.</p>
+<p>The most recent release in this branch is: <strong>6.20.0</strong>. </p>
 <p>You can get the release using Maven or download it manually.</p>
 <h3 id="using-apache-maven">Using Apache Maven</h3>
 <p>Use the following Maven dependency to use Wicket in your project:</p>
diff --git a/content/start/wicket-7.x.html b/content/start/wicket-7.x.html
index 6a4fabc..a682aaf 100644
--- a/content/start/wicket-7.x.html
+++ b/content/start/wicket-7.x.html
@@ -67,16 +67,16 @@
 releases will not break compatibility.</p>
 <h3 id="change-log">Change log</h3>
 <p>To see what changed in these releases you can read the
-<a href="http://archive.apache.org/dist/wicket/7.0.0/CHANGELOG-7.x">change log</a>.</p>
+<a href="http://archive.apache.org/dist/wicket/7.1.0/CHANGELOG-7.x">change log</a>.</p>
 <h2 id="download">Download</h2>
-<p>The most recent release in this branch is: <strong>7.0.0</strong>. 
+<p>The most recent release in this branch is: <strong>7.1.0</strong>. 
 You can get the release using <a href="#maven">Maven</a> or <a href="#manually">download it manually</a>.</p>
 <h3 id="maven">Using Apache Maven</h3>
 <p>Use the following Maven dependency to use Wicket in your project:</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>7.0.0<span class="nt">&lt;/version&gt;</span>
+    <span class="nt">&lt;version&gt;</span>7.1.0<span class="nt">&lt;/version&gt;</span>
 <span class="nt">&lt;/dependency&gt;</span></code></pre></div>
 <p>Add the snippet above to your project’s POM in the dependency
 (management) section.</p>
@@ -88,28 +88,28 @@
 <p>Use the following links to download Wicket manually to build Wicket
 from source:</p>
 <ul>
-  <li>Download source <a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0/apache-wicket-7.0.0.tar.gz">apache-wicket-7.0.0.tar.gz</a>
-(<a href="http://archive.apache.org/dist/wicket/7.0.0/apache-wicket-7.0.0.tar.gz.asc">PGP</a>,
-<a href="http://archive.apache.org/dist/wicket/7.0.0/apache-wicket-7.0.0.tar.gz.md5">MD5</a>,
-<a href="http://archive.apache.org/dist/wicket/7.0.0/apache-wicket-7.0.0.tar.gz.sha">SHA</a>
+  <li>Download source <a href="http://www.apache.org/dyn/closer.cgi/wicket/7.1.0/apache-wicket-7.1.0.tar.gz">apache-wicket-7.1.0.tar.gz</a>
+(<a href="http://archive.apache.org/dist/wicket/7.1.0/apache-wicket-7.1.0.tar.gz.asc">PGP</a>,
+<a href="http://archive.apache.org/dist/wicket/7.1.0/apache-wicket-7.1.0.tar.gz.md5">MD5</a>,
+<a href="http://archive.apache.org/dist/wicket/7.1.0/apache-wicket-7.1.0.tar.gz.sha">SHA</a>
 )</li>
-  <li>Download source <a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0/apache-wicket-7.0.0.zip">apache-wicket-7.0.0.zip</a>
-(<a href="http://archive.apache.org/dist/wicket/7.0.0/apache-wicket-7.0.0.zip.asc">PGP</a>,
-<a href="http://archive.apache.org/dist/wicket/7.0.0/apache-wicket-7.0.0.zip.md5">MD5</a>,
-<a href="http://archive.apache.org/dist/wicket/7.0.0/apache-wicket-7.0.0.zip.sha">SHA</a>
+  <li>Download source <a href="http://www.apache.org/dyn/closer.cgi/wicket/7.1.0/apache-wicket-7.1.0.zip">apache-wicket-7.1.0.zip</a>
+(<a href="http://archive.apache.org/dist/wicket/7.1.0/apache-wicket-7.1.0.zip.asc">PGP</a>,
+<a href="http://archive.apache.org/dist/wicket/7.1.0/apache-wicket-7.1.0.zip.md5">MD5</a>,
+<a href="http://archive.apache.org/dist/wicket/7.1.0/apache-wicket-7.1.0.zip.sha">SHA</a>
 )</li>
 </ul>
 <p>Or use the following links to get the pre-packaged binaries instead:</p>
 <ul>
-  <li>Download binaries <a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0/binaries/apache-wicket-7.0.0-bin.tar.gz">apache-wicket-7.0.0-bin.tar.gz</a>
-(<a href="http://archive.apache.org/dist/wicket/7.0.0/binaries/apache-wicket-7.0.0-bin.tar.gz.asc">PGP</a>,
-<a href="http://archive.apache.org/dist/wicket/7.0.0/binaries/apache-wicket-7.0.0-bin.tar.gz.md5">MD5</a>,
-<a href="http://archive.apache.org/dist/wicket/7.0.0/binaries/apache-wicket-7.0.0-bin.tar.gz.sha">SHA</a>
+  <li>Download binaries <a href="http://www.apache.org/dyn/closer.cgi/wicket/7.1.0/binaries/apache-wicket-7.1.0-bin.tar.gz">apache-wicket-7.1.0-bin.tar.gz</a>
+(<a href="http://archive.apache.org/dist/wicket/7.1.0/binaries/apache-wicket-7.1.0-bin.tar.gz.asc">PGP</a>,
+<a href="http://archive.apache.org/dist/wicket/7.1.0/binaries/apache-wicket-7.1.0-bin.tar.gz.md5">MD5</a>,
+<a href="http://archive.apache.org/dist/wicket/7.1.0/binaries/apache-wicket-7.1.0-bin.tar.gz.sha">SHA</a>
 )</li>
-  <li>Download binaries <a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0/binaries/apache-wicket-7.0.0-bin.zip">apache-wicket-7.0.0-bin.zip</a>
-(<a href="http://archive.apache.org/dist/wicket/7.0.0/binaries/apache-wicket-7.0.0-bin.zip.asc">PGP</a>,
-<a href="http://archive.apache.org/dist/wicket/7.0.0/binaries/apache-wicket-7.0.0-bin.zip.md5">MD5</a>,
-<a href="http://archive.apache.org/dist/wicket/7.0.0/binaries/apache-wicket-7.0.0-bin.zip.sha">SHA</a>
+  <li>Download binaries <a href="http://www.apache.org/dyn/closer.cgi/wicket/7.1.0/binaries/apache-wicket-7.1.0-bin.zip">apache-wicket-7.1.0-bin.zip</a>
+(<a href="http://archive.apache.org/dist/wicket/7.1.0/binaries/apache-wicket-7.1.0-bin.zip.asc">PGP</a>,
+<a href="http://archive.apache.org/dist/wicket/7.1.0/binaries/apache-wicket-7.1.0-bin.zip.md5">MD5</a>,
+<a href="http://archive.apache.org/dist/wicket/7.1.0/binaries/apache-wicket-7.1.0-bin.zip.sha">SHA</a>
 )</li>
 </ul>
 <p>Note that the binary packages and the source packages don’t contain any