Repository: wicket-site
Updated Branches:
  refs/heads/asf-site 21ddc28a2 -> 0d0383758


http://git-wip-us.apache.org/repos/asf/wicket-site/blob/0d038375/content/news/2011/08/23/cve-2011-2712.html
----------------------------------------------------------------------
diff --git a/content/news/2011/08/23/cve-2011-2712.html 
b/content/news/2011/08/23/cve-2011-2712.html
index 4fad250..3f3c103 100644
--- a/content/news/2011/08/23/cve-2011-2712.html
+++ b/content/news/2011/08/23/cve-2011-2712.html
@@ -61,7 +61,7 @@ With multi window support application configuration and 
special query parameters
 <p>Mitigation:
 Either disable multi window support with</p>
 <figure class="highlight"><pre><code class="language-java" 
data-lang="java"><span class="kd">public</span> <span class="kd">class</span> 
<span class="nc">MyApp</span> <span class="kd">extends</span> <span 
class="n">WebApplication</span> <span class="o">{</span> 
-    <span class="kd">public</span> <span class="kt">void</span> <span 
class="n">init</span><span class="o">()</span> <span class="o">{</span>
+    <span class="kd">public</span> <span class="kt">void</span> <span 
class="nf">init</span><span class="o">()</span> <span class="o">{</span>
         <span class="kd">super</span><span class="o">.</span><span 
class="na">init</span><span class="o">();</span>
         <span class="n">getPageSettings</span><span class="o">.</span><span 
class="na">setAutomaticMultiWindowSupport</span><span class="o">(</span><span 
class="kc">false</span><span class="o">);</span>
     <span class="o">}</span>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/0d038375/content/news/2011/09/07/wicket-1.5-released.html
----------------------------------------------------------------------
diff --git a/content/news/2011/09/07/wicket-1.5-released.html 
b/content/news/2011/09/07/wicket-1.5-released.html
index 565ca63..8fca8a5 100644
--- a/content/news/2011/09/07/wicket-1.5-released.html
+++ b/content/news/2011/09/07/wicket-1.5-released.html
@@ -87,7 +87,7 @@
  * Objects that can send events
  */</span>
 <span class="kd">public</span> <span class="kd">interface</span> <span 
class="nc">IEventSource</span> <span class="o">{</span>
-    <span class="o">&lt;</span><span class="n">T</span><span 
class="o">&gt;</span> <span class="kt">void</span> <span 
class="n">send</span><span class="o">(</span><span class="n">IEventSink</span> 
<span class="n">sink</span><span class="o">,</span> <span 
class="n">Broadcast</span> <span class="n">broadcast</span><span 
class="o">,</span> <span class="n">T</span> <span class="n">payload</span><span 
class="o">);</span>
+    <span class="o">&lt;</span><span class="n">T</span><span 
class="o">&gt;</span> <span class="kt">void</span> <span 
class="nf">send</span><span class="o">(</span><span class="n">IEventSink</span> 
<span class="n">sink</span><span class="o">,</span> <span 
class="n">Broadcast</span> <span class="n">broadcast</span><span 
class="o">,</span> <span class="n">T</span> <span class="n">payload</span><span 
class="o">);</span>
 <span class="o">}</span></code></pre></figure>
 <p>and</p>
 <figure class="highlight"><pre><code class="language-java" 
data-lang="java"><span class="cm">/**
@@ -98,7 +98,7 @@
     <span class="cm">/**
      * Called when an event is sent to this sink
      */</span>
-    <span class="kt">void</span> <span class="n">onEvent</span><span 
class="o">(</span><span class="n">IEvent</span><span class="o">&lt;?&gt;</span> 
<span class="n">event</span><span class="o">);</span>
+    <span class="kt">void</span> <span class="nf">onEvent</span><span 
class="o">(</span><span class="n">IEvent</span><span class="o">&lt;?&gt;</span> 
<span class="n">event</span><span class="o">);</span>
 <span class="o">}</span></code></pre></figure>
 <p>The classes that implement these interfaces, and can thus participate in 
the event mechanism are: <code class="highlighter-rouge">Component</code>, 
<code class="highlighter-rouge">RequestCycle</code>, <code 
class="highlighter-rouge">Session</code>, and <code 
class="highlighter-rouge">Application</code>.</p>
 <p>The mechanism allows for different event broadcast methods defined here:</p>
@@ -115,14 +115,14 @@
 <p>Applications can register custom event dispatchers in <code 
class="highlighter-rouge">FrameworkSettings</code>; the dispatchers can be used 
to build custom event delivery mechanisms. For example a custom <code 
class="highlighter-rouge">IEventDispatcher</code> mechanism can route events to 
annotated methods, for example:</p>
 <figure class="highlight"><pre><code class="language-java" 
data-lang="java"><span class="kd">public</span> <span class="kd">class</span> 
<span class="nc">MyComponent</span> <span class="kd">extends</span> <span 
class="n">Component</span> <span class="o">{</span>
     <span class="nd">@OnEvent</span>
-    <span class="kd">private</span> <span class="kt">void</span> <span 
class="n">onUserAdded</span><span class="o">(</span><span 
class="n">UserAddedEvent</span> <span class="n">event</span><span 
class="o">)</span> <span class="o">{...}</span>
+    <span class="kd">private</span> <span class="kt">void</span> <span 
class="nf">onUserAdded</span><span class="o">(</span><span 
class="n">UserAddedEvent</span> <span class="n">event</span><span 
class="o">)</span> <span class="o">{...}</span>
 <span class="o">}</span></code></pre></figure>
 <p>where <code class="highlighter-rouge">UserAddedEvent</code> is the event 
payload object.</p>
 <p>The default <code class="highlighter-rouge">Component#onEvent</code> method 
will be called even if custom dispatchers are registered.</p>
 <p>A default event is raised whenever Wicket begins to create an AJAX 
response. The payload of the event is the <code 
class="highlighter-rouge">AjaxRequestTarget</code> used for event. Sample 
implementation:</p>
 <figure class="highlight"><pre><code class="language-java" 
data-lang="java"><span class="c1">// component that always adds itself to the 
ajax response</span>
 <span class="kd">public</span> <span class="kd">class</span> <span 
class="nc">MyComponent</span> <span class="kd">extends</span> <span 
class="n">Component</span> <span class="o">{</span>
-    <span class="kd">public</span> <span class="kt">void</span> <span 
class="n">onEvent</span><span class="o">(</span><span class="n">IEvent</span> 
<span class="n">event</span><span class="o">)</span> <span class="o">{</span>
+    <span class="kd">public</span> <span class="kt">void</span> <span 
class="nf">onEvent</span><span class="o">(</span><span class="n">IEvent</span> 
<span class="n">event</span><span class="o">)</span> <span class="o">{</span>
         <span class="k">if</span> <span class="o">(</span><span 
class="n">event</span><span class="o">.</span><span 
class="na">getPayload</span><span class="o">()</span> <span 
class="k">instanceof</span> <span class="n">AjaxRequestTarget</span><span 
class="o">)</span> <span class="o">{</span>
             <span class="o">((</span><span 
class="n">AjaxRequestTarget</span><span class="o">)</span><span 
class="n">event</span><span class="o">.</span><span 
class="na">getPayload</span><span class="o">()).</span><span 
class="na">add</span><span class="o">(</span><span class="k">this</span><span 
class="o">);</span>
          <span class="o">}</span>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/0d038375/content/news/2012/03/22/wicket-cve-2012-1089.html
----------------------------------------------------------------------
diff --git a/content/news/2012/03/22/wicket-cve-2012-1089.html 
b/content/news/2012/03/22/wicket-cve-2012-1089.html
index 1a98b7d..f4d098b 100644
--- a/content/news/2012/03/22/wicket-cve-2012-1089.html
+++ b/content/news/2012/03/22/wicket-cve-2012-1089.html
@@ -69,7 +69,7 @@ org.apache.wicket.markup.html.SecurePackageResourceGuard with 
a preconfigured
 list of allowed file extensions.
 Either setup SecurePackageResourceGuard with code like:</p>
 <figure class="highlight"><pre><code class="language-java" 
data-lang="java"><span class="kd">public</span> <span class="kd">class</span> 
<span class="nc">MyApp</span> <span class="kd">extends</span> <span 
class="n">WebApplication</span> <span class="o">{</span>
-    <span class="kd">public</span> <span class="kt">void</span> <span 
class="n">init</span><span class="o">()</span> <span class="o">{</span>
+    <span class="kd">public</span> <span class="kt">void</span> <span 
class="nf">init</span><span class="o">()</span> <span class="o">{</span>
         <span class="kd">super</span><span class="o">.</span><span 
class="na">init</span><span class="o">();</span>
         <span class="n">SecurePackageResourceGuard</span> <span 
class="n">guard</span> <span class="o">=</span> <span class="k">new</span> 
<span class="n">SecurePackageResourceGuard</span><span class="o">();</span>
         <span class="n">guard</span><span class="o">.</span><span 
class="na">addPattern</span><span class="o">(...);</span>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/0d038375/content/news/2012/05/29/wicket-6.0.0-beta2-released.html
----------------------------------------------------------------------
diff --git a/content/news/2012/05/29/wicket-6.0.0-beta2-released.html 
b/content/news/2012/05/29/wicket-6.0.0-beta2-released.html
index 8baf216..afcbb1e 100644
--- a/content/news/2012/05/29/wicket-6.0.0-beta2-released.html
+++ b/content/news/2012/05/29/wicket-6.0.0-beta2-released.html
@@ -56,12 +56,12 @@ This release brings over many improvements over the 1.5.x 
series.</p>
 <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’s init method you need to register the push event 
bus:</p>
-<figure class="highlight"><pre><code class="language-java" 
data-lang="java"><span class="k">new</span> <span 
class="nf">EventBus</span><span class="p">(</span><span 
class="k">this</span><span class="o">);</span></code></pre></figure>
+<figure class="highlight"><pre><code class="language-java" 
data-lang="java"><span class="k">new</span> <span 
class="n">EventBus</span><span class="o">(</span><span 
class="k">this</span><span class="o">);</span></code></pre></figure>
 <p>Somewhere where you want to push your changes to the client, you need to 
publish your event to the push <code 
class="highlighter-rouge">EventBus</code>:</p>
 <figure class="highlight"><pre><code class="language-java" 
data-lang="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></figure>
 <p>And finally you need to subscribe your page (or component) to the <code 
class="highlighter-rouge">EventBus</code>’s events with <code 
class="highlighter-rouge">@Subscribe</code>, taking in the typed parameter you 
post to the EventBus (in this case a <code 
class="highlighter-rouge">String</code>):</p>
 <figure class="highlight"><pre><code class="language-java" 
data-lang="java"><span class="nd">@Subscribe</span>
-<span class="kd">public</span> <span class="kt">void</span> <span 
class="nf">receiveMessage</span><span class="p">(</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="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></figure>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/0d038375/content/news/2013/01/23/wicket-6.5.0-released.html
----------------------------------------------------------------------
diff --git a/content/news/2013/01/23/wicket-6.5.0-released.html 
b/content/news/2013/01/23/wicket-6.5.0-released.html
index cf300f6..c9a8ceb 100644
--- a/content/news/2013/01/23/wicket-6.5.0-released.html
+++ b/content/news/2013/01/23/wicket-6.5.0-released.html
@@ -66,7 +66,7 @@ the attributes for all Ajax requests.</p>
 <figure class="highlight"><pre><code class="language-java" 
data-lang="java"><span class="n">application</span><span 
class="o">.</span><span class="na">getAjaxRequestTargetListeners</span><span 
class="o">().</span><span class="na">add</span><span class="o">(</span><span 
class="k">new</span> <span class="n">AjaxRequestTarget</span><span 
class="o">.</span><span class="na">AbstractListener</span><span 
class="o">()</span>
 <span class="o">{</span>
        <span class="nd">@Override</span>
-       <span class="kd">public</span> <span class="kt">void</span> <span 
class="n">updateAjaxAttributes</span><span class="o">(</span><span 
class="n">AjaxRequestAttributes</span> <span class="n">attributes</span><span 
class="o">)</span>
+       <span class="kd">public</span> <span class="kt">void</span> <span 
class="nf">updateAjaxAttributes</span><span class="o">(</span><span 
class="n">AjaxRequestAttributes</span> <span class="n">attributes</span><span 
class="o">)</span>
        <span class="o">{</span>
                <span class="kd">super</span><span class="o">.</span><span 
class="na">updateAjaxAttributes</span><span class="o">(</span><span 
class="n">attributes</span><span class="o">);</span>
                <span class="n">attributes</span><span class="o">.</span><span 
class="na">setChannel</span><span class="o">(</span><span class="k">new</span> 
<span class="n">AjaxChannel</span><span class="o">(</span><span 
class="s">"globalAjaxChannel"</span><span class="o">,</span> <span 
class="n">AjaxChannel</span><span class="o">.</span><span 
class="na">Type</span><span class="o">.</span><span 
class="na">ACTIVE</span><span class="o">));</span>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/0d038375/content/news/2013/06/27/wicket-6.9.0-released.html
----------------------------------------------------------------------
diff --git a/content/news/2013/06/27/wicket-6.9.0-released.html 
b/content/news/2013/06/27/wicket-6.9.0-released.html
index 17275d2..b72af29 100644
--- a/content/news/2013/06/27/wicket-6.9.0-released.html
+++ b/content/news/2013/06/27/wicket-6.9.0-released.html
@@ -59,7 +59,7 @@ compared to 6.0.0.</p>
 <p>Switch between jQuery 1.x and 2.x depending on the user agent. For IE
 6/7/8 jQuery ver. 1.x will be used, for any other browser - ver. 2.x.
 To use this resource reference do in your application’s init method:</p>
-<figure class="highlight"><pre><code class="language-java" 
data-lang="java"><span class="kd">protected</span> <span class="kt">void</span> 
<span class="nf">init</span><span class="p">(</span><span class="o">)</span> 
<span class="o">{</span>
+<figure class="highlight"><pre><code class="language-java" 
data-lang="java"><span class="kd">protected</span> <span class="kt">void</span> 
<span class="nf">init</span><span class="o">()</span> <span class="o">{</span>
     <span class="n">getJavaScriptLibrarySettings</span><span 
class="o">()</span>
         <span class="o">.</span><span 
class="na">setJQueryReference</span><span class="o">(</span><span 
class="n">DynamicJQueryResourceReference</span><span class="o">.</span><span 
class="na">INSTANCE</span><span class="o">);</span>
 <span class="o">}</span></code></pre></figure>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/0d038375/content/news/2013/07/10/wicket-6.9.1-released.html
----------------------------------------------------------------------
diff --git a/content/news/2013/07/10/wicket-6.9.1-released.html 
b/content/news/2013/07/10/wicket-6.9.1-released.html
index af78478..0516139 100644
--- a/content/news/2013/07/10/wicket-6.9.1-released.html
+++ b/content/news/2013/07/10/wicket-6.9.1-released.html
@@ -69,7 +69,7 @@ downgrade to JQuery 1.8.3-the previously provided JQuery that 
still
 contains these APIs. Download the 1.8.3 release of jquery and add it
 to your project in its application’s init method:</p>
 <figure class="highlight"><pre><code class="language-java" 
data-lang="java"><span class="nd">@Override</span> 
-<span class="kd">protected</span> <span class="kt">void</span> <span 
class="nf">init</span><span class="p">(</span><span class="o">)</span> <span 
class="o">{</span>
+<span class="kd">protected</span> <span class="kt">void</span> <span 
class="nf">init</span><span class="o">()</span> <span class="o">{</span>
     <span class="n">getJavaScriptLibrarySettings</span><span 
class="o">()</span>
         <span class="o">.</span><span 
class="na">setJQueryReference</span><span class="o">(</span><span 
class="n">yourJquery183ResourceReference</span><span class="o">);</span>
 <span class="o">}</span></code></pre></figure>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/0d038375/content/news/2013/08/18/wicket-6.10.0-released.html
----------------------------------------------------------------------
diff --git a/content/news/2013/08/18/wicket-6.10.0-released.html 
b/content/news/2013/08/18/wicket-6.10.0-released.html
index 26b8aa6..4b3ea37 100644
--- a/content/news/2013/08/18/wicket-6.10.0-released.html
+++ b/content/news/2013/08/18/wicket-6.10.0-released.html
@@ -82,7 +82,7 @@ downgrade to JQuery 1.8.3-the previously provided JQuery that 
still
 contains these APIs. Download the 1.8.3 release of jquery and add it
 to your project in its application’s init method:</p>
 <figure class="highlight"><pre><code class="language-java" 
data-lang="java"><span class="nd">@Override</span> 
-<span class="kd">protected</span> <span class="kt">void</span> <span 
class="nf">init</span><span class="p">(</span><span class="o">)</span> <span 
class="o">{</span>
+<span class="kd">protected</span> <span class="kt">void</span> <span 
class="nf">init</span><span class="o">()</span> <span class="o">{</span>
     <span class="n">getJavaScriptLibrarySettings</span><span 
class="o">()</span>
         <span class="o">.</span><span 
class="na">setJQueryReference</span><span class="o">(</span><span 
class="n">yourJquery183ResourceReference</span><span class="o">);</span>
 <span class="o">}</span></code></pre></figure>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/0d038375/content/news/2013/09/20/wicket-6.11.0-released.html
----------------------------------------------------------------------
diff --git a/content/news/2013/09/20/wicket-6.11.0-released.html 
b/content/news/2013/09/20/wicket-6.11.0-released.html
index f62aeec..f35df08 100644
--- a/content/news/2013/09/20/wicket-6.11.0-released.html
+++ b/content/news/2013/09/20/wicket-6.11.0-released.html
@@ -92,7 +92,7 @@ downgrade to JQuery 1.8.3-the previously provided JQuery that 
still
 contains these APIs. Download the 1.8.3 release of jquery and add it
 to your project in its application’s init method:</p>
 <figure class="highlight"><pre><code class="language-java" data-lang="java">   
 <span class="nd">@Override</span>
-    <span class="kd">protected</span> <span class="kt">void</span> <span 
class="n">init</span><span class="o">()</span> <span class="o">{</span>
+    <span class="kd">protected</span> <span class="kt">void</span> <span 
class="nf">init</span><span class="o">()</span> <span class="o">{</span>
         <span class="n">getJavaScriptLibrarySettings</span><span 
class="o">()</span>
             <span class="o">.</span><span 
class="na">setJQueryReference</span><span class="o">(</span><span 
class="n">yourJquery183ResourceReference</span><span class="o">);</span>
     <span class="o">}</span></code></pre></figure>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/0d038375/content/news/2013/11/01/wicket-6.12.0-released.html
----------------------------------------------------------------------
diff --git a/content/news/2013/11/01/wicket-6.12.0-released.html 
b/content/news/2013/11/01/wicket-6.12.0-released.html
index 2c38681..6b2aeb4 100644
--- a/content/news/2013/11/01/wicket-6.12.0-released.html
+++ b/content/news/2013/11/01/wicket-6.12.0-released.html
@@ -78,7 +78,7 @@ downgrade to JQuery 1.8.3-the previously provided JQuery that 
still
 contains these APIs. Download the 1.8.3 release of jquery and add it
 to your project in its application’s init method:</p>
 <figure class="highlight"><pre><code class="language-java" data-lang="java"> 
<span class="nd">@Override</span>
- <span class="kd">protected</span> <span class="kt">void</span> <span 
class="n">init</span><span class="o">()</span> <span class="o">{</span>
+ <span class="kd">protected</span> <span class="kt">void</span> <span 
class="nf">init</span><span class="o">()</span> <span class="o">{</span>
      <span class="n">getJavaScriptLibrarySettings</span><span 
class="o">()</span>
          <span class="o">.</span><span 
class="na">setJQueryReference</span><span class="o">(</span><span 
class="n">yourJquery183ResourceReference</span><span class="o">);</span>
  <span class="o">}</span></code></pre></figure>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/0d038375/content/news/2014/01/05/wicket-6.13.0-released.html
----------------------------------------------------------------------
diff --git a/content/news/2014/01/05/wicket-6.13.0-released.html 
b/content/news/2014/01/05/wicket-6.13.0-released.html
index 82c9fb5..4a1cc94 100644
--- a/content/news/2014/01/05/wicket-6.13.0-released.html
+++ b/content/news/2014/01/05/wicket-6.13.0-released.html
@@ -131,7 +131,7 @@ downgrade to JQuery 1.8.3-the previously provided JQuery 
that still
 contains these APIs. Download the 1.8.3 release of jquery and add it
 to your project in its application’s init method:</p>
 <figure class="highlight"><pre><code class="language-java" data-lang="java"> 
<span class="nd">@Override</span>
- <span class="kd">protected</span> <span class="kt">void</span> <span 
class="n">init</span><span class="o">()</span> <span class="o">{</span>
+ <span class="kd">protected</span> <span class="kt">void</span> <span 
class="nf">init</span><span class="o">()</span> <span class="o">{</span>
      <span class="n">getJavaScriptLibrarySettings</span><span 
class="o">()</span>
          <span class="o">.</span><span 
class="na">setJQueryReference</span><span class="o">(</span><span 
class="n">yourJquery183ResourceReference</span><span class="o">);</span>
  <span class="o">}</span></code></pre></figure>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/0d038375/content/news/2016/07/25/wicket-8.0.0-M1-released.html
----------------------------------------------------------------------
diff --git a/content/news/2016/07/25/wicket-8.0.0-M1-released.html 
b/content/news/2016/07/25/wicket-8.0.0-M1-released.html
index 8356c14..99db264 100644
--- a/content/news/2016/07/25/wicket-8.0.0-M1-released.html
+++ b/content/news/2016/07/25/wicket-8.0.0-M1-released.html
@@ -223,7 +223,7 @@ cTwAn0jMYcafuw0aHDATKwbTv8U3uZX1
   <li>[WICKET-5920] - roll a version of ListDataProvider implementing 
ISortableDetachable model</li>
   <li>[WICKET-5950] - Model and GenericBaseModel could both implement 
IObjectClassAwareModel</li>
   <li>[WICKET-5969] - Please give us access to PageTable.index pageId 
queue</li>
-  <li>[WICKET-5986] - NumberTextField<n> should use Models for minimum, 
maximum and step</n></li>
+  <li>[WICKET-5986] - NumberTextField<N> should use Models for minimum, 
maximum and step</N></li>
   <li>[WICKET-6015] - AjaxFallbackOrderByBorder/Link should support 
updateAjaxAttributes() idiom</li>
   <li>[WICKET-6019] - Remove ‘final’ modifier for 
Localizer#getStringIgnoreSettings() methods</li>
   <li>[WICKET-6023] - small tweak for component queuing for the 
AbstractRepeater</li>
@@ -267,7 +267,7 @@ cTwAn0jMYcafuw0aHDATKwbTv8U3uZX1
   <li>[WICKET-6183] - Improve stateless support for AJAX</li>
   <li>[WICKET-6184] - Remove form argument from AjaxButton and AjaxLink 
callbacks</li>
   <li>[WICKET-6188] - Use DynamicJQueryResourceReference by default</li>
-  <li>[WICKET-6189] - Return Optional<t> from 
RequestCycle.find(Class<t>)</t></t></li>
+  <li>[WICKET-6189] - Return Optional<T> from 
RequestCycle.find(Class<T>)</T></T></li>
 </ul>
 <h5 id="new-feature">New Feature</h5>
 <ul>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/0d038375/content/start/download.html
----------------------------------------------------------------------
diff --git a/content/start/download.html b/content/start/download.html
index 064f17c..ac25742 100644
--- a/content/start/download.html
+++ b/content/start/download.html
@@ -81,7 +81,7 @@
        </tr>
        <tr>
                <td><a href="wicket-8.x.html">Wicket 8.x</a></td>
-               <td>8.0.0-M4</td>
+               <td>8.0.0-M5</td>
                <td>in development</td>
        </tr>
        <tr>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/0d038375/content/start/quickstart.html
----------------------------------------------------------------------
diff --git a/content/start/quickstart.html b/content/start/quickstart.html
index 90168e4..9d88162 100644
--- a/content/start/quickstart.html
+++ b/content/start/quickstart.html
@@ -120,7 +120,7 @@ command line to your clipboard.</p>
     <label title="Wicket Version" for="version">Wicket Version</label>
     <select onchange="changeIt();" id="version">
        <option value="8.0.0-SNAPSHOT">8.0.0-SNAPSHOT</option>
-       <option value="8.0.0-M4">8.0.0-M4</option>
+       <option value="8.0.0-M5">8.0.0-M5</option>
        <option value="7.7.0-SNAPSHOT">7.7.0-SNAPSHOT</option>
        <option value="6.27.0-SNAPSHOT">6.27.0-SNAPSHOT</option>
        <option value="1.5-SNAPSHOT">1.5-SNAPSHOT</option>
@@ -153,7 +153,7 @@ generated (e.g. for Eclipse users this would be your 
workspace folder).
 Paste the command line into your terminal window and press «enter» to
 execute the command.</p>
 <p>You can create your quickstart interactively too with the following Maven 
command:</p>
-<div class="highlighter-rouge"><pre class="highlight"><code>    mvn 
archetype:generate -DarchetypeCatalog<span 
class="o">=</span>http://wicket.apache.org
+<div class="language-shell highlighter-rouge"><pre class="highlight"><code>    
mvn archetype:generate -DarchetypeCatalog<span 
class="o">=</span>http://wicket.apache.org
 </code></pre>
 </div>
 <h4 id="result-of-the-maven-command">Result of the Maven command</h4>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/0d038375/content/start/wicket-8.x.html
----------------------------------------------------------------------
diff --git a/content/start/wicket-8.x.html b/content/start/wicket-8.x.html
index b640867..7fc8d3d 100644
--- a/content/start/wicket-8.x.html
+++ b/content/start/wicket-8.x.html
@@ -65,14 +65,14 @@ releases will not break compatibility.</p>
 <h3 id="change-log">Change log</h3>
 <p>The change log is not available at the current state of the development 
process.</p>
 <h2 id="download">Download</h2>
-<p>The most recent test version in this branch is: <strong>8.0.0-M4</strong>. 
+<p>The most recent test version in this branch is: <strong>8.0.0-M5</strong>. 
 You can test the current state of development using <a 
href="#maven">Maven</a>.</p>
 <h3 id="maven">Using Apache Maven</h3>
 <p>Use the following Maven dependency to use Wicket in your project:</p>
 <figure class="highlight"><pre><code class="language-xml" 
data-lang="xml"><span class="nt">&lt;dependency&gt;</span>
     <span class="nt">&lt;groupId&gt;</span>org.apache.wicket<span 
class="nt">&lt;/groupId&gt;</span>
     <span class="nt">&lt;artifactId&gt;</span>wicket-core<span 
class="nt">&lt;/artifactId&gt;</span>
-    <span class="nt">&lt;version&gt;</span>8.0.0-M4<span 
class="nt">&lt;/version&gt;</span>
+    <span class="nt">&lt;version&gt;</span>8.0.0-M5<span 
class="nt">&lt;/version&gt;</span>
 <span class="nt">&lt;/dependency&gt;</span></code></pre></figure>
 <p>Add the snippet above to your project’s POM in the dependency
 (management) section.</p>

Reply via email to