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/01/13 17:02:26 UTC

svn commit: r1557758 [3/11] - in /wicket/common/site/trunk: ./ _includes/ _posts/ _site/ _site/2009/07/30/ _site/2009/08/21/ _site/2009/10/12/ _site/2009/10/24/ _site/2009/12/13/ _site/2009/12/21/ _site/2010/02/01/ _site/2010/03/05/ _site/2010/05/03/ _...

Modified: wicket/common/site/trunk/_site/2012/05/29/wicket-6.0.0-beta2-released.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/2012/05/29/wicket-6.0.0-beta2-released.html?rev=1557758&r1=1557757&r2=1557758&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/2012/05/29/wicket-6.0.0-beta2-released.html (original)
+++ wicket/common/site/trunk/_site/2012/05/29/wicket-6.0.0-beta2-released.html Mon Jan 13 16:02:24 2014
@@ -63,7 +63,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="/guide" title="User Guide">User Guide</a> | <a href="/guide/guide/single.pdf" title="User Guide in pdf">pdf</a>
+			<a href="/start/userguide.html" title="User Guide">User Guide</a>
 		</li>
 		<li>
 			<a href="/learn/examples" title="Examples">Examples</a>
@@ -92,7 +92,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.12.0">Wicket 6.12</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.13.0">Wicket 6.13</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.10">Wicket 1.5</a>
@@ -176,45 +176,39 @@
 			<h1>Wicket 6.0.0-beta2 released</h1>
 			<p>The Wicket team is proud to announce the second beta release of the Wicket 6.x series. This release brings over many improvements over the 1.5.x series.</p>
 
-<h3 id='new_and_noteworthy'>New and Noteworthy</h3>
+<h3 id="new_and_noteworthy">New and Noteworthy</h3>
 
-<h4 id='wicket_atmosphere'>Wicket Atmosphere</h4>
+<h4 id="wicket_atmosphere">Wicket Atmosphere</h4>
 
 <p>The Beta 2 contains a new experimental module Wicket Atmosphere, which brings serverside push to Wicket and provides a great way to render serverside markup and send it to the browsers of your users. Check out the atmosphere example in our Examples project to see it in action.</p>
 
-<p>In your application&#8217;s init method you need to register the push event bus:</p>
+<p>In your application’s init method you need to register the push event bus:</p>
 <div class='highlight'><pre><code class='java'><span class='k'>new</span> <span class='nf'>EventBus</span><span class='o'>(</span><span class='k'>this</span><span class='o'>);</span>
-</code></pre>
-</div>
+</code></pre></div>
 <p>Somewhere where you want to push your changes to the client, you need to publish your event to the push <code>EventBus</code>:</p>
 <div class='highlight'><pre><code class='java'><span class='n'>EventBus</span><span class='o'>.</span><span class='na'>get</span><span class='o'>().</span><span class='na'>post</span><span class='o'>(</span><span class='n'>input</span><span class='o'>.</span><span class='na'>getModelObject</span><span class='o'>());</span>
-</code></pre>
-</div>
-<p>And finally you need to subscribe your page (or component) to the <code>EventBus</code>&#8217;s events with <code>@Subscribe</code>, taking in the typed parameter you post to the EventBus (in this case a <code>String</code>):</p>
-
-<p><div class='highlight'><pre><code class='java'><span class='nd'>@Subscribe</span>
+</code></pre></div>
+<p>And finally you need to subscribe your page (or component) to the <code>EventBus</code>’s events with <code>@Subscribe</code>, taking in the typed parameter you post to the EventBus (in this case a <code>String</code>):</p>
+<div class='highlight'><pre><code class='java'><span class='nd'>@Subscribe</span>
 <span class='kd'>public</span> <span class='kt'>void</span> <span class='nf'>receiveMessage</span><span class='o'>(</span><span class='n'>AjaxRequestTarget</span> <span class='n'>target</span><span class='o'>,</span> <span class='n'>String</span> <span class='n'>message</span><span class='o'>)</span> <span class='o'>{</span>
 	<span class='n'>label</span><span class='o'>.</span><span class='na'>setDefaultModelObject</span><span class='o'>(</span><span class='n'>message</span><span class='o'>);</span>
 	<span class='n'>target</span><span class='o'>.</span><span class='na'>add</span><span class='o'>(</span><span class='n'>label</span><span class='o'>);</span>
 <span class='o'>}</span>
-</code></pre>
-</div></p>
-
+</code></pre></div>
 <p>To be able to use Wicket Atmosphere you need to include the following dependency:</p>
 <div class='highlight'><pre><code class='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-atmosphere<span class='nt'>&lt;/artifactId&gt;</span>
     <span class='nt'>&lt;version&gt;</span>0.1<span class='nt'>&lt;/version&gt;</span>
 <span class='nt'>&lt;/dependency&gt;</span>
-</code></pre>
-</div>
+</code></pre></div>
 <p>Please note that this is still experimental.</p>
 
-<h3 id='this_release'>This release</h3>
+<h3 id="this_release">This release</h3>
 
-<p>Check the <a href='https://cwiki.apache.org/confluence/display/WICKET/Wicket+6.0+Roadmap'>roadmap</a> with a list of the major goals. And the <a href='https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+6.0'>migration guide</a> with all major and some minor changes between 1.5.x and 6.x series.</p>
+<p>Check the <a href="https://cwiki.apache.org/confluence/display/WICKET/Wicket+6.0+Roadmap">roadmap</a> with a list of the major goals. And the <a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+6.0">migration guide</a> with all major and some minor changes between 1.5.x and 6.x series.</p>
 
-<p>The Jira changelog of all closed ticket at <a href='https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;version=12320343'>Jira</a></p>
+<p>The Jira changelog of all closed ticket at <a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&version=12320343">Jira</a></p>
 
 <p>To use it in Maven:</p>
 <div class='highlight'><pre><code class='xml'><span class='nt'>&lt;dependency&gt;</span>
@@ -222,9 +216,8 @@
     <span class='nt'>&lt;artifactId&gt;</span>wicket-core<span class='nt'>&lt;/artifactId&gt;</span>
     <span class='nt'>&lt;version&gt;</span>6.0.0-beta2<span class='nt'>&lt;/version&gt;</span>
 <span class='nt'>&lt;/dependency&gt;</span>
-</code></pre>
-</div>
-<p>If you don&#8217;t use a dependencies management build tool then you can download the <a href='http://www.apache.org/dyn/closer.cgi/wicket/6.0.0-beta2'>full distribution</a> (including source).</p>
+</code></pre></div>
+<p>If you don’t use a dependencies management build tool then you can download the <a href="http://www.apache.org/dyn/closer.cgi/wicket/6.0.0-beta2">full distribution</a> (including source).</p>
 
 <p>There are no more planned API breaks but if you find something that can be made better now it the time to discuss it! We will try to avoid making any API changes in the Release Candidates that will follow this beta release.</p>
 

Modified: wicket/common/site/trunk/_site/2012/06/04/wicket-1.5.7-released.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/2012/06/04/wicket-1.5.7-released.html?rev=1557758&r1=1557757&r2=1557758&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/2012/06/04/wicket-1.5.7-released.html (original)
+++ wicket/common/site/trunk/_site/2012/06/04/wicket-1.5.7-released.html Mon Jan 13 16:02:24 2014
@@ -63,7 +63,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="/guide" title="User Guide">User Guide</a> | <a href="/guide/guide/single.pdf" title="User Guide in pdf">pdf</a>
+			<a href="/start/userguide.html" title="User Guide">User Guide</a>
 		</li>
 		<li>
 			<a href="/learn/examples" title="Examples">Examples</a>
@@ -92,7 +92,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.12.0">Wicket 6.12</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.13.0">Wicket 6.13</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.10">Wicket 1.5</a>
@@ -177,9 +177,9 @@
 			<p>This is the seventh maintenance release of the Wicket 1.5.x series. This release brings over 26 bug fixes and improvements.</p>
 
 <ul>
-<li><a href='http://git-wip-us.apache.org/repos/asf/wicket/repo?p=wicket.git;a=shortlog;h=refs/tags/wicket-1.5.7'>Git tag</a></li>
+<li><a href="http://git-wip-us.apache.org/repos/asf/wicket/repo?p=wicket.git;a=shortlog;h=refs/tags/wicket-1.5.7">Git tag</a></li>
 
-<li><a href='https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;version=12321241'>Changelog</a></li>
+<li><a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&version=12321241">Changelog</a></li>
 
 <li>To use in Maven:</li>
 </ul>
@@ -188,10 +188,9 @@
     <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.7<span class='nt'>&lt;/version&gt;</span>
 <span class='nt'>&lt;/dependency&gt;</span>
-</code></pre>
-</div>
+</code></pre></div>
 <ul>
