You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by da...@apache.org on 2014/11/08 19:35:47 UTC

svn commit: r1637583 [4/4] - in /wicket/common/site/trunk: ./ _posts/ _posts/2009/ _posts/2010/ _posts/2011/ _posts/2012/ _posts/2013/ _posts/2014/ _site/ _site/2009/07/30/ _site/2009/08/21/ _site/2009/10/12/ _site/2009/10/24/ _site/2009/12/13/ _site/2...

Modified: wicket/common/site/trunk/_site/index.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/index.html?rev=1637583&r1=1637582&r2=1637583&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/index.html (original)
+++ wicket/common/site/trunk/_site/index.html Sat Nov  8 18:35:41 2014
@@ -93,7 +93,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.17.0">Wicket 6.17</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.18.0">Wicket 6.18</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.12">Wicket 1.5</a>
@@ -134,7 +134,7 @@
 	<h5>Wicket 7.x</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M3">Download M3</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4">Download M4</a>
 		</li>
 		<li>
 			<a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+7.0">Migration guide</a>
@@ -205,48 +205,296 @@ reusable components written with plain J
 <p>Wicket is released under the <a href="http://www.apache.org/licenses/LICENSE-2.0.html">Apache License, Version
 2.0</a>.</p>
 
-<h1 id="cve-2014-3526---apache-wicket-information-disclosure-vulnerability20140922cve-2014-3526html"><a href="/2014/09/22/cve-2014-3526.html">CVE-2014-3526 - Apache Wicket Information disclosure vulnerability</a></h1>
-<p>Severity: Important</p>
+<h1 id="apache-wicket-700-m4-released20141105wicket-700-m4-releasedhtml"><a href="/2014/11/05/wicket-7.0.0-M4-released.html">Apache Wicket 7.0.0-M4 released</a></h1>
+<p>The Apache Wicket PMC is proud to announce Apache Wicket 7.0.0-M4!</p>
 
-<p>Vendor:
-The Apache Software Foundation</p>
+<p>We have released another milestone release for Apache Wicket 7. We aim
+to finalise Wicket 7 over the coming months and request your help in
+testing the new major version.</p>
 
-<p>Versions Affected:
-Apache Wicket 1.5.11, 6.16.0 and 7.0.0-M2</p>
+<h3 id="caveats">Caveats</h3>
 
-<p>Description:</p>
+<p>It is still a development version so expect API breaks to happen over
+the course of the coming milestone releases.</p>
 
-<p>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.</p>
+<h3 id="semantic-versioning">Semantic versioning</h3>
 
-<p>The application developers are recommended to upgrade to: 
-- <a href="/2014/09/15/wicket-1.5.12-released.html">Apache Wicket 1.5.12</a>
-- <a href="/2014/08/24/wicket-6.17.0-released.html">Apache Wicket 6.17.0</a>
-- <a href="/2014/08/23/wicket-7.0.0-M3-released.html">Apache Wicket 7.0.0-M3</a></p>
+<p>As we adopted semver Wicket 7 will be the first release since 6.0 where
+we are able to refactor the API. We will continue to use semver when we
+have made Wicket 7 final and maintain api compatibility between minor
+versions of Wicket 7.</p>
 
-<p>Credit:
-This issue was reported by Andrea Del Bene and Martin Grigorov!</p>
+<h3 id="requirements">Requirements</h3>
 
-<p>Apache Wicket Team</p>
+<p>Wicket 7 requires the following:</p>
 
