Repository: wicket-site
Updated Branches:
  refs/heads/asf-site 2cad3d615 -> 847345397


http://git-wip-us.apache.org/repos/asf/wicket-site/blob/84734539/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 2e8ba44..0495373 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="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">&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">}</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="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="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="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="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="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="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="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="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="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/84734539/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 5a8ed71..d9394e2 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="nf">init</span><span class="o">()</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">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/84734539/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 15e50d4..2691591 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="n">EventBus</span><span class="o">(</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="nf">EventBus</span><span class="p">(</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="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="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="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/84734539/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 0d8555c..9e14151 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="nf">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="n">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/84734539/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 1ecfa60..1d89266 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="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="p">(</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/84734539/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 2482300..2978e2f 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="o">()</span> <span class="o">{</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="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/84734539/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 4a2bbfd..709421c 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="o">()</span> <span class="o">{</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="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/84734539/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 60e8c9e..a4ba764 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="nf">init</span><span class="o">()</span> <span class="o">{</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="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/84734539/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 433c23d..ccb2500 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="nf">init</span><span class="o">()</span> <span class="o">{</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="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/84734539/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 94c019a..e217dc0 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="nf">init</span><span class="o">()</span> <span class="o">{</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="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/84734539/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 dd59fb4..f365239 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/84734539/content/news/2016/12/29/wicket-6.26.0-released.html
----------------------------------------------------------------------
diff --git a/content/news/2016/12/29/wicket-6.26.0-released.html 
b/content/news/2016/12/29/wicket-6.26.0-released.html
index 232992b..79ce048 100644
--- a/content/news/2016/12/29/wicket-6.26.0-released.html
+++ b/content/news/2016/12/29/wicket-6.26.0-released.html
@@ -148,10 +148,6 @@ AsXFCWmef6o87oikYsEY
   <li>[WICKET-6274] - Add origin header to ajax requests in 
BaseWicketTester</li>
   <li>[WICKET-6282] - Make native web socket message classes serializable</li>
 </ul>
-<h5 id="task">Task</h5>
-<ul>
-  <li>[WICKET-6287] - Switch from json.org to open-json</li>
-</ul>
 </div>
         </section>
     </div>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/84734539/content/news/2016/12/29/wicket-7.6.0-released.html
----------------------------------------------------------------------
diff --git a/content/news/2016/12/29/wicket-7.6.0-released.html 
b/content/news/2016/12/29/wicket-7.6.0-released.html
index 6d877ca..d018860 100644
--- a/content/news/2016/12/29/wicket-7.6.0-released.html
+++ b/content/news/2016/12/29/wicket-7.6.0-released.html
@@ -160,10 +160,6 @@ EP6HRzIcMLydmv73Hg+r
   <li>[WICKET-6282] - Make native web socket message classes serializable</li>
   <li>[WICKET-6297] - Add wicket:label tag in wicket.xsd</li>
 </ul>
-<h5 id="task">Task</h5>
-<ul>
-  <li>[WICKET-6287] - Switch from json.org to open-json</li>
-</ul>
 </div>
         </section>
     </div>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/84734539/content/news/2016/12/29/wicket-8.0.0-M3-released.html
----------------------------------------------------------------------
diff --git a/content/news/2016/12/29/wicket-8.0.0-M3-released.html 
b/content/news/2016/12/29/wicket-8.0.0-M3-released.html
index adceea3..80326bb 100644
--- a/content/news/2016/12/29/wicket-8.0.0-M3-released.html
+++ b/content/news/2016/12/29/wicket-8.0.0-M3-released.html
@@ -168,10 +168,6 @@ Nz1FYWT9PWULN0TeTktN
 <ul>
   <li>[WICKET-6275] - Stream support for MarkupContainer</li>
 </ul>
-<h5 id="task">Task</h5>
-<ul>
-  <li>[WICKET-6287] - Switch from json.org to open-json</li>
-</ul>
 </div>
         </section>
     </div>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/84734539/content/start/quickstart.html
----------------------------------------------------------------------
diff --git a/content/start/quickstart.html b/content/start/quickstart.html
index cb3a704..ae0c054 100644
--- a/content/start/quickstart.html
+++ b/content/start/quickstart.html
@@ -153,9 +153,9 @@ 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="language-shell highlighter-rouge"><pre class="highlight"><code>    
mvn archetype:generate -DarchetypeCatalog<span 
class="o">=</span>http://wicket.apache.org
-</code></pre>
-</div>
+<p><code class="highlighter-rouge">shell
+    mvn archetype:generate -DarchetypeCatalog=http://wicket.apache.org
+</code></p>
 <h4 id="result-of-the-maven-command">Result of the Maven command</h4>
 <p>Executing the Maven command line will result the following directory
 structure:</p>

Reply via email to