-<li>Download the <a href='http://www.apache.org/dyn/closer.cgi/wicket/1.5.7'>full distribution</a> (including source)</li>
+<li>Download the <a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.7">full distribution</a> (including source)</li>
 </ul>
 		</div>
         <div id="clearer"></div>

Modified: wicket/common/site/trunk/_site/2012/06/20/wicket-native-websockets.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/2012/06/20/wicket-native-websockets.html?rev=1557758&r1=1557757&r2=1557758&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/2012/06/20/wicket-native-websockets.html (original)
+++ wicket/common/site/trunk/_site/2012/06/20/wicket-native-websockets.html Mon Jan 13 16:02:24 2014
@@ -63,7 +63,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="/guide" title="User Guide">User Guide</a> | <a href="/guide/guide/single.pdf" title="User Guide in pdf">pdf</a>
+			<a href="/start/userguide.html" title="User Guide">User Guide</a>
 		</li>
 		<li>
 			<a href="/learn/examples" title="Examples">Examples</a>
@@ -92,7 +92,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.12.0">Wicket 6.12</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.13.0">Wicket 6.13</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.10">Wicket 1.5</a>
@@ -174,11 +174,11 @@
 
 		<div id="contentbody">
 			<h1>Wicket Native WebSockets support</h1>
-			<p>A new experimental module just landed in Wicket&#8217;s Git repository - Wicket Native WebSocket. It provides the support for HTML5 WebSockets in Wicket as the one for Ajax that you may already use in your applications.</p>
+			<p>A new experimental module just landed in Wicket’s Git repository - Wicket Native WebSocket. It provides the support for HTML5 WebSockets in Wicket as the one for Ajax that you may already use in your applications.</p>
 
-<p>The full documentation is available at <a href='https://cwiki.apache.org/confluence/x/0vSoAQ'>Native WebSocket Wiki</a> A demo application is available at <a href='https://github.com/martin-g/wicket-native-websocket-example'>Martin Grigorov&#8217;s GitHub</a></p>
+<p>The full documentation is available at <a href="https://cwiki.apache.org/confluence/x/0vSoAQ">Native WebSocket Wiki</a> A demo application is available at <a href="https://github.com/martin-g/wicket-native-websocket-example">Martin Grigorov’s GitHub</a></p>
 
-<p>Any feedback about the new module, its implementation and its documentation is very welcome! Just ask your question in Wicket&#8217;s mailing lists or IRC channel.</p>
+<p>Any feedback about the new module, its implementation and its documentation is very welcome! Just ask your question in Wicket’s mailing lists or IRC channel.</p>
 
 <p>The Wicket team!</p>
 		</div>

Modified: wicket/common/site/trunk/_site/2012/07/16/wicket-6.0.0-beta3-released.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/2012/07/16/wicket-6.0.0-beta3-released.html?rev=1557758&r1=1557757&r2=1557758&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/2012/07/16/wicket-6.0.0-beta3-released.html (original)
+++ wicket/common/site/trunk/_site/2012/07/16/wicket-6.0.0-beta3-released.html Mon Jan 13 16:02:24 2014
@@ -63,7 +63,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="/guide" title="User Guide">User Guide</a> | <a href="/guide/guide/single.pdf" title="User Guide in pdf">pdf</a>
+			<a href="/start/userguide.html" title="User Guide">User Guide</a>
 		</li>
 		<li>
 			<a href="/learn/examples" title="Examples">Examples</a>
@@ -92,7 +92,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.12.0">Wicket 6.12</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.13.0">Wicket 6.13</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.10">Wicket 1.5</a>
@@ -180,23 +180,23 @@
 
 <p>Any feedback about the new features, their implementation and their documentation is very welcome!</p>
 
-<h1 id='new_and_noteworthy_in_600beta3'>New and Noteworthy in 6.0.0-beta3</h1>
+<h1 id="new_and_noteworthy_in_600beta3">New and Noteworthy in 6.0.0-beta3</h1>
 
-<p><strong>NOTA BENE:</strong> the use of modules that are marked experimental, by being part of the sub module &#8216;wicket-experimental&#8217;, are really that: experimental. These modules can change, disappear or blow up your computer without notice and you really use/depend on them at your own risk.</p>
+<p><strong>NOTA BENE:</strong> the use of modules that are marked experimental, by being part of the sub module ‘wicket-experimental’, are really that: experimental. These modules can change, disappear or blow up your computer without notice and you really use/depend on them at your own risk.</p>
 
-<h2 id='wicket_native_websockets'>Wicket Native Websockets</h2>
+<h2 id="wicket_native_websockets">Wicket Native Websockets</h2>
 
 <p>A new <strong>experimental</strong> module has been added to Wicket 6 - Wicket Native WebSocket. This module adds support for using HTML5 WebSockets as you may use Ajax in your Wicket applications.</p>
 
 <p>All you have to do is to add a WebSocketBehavior to your page and from there on you can receive messages from the clients and push messages back to them.</p>
 
-<p>At <a href='https://cwiki.apache.org/confluence/x/0vSoAQ'>our wiki</a> you may find the documentation and a link to a demo application.</p>
+<p>At <a href="https://cwiki.apache.org/confluence/x/0vSoAQ">our wiki</a> you may find the documentation and a link to a demo application.</p>
 
 <p>If something is not clear feel free to ask your question in the mailing lists and we will improve the documentation.</p>
 
-<h2 id='wicket_bootstrap'>Wicket Bootstrap</h2>
+<h2 id="wicket_bootstrap">Wicket Bootstrap</h2>
 
-<p>The <strong>experimental</strong> modules now contain a new module for integration with Twitter&#8217;s Bootstrap. Currently this module only provides a central way of using the Bootstrap resources. In the future we will provide proper components and behaviors for the Bootstrap concepts.</p>
+<p>The <strong>experimental</strong> modules now contain a new module for integration with Twitter’s Bootstrap. Currently this module only provides a central way of using the Bootstrap resources. In the future we will provide proper components and behaviors for the Bootstrap concepts.</p>
 
 <p>To use this new <strong>experimental</strong> module, add this to your pom:</p>
 