-<h1 id="wicket-1512-released20140915wicket-1512-releasedhtml"><a href="/2014/09/15/wicket-1.5.12-released.html">Wicket 1.5.12 released</a></h1>
-<p>This is the twelfth maintenance release of the Wicket 1.5.x series. This release brings over 5 bug fixes and improvements.</p>
+<ul>
+  <li>Java 7</li>
+  <li>Servlet 3 compatible container</li>
+</ul>
+
+<p>You can’t mix wicket libraries from prior Wicket versions with Wicket 7.</p>
+
+<h3 id="migration-guide">Migration guide</h3>
+
+<p>As usual we have a migration guide available online for people
+migrating their applications to Wicket 7. We will continue to update
+the guide as development progresses. If you find something that is not
+in the guide, please update the guide, or let us know so we can update
+the guide.</p>
+
+<p>You can find the guide here: <a href="http://s.apache.org/wicket7migrate">http://s.apache.org/wicket7migrate</a></p>
+
+<h3 id="using-this-release">Using this release</h3>
+
+<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>
+
+<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-M4<span class="nt">&lt;/version&gt;</span>
+<span class="nt">&lt;/dependency&gt;</span></code></pre></div>
+
+<p>Or download and build the distribution yourself, or use our
+convenience binary package</p>
+
+<ul>
+  <li>Source: <a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4">http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4</a></li>
+  <li>Binary: <a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4/binaries">http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4/binaries</a></li>
+</ul>
+
+<h3 id="about-this-release">About this release</h3>
+
+<p>Below you can find the cryptographic signatures for the distributions
+and the release notes.</p>
+
+<h4 id="the-signatures-for-the-source-release-artefacts">The signatures for the source release artefacts:</h4>
+
+<p>The signatures for the source release artefacts:</p>
+
+<p>Signature for apache-wicket-7.0.0-M4.zip:</p>
+
+<div class="highlight"><pre>
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.22 (Darwin)
+Comment: GPGTools - https://gpgtools.org
+
+iEYEABECAAYFAlRTjfQACgkQJBX8W/xy/UW+TQCfZn81bkbmcrVEGjWY4rUA2sfy
+rJMAn2Ah/6X2M9Cf02hEMyb8JV+ZPaBa
+=xlUP
+-----END PGP SIGNATURE-----
+</pre></div>
+
+<p>Signature for apache-wicket-7.0.0-M4.tar.gz:</p>
+
+<div class="highlight"><pre>
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.22 (Darwin)
+Comment: GPGTools - https://gpgtools.org
+
+iEYEABECAAYFAlRTjfQACgkQJBX8W/xy/UVGggCdFyCZATMis/829BmasZKgx28m
+uDEAn2eZhOrh8//AIYnkRYFLtWJnyx0F
+=kWVF
+-----END PGP SIGNATURE-----
+</pre></div>
+
+<h4 id="changelog-for-700-m4">CHANGELOG for 7.0.0-M4:</h4>
+
+<p>Release Notes - Wicket - Version 7.0.0-M4</p>
+
+<h4 id="bugs">Bugs</h4>
+
+<ul>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5265">WICKET-5265</a> - FencedFeedbackPanel is broken with RefreshingView(and it’s implementations)</li>
+  <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-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>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5712">WICKET-5712</a> - SecuritySettings.setEnforceMounts() does not work when the mounted mapper is not in the root compound mapper</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5714">WICKET-5714</a> - MockHttpServletRequest.buildRequest() should work for parameters with multiple values with multipart content type</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5716">WICKET-5716</a> - wicket-autocomplete prevents “change”-listener when leaving input via mouse click</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5717">WICKET-5717</a> - Url.parse/toString should support fragment</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5719">WICKET-5719</a> - Wicket-atmosphere should warn about phone home</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5720">WICKET-5720</a> - Method Strings.join doesn’t work correctly if separator is empty.</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5723">WICKET-5723</a> - CheckGroupSelector with disabled checks</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5724">WICKET-5724</a> - Queueing component in autocomponent</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5728">WICKET-5728</a> - Component queuing breaks with html tags that don’t require close tag.</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5730">WICKET-5730</a> - Dequeue auto component can’t resolve components if they are nested in child markup</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5731">WICKET-5731</a> - Using “Submit” button in Ajax DropDownChoice example leads to broken HTML page</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5733">WICKET-5733</a> - ContextNotActiveException thrown when using both CDI &amp; Native WebSocket</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5734">WICKET-5734</a> - Problem with WICKET-4441 and RestartResponseAtInterceptPageException</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5736">WICKET-5736</a> - Atmosphere Eventbus throws Concurrent Modification Exception</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5741">WICKET-5741</a> - Ajax Form example is broken due to 9716f2a7e799133fdf3f7927d0093e6dfe16f529</li>
+</ul>
+
+<h4 id="improvements">Improvements</h4>
+
+<ul>
+  <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-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>
+  <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-5713">WICKET-5713</a> - Move /wicket.properties to /META-INF/wicket/xyz.properties</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>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5725">WICKET-5725</a> - Add NumberTextField(String,Class<t>) constructor</t></li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5729">WICKET-5729</a> - Avoid using input names that conflict with JavaScript DOM API method and attribute names</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5735">WICKET-5735</a> - Propagate fileSizeMax attribute to org.apache.commons.fileupload.FileUploadBase</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5737">WICKET-5737</a> - Log a warning when WebSocketResponse#sendError() is used</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5739">WICKET-5739</a> - Add a factory method for WebSocketRequestHandler</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5740">WICKET-5740</a> - Provide a way to adapt the lock timeout based on the page class/id</li>
+</ul>
+
+<h4 id="new-features">New Features</h4>
+
+<ul>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5677">WICKET-5677</a> - Components should have onAdd to complement onRemove</li>
+</ul>
+
+<h4 id="tasks">Tasks</h4>
 
 <ul>
-  <li><a href="https://git-wip-us.apache.org/repos/asf/wicket/repo?p=wicket.git;a=shortlog;h=refs/tags/wicket-1.5.12">Git tag</a></li>
-  <li><a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;version=12326154">Changelog</a></li>
-  <li>To use in Maven:</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5705">WICKET-5705</a> - Disable Javadoc linter in JDK 1.8 because it is too strict</li>
 </ul>
 
+<h4 id="tests">Tests</h4>
+
+<ul>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5722">WICKET-5722</a> - Queueing in merged markup with transparent resolver in the base class</li>
+</ul>
+
+<p>Have fun!</p>
+
+<p>— The Wicket team</p>
+
+<h1 id="apache-wicket-6180-released20141105wicket-6180-releasedhtml"><a href="/2014/11/05/wicket-6.18.0-released.html">Apache Wicket 6.18.0 released</a></h1>
+<p>The Apache Wicket PMC is proud to announce Apache Wicket 6.18.0!</p>
+
+<p>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.</p>
+
+<h3 id="using-this-release">Using this release</h3>
+
+<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>
+
 <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.12<span class="nt">&lt;/version&gt;</span>
+    <span class="nt">&lt;version&gt;</span>6.18.0<span class="nt">&lt;/version&gt;</span>
 <span class="nt">&lt;/dependency&gt;</span></code></pre></div>
 
+<p>Or download and build the distribution yourself, or use our
+convenience binary package</p>
+
+<ul>
+  <li>Source: <a href="http://www.apache.org/dyn/closer.cgi/wicket/6.18.0">http://www.apache.org/dyn/closer.cgi/wicket/6.18.0</a></li>
+  <li>Binary: <a href="http://www.apache.org/dyn/closer.cgi/wicket/6.18.0/binaries">http://www.apache.org/dyn/closer.cgi/wicket/6.18.0/binaries</a></li>
+</ul>
+
+<h3 id="upgrading-from-earlier-versions">Upgrading from earlier versions</h3>
+
+<p>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</p>
+
 <ul>