@@ -217,11 +217,11 @@ public void renderHead(IHeaderResponse r
 
 <p>This will render a dependency to the Twitter bootstrap CSS and JS files, including the required dependency to JQuery.</p>
 
-<h2 id='new_wicket_examples'>New Wicket Examples</h2>
+<h2 id="new_wicket_examples">New Wicket Examples</h2>
 
 <p>We have started an effort to revamp the tried and tested Wicket Examples and bring them into 2012. The new examples are located in the <strong>experimental</strong> module.</p>
 
-<p>It is currently a copy of Twitter Bootstrap&#8217;s design but with Wicket specific filling.</p>
+<p>It is currently a copy of Twitter Bootstrap’s design but with Wicket specific filling.</p>
 
 <p>You can test the examples by running the</p>
 
@@ -231,7 +231,7 @@ public void renderHead(IHeaderResponse r
 
 <p>The examples will feature a component reference with typical use cases, full examples such as Hello, World, and descriptions of the code in play.</p>
 
-<h2 id='wicket_atmosphere'>Wicket Atmosphere</h2>
+<h2 id="wicket_atmosphere">Wicket Atmosphere</h2>
 
 <p>Wicket Atmosphere in the experimental modules has seen an upgrade of the Atmosphere dependency to 1.0.0-beta3. This has caused an incompatibility with Jetty 7.6.3 (used with Wicket and the examples). To mitigate this, you need to override either:</p>
 
@@ -241,16 +241,16 @@ public void renderHead(IHeaderResponse r
 <li>the dependency on Atmosphere to 0.9.5 (0.9.6 and 0.9.7 are broken as well)</li>
 </ul>
 
-<p>See <a href='https://issues.apache.org/jira/browse/WICKET-4656'>WICKET-4656</a> for more information regarding this issue.</p>
+<p>See <a href="https://issues.apache.org/jira/browse/WICKET-4656">WICKET-4656</a> for more information regarding this issue.</p>
 
-<h1 id='this_release'>This release</h1>
+<h1 id="this_release">This release</h1>
 
 <ul>
-<li>Check the roadmap with a list of the major goals: <a href='https://cwiki.apache.org/confluence/display/WICKET/Wicket+6.0+Roadmap'>6.0 roadmap</a></li>
+<li>Check the roadmap with a list of the major goals: <a href="https://cwiki.apache.org/confluence/display/WICKET/Wicket+6.0+Roadmap">6.0 roadmap</a></li>
 
-<li>And the migration guide with all major and some minor changes between 1.5.x and 6.x series: <a href='http://s.apache.org/wicket-6.0-migration'>migration guide</a></li>
+<li>And the migration guide with all major and some minor changes between 1.5.x and 6.x series: <a href="http://s.apache.org/wicket-6.0-migration">migration guide</a></li>
 
-<li>The Jira changelog of all closed ticket at Jira: <a href='http://s.apache.org/wicket-6.0.0-beta3-changelog'>changelog</a></li>
+<li>The Jira changelog of all closed ticket at Jira: <a href="http://s.apache.org/wicket-6.0.0-beta3-changelog">changelog</a></li>
 </ul>
 
 <p>To use it in Maven:</p>

Modified: wicket/common/site/trunk/_site/2012/08/24/wicket-1.5.8-released.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/2012/08/24/wicket-1.5.8-released.html?rev=1557758&r1=1557757&r2=1557758&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/2012/08/24/wicket-1.5.8-released.html (original)
+++ wicket/common/site/trunk/_site/2012/08/24/wicket-1.5.8-released.html Mon Jan 13 16:02:24 2014
@@ -63,7 +63,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="/guide" title="User Guide">User Guide</a> | <a href="/guide/guide/single.pdf" title="User Guide in pdf">pdf</a>
+			<a href="/start/userguide.html" title="User Guide">User Guide</a>
 		</li>
 		<li>
 			<a href="/learn/examples" title="Examples">Examples</a>
@@ -92,7 +92,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.12.0">Wicket 6.12</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.13.0">Wicket 6.13</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.10">Wicket 1.5</a>
@@ -177,9 +177,9 @@
 			<p>This is the eighth maintenance release of the Wicket 1.5.x series. This release brings over 45 bug fixes and improvements.</p>
 
 <ul>
-<li><a href='https://git-wip-us.apache.org/repos/asf/wicket/repo?p=wicket.git;a=shortlog;h=refs/tags/release/wicket.1.5.8'>Git tag</a></li>
+<li><a href="https://git-wip-us.apache.org/repos/asf/wicket/repo?p=wicket.git;a=shortlog;h=refs/tags/release/wicket.1.5.8">Git tag</a></li>
 
-<li><a href='https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;version=12321662'>Changelog</a></li>
+<li><a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&version=12321662">Changelog</a></li>
 
 <li>To use in Maven:</li>
 </ul>
@@ -188,10 +188,9 @@
     <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.8<span class='nt'>&lt;/version&gt;</span>
 <span class='nt'>&lt;/dependency&gt;</span>
-</code></pre>
-</div>
+</code></pre></div>
 <ul>
-<li>Download the <a href='http://www.apache.org/dyn/closer.cgi/wicket/1.5.8'>full distribution</a> (including source)</li>
+<li>Download the <a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.8">full distribution</a> (including source)</li>
 </ul>
 		</div>
         <div id="clearer"></div>

Modified: wicket/common/site/trunk/_site/2012/09/05/wicket-1.4.21-released.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/2012/09/05/wicket-1.4.21-released.html?rev=1557758&r1=1557757&r2=1557758&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/2012/09/05/wicket-1.4.21-released.html (original)
+++ wicket/common/site/trunk/_site/2012/09/05/wicket-1.4.21-released.html Mon Jan 13 16:02:24 2014
@@ -63,7 +63,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="/guide" title="User Guide">User Guide</a> | <a href="/guide/guide/single.pdf" title="User Guide in pdf">pdf</a>
+			<a href="/start/userguide.html" title="User Guide">User Guide</a>
 		</li>
 		<li>
 			<a href="/learn/examples" title="Examples">Examples</a>
@@ -92,7 +92,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.12.0">Wicket 6.12</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.13.0">Wicket 6.13</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.10">Wicket 1.5</a>
@@ -177,9 +177,9 @@
 			<p>This is 21st release of the Wicket 1.4.x series. This is also the last release of the 1.4.x series, rounding up the remaining bugfixes. No further releases will happen in this branch.</p>
 
 <ul>
-<li><a href='http://git-wip-us.apache.org/repos/asf/wicket/repo?p=wicket.git;a=shortlog;h=refs/tags/release/wicket-1.4.21'>Git tag</a></li>
+<li><a href="http://git-wip-us.apache.org/repos/asf/wicket/repo?p=wicket.git;a=shortlog;h=refs/tags/release/wicket-1.4.21">Git tag</a></li>
 
-<li><a href='https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;version=12320171'>Changelog</a></li>
+<li><a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&version=12320171">Changelog</a></li>
 
 <li>To use in Maven:</li>
 </ul>
@@ -188,10 +188,9 @@
     <span class='nt'>&lt;artifactId&gt;</span>wicket<span class='nt'>&lt;/artifactId&gt;</span>
     <span class='nt'>&lt;version&gt;</span>1.4.21<span class='nt'>&lt;/version&gt;</span>
 <span class='nt'>&lt;/dependency&gt;</span>
-</code></pre>
-</div>
+</code></pre></div>
 <ul>
-<li>Download the <a href='http://www.apache.org/dyn/closer.cgi/wicket/1.4.21'>full distribution</a> (including source)</li>
+<li>Download the <a href="http://www.apache.org/dyn/closer.cgi/wicket/1.4.21">full distribution</a> (including source)</li>
 </ul>
 		</div>
         <div id="clearer"></div>

Modified: wicket/common/site/trunk/_site/2012/09/05/wicket-6.0.0-released.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/2012/09/05/wicket-6.0.0-released.html?rev=1557758&r1=1557757&r2=1557758&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/2012/09/05/wicket-6.0.0-released.html (original)
+++ wicket/common/site/trunk/_site/2012/09/05/wicket-6.0.0-released.html Mon Jan 13 16:02:24 2014
@@ -63,7 +63,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="/guide" title="User Guide">User Guide</a> | <a href="/guide/guide/single.pdf" title="User Guide in pdf">pdf</a>
+			<a href="/start/userguide.html" title="User Guide">User Guide</a>
 		</li>
 		<li>
 			<a href="/learn/examples" title="Examples">Examples</a>
@@ -92,7 +92,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.12.0">Wicket 6.12</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.13.0">Wicket 6.13</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.10">Wicket 1.5</a>
@@ -175,9 +175,9 @@
 		<div id="contentbody">
 			<h1>Apache Wicket v6.0.0 released</h1>
 			<blockquote>
-<p>&#8220;With great pleasure we announce the availability of Apache Wicket 6.0.0&#8221;</p>
+<p>“With great pleasure we announce the availability of Apache Wicket 6.0.0”</p>
 
-<p>&#8211; 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>
@@ -196,13 +196,13 @@
 <li>Experimental support for websockets</li>
 </ul>
 
-<p>This release is available from the <a href='http://www.apache.org/dyn/closer.cgi/wicket/6.0.0'>usual download location (wicket-6.0.0)</a>, or available through the Maven Central repository.</p>
+<p>This release is available from the <a href="http://www.apache.org/dyn/closer.cgi/wicket/6.0.0">usual download location (wicket-6.0.0)</a>, or available through the Maven Central repository.</p>
 
 <p>Additional features include a customizable client-side API, improved feedback messages, correct packaging for OSGi compatibility and improved initialization of plugins. Highlights include:</p>
 
 <p>Java 6 required - This release moves the minimum required Java version to Java 6. This means that Wicket applications running on earlier Java versions meaning to upgrade, also need to upgrade their Java runtime.</p>
 
-<p>Revamped Wicket AJAX now leverages JQuery - Wicket&#8217;s custom AJAX JavaScript library has been re-implemented using JQuery. This makes it easier to integrate JQuery plugins into Wicket applications. With the new AJAX implementation it is possible to provide your own version of JQuery should the need arise, or even to replace the whole Wicket client side AJAX implementation.</p>
+<p>Revamped Wicket AJAX now leverages JQuery - Wicket’s custom AJAX JavaScript library has been re-implemented using JQuery. This makes it easier to integrate JQuery plugins into Wicket applications. With the new AJAX implementation it is possible to provide your own version of JQuery should the need arise, or even to replace the whole Wicket client side AJAX implementation.</p>
 
 <p>AJAX Attributes - With the new and improved AJAX implementation, you can alter any aspect of an AJAX request through AjaxRequestAttributes. For example you can specify that the request should be executed using POST instead of GET, or that the AJAX request should be multi-part, etc. See the migration guide or the JavaDoc of AjaxRequestAttributes for all possible options.</p>
 
@@ -210,23 +210,23 @@
 
 <p>IDataProvider now uses long instead of int - The <code>IDataProvider&lt;T&gt;</code> interface and implementations now use long instead of int for index and size parameters to better line up with the Java Persistence API and other persistency frameworks. Big data is now possible with Wicket!</p>
 
-<p><code>${label}</code> replaces <code>${input}</code> in feedback messages - Previous Wicket versions used the input that was provided by users in error messages when validations failed. This led to error messages like &#8220;1234a is not a valid number&#8221;. In Wicket 6 the feedback messages use the label of the invalid form component instead. You can set the label by calling setLabel() on the form component. If no label is provided, Wicket defaults to displaying the component identifier. This changes the error message to &#8220;Phonenumber is not a valid number&#8221;.</p>
+<p><code>${label}</code> replaces <code>${input}</code> in feedback messages - Previous Wicket versions used the input that was provided by users in error messages when validations failed. This led to error messages like “1234a is not a valid number”. In Wicket 6 the feedback messages use the label of the invalid form component instead. You can set the label by calling setLabel() on the form component. If no label is provided, Wicket defaults to displaying the component identifier. This changes the error message to “Phonenumber is not a valid number”.</p>
 
 <p>Resources can declare dependencies - It is now much easier to create resource contributions with dependencies, for example a JQuery plugin can declare a dependency on JQuery and other resources such as embedded style sheets. Users of such resources don’t have to provide these dependencies themselves, and the dependencies are linked in the appropriate order.</p>
 
 <p>Packaged resources will use minimized version automatically - When a minimized JavaScript resource is available (filename.min.js – add the .min part to the filename before the extension), Wicket will automatically use the minimized version when running in deployment mode, while using the non-minimized version for development mode.</p>
 
-<p>OSGi compatible packaging - Wicket&#8217;s packaging has been made compatible with OSGi bundles by moving some classes to different packages. The full list can be found in our migration guide. This makes it much easier to deploy Wicket applications in an OSGi environment.</p>
+<p>OSGi compatible packaging - Wicket’s packaging has been made compatible with OSGi bundles by moving some classes to different packages. The full list can be found in our migration guide. This makes it much easier to deploy Wicket applications in an OSGi environment.</p>
 
-<p>Experimental websocket implementations - This release also includes two experimental websocket implementations: one using Atmosphere as a bridge for browsers and containers that don&#8217;t support websockets natively and one for containers and browsers that have native websocket support.</p>
+<p>Experimental websocket implementations - This release also includes two experimental websocket implementations: one using Atmosphere as a bridge for browsers and containers that don’t support websockets natively and one for containers and browsers that have native websocket support.</p>
 
-<p>The complete set of changes is available in the migration guide at <a href='http://s.apache.org/wicket-6.0-migration'>http://s.apache.org/wicket-6.0-migration</a></p>
+<p>The complete set of changes is available in the migration guide at <a href="http://s.apache.org/wicket-6.0-migration">http://s.apache.org/wicket-6.0-migration</a></p>
 
-<h3 id='availability_and_oversight'>Availability and Oversight</h3>
+<h3 id="availability_and_oversight">Availability and Oversight</h3>
 
-<p>As with all Apache products, Apache Wicket v6.0.0 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&#8217;s day-to-day operations, including community development and product releases. Apache Wicket source code, documentation, and related resources are available at http://wicket.apache.org/</p>
+<p>As with all Apache products, Apache Wicket v6.0.0 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 source code, documentation, and related resources are available at http://wicket.apache.org/</p>
 
-<p>&#8220;Apache&#8221;, &#8220;Wicket&#8221;, &#8220;Apache Wicket&#8221;, and &#8220;ApacheCon&#8221; are trademarks of The Apache Software Foundation. All other brands and trademarks are the property of their respective owners.</p>
+<p>“Apache”, “Wicket”, “Apache Wicket”, and “ApacheCon” are trademarks of The Apache Software Foundation. All other brands and trademarks are the property of their respective owners.</p>
 		</div>
         <div id="clearer"></div>
 		<div id="footer"><span>

Modified: wicket/common/site/trunk/_site/2012/09/06/cve-2012-3373.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/2012/09/06/cve-2012-3373.html?rev=1557758&r1=1557757&r2=1557758&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/2012/09/06/cve-2012-3373.html (original)
+++ wicket/common/site/trunk/_site/2012/09/06/cve-2012-3373.html Mon Jan 13 16:02:24 2014
@@ -63,7 +63,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="/guide" title="User Guide">User Guide</a> | <a href="/guide/guide/single.pdf" title="User Guide in pdf">pdf</a>
+			<a href="/start/userguide.html" title="User Guide">User Guide</a>
 		</li>
 		<li>
 			<a href="/learn/examples" title="Examples">Examples</a>
@@ -92,7 +92,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.12.0">Wicket 6.12</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.13.0">Wicket 6.13</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.10">Wicket 1.5</a>
@@ -180,9 +180,9 @@
 
 <p>Description: It is possible to inject JavaScript statements into an ajax link by adding an encoded null byte to a URL pointing to a Wicket app. This could be done by sending a legitimate user a manipulated URL and tricking the user into clicking on it.</p>
 
-<p>This vulnerability is fixed in <a href='https://wicket.apache.org/2012/09/05/wicket-1.4.21-released.html'>Apache Wicket 1.4.21</a> and <a href='https://wicket.apache.org/2012/08/24/wicket-1.5.8-released.html'>Apache Wicket 1.5.8</a>.</p>
+<p>This vulnerability is fixed in <a href="https://wicket.apache.org/2012/09/05/wicket-1.4.21-released.html">Apache Wicket 1.4.21</a> and <a href="https://wicket.apache.org/2012/08/24/wicket-1.5.8-released.html">Apache Wicket 1.5.8</a>.</p>
 
-<p><a href='https://wicket.apache.org/2012/09/05/wicket-6.0.0-released.html'>Apache Wicket 6.0.0</a> is not affected.</p>
+<p><a href="https://wicket.apache.org/2012/09/05/wicket-6.0.0-released.html">Apache Wicket 6.0.0</a> is not affected.</p>
 
 <p>Credit: This issue was reported by Thomas Heigl.</p>
 		</div>

Modified: wicket/common/site/trunk/_site/2012/10/04/wicket-6.1.0-released.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/2012/10/04/wicket-6.1.0-released.html?rev=1557758&r1=1557757&r2=1557758&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/2012/10/04/wicket-6.1.0-released.html (original)
+++ wicket/common/site/trunk/_site/2012/10/04/wicket-6.1.0-released.html Mon Jan 13 16:02:24 2014
@@ -63,7 +63,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="/guide" title="User Guide">User Guide</a> | <a href="/guide/guide/single.pdf" title="User Guide in pdf">pdf</a>
+			<a href="/start/userguide.html" title="User Guide">User Guide</a>
 		</li>
 		<li>
 			<a href="/learn/examples" title="Examples">Examples</a>
@@ -92,7 +92,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.12.0">Wicket 6.12</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.13.0">Wicket 6.13</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.10">Wicket 1.5</a>
@@ -178,7 +178,7 @@
 
 <p>This release marks the first maintenance 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='new_and_noteworthy'>New and noteworthy</h3>
+<h3 id="new_and_noteworthy">New and noteworthy</h3>
 
 <p>Wicket CDI has been integrated as a core module, and can be used to manage conversations in your Wicket application with ease.</p>
 
@@ -190,130 +190,129 @@
 <li>Several issues with Wicket Atmosphere have been resolved</li>
 </ul>
 
-<h3 id='known_issues'>Known issues</h3>
+<h3 id="known_issues">Known issues</h3>
 
 <p>This release has two known issues, which will be solved shortly in 6.1.1 and 6.2.0:</p>
 
 <ul>
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4789'>WICKET-4789</a> The way URLs are encoded was changed (WICKET-4645) and now the first request (with ;jsessionid in path) generates invalid internal links.</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4789">WICKET-4789</a> The way URLs are encoded was changed (WICKET-4645) and now the first request (with ;jsessionid in path) generates invalid internal links.</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4759'>WICKET-4759</a> FilterForm/FilterToolbar don&#8217;t work when there&#8217;s more than one IColumn to be filtered</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4759">WICKET-4759</a> FilterForm/FilterToolbar don’t work when there’s more than one IColumn to be filtered</li>
 </ul>
 
 <p>Any other issues will be released in 6.2.0</p>
 
-<h3 id='using_this_release'>Using this release</h3>
+<h3 id="using_this_release">Using this release</h3>
 
-<p>With Apache Maven update your dependency to (and don&#8217;t forget to update any other dependencies on Wicket projects to the same version):</p>
+<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='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.1.0<span class='nt'>&lt;/version&gt;</span>
 <span class='nt'>&lt;/dependency&gt;</span>
-</code></pre>
-</div>
+</code></pre></div>
 <p>Or download and build the distribution yourself, or use our convenience binary package:</p>
 
 <ul>
-<li><a href='http://www.apache.org/dyn/closer.cgi/wicket/6.1.0'>6.1.0 sources</a></li>
+<li><a href="http://www.apache.org/dyn/closer.cgi/wicket/6.1.0">6.1.0 sources</a></li>
 
-<li><a href='http://www.apache.org/dyn/closer.cgi/wicket/6.1.0/binaries'>6.1.0 binaries</a></li>
+<li><a href="http://www.apache.org/dyn/closer.cgi/wicket/6.1.0/binaries">6.1.0 binaries</a></li>
 </ul>
 
-<h3 id='upgrading_from_earlier_versions'>Upgrading from earlier versions</h3>
+<h3 id="upgrading_from_earlier_versions">Upgrading from earlier versions</h3>
 
-<p>If you upgrade from 6.0.0, this release is a drop in replacement. If you come from a version prior to 6.0.0, please read our <a href='http://s.apache.org/wicket-6.0-migration'>Wicket 6 migration guide</a> found at http://s.apache.org/wicket-6.0-migration</p>
+<p>If you upgrade from 6.0.0, this release is a drop in replacement. If you come from a version prior to 6.0.0, please read our <a href="http://s.apache.org/wicket-6.0-migration">Wicket 6 migration guide</a> found at http://s.apache.org/wicket-6.0-migration</p>
 
 <p>Have fun!</p>
 
 <p>— The Wicket team</p>
 
-<h3 id='release_notes__wicket__version_610'>Release Notes - Wicket - Version 6.1.0</h3>
+<h3 id="release_notes__wicket__version_610">Release Notes - Wicket - Version 6.1.0</h3>
 
-<h4 id='squashed_bugs'>Squashed bugs</h4>
+<h4 id="squashed_bugs">Squashed bugs</h4>
 
 <ul>
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4645'>WICKET-4645</a> - encodeURL broken on Tomcat 7.0.28</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4645">WICKET-4645</a> - encodeURL broken on Tomcat 7.0.28</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4656'>WICKET-4656</a> - Atmosphere example doesn&#39;t work due to missing &#39;page&#39; when creating AjaxRequestTarget</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4656">WICKET-4656</a> - Atmosphere example doesn&#39;t work due to missing &#39;page&#39; when creating AjaxRequestTarget</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4729'>WICKET-4729</a> - atmosphere example will stop working if opening the same url in a different tab in the same browser</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4729">WICKET-4729</a> - atmosphere example will stop working if opening the same url in a different tab in the same browser</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4732'>WICKET-4732</a> - CssPackageResource doesn&#39;t work if the extension isn&#39;t css</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4732">WICKET-4732</a> - CssPackageResource doesn&#39;t work if the extension isn&#39;t css</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4734'>WICKET-4734</a> - Button value is double escaped</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4734">WICKET-4734</a> - Button value is double escaped</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4735'>WICKET-4735</a> - KittenCaptchaPanel is broken</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4735">WICKET-4735</a> - KittenCaptchaPanel is broken</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4737'>WICKET-4737</a> - IllegalStateException on WicketFilter.init() after calling setFilterPath()</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4737">WICKET-4737</a> - IllegalStateException on WicketFilter.init() after calling setFilterPath()</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4738'>WICKET-4738</a> - DownloadLink doesn&#39;t wrap the String model used for file name nor does it detach</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4738">WICKET-4738</a> - DownloadLink doesn&#39;t wrap the String model used for file name nor does it detach</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4741'>WICKET-4741</a> - Only complete handler (no success or failure handler) is called when Ajax link produces an exception</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4741">WICKET-4741</a> - Only complete handler (no success or failure handler) is called when Ajax link produces an exception</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4742'>WICKET-4742</a> - Wicket 6 and Atmospher Integration: AtmosphereServlet does not delegate WicketFilter for Error Pages .</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4742">WICKET-4742</a> - Wicket 6 and Atmospher Integration: AtmosphereServlet does not delegate WicketFilter for Error Pages .</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4743'>WICKET-4743</a> - SerializingObjectSizeOfStrategy do not use framework serializer</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4743">WICKET-4743</a> - SerializingObjectSizeOfStrategy do not use framework serializer</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4749'>WICKET-4749</a> - TabbedPanel - IModel&#60;?&#62; initModel()</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4749">WICKET-4749</a> - TabbedPanel - IModel&lt;?&gt; initModel()</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4750'>WICKET-4750</a> - AbstractDefaultAjaxBehavior.getCallbackFunction should not add the event attribute</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4750">WICKET-4750</a> - AbstractDefaultAjaxBehavior.getCallbackFunction should not add the event attribute</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4751'>WICKET-4751</a> - UploadProgressBar regression</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4751">WICKET-4751</a> - UploadProgressBar regression</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4753'>WICKET-4753</a> - Resource bundles are not resolved on PriorityHeaderItems</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4753">WICKET-4753</a> - Resource bundles are not resolved on PriorityHeaderItems</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4755'>WICKET-4755</a> - &#34;&#39;NEW VALUE&#39; is not a valid Serializable&#34; error during ajax form submission</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4755">WICKET-4755</a> - &quot;&#39;NEW VALUE&#39; is not a valid Serializable&quot; error during ajax form submission</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4757'>WICKET-4757</a> - FormComponents remain invalid forever if there is no feedback panel</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4757">WICKET-4757</a> - FormComponents remain invalid forever if there is no feedback panel</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4758'>WICKET-4758</a> - DOM ids change of the input fields of FilterToolbar</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4758">WICKET-4758</a> - DOM ids change of the input fields of FilterToolbar</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4760'>WICKET-4760</a> - JavaScriptStripper fails with single line comments</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4760">WICKET-4760</a> - JavaScriptStripper fails with single line comments</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4761'>WICKET-4761</a> - ModalWindow.closeCurrent Javascript error</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4761">WICKET-4761</a> - ModalWindow.closeCurrent Javascript error</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4763'>WICKET-4763</a> - Page&#39;s stateless hint is initially set to &#39;false&#39;</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4763">WICKET-4763</a> - Page&#39;s stateless hint is initially set to &#39;false&#39;</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4766'>WICKET-4766</a> - multiple &#38;lt;style&#38;gt; tags in header are rendered incorrectly</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4766">WICKET-4766</a> - multiple &amp;lt;style&amp;gt; tags in header are rendered incorrectly</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4768'>WICKET-4768</a> - Whitespace in TabbedPanel markup causes layout issues</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4768">WICKET-4768</a> - Whitespace in TabbedPanel markup causes layout issues</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4770'>WICKET-4770</a> - Wicket 6: modal windows in Safari are always in drag or resize mode</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4770">WICKET-4770</a> - Wicket 6: modal windows in Safari are always in drag or resize mode</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4773'>WICKET-4773</a> - ComponentFeedbackPanel broken under Wicket 6.0.0 when RenderStrategy.REDIRECT_TO_RENDER</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4773">WICKET-4773</a> - ComponentFeedbackPanel broken under Wicket 6.0.0 when RenderStrategy.REDIRECT_TO_RENDER</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4775'>WICKET-4775</a> - PageParameters#mergeWith may loose values of the &#39;other&#39; PP</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4775">WICKET-4775</a> - PageParameters#mergeWith may loose values of the &#39;other&#39; PP</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4780'>WICKET-4780</a> - Using both MountedMapper and CryptoMapper causes warning</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4780">WICKET-4780</a> - Using both MountedMapper and CryptoMapper causes warning</li>
 </ul>
 
-<h4 id='improvement'>Improvement</h4>
+<h4 id="improvement">Improvement</h4>
 
 <ul>
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4730'>WICKET-4730</a> - Filter component does not clear filter fields</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4730">WICKET-4730</a> - Filter component does not clear filter fields</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4731'>WICKET-4731</a> - TimeField not able to work with a java.sql.Time</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4731">WICKET-4731</a> - TimeField not able to work with a java.sql.Time</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4736'>WICKET-4736</a> - JavaScriptFilteredIntoFooterHeaderResponse should reverse filter logic</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4736">WICKET-4736</a> - JavaScriptFilteredIntoFooterHeaderResponse should reverse filter logic</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4745'>WICKET-4745</a> - Allow to set initial state of DebugBar to expanded / collapsed</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4745">WICKET-4745</a> - Allow to set initial state of DebugBar to expanded / collapsed</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4746'>WICKET-4746</a> - Wizard component translation for pt_BR</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4746">WICKET-4746</a> - Wizard component translation for pt_BR</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4748'>WICKET-4748</a> - Improve WicketTester to be able to find AjaxBehaviors on second/third/&#8230; event name</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4748">WICKET-4748</a> - Improve WicketTester to be able to find AjaxBehaviors on second/third/… event name</li>
 </ul>
 
-<h4 id='new_feature'>New Feature</h4>
+<h4 id="new_feature">New Feature</h4>
 
 <ul>
-<li><a href='https://issues.apache.org/jira/browse/WICKET-3969'>WICKET-3969</a> - Add CDI integration</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-3969">WICKET-3969</a> - Add CDI integration</li>
 </ul>
 
-<h4 id='task'>Task</h4>
+<h4 id="task">Task</h4>
 
 <ul>
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4781'>WICKET-4781</a> - Downgrade the warning that a rendering falls back to redirect_to_buffer to a DEBUG</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4781">WICKET-4781</a> - Downgrade the warning that a rendering falls back to redirect_to_buffer to a DEBUG</li>
 </ul>
 		</div>
         <div id="clearer"></div>

Modified: wicket/common/site/trunk/_site/2012/10/08/wicket-6.1.1-released.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/2012/10/08/wicket-6.1.1-released.html?rev=1557758&r1=1557757&r2=1557758&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/2012/10/08/wicket-6.1.1-released.html (original)
+++ wicket/common/site/trunk/_site/2012/10/08/wicket-6.1.1-released.html Mon Jan 13 16:02:24 2014
@@ -63,7 +63,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="/guide" title="User Guide">User Guide</a> | <a href="/guide/guide/single.pdf" title="User Guide in pdf">pdf</a>
+			<a href="/start/userguide.html" title="User Guide">User Guide</a>
 		</li>
 		<li>
 			<a href="/learn/examples" title="Examples">Examples</a>
@@ -92,7 +92,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.12.0">Wicket 6.12</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.13.0">Wicket 6.13</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.10">Wicket 1.5</a>
@@ -180,37 +180,36 @@
 
 <p>This release fixes two bugs in 6.1.0:</p>
 
-<p><a href='https://issues.apache.org/jira/browse/WICKET-4789'>WICKET-4789</a></p>
+<p><a href="https://issues.apache.org/jira/browse/WICKET-4789">WICKET-4789</a></p>
 
 <p>The way URLs are encoded was changed (WICKET-4645) and now the first request (with ;jsessionid in path) generates invalid internal links.</p>
 
-<p><a href='https://issues.apache.org/jira/browse/WICKET-4759'>WICKET-4759</a></p>
+<p><a href="https://issues.apache.org/jira/browse/WICKET-4759">WICKET-4759</a></p>
 
-<p>FilterForm/FilterToolbar don&#8217;t work when there&#8217;s more than one IColumn to be filtered</p>
+<p>FilterForm/FilterToolbar don’t work when there’s more than one IColumn to be filtered</p>
 
 <p>Any other issues will be released in 6.2.0</p>
 
-<h2 id='using_this_release'>Using this release</h2>
+<h2 id="using_this_release">Using this release</h2>
 
-<p>With Apache Maven update your dependency to (and don&#8217;t forget to update any other dependencies on Wicket projects to the same version):</p>
+<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='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.1.1<span class='nt'>&lt;/version&gt;</span>
 <span class='nt'>&lt;/dependency&gt;</span>
-</code></pre>
-</div>
+</code></pre></div>
 <p>Or download and build the distribution yourself, or use our convenience binary package</p>
 
 <ul>
-<li><a href='http://www.apache.org/dyn/closer.cgi/wicket/6.1.1'>http://www.apache.org/dyn/closer.cgi/wicket/6.1.1</a></li>
+<li><a href="http://www.apache.org/dyn/closer.cgi/wicket/6.1.1">http://www.apache.org/dyn/closer.cgi/wicket/6.1.1</a></li>
 
-<li><a href='http://www.apache.org/dyn/closer.cgi/wicket/6.1.1/binaries'>http://www.apache.org/dyn/closer.cgi/wicket/6.1.1/binaries</a></li>
+<li><a href="http://www.apache.org/dyn/closer.cgi/wicket/6.1.1/binaries">http://www.apache.org/dyn/closer.cgi/wicket/6.1.1/binaries</a></li>
 </ul>
 
-<h2 id='upgrading_from_earlier_versions'>Upgrading from earlier versions</h2>
+<h2 id="upgrading_from_earlier_versions">Upgrading from earlier versions</h2>
 
-<p>If you upgrade from 6.0.0 or 6.1.0, 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 <a href='http://s.apache.org/wicket-6.0-migration'>http://s.apache.org/wicket-6.0-migration</a></p>
+<p>If you upgrade from 6.0.0 or 6.1.0, 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 <a href="http://s.apache.org/wicket-6.0-migration">http://s.apache.org/wicket-6.0-migration</a></p>
 
 <p>Have fun!</p>
 

Modified: wicket/common/site/trunk/_site/2012/10/23/wicket-6.2.0-released.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/2012/10/23/wicket-6.2.0-released.html?rev=1557758&r1=1557757&r2=1557758&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/2012/10/23/wicket-6.2.0-released.html (original)
+++ wicket/common/site/trunk/_site/2012/10/23/wicket-6.2.0-released.html Mon Jan 13 16:02:24 2014
@@ -63,7 +63,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="/guide" title="User Guide">User Guide</a> | <a href="/guide/guide/single.pdf" title="User Guide in pdf">pdf</a>
+			<a href="/start/userguide.html" title="User Guide">User Guide</a>
 		</li>
 		<li>
 			<a href="/learn/examples" title="Examples">Examples</a>
@@ -92,7 +92,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.12.0">Wicket 6.12</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.13.0">Wicket 6.13</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.10">Wicket 1.5</a>
@@ -178,126 +178,125 @@
 
 <p>This release marks the second 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>
 
-<h2 id='new_and_noteworthy'>New and noteworthy</h2>
+<h2 id="new_and_noteworthy">New and noteworthy</h2>
 
 <p>SerializableChecker has been made easier to extend. It is now much easier to add your own checks at serialization time. For example, check whether your LoadableDetachableModels are detached, or no Hibernate entities are referenced directly from your component tree, etc.</p>
 
 <p>For the full changelog see the release notes attached to the end of this announcement.</p>
 
-<h2 id='using_this_release'>Using this release</h2>
+<h2 id="using_this_release">Using this release</h2>
 
-<p>With Apache Maven update your dependency to (and don&#8217;t forget to update any other dependencies on Wicket projects to the same version):</p>
+<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='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.2.0<span class='nt'>&lt;/version&gt;</span>
 <span class='nt'>&lt;/dependency&gt;</span>
-</code></pre>
-</div>
+</code></pre></div>
 <p>Or download and build the distribution yourself, or use our convenience binary package</p>
 
 <ul>
-<li><a href='http://www.apache.org/dyn/closer.cgi/wicket/6.2.0'>http://www.apache.org/dyn/closer.cgi/wicket/6.2.0</a></li>
+<li><a href="http://www.apache.org/dyn/closer.cgi/wicket/6.2.0">http://www.apache.org/dyn/closer.cgi/wicket/6.2.0</a></li>
 
-<li><a href='http://www.apache.org/dyn/closer.cgi/wicket/6.2.0/binaries'>http://www.apache.org/dyn/closer.cgi/wicket/6.2.0/binaries</a></li>
+<li><a href="http://www.apache.org/dyn/closer.cgi/wicket/6.2.0/binaries">http://www.apache.org/dyn/closer.cgi/wicket/6.2.0/binaries</a></li>
 </ul>
 
-<h2 id='upgrading_from_earlier_versions'>Upgrading from earlier versions</h2>
+<h2 id="upgrading_from_earlier_versions">Upgrading from earlier versions</h2>
 
-<p>If you upgrade from 6.0.0 or 6.1.0, 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 <a href='http://s.apache.org/wicket-6.0-migration'>http://s.apache.org/wicket-6.0-migration</a></p>
+<p>If you upgrade from 6.0.0 or 6.1.0, 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 <a href="http://s.apache.org/wicket-6.0-migration">http://s.apache.org/wicket-6.0-migration</a></p>
 
 <p>Have fun!</p>
 
 <p>— The Wicket team</p>
 
-<h3 id='release_notes__wicket__version_620'>Release Notes - Wicket - Version 6.2.0</h3>
+<h3 id="release_notes__wicket__version_620">Release Notes - Wicket - Version 6.2.0</h3>
 
-<h4 id='subtask'>Sub-task</h4>
+<h4 id="subtask">Sub-task</h4>
 
 <ul>
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4752'>WICKET-4752</a> - Revert Wicket-4715 -Read multipart request params in WebApplication</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4752">WICKET-4752</a> - Revert Wicket-4715 -Read multipart request params in WebApplication</li>
 </ul>
 
-<h4 id='bug'>Bug</h4>
+<h4 id="bug">Bug</h4>
 
 <ul>
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4587'>WICKET-4587</a> - URLRenderer renderFullUrl</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4587">WICKET-4587</a> - URLRenderer renderFullUrl</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4589'>WICKET-4589</a> - Closing <code>&lt;/wicket:container&gt;</code> tag is incorrectly setup as autocomponent</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4589">WICKET-4589</a> - Closing <code>&lt;/wicket:container&gt;</code> tag is incorrectly setup as autocomponent</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4756'>WICKET-4756</a> - AtmosphereWebRequest should return true on calls to #isAjax()</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4756">WICKET-4756</a> - AtmosphereWebRequest should return true on calls to #isAjax()</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4759'>WICKET-4759</a> - FilterForm/FilterToolbar don&#8217;t work when there&#8217;s more than one IColumn to be filtered</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4759">WICKET-4759</a> - FilterForm/FilterToolbar don’t work when there’s more than one IColumn to be filtered</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4769'>WICKET-4769</a> - Clicking on Label of Radio doesn&#8217;t update component with Ajax update</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4769">WICKET-4769</a> - Clicking on Label of Radio doesn’t update component with Ajax update</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4771'>WICKET-4771</a> - Submitting value filled in DropDownChoice fails when tinymce textarea is on the page</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4771">WICKET-4771</a> - Submitting value filled in DropDownChoice fails when tinymce textarea is on the page</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4776'>WICKET-4776</a> - Problems with switching between HTTP/HTTPS</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4776">WICKET-4776</a> - Problems with switching between HTTP/HTTPS</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4777'>WICKET-4777</a> - JavaScriptReference escapes given URL</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4777">WICKET-4777</a> - JavaScriptReference escapes given URL</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4786'>WICKET-4786</a> - AjaxTabbedPanel doesn&#8217;t include constructor with model</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4786">WICKET-4786</a> - AjaxTabbedPanel doesn’t include constructor with model</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4787'>WICKET-4787</a> - Registering resource bundles with duplicate resource references gives an NPE</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4787">WICKET-4787</a> - Registering resource bundles with duplicate resource references gives an NPE</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4788'>WICKET-4788</a> - FilteringHeaderResponse does not unwrap PriorityHeaderItems for filtering</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4788">WICKET-4788</a> - FilteringHeaderResponse does not unwrap PriorityHeaderItems for filtering</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4789'>WICKET-4789</a> - URL rendering regression</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4789">WICKET-4789</a> - URL rendering regression</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4791'>WICKET-4791</a> - UploadProgressBar hides immediately after being shown.</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4791">WICKET-4791</a> - UploadProgressBar hides immediately after being shown.</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4792'>WICKET-4792</a> - wickettester#startcomponent(component) doesn&#8217;t call oninitialize</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4792">WICKET-4792</a> - wickettester#startcomponent(component) doesn’t call oninitialize</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4794'>WICKET-4794</a> - RfcCompliantEmailAddressValidator error message not defined</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4794">WICKET-4794</a> - RfcCompliantEmailAddressValidator error message not defined</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4796'>WICKET-4796</a> - DatePickerTest fails because of java inconsistensy on localizing March german shortname Mrz vs Mär</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4796">WICKET-4796</a> - DatePickerTest fails because of java inconsistensy on localizing March german shortname Mrz vs Mär</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4797'>WICKET-4797</a> - CheckBoxMultipleChoice loses state</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4797">WICKET-4797</a> - CheckBoxMultipleChoice loses state</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4801'>WICKET-4801</a> - BaseWicketTester.executeAjaxEvent only fires one of multiple behaviors bound to a given event</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4801">WICKET-4801</a> - BaseWicketTester.executeAjaxEvent only fires one of multiple behaviors bound to a given event</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4806'>WICKET-4806</a> - AjaxEditableChoiceLabel won&#8217;t close select onblur</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4806">WICKET-4806</a> - AjaxEditableChoiceLabel won’t close select onblur</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4810'>WICKET-4810</a> - CLONE - BaseWicketTester.clickLink() does not work with a ResourceLink with ResourceReference</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4810">WICKET-4810</a> - CLONE - BaseWicketTester.clickLink() does not work with a ResourceLink with ResourceReference</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4816'>WICKET-4816</a> - Handling of semicolons in form action URLs</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4816">WICKET-4816</a> - Handling of semicolons in form action URLs</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4818'>WICKET-4818</a> - NullPointerException while reading the POST parameters</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4818">WICKET-4818</a> - NullPointerException while reading the POST parameters</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4820'>WICKET-4820</a> - Race condition in ResourceSettings: getResourceWatcher() is not thread safe</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4820">WICKET-4820</a> - Race condition in ResourceSettings: getResourceWatcher() is not thread safe</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4822'>WICKET-4822</a> - Wicket.Event.add requires Wicket.$, but wicket-ajax-jquery is not listed as a dependency</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4822">WICKET-4822</a> - Wicket.Event.add requires Wicket.$, but wicket-ajax-jquery is not listed as a dependency</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4824'>WICKET-4824</a> - Redirect to HTTPS is using wrong port 80 if HttpsConfig with default ports 80/443 is used</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4824">WICKET-4824</a> - Redirect to HTTPS is using wrong port 80 if HttpsConfig with default ports 80/443 is used</li>
 </ul>
 
-<h4 id='improvement'>Improvement</h4>
+<h4 id="improvement">Improvement</h4>
 
 <ul>
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4160'>WICKET-4160</a> - Make AbstractAutoCompleteRenderer.renderHeader() and .renderFooter() non-final</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4160">WICKET-4160</a> - Make AbstractAutoCompleteRenderer.renderHeader() and .renderFooter() non-final</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4772'>WICKET-4772</a> - DataTable API and handling of AbstractToolbar</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4772">WICKET-4772</a> - DataTable API and handling of AbstractToolbar</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4778'>WICKET-4778</a> - Add factory methods to JavaScriptHeaderItem to create a deferred JavaScript header item.</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4778">WICKET-4778</a> - Add factory methods to JavaScriptHeaderItem to create a deferred JavaScript header item.</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4798'>WICKET-4798</a> - Make IteratorFilter.onFilter protected</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4798">WICKET-4798</a> - Make IteratorFilter.onFilter protected</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4804'>WICKET-4804</a> - Add #setStatus(int) in AbstractResource.ResourceResponse</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4804">WICKET-4804</a> - Add #setStatus(int) in AbstractResource.ResourceResponse</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4808'>WICKET-4808</a> - WebClientInfo.getRemoteAddr() handling &#8220;Forwarded-For&#8221; value tokens not being ip addresses</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4808">WICKET-4808</a> - WebClientInfo.getRemoteAddr() handling “Forwarded-For” value tokens not being ip addresses</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4812'>WICKET-4812</a> - Make SerializationChecker easier for extending so custom checks can be added to it</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4812">WICKET-4812</a> - Make SerializationChecker easier for extending so custom checks can be added to it</li>
 </ul>
 
-<h4 id='new_feature'>New Feature</h4>
+<h4 id="new_feature">New Feature</h4>
 
 <ul>
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4793'>WICKET-4793</a> - Support Jetty 9.x websocket implementation</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4793">WICKET-4793</a> - Support Jetty 9.x websocket implementation</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4802'>WICKET-4802</a> - Add functionality to be able to export DataTable content</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4802">WICKET-4802</a> - Add functionality to be able to export DataTable content</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4815'>WICKET-4815</a> - Interface to mark components with type safe models</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4815">WICKET-4815</a> - Interface to mark components with type safe models</li>
 </ul>
 		</div>
         <div id="clearer"></div>

Modified: wicket/common/site/trunk/_site/2012/11/09/wicket-1.5.9-released.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/2012/11/09/wicket-1.5.9-released.html?rev=1557758&r1=1557757&r2=1557758&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/2012/11/09/wicket-1.5.9-released.html (original)
+++ wicket/common/site/trunk/_site/2012/11/09/wicket-1.5.9-released.html Mon Jan 13 16:02:24 2014
@@ -63,7 +63,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="/guide" title="User Guide">User Guide</a> | <a href="/guide/guide/single.pdf" title="User Guide in pdf">pdf</a>
+			<a href="/start/userguide.html" title="User Guide">User Guide</a>
 		</li>
 		<li>
 			<a href="/learn/examples" title="Examples">Examples</a>
@@ -92,7 +92,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.12.0">Wicket 6.12</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.13.0">Wicket 6.13</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.10">Wicket 1.5</a>
@@ -177,9 +177,9 @@
 			<p>This is the nineth maintenance release of the Wicket 1.5.x series. This release brings over 48 bug fixes and improvements.</p>
 
 <ul>
-<li><a href='https://git-wip-us.apache.org/repos/asf/wicket/repo?p=wicket.git;a=shortlog;h=refs/tags/release/wicket.1.5.9'>Git tag</a></li>
+<li><a href="https://git-wip-us.apache.org/repos/asf/wicket/repo?p=wicket.git;a=shortlog;h=refs/tags/release/wicket.1.5.9">Git tag</a></li>
 
-<li><a href='https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;version=12322962'>Changelog</a></li>
+<li><a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&version=12322962">Changelog</a></li>
 
 <li>To use in Maven:</li>
 </ul>
@@ -188,10 +188,9 @@
     <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.9<span class='nt'>&lt;/version&gt;</span>
 <span class='nt'>&lt;/dependency&gt;</span>
-</code></pre>
-</div>
+</code></pre></div>
 <ul>
-<li>Download the <a href='http://www.apache.org/dyn/closer.cgi/wicket/1.5.9'>full distribution</a> (including source)</li>
+<li>Download the <a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">full distribution</a> (including source)</li>
 </ul>
 		</div>
         <div id="clearer"></div>

Modified: wicket/common/site/trunk/_site/2012/11/16/wicket-6.3.0-released.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/2012/11/16/wicket-6.3.0-released.html?rev=1557758&r1=1557757&r2=1557758&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/2012/11/16/wicket-6.3.0-released.html (original)
+++ wicket/common/site/trunk/_site/2012/11/16/wicket-6.3.0-released.html Mon Jan 13 16:02:24 2014
@@ -63,7 +63,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="/guide" title="User Guide">User Guide</a> | <a href="/guide/guide/single.pdf" title="User Guide in pdf">pdf</a>
+			<a href="/start/userguide.html" title="User Guide">User Guide</a>
 		</li>
 		<li>
 			<a href="/learn/examples" title="Examples">Examples</a>
@@ -92,7 +92,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.12.0">Wicket 6.12</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.13.0">Wicket 6.13</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.10">Wicket 1.5</a>
@@ -178,98 +178,97 @@
 
 <p>This release marks the third 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>
 
-<h2 id='new_and_noteworthy'>New and noteworthy</h2>
+<h2 id="new_and_noteworthy">New and noteworthy</h2>
 
 <p>This release fixes some javascript errors in IE7 and IE8 with Wicket 6.</p>
 
-<p>We have upgraded the embedded JQuery library to 1.8.2 (the most recent stable release of JQuery). If you depend on an earlier version of JQuery, you can instruct Wicket to use your older version. See the <a href='https://cwiki.apache.org/confluence/display/WICKET/Wicket+Ajax#WicketAjax-Configuration'>Wicket Ajax Guide</a> for more information.</p>
+<p>We have upgraded the embedded JQuery library to 1.8.2 (the most recent stable release of JQuery). If you depend on an earlier version of JQuery, you can instruct Wicket to use your older version. See the <a href="https://cwiki.apache.org/confluence/display/WICKET/Wicket+Ajax#WicketAjax-Configuration">Wicket Ajax Guide</a> for more information.</p>
 
 <p>For the full changelog see the release notes attached to the end of this announcement.</p>
 
-<h2 id='using_this_release'>Using this release</h2>
+<h2 id="using_this_release">Using this release</h2>
 
-<p>With Apache Maven update your dependency to (and don&#8217;t forget to update any other dependencies on Wicket projects to the same version):</p>
+<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='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.3.0<span class='nt'>&lt;/version&gt;</span>
 <span class='nt'>&lt;/dependency&gt;</span>
-</code></pre>
-</div>
+</code></pre></div>
 <p>Or download and build the distribution yourself, or use our convenience binary package</p>
 
 <ul>
-<li><a href='http://www.apache.org/dyn/closer.cgi/wicket/6.3.0'>http://www.apache.org/dyn/closer.cgi/wicket/6.3.0</a></li>
+<li><a href="http://www.apache.org/dyn/closer.cgi/wicket/6.3.0">http://www.apache.org/dyn/closer.cgi/wicket/6.3.0</a></li>
 
-<li><a href='http://www.apache.org/dyn/closer.cgi/wicket/6.3.0/binaries'>http://www.apache.org/dyn/closer.cgi/wicket/6.3.0/binaries</a></li>
+<li><a href="http://www.apache.org/dyn/closer.cgi/wicket/6.3.0/binaries">http://www.apache.org/dyn/closer.cgi/wicket/6.3.0/binaries</a></li>
 </ul>
 
-<h2 id='upgrading_from_earlier_versions'>Upgrading from earlier versions</h2>
+<h2 id="upgrading_from_earlier_versions">Upgrading from earlier versions</h2>
 
-<p>If you upgrade from 6.0.0, 6.1.0, or 6.2.0 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 <a href='http://s.apache.org/wicket-6.0-migration'>http://s.apache.org/wicket-6.0-migration</a></p>
+<p>If you upgrade from 6.0.0, 6.1.0, or 6.2.0 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 <a href="http://s.apache.org/wicket-6.0-migration">http://s.apache.org/wicket-6.0-migration</a></p>
 
 <p>Have fun!</p>
 
 <p>— The Wicket team</p>
 
-<h3 id='release_notes__wicket__version_630'>Release Notes - Wicket - Version 6.3.0</h3>
+<h3 id="release_notes__wicket__version_630">Release Notes - Wicket - Version 6.3.0</h3>
 
-<h4 id='bug'>Bug</h4>
+<h4 id="bug">Bug</h4>
 
 <ul>
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4623'>WICKET-4623</a> - UploadProgressBar does not show up if the form submitted by AjaxButton or AjaxLink</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4623">WICKET-4623</a> - UploadProgressBar does not show up if the form submitted by AjaxButton or AjaxLink</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4826'>WICKET-4826</a> - PaletteButton#onComponentTag(ComponentTag) does not call super</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4826">WICKET-4826</a> - PaletteButton#onComponentTag(ComponentTag) does not call super</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4829'>WICKET-4829</a> - ComponentResolvers created in app init ignore markup&#8217;s namespace</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4829">WICKET-4829</a> - ComponentResolvers created in app init ignore markup’s namespace</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4836'>WICKET-4836</a> - Unmount a page does not work if the path starts with /</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4836">WICKET-4836</a> - Unmount a page does not work if the path starts with /</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4837'>WICKET-4837</a> - SmartLinkMultiLineLabel does not display email addresses or web URLs as hyperlinks</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4837">WICKET-4837</a> - SmartLinkMultiLineLabel does not display email addresses or web URLs as hyperlinks</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4841'>WICKET-4841</a> - Return error code 400 when an Ajax request has no base url set in header/request parameters.</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4841">WICKET-4841</a> - Return error code 400 when an Ajax request has no base url set in header/request parameters.</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4842'>WICKET-4842</a> - WicketRuntimeException when Tomcat cleans up a session later on</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4842">WICKET-4842</a> - WicketRuntimeException when Tomcat cleans up a session later on</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4844'>WICKET-4844</a> - AbstractResourceReferenceMapper doesn&#8217;t escape separators in style/variation names</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4844">WICKET-4844</a> - AbstractResourceReferenceMapper doesn’t escape separators in style/variation names</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4848'>WICKET-4848</a> - Reporter of FeedbackMessage should not be set to &#8216;null&#8217; on detach</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4848">WICKET-4848</a> - Reporter of FeedbackMessage should not be set to ‘null’ on detach</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4850'>WICKET-4850</a> - BaseWicketTester discards cookies with MaxAge = -1 when processing a new request</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4850">WICKET-4850</a> - BaseWicketTester discards cookies with MaxAge = -1 when processing a new request</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4851'>WICKET-4851</a> - IE8, IE7 javascript errors with Wicket 6</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4851">WICKET-4851</a> - IE8, IE7 javascript errors with Wicket 6</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4857'>WICKET-4857</a> - AutoCompleteTextFields submits Form if a choice is selected via enter-key</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4857">WICKET-4857</a> - AutoCompleteTextFields submits Form if a choice is selected via enter-key</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4859'>WICKET-4859</a> - Integer overflow in AbstractToolbar</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4859">WICKET-4859</a> - Integer overflow in AbstractToolbar</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4864'>WICKET-4864</a> - &#8216;format&#8217; not set in ConversionException</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4864">WICKET-4864</a> - ‘format’ not set in ConversionException</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4865'>WICKET-4865</a> - Page parameters not working with CryptoMapper</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4865">WICKET-4865</a> - Page parameters not working with CryptoMapper</li>
 </ul>
 
-<h4 id='improvement'>Improvement</h4>
+<h4 id="improvement">Improvement</h4>
 
 <ul>
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4831'>WICKET-4831</a> - Append the feedback message CSS class instead of overriding it</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4831">WICKET-4831</a> - Append the feedback message CSS class instead of overriding it</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4835'>WICKET-4835</a> - Add debug log messages in CompoundRequestMapper#mapRequest</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4835">WICKET-4835</a> - Add debug log messages in CompoundRequestMapper#mapRequest</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4845'>WICKET-4845</a> - Make BasicResourceReferenceMapper public so it is easy to extend it</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4845">WICKET-4845</a> - Make BasicResourceReferenceMapper public so it is easy to extend it</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4853'>WICKET-4853</a> - Change FormComponent#reportRequiredError() from private to protected</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4853">WICKET-4853</a> - Change FormComponent#reportRequiredError() from private to protected</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4856'>WICKET-4856</a> - Support SVG extension in SecurePackageResourceGuard</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4856">WICKET-4856</a> - Support SVG extension in SecurePackageResourceGuard</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4863'>WICKET-4863</a> - Customize ValidationError creation by FormComponent</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4863">WICKET-4863</a> - Customize ValidationError creation by FormComponent</li>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4867'>WICKET-4867</a> - Detach the object before calculating its size</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4867">WICKET-4867</a> - Detach the object before calculating its size</li>
 </ul>
 
-<h4 id='task'>Task</h4>
+<h4 id="task">Task</h4>
 
 <ul>
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4855'>WICKET-4855</a> - Upgrade JQuery to 1.8.2</li>
+<li><a href="https://issues.apache.org/jira/browse/WICKET-4855">WICKET-4855</a> - Upgrade JQuery to 1.8.2</li>
 </ul>
 		</div>
         <div id="clearer"></div>