-  <li>Download the <a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.12">full distribution</a> (including sources)</li>
+  <li><a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+6.0">migration to Wicket 6</a></li>
+</ul>
+
+<p>Have fun!</p>
+
+<p>— The Wicket team</p>
+
+<h3 id="this-release">This release</h3>
+
+<p>Below you can find the cryptographic signatures for the distributions
+and the release notes.</p>
+
+<h4 id="the-signatures-for-the-source-release-artefacts">The signatures for the source release artefacts:</h4>
+
+<p>Signature for apache-wicket-6.18.0.zip:</p>
+
+<div class="highlight"><pre>
+-----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-----
+</pre></div>
+
+<p>Signature for apache-wicket-6.18.0.tar.gz:</p>
+
+<div class="highlight"><pre>
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.22 (Darwin)
+Comment: GPGTools - https://gpgtools.org
+
+iEYEABECAAYFAlRTb2UACgkQJBX8W/xy/UVZcACguyKdrM0byfMp5IWqzwFMx5Lo
+i6UAn25gHcC0w8QWiNJXV7u99iTHssaP
+=+QQW
+-----END PGP SIGNATURE-----
+</pre></div>
+
+<h4 id="changelog-for-6180">CHANGELOG for 6.18.0:</h4>
+
+<p>The following changes were made in Wicket for this release.</p>
+
+<h4 id="bug">Bug</h4>
+
+<ul>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5265">WICKET-5265</a> - FencedFeedbackPanel is broken with RefreshingView(and it’s implementations)</li>
+  <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-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-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>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5712">WICKET-5712</a> - SecuritySettings.setEnforceMounts() does not work when the mounted mapper is not in the root compound mapper</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5714">WICKET-5714</a> - MockHttpServletRequest.buildRequest() should work for parameters with multiple values with multipart content type</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5716">WICKET-5716</a> - wicket-autocomplete prevents “change”-listener when leaving input via mouse click</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5717">WICKET-5717</a> - Url.parse/toString should support fragment</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5719">WICKET-5719</a> - Wicket-atmosphere should warn about phone home</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5720">WICKET-5720</a> - Method Strings.join doesn’t work correctly if separator is empty.</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5723">WICKET-5723</a> - CheckGroupSelector with disabled checks</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5731">WICKET-5731</a> - Using “Submit” button in Ajax DropDownChoice example leads to broken HTML page</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5736">WICKET-5736</a> - Atmosphere Eventbus throws Concurrent Modification Exception</li>
+</ul>
+
+<h4 id="improvement">Improvement</h4>
+
+<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-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>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5725">WICKET-5725</a> - Add NumberTextField(String,Class<t>) constructor</t></li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5729">WICKET-5729</a> - Avoid using input names that conflict with JavaScript DOM API method and attribute names</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5735">WICKET-5735</a> - Propagate fileSizeMax attribute to org.apache.commons.fileupload.FileUploadBase</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5740">WICKET-5740</a> - Provide a way to adapt the lock timeout based on the page class/id</li>
+</ul>
+
+<h4 id="new-feature">New Feature</h4>
+
+<ul>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5677">WICKET-5677</a> - Components should have onAdd to complement onRemove</li>
 </ul>
 
 <h1>Older news items</h1>
@@ -254,6 +502,18 @@ This issue was reported by Andrea Del Be
 
 
 <li>
+        <a href="/2014/09/22/cve-2014-3526.html">CVE-2014-3526 - Apache Wicket Information disclosure vulnerability</a> - <span>22 Sep 2014</span><br />
+        Severity: Important Vendor: The Apache Software Foundation Versions Affected: Apache Wicket 1.5.11, 6.16.0 and 7.0.0-M2 Description: When rendering a web page Wicket checks the request...
+        <a href="/2014/09/22/cve-2014-3526.html">more</a></li>
+
+
+<li>
+        <a href="/2014/09/15/wicket-1.5.12-released.html">Wicket 1.5.12 released</a> - <span>15 Sep 2014</span><br />
+        This is the twelfth maintenance release of the Wicket 1.5.x series. This release brings over 5 bug fixes and improvements. Git tag Changelog To use...
+        <a href="/2014/09/15/wicket-1.5.12-released.html">more</a></li>
+
+
+<li>
         <a href="/2014/08/24/wicket-6.17.0-released.html">Apache Wicket 6.17.0 released</a> - <span>24 Aug 2014</span><br />
         The Apache Wicket PMC is proud to announce Apache Wicket 6.17.0! This release marks the seventeenth minor release of Wicket 6. Starting with Wicket 6...
         <a href="/2014/08/24/wicket-6.17.0-released.html">more</a></li>
@@ -300,18 +560,6 @@ This issue was reported by Andrea Del Be
         The Apache Wicket PMC is proud to announce Apache Wicket 6.14.0! This release marks the fourteenth minor release of Wicket 6. Starting with Wicket 6...
         <a href="/2014/02/20/wicket-6.14.0-released.html">more</a></li>
 
-
-<li>
-        <a href="/2014/02/06/wicket-1.5.11-released.html">Wicket 1.5.11 released</a> - <span>06 Feb 2014</span><br />
-        This is the eleventh maintenance release of the Wicket 1.5.x series. This release brings over 34 bug fixes and improvements. Git tag Changelog To use...
-        <a href="/2014/02/06/wicket-1.5.11-released.html">more</a></li>
-
-
-<li>
-        <a href="/2014/02/06/wicket-1.4.23-released.html">Wicket 1.4.23 released</a> - <span>06 Feb 2014</span><br />
-        This is twenty thirdth release of the Wicket 1.4.x series. This is a security bugfix release on the 1.4.x branch. Read CVE-2013-2055 for more information....
-        <a href="/2014/02/06/wicket-1.4.23-released.html">more</a></li>
-
 </ul>
 <p># Books about Wicket</p>
 

Modified: wicket/common/site/trunk/_site/learn/books/awc.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/books/awc.html?rev=1637583&r1=1637582&r2=1637583&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/books/awc.html (original)
+++ wicket/common/site/trunk/_site/learn/books/awc.html Sat Nov  8 18:35:41 2014
@@ -93,7 +93,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.17.0">Wicket 6.17</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.18.0">Wicket 6.18</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.12">Wicket 1.5</a>
@@ -134,7 +134,7 @@
 	<h5>Wicket 7.x</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M3">Download M3</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4">Download M4</a>
 		</li>
 		<li>
 			<a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+7.0">Migration guide</a>

Modified: wicket/common/site/trunk/_site/learn/books/ewdww.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/books/ewdww.html?rev=1637583&r1=1637582&r2=1637583&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/books/ewdww.html (original)
+++ wicket/common/site/trunk/_site/learn/books/ewdww.html Sat Nov  8 18:35:41 2014
@@ -93,7 +93,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.17.0">Wicket 6.17</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.18.0">Wicket 6.18</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.12">Wicket 1.5</a>
@@ -134,7 +134,7 @@
 	<h5>Wicket 7.x</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M3">Download M3</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4">Download M4</a>
 		</li>
 		<li>
 			<a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+7.0">Migration guide</a>

Modified: wicket/common/site/trunk/_site/learn/books/index.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/books/index.html?rev=1637583&r1=1637582&r2=1637583&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/books/index.html (original)
+++ wicket/common/site/trunk/_site/learn/books/index.html Sat Nov  8 18:35:41 2014
@@ -93,7 +93,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.17.0">Wicket 6.17</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.18.0">Wicket 6.18</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.12">Wicket 1.5</a>
@@ -134,7 +134,7 @@
 	<h5>Wicket 7.x</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M3">Download M3</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4">Download M4</a>
 		</li>
 		<li>
 			<a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+7.0">Migration guide</a>

Modified: wicket/common/site/trunk/_site/learn/books/koda.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/books/koda.html?rev=1637583&r1=1637582&r2=1637583&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/books/koda.html (original)
+++ wicket/common/site/trunk/_site/learn/books/koda.html Sat Nov  8 18:35:41 2014
@@ -93,7 +93,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.17.0">Wicket 6.17</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.18.0">Wicket 6.18</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.12">Wicket 1.5</a>
@@ -134,7 +134,7 @@
 	<h5>Wicket 7.x</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M3">Download M3</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4">Download M4</a>
 		</li>
 		<li>
 			<a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+7.0">Migration guide</a>

Modified: wicket/common/site/trunk/_site/learn/books/kwij.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/books/kwij.html?rev=1637583&r1=1637582&r2=1637583&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/books/kwij.html (original)
+++ wicket/common/site/trunk/_site/learn/books/kwij.html Sat Nov  8 18:35:41 2014
@@ -93,7 +93,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.17.0">Wicket 6.17</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.18.0">Wicket 6.18</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.12">Wicket 1.5</a>
@@ -134,7 +134,7 @@
 	<h5>Wicket 7.x</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M3">Download M3</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4">Download M4</a>
 		</li>
 		<li>
 			<a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+7.0">Migration guide</a>

Modified: wicket/common/site/trunk/_site/learn/books/praxisbuchwicket.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/books/praxisbuchwicket.html?rev=1637583&r1=1637582&r2=1637583&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/books/praxisbuchwicket.html (original)
+++ wicket/common/site/trunk/_site/learn/books/praxisbuchwicket.html Sat Nov  8 18:35:41 2014
@@ -93,7 +93,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.17.0">Wicket 6.17</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.18.0">Wicket 6.18</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.12">Wicket 1.5</a>
@@ -134,7 +134,7 @@
 	<h5>Wicket 7.x</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M3">Download M3</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4">Download M4</a>
 		</li>
 		<li>
 			<a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+7.0">Migration guide</a>

Modified: wicket/common/site/trunk/_site/learn/books/prowicket.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/books/prowicket.html?rev=1637583&r1=1637582&r2=1637583&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/books/prowicket.html (original)
+++ wicket/common/site/trunk/_site/learn/books/prowicket.html Sat Nov  8 18:35:41 2014
@@ -93,7 +93,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.17.0">Wicket 6.17</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.18.0">Wicket 6.18</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.12">Wicket 1.5</a>
@@ -134,7 +134,7 @@
 	<h5>Wicket 7.x</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M3">Download M3</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4">Download M4</a>
 		</li>
 		<li>
 			<a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+7.0">Migration guide</a>

Modified: wicket/common/site/trunk/_site/learn/books/wia.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/books/wia.html?rev=1637583&r1=1637582&r2=1637583&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/books/wia.html (original)
+++ wicket/common/site/trunk/_site/learn/books/wia.html Sat Nov  8 18:35:41 2014
@@ -93,7 +93,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.17.0">Wicket 6.17</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.18.0">Wicket 6.18</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.12">Wicket 1.5</a>
@@ -134,7 +134,7 @@
 	<h5>Wicket 7.x</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M3">Download M3</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4">Download M4</a>
 		</li>
 		<li>
 			<a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+7.0">Migration guide</a>

Modified: wicket/common/site/trunk/_site/learn/books/wicket-jp.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/books/wicket-jp.html?rev=1637583&r1=1637582&r2=1637583&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/books/wicket-jp.html (original)
+++ wicket/common/site/trunk/_site/learn/books/wicket-jp.html Sat Nov  8 18:35:41 2014
@@ -93,7 +93,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.17.0">Wicket 6.17</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.18.0">Wicket 6.18</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.12">Wicket 1.5</a>
@@ -134,7 +134,7 @@
 	<h5>Wicket 7.x</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M3">Download M3</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4">Download M4</a>
 		</li>
 		<li>
 			<a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+7.0">Migration guide</a>

Modified: wicket/common/site/trunk/_site/learn/examples/ajaxcounter.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/examples/ajaxcounter.html?rev=1637583&r1=1637582&r2=1637583&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/examples/ajaxcounter.html (original)
+++ wicket/common/site/trunk/_site/learn/examples/ajaxcounter.html Sat Nov  8 18:35:41 2014
@@ -93,7 +93,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.17.0">Wicket 6.17</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.18.0">Wicket 6.18</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.12">Wicket 1.5</a>
@@ -134,7 +134,7 @@
 	<h5>Wicket 7.x</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M3">Download M3</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4">Download M4</a>
 		</li>
 		<li>
 			<a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+7.0">Migration guide</a>

Modified: wicket/common/site/trunk/_site/learn/examples/dropdownchoice.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/examples/dropdownchoice.html?rev=1637583&r1=1637582&r2=1637583&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/examples/dropdownchoice.html (original)
+++ wicket/common/site/trunk/_site/learn/examples/dropdownchoice.html Sat Nov  8 18:35:41 2014
@@ -93,7 +93,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.17.0">Wicket 6.17</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.18.0">Wicket 6.18</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.12">Wicket 1.5</a>
@@ -134,7 +134,7 @@
 	<h5>Wicket 7.x</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M3">Download M3</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4">Download M4</a>
 		</li>
 		<li>
 			<a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+7.0">Migration guide</a>

Modified: wicket/common/site/trunk/_site/learn/examples/guestbook.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/examples/guestbook.html?rev=1637583&r1=1637582&r2=1637583&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/examples/guestbook.html (original)
+++ wicket/common/site/trunk/_site/learn/examples/guestbook.html Sat Nov  8 18:35:41 2014
@@ -93,7 +93,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.17.0">Wicket 6.17</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.18.0">Wicket 6.18</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.12">Wicket 1.5</a>
@@ -134,7 +134,7 @@
 	<h5>Wicket 7.x</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M3">Download M3</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4">Download M4</a>
 		</li>
 		<li>
 			<a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+7.0">Migration guide</a>

Modified: wicket/common/site/trunk/_site/learn/examples/helloworld.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/examples/helloworld.html?rev=1637583&r1=1637582&r2=1637583&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/examples/helloworld.html (original)
+++ wicket/common/site/trunk/_site/learn/examples/helloworld.html Sat Nov  8 18:35:41 2014
@@ -93,7 +93,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.17.0">Wicket 6.17</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.18.0">Wicket 6.18</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.12">Wicket 1.5</a>
@@ -134,7 +134,7 @@
 	<h5>Wicket 7.x</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M3">Download M3</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4">Download M4</a>
 		</li>
 		<li>
 			<a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+7.0">Migration guide</a>

Modified: wicket/common/site/trunk/_site/learn/examples/index.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/examples/index.html?rev=1637583&r1=1637582&r2=1637583&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/examples/index.html (original)
+++ wicket/common/site/trunk/_site/learn/examples/index.html Sat Nov  8 18:35:41 2014
@@ -93,7 +93,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.17.0">Wicket 6.17</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.18.0">Wicket 6.18</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.12">Wicket 1.5</a>
@@ -134,7 +134,7 @@
 	<h5>Wicket 7.x</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M3">Download M3</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4">Download M4</a>
 		</li>
 		<li>
 			<a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+7.0">Migration guide</a>

Modified: wicket/common/site/trunk/_site/learn/examples/markupinheritance.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/examples/markupinheritance.html?rev=1637583&r1=1637582&r2=1637583&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/examples/markupinheritance.html (original)
+++ wicket/common/site/trunk/_site/learn/examples/markupinheritance.html Sat Nov  8 18:35:41 2014
@@ -93,7 +93,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.17.0">Wicket 6.17</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.18.0">Wicket 6.18</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.12">Wicket 1.5</a>
@@ -134,7 +134,7 @@
 	<h5>Wicket 7.x</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M3">Download M3</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4">Download M4</a>
 		</li>
 		<li>
 			<a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+7.0">Migration guide</a>

Modified: wicket/common/site/trunk/_site/learn/examples/navomatic.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/examples/navomatic.html?rev=1637583&r1=1637582&r2=1637583&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/examples/navomatic.html (original)
+++ wicket/common/site/trunk/_site/learn/examples/navomatic.html Sat Nov  8 18:35:41 2014
@@ -93,7 +93,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.17.0">Wicket 6.17</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.18.0">Wicket 6.18</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.12">Wicket 1.5</a>
@@ -134,7 +134,7 @@
 	<h5>Wicket 7.x</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M3">Download M3</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4">Download M4</a>
 		</li>
 		<li>
 			<a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+7.0">Migration guide</a>

Modified: wicket/common/site/trunk/_site/learn/examples/usingfragments.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/examples/usingfragments.html?rev=1637583&r1=1637582&r2=1637583&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/examples/usingfragments.html (original)
+++ wicket/common/site/trunk/_site/learn/examples/usingfragments.html Sat Nov  8 18:35:41 2014
@@ -93,7 +93,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.17.0">Wicket 6.17</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.18.0">Wicket 6.18</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.12">Wicket 1.5</a>
@@ -134,7 +134,7 @@
 	<h5>Wicket 7.x</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M3">Download M3</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4">Download M4</a>
 		</li>
 		<li>
 			<a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+7.0">Migration guide</a>

Modified: wicket/common/site/trunk/_site/learn/ides.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/ides.html?rev=1637583&r1=1637582&r2=1637583&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/ides.html (original)
+++ wicket/common/site/trunk/_site/learn/ides.html Sat Nov  8 18:35:41 2014
@@ -93,7 +93,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.17.0">Wicket 6.17</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.18.0">Wicket 6.18</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.12">Wicket 1.5</a>
@@ -134,7 +134,7 @@
 	<h5>Wicket 7.x</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M3">Download M3</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4">Download M4</a>
 		</li>
 		<li>
 			<a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+7.0">Migration guide</a>

Modified: wicket/common/site/trunk/_site/learn/index.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/index.html?rev=1637583&r1=1637582&r2=1637583&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/index.html (original)
+++ wicket/common/site/trunk/_site/learn/index.html Sat Nov  8 18:35:41 2014
@@ -93,7 +93,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.17.0">Wicket 6.17</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.18.0">Wicket 6.18</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.12">Wicket 1.5</a>
@@ -134,7 +134,7 @@
 	<h5>Wicket 7.x</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M3">Download M3</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4">Download M4</a>
 		</li>
 		<li>
 			<a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+7.0">Migration guide</a>

Modified: wicket/common/site/trunk/_site/learn/projects/authroles.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/projects/authroles.html?rev=1637583&r1=1637582&r2=1637583&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/projects/authroles.html (original)
+++ wicket/common/site/trunk/_site/learn/projects/authroles.html Sat Nov  8 18:35:41 2014
@@ -93,7 +93,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.17.0">Wicket 6.17</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.18.0">Wicket 6.18</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.12">Wicket 1.5</a>
@@ -134,7 +134,7 @@
 	<h5>Wicket 7.x</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M3">Download M3</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4">Download M4</a>
 		</li>
 		<li>
 			<a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+7.0">Migration guide</a>
@@ -316,7 +316,7 @@ dependencies in your projects classpath.
 <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-auth-roles<span class="nt">&lt;/artifactId&gt;</span>
-    <span class="nt">&lt;version&gt;</span>6.17.0<span class="nt">&lt;/version&gt;</span>
+    <span class="nt">&lt;version&gt;</span>6.18.0<span class="nt">&lt;/version&gt;</span>
 <span class="nt">&lt;/dependency&gt;</span></code></pre></div>
 
 <h3 id="required-dependencies">Required dependencies</h3>

Modified: wicket/common/site/trunk/_site/learn/projects/datetime.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/projects/datetime.html?rev=1637583&r1=1637582&r2=1637583&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/projects/datetime.html (original)
+++ wicket/common/site/trunk/_site/learn/projects/datetime.html Sat Nov  8 18:35:41 2014
@@ -93,7 +93,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.17.0">Wicket 6.17</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.18.0">Wicket 6.18</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.12">Wicket 1.5</a>
@@ -134,7 +134,7 @@
 	<h5>Wicket 7.x</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M3">Download M3</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4">Download M4</a>
 		</li>
 		<li>
 			<a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+7.0">Migration guide</a>

Modified: wicket/common/site/trunk/_site/learn/projects/devutils.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/projects/devutils.html?rev=1637583&r1=1637582&r2=1637583&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/projects/devutils.html (original)
+++ wicket/common/site/trunk/_site/learn/projects/devutils.html Sat Nov  8 18:35:41 2014
@@ -93,7 +93,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.17.0">Wicket 6.17</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.18.0">Wicket 6.18</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.12">Wicket 1.5</a>
@@ -134,7 +134,7 @@
 	<h5>Wicket 7.x</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M3">Download M3</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4">Download M4</a>
 		</li>
 		<li>
 			<a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+7.0">Migration guide</a>

Modified: wicket/common/site/trunk/_site/learn/projects/extensions.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/projects/extensions.html?rev=1637583&r1=1637582&r2=1637583&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/projects/extensions.html (original)
+++ wicket/common/site/trunk/_site/learn/projects/extensions.html Sat Nov  8 18:35:41 2014
@@ -93,7 +93,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.17.0">Wicket 6.17</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.18.0">Wicket 6.18</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.12">Wicket 1.5</a>
@@ -134,7 +134,7 @@
 	<h5>Wicket 7.x</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M3">Download M3</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4">Download M4</a>
 		</li>
 		<li>
 			<a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+7.0">Migration guide</a>

Modified: wicket/common/site/trunk/_site/learn/projects/guice.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/projects/guice.html?rev=1637583&r1=1637582&r2=1637583&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/projects/guice.html (original)
+++ wicket/common/site/trunk/_site/learn/projects/guice.html Sat Nov  8 18:35:41 2014
@@ -93,7 +93,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.17.0">Wicket 6.17</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.18.0">Wicket 6.18</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.12">Wicket 1.5</a>
@@ -134,7 +134,7 @@
 	<h5>Wicket 7.x</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M3">Download M3</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4">Download M4</a>
 		</li>
 		<li>
 			<a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+7.0">Migration guide</a>

Modified: wicket/common/site/trunk/_site/learn/projects/index.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/projects/index.html?rev=1637583&r1=1637582&r2=1637583&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/projects/index.html (original)
+++ wicket/common/site/trunk/_site/learn/projects/index.html Sat Nov  8 18:35:41 2014
@@ -93,7 +93,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.17.0">Wicket 6.17</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.18.0">Wicket 6.18</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.12">Wicket 1.5</a>
@@ -134,7 +134,7 @@
 	<h5>Wicket 7.x</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M3">Download M3</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4">Download M4</a>
 		</li>
 		<li>
 			<a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+7.0">Migration guide</a>

Modified: wicket/common/site/trunk/_site/learn/projects/ioc.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/projects/ioc.html?rev=1637583&r1=1637582&r2=1637583&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/projects/ioc.html (original)
+++ wicket/common/site/trunk/_site/learn/projects/ioc.html Sat Nov  8 18:35:41 2014
@@ -93,7 +93,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.17.0">Wicket 6.17</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.18.0">Wicket 6.18</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.12">Wicket 1.5</a>
@@ -134,7 +134,7 @@
 	<h5>Wicket 7.x</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M3">Download M3</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4">Download M4</a>
 		</li>
 		<li>
 			<a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+7.0">Migration guide</a>

Modified: wicket/common/site/trunk/_site/learn/projects/jmx.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/projects/jmx.html?rev=1637583&r1=1637582&r2=1637583&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/projects/jmx.html (original)
+++ wicket/common/site/trunk/_site/learn/projects/jmx.html Sat Nov  8 18:35:41 2014
@@ -93,7 +93,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.17.0">Wicket 6.17</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.18.0">Wicket 6.18</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.12">Wicket 1.5</a>
@@ -134,7 +134,7 @@
 	<h5>Wicket 7.x</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M3">Download M3</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4">Download M4</a>
 		</li>
 		<li>
 			<a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+7.0">Migration guide</a>

Modified: wicket/common/site/trunk/_site/learn/projects/spring.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/projects/spring.html?rev=1637583&r1=1637582&r2=1637583&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/projects/spring.html (original)
+++ wicket/common/site/trunk/_site/learn/projects/spring.html Sat Nov  8 18:35:41 2014
@@ -93,7 +93,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.17.0">Wicket 6.17</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.18.0">Wicket 6.18</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.12">Wicket 1.5</a>
@@ -134,7 +134,7 @@
 	<h5>Wicket 7.x</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M3">Download M3</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4">Download M4</a>
 		</li>
 		<li>
 			<a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+7.0">Migration guide</a>

Modified: wicket/common/site/trunk/_site/learn/projects/velocity.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/projects/velocity.html?rev=1637583&r1=1637582&r2=1637583&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/projects/velocity.html (original)
+++ wicket/common/site/trunk/_site/learn/projects/velocity.html Sat Nov  8 18:35:41 2014
@@ -93,7 +93,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.17.0">Wicket 6.17</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.18.0">Wicket 6.18</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.12">Wicket 1.5</a>
@@ -134,7 +134,7 @@
 	<h5>Wicket 7.x</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M3">Download M3</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4">Download M4</a>
 		</li>
 		<li>
 			<a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+7.0">Migration guide</a>
@@ -279,7 +279,7 @@ dependencies in your projects classpath.
 <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-velocity<span class="nt">&lt;/artifactId&gt;</span>
-    <span class="nt">&lt;version&gt;</span>6.17.0<span class="nt">&lt;/version&gt;</span>
+    <span class="nt">&lt;version&gt;</span>6.18.0<span class="nt">&lt;/version&gt;</span>
 <span class="nt">&lt;/dependency&gt;</span></code></pre></div>
 
 <h3 id="required-dependencies">Required dependencies</h3>

Modified: wicket/common/site/trunk/_site/meet/blogs.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/meet/blogs.html?rev=1637583&r1=1637582&r2=1637583&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/meet/blogs.html (original)
+++ wicket/common/site/trunk/_site/meet/blogs.html Sat Nov  8 18:35:41 2014
@@ -93,7 +93,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.17.0">Wicket 6.17</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.18.0">Wicket 6.18</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.12">Wicket 1.5</a>
@@ -134,7 +134,7 @@
 	<h5>Wicket 7.x</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M3">Download M3</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4">Download M4</a>
 		</li>
 		<li>
 			<a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+7.0">Migration guide</a>

Modified: wicket/common/site/trunk/_site/meet/buzz.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/meet/buzz.html?rev=1637583&r1=1637582&r2=1637583&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/meet/buzz.html (original)
+++ wicket/common/site/trunk/_site/meet/buzz.html Sat Nov  8 18:35:41 2014
@@ -93,7 +93,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.17.0">Wicket 6.17</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.18.0">Wicket 6.18</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.12">Wicket 1.5</a>
@@ -134,7 +134,7 @@
 	<h5>Wicket 7.x</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M3">Download M3</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4">Download M4</a>
 		</li>
 		<li>
 			<a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+7.0">Migration guide</a>

Modified: wicket/common/site/trunk/_site/meet/features.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/meet/features.html?rev=1637583&r1=1637582&r2=1637583&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/meet/features.html (original)
+++ wicket/common/site/trunk/_site/meet/features.html Sat Nov  8 18:35:41 2014
@@ -93,7 +93,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.17.0">Wicket 6.17</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.18.0">Wicket 6.18</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.12">Wicket 1.5</a>
@@ -134,7 +134,7 @@
 	<h5>Wicket 7.x</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M3">Download M3</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4">Download M4</a>
 		</li>
 		<li>
 			<a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+7.0">Migration guide</a>

Modified: wicket/common/site/trunk/_site/meet/index.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/meet/index.html?rev=1637583&r1=1637582&r2=1637583&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/meet/index.html (original)
+++ wicket/common/site/trunk/_site/meet/index.html Sat Nov  8 18:35:41 2014
@@ -93,7 +93,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.17.0">Wicket 6.17</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.18.0">Wicket 6.18</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.12">Wicket 1.5</a>
@@ -134,7 +134,7 @@
 	<h5>Wicket 7.x</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M3">Download M3</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4">Download M4</a>
 		</li>
 		<li>
 			<a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+7.0">Migration guide</a>

Modified: wicket/common/site/trunk/_site/meet/introduction.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/meet/introduction.html?rev=1637583&r1=1637582&r2=1637583&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/meet/introduction.html (original)
+++ wicket/common/site/trunk/_site/meet/introduction.html Sat Nov  8 18:35:41 2014
@@ -93,7 +93,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.17.0">Wicket 6.17</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.18.0">Wicket 6.18</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.12">Wicket 1.5</a>
@@ -134,7 +134,7 @@
 	<h5>Wicket 7.x</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M3">Download M3</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4">Download M4</a>
 		</li>
 		<li>
 			<a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+7.0">Migration guide</a>

Modified: wicket/common/site/trunk/_site/meet/vision.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/meet/vision.html?rev=1637583&r1=1637582&r2=1637583&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/meet/vision.html (original)
+++ wicket/common/site/trunk/_site/meet/vision.html Sat Nov  8 18:35:41 2014
@@ -93,7 +93,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.17.0">Wicket 6.17</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.18.0">Wicket 6.18</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.12">Wicket 1.5</a>
@@ -134,7 +134,7 @@
 	<h5>Wicket 7.x</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M3">Download M3</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4">Download M4</a>
 		</li>
 		<li>
 			<a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+7.0">Migration guide</a>

Modified: wicket/common/site/trunk/_site/start/download.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/start/download.html?rev=1637583&r1=1637582&r2=1637583&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/start/download.html (original)
+++ wicket/common/site/trunk/_site/start/download.html Sat Nov  8 18:35:41 2014
@@ -93,7 +93,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.17.0">Wicket 6.17</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.18.0">Wicket 6.18</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.12">Wicket 1.5</a>
@@ -134,7 +134,7 @@
 	<h5>Wicket 7.x</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M3">Download M3</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4">Download M4</a>
 		</li>
 		<li>
 			<a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+7.0">Migration guide</a>
@@ -187,18 +187,18 @@
 
 		<div id="contentbody">
 			<h1>Download Wicket releases</h1>
-			<p>Apache Wicket 6.17.0 is the current stable release.
+			<p>Apache Wicket 6.18.0 is the current stable release.
 Most users get Apache Wicket using <a href="#maven">Apache Maven’s dependency
 management</a>, which incidentally is the most convenient way of
 obtaining the latest and greatest Wicket.</p>
 
 <h2 id="download">Download</h2>
 
-<p>New projects should use <a href="http://www.apache.org/dyn/closer.cgi/wicket/6.17.0">Wicket 6.17.0</a> as their base.</p>
+<p>New projects should use <a href="http://www.apache.org/dyn/closer.cgi/wicket/6.18.0">Wicket 6.18.0</a> as their base.</p>
 
 <ul>
-  <li><strong>Latest stable release</strong>: <a href="http://www.apache.org/dyn/closer.cgi/wicket/6.17.0">6.17.0</a></li>
-  <li><strong>Latest 6.x release</strong>: <a href="http://www.apache.org/dyn/closer.cgi/wicket/6.17.0">6.17.0</a></li>
+  <li><strong>Latest stable release</strong>: <a href="http://www.apache.org/dyn/closer.cgi/wicket/6.18.0">6.18.0</a></li>
+  <li><strong>Latest 6.x release</strong>: <a href="http://www.apache.org/dyn/closer.cgi/wicket/6.18.0">6.18.0</a></li>
   <li><strong>Latest 1.5.x release</strong>: <a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.12">1.5.12</a></li>
   <li><strong>Latest 1.4.x release</strong> (security updates only): <a href="http://www.apache.org/dyn/closer.cgi/wicket/1.4.23">1.4.23</a></li>
   <li><strong>Archived releases</strong>: <a href="http://archive.apache.org/dist/wicket">http://archive.apache.org/dist/wicket</a></li>
@@ -213,7 +213,7 @@ further along, you can try out the devel
 
 <ul>
   <li>Latest <strong>development milestone</strong> release for 7.x: 
-<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M3">7.0.0-M3</a></li>
+<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4">7.0.0-M4</a></li>
 </ul>
 
 <p>This release is not fit for production use yet: it is only intended for
@@ -271,7 +271,7 @@ Wicket you may find our migration guides
 <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>6.17.0<span class="nt">&lt;/version&gt;</span>
+    <span class="nt">&lt;version&gt;</span>6.18.0<span class="nt">&lt;/version&gt;</span>
 <span class="nt">&lt;/dependency&gt;</span></code></pre></div>
 
 <p>For the SLF4J log4j binding:</p>

Modified: wicket/common/site/trunk/_site/start/index.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/start/index.html?rev=1637583&r1=1637582&r2=1637583&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/start/index.html (original)
+++ wicket/common/site/trunk/_site/start/index.html Sat Nov  8 18:35:41 2014
@@ -93,7 +93,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.17.0">Wicket 6.17</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.18.0">Wicket 6.18</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.12">Wicket 1.5</a>
@@ -134,7 +134,7 @@
 	<h5>Wicket 7.x</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M3">Download M3</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4">Download M4</a>
 		</li>
 		<li>
 			<a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+7.0">Migration guide</a>

Modified: wicket/common/site/trunk/_site/start/installing.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/start/installing.html?rev=1637583&r1=1637582&r2=1637583&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/start/installing.html (original)
+++ wicket/common/site/trunk/_site/start/installing.html Sat Nov  8 18:35:41 2014
@@ -93,7 +93,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.17.0">Wicket 6.17</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.18.0">Wicket 6.18</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.12">Wicket 1.5</a>
@@ -134,7 +134,7 @@
 	<h5>Wicket 7.x</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M3">Download M3</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4">Download M4</a>
 		</li>
 		<li>
 			<a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+7.0">Migration guide</a>

Modified: wicket/common/site/trunk/_site/start/quickstart.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/start/quickstart.html?rev=1637583&r1=1637582&r2=1637583&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/start/quickstart.html (original)
+++ wicket/common/site/trunk/_site/start/quickstart.html Sat Nov  8 18:35:41 2014
@@ -93,7 +93,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.17.0">Wicket 6.17</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.18.0">Wicket 6.18</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.12">Wicket 1.5</a>
@@ -134,7 +134,7 @@
 	<h5>Wicket 7.x</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M3">Download M3</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4">Download M4</a>
 		</li>
 		<li>
 			<a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+7.0">Migration guide</a>
@@ -270,7 +270,7 @@ typing in the groupId, artifactId and ve
 		
 
 		
-			<option value="6.18.0-SNAPSHOT">6.18.0-SNAPSHOT</option>
+			<option value="6.19.0-SNAPSHOT">6.19.0-SNAPSHOT</option>
 		
 
 		
@@ -278,7 +278,7 @@ typing in the groupId, artifactId and ve
 		
 
 		
-			<option value="7.0.0-M3">7.0.0-M3</option>
+			<option value="7.0.0-M4">7.0.0-M4</option>
 		
 
 		
@@ -290,7 +290,7 @@ typing in the groupId, artifactId and ve
 		
 
 		
-			<option value="6.17.0" selected="selected">6.17.0</option>
+			<option value="6.18.0" selected="selected">6.18.0</option>
 		
 
 		</select><span title="Wicket Version">&nbsp;(?)</span>

Modified: wicket/common/site/trunk/_site/start/userguide.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/start/userguide.html?rev=1637583&r1=1637582&r2=1637583&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/start/userguide.html (original)
+++ wicket/common/site/trunk/_site/start/userguide.html Sat Nov  8 18:35:41 2014
@@ -93,7 +93,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.17.0">Wicket 6.17</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.18.0">Wicket 6.18</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.12">Wicket 1.5</a>
@@ -134,7 +134,7 @@
 	<h5>Wicket 7.x</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M3">Download M3</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4">Download M4</a>
 		</li>
 		<li>
 			<a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+7.0">Migration guide</a>

Modified: wicket/common/site/trunk/atom.xml
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/atom.xml?rev=1637583&r1=1637582&r2=1637583&view=diff
==============================================================================
--- wicket/common/site/trunk/atom.xml (original)
+++ wicket/common/site/trunk/atom.xml Sat Nov  8 18:35:41 2014
@@ -1,5 +1,5 @@
 ---
-layout: nil
+layout: null
 ---
 <?xml version="1.0" encoding="utf-8"?>
 <feed xmlns="http://www.w3.org/2005/Atom">

Modified: wicket/common/site/trunk/doap.rdf
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/doap.rdf?rev=1637583&r1=1637582&r2=1637583&view=diff
==============================================================================
--- wicket/common/site/trunk/doap.rdf (original)
+++ wicket/common/site/trunk/doap.rdf Sat Nov  8 18:35:41 2014
@@ -1,5 +1,5 @@
 ---
-layout: nil
+layout: null
 ---
 <?xml version="1.0"?>
 <?xml-stylesheet type="text/xsl"?>