You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by mg...@apache.org on 2015/11/16 22:09:49 UTC

[11/23] wicket-site git commit: Rebuild the site

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2118a439/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
deleted file mode 100644
index 8107636..0000000
--- a/content/news/2013/01/23/wicket-6.5.0-released.html
+++ /dev/null
@@ -1,153 +0,0 @@
-<!DOCTYPE html>
-<html>
-    <head>
-        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
-        <meta charset="utf-8">
-        <title>Apache Wicket 6.5.0 released | Apache Wicket</title>
-        <meta name="viewport" content="width=device-width, initial-scale=1" />
-
-        <link rel="shortcut icon" href="/favicon.ico" type="image/vnd.microsoft.icon" />
-        <link rel="stylesheet" href="/css/style.css" type="text/css" media="screen" />
-        <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet" />
-
-		<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
-
-    </head>
-
-    <body class="">
-        <div class="header default">
-    <div class="l-container">
-<nav class="mainmenu">
-    <ul>
-		<!-- /start/quickstart.html || /news/2013/01/23/wicket-6.5.0-released.html -->
-    	<li class=""><a href="/start/quickstart.html">Quick Start</a></li>
-		<!-- /start/download.html || /news/2013/01/23/wicket-6.5.0-released.html -->
-    	<li class=""><a href="/start/download.html">Download</a></li>
-		<!-- /learn || /news/2013/01/23/wicket-6.5.0-released.html -->
-    	<li class=""><a href="/learn">Documentation</a></li>
-		<!-- /help || /news/2013/01/23/wicket-6.5.0-released.html -->
-    	<li class=""><a href="/help">Support</a></li>
-		<!-- /contribute || /news/2013/01/23/wicket-6.5.0-released.html -->
-    	<li class=""><a href="/contribute">Contribute</a></li>
-		<!-- /community || /news/2013/01/23/wicket-6.5.0-released.html -->
-    	<li class=""><a href="/community">Community</a></li>
-		<!-- /apache || /news/2013/01/23/wicket-6.5.0-released.html -->
-    	<li class=""><a href="/apache">Apache</a></li>
-    </ul>
-</nav>
-        <div class="logo">
-    <a href="/"><img src="/img/logo-apachewicket-white.svg" alt="Apache Wicket"></a>
-</div>
-    </div>
-</div>
-<main>
-    <div class="l-container">
-        <header class="l-full preamble">
-            <h1>Apache Wicket 6.5.0 released</h1>
-        </header>
-        <section class="l-one-third right">
-        </section>
-        <section class="l-two-third left">
-            <div class="l-full">
-    <p class="meta">23 Jan 2013</p>
-    <p>The Apache Wicket PMC is proud to announce Apache Wicket 6.5.0!</p>
-<p>This release marks the fifth minor release of Wicket 6. Starting
-with Wicket 6 we use semantic versioning for the future development of
-Wicket, and as such no API breaks are present in this release compared
-to 6.0.0.</p>
-<h3 id="new-and-noteworthy">New and noteworthy</h3>
-<h4 id="behavioronremovecomponent">Behavior.onRemove(Component)</h4>
-<p>org.apache.wicket.Behavior has a new method - #onRemove(Component). This callback method is called when a host component of
-this behavior is removed from its parent.</p>
-<h4 id="global-updaters-for-ajax-request-attributes">Global updaters for Ajax request attributes</h4>
-<p>By registering a custom AjaxRequestTarget.AbstractListener the application can manipulate all
-the attributes for all Ajax requests.</p>
-<p>Example:</p>
-<div 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="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="nf">AjaxChannel</span><span class="o">(</span><span class="s">&quot;globalAjaxChannel&quot;</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>
-	<span class="o">}</span>
-<span class="o">});</span></code></pre></div>
-<p>Each Ajax behavior/component can override such global settings.</p>
-<h3 id="using-this-release">Using this release</h3>
-<p>With Apache Maven update your dependency to (and don’t forget to
-update any other dependencies on Wicket projects to the same version):</p>
-<div class="highlight"><pre><code class="language-xml" data-lang="xml"><span class="nt">&lt;dependency&gt;</span>
-    <span class="nt">&lt;groupId&gt;</span>org.apache.wicket<span class="nt">&lt;/groupId&gt;</span>
-    <span class="nt">&lt;artifactId&gt;</span>wicket-core<span class="nt">&lt;/artifactId&gt;</span>
-    <span class="nt">&lt;version&gt;</span>6.5.0<span class="nt">&lt;/version&gt;</span>
-<span class="nt">&lt;/dependency&gt;</span></code></pre></div>
-<p>Or download and build the distribution yourself, or use our
-convenience binary package</p>
-<ul>
-  <li>Source: <a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">http://www.apache.org/dyn/closer.cgi/wicket/6.5.0</a></li>
-  <li>Binary: <a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0/binaries">http://www.apache.org/dyn/closer.cgi/wicket/6.5.0/binaries</a></li>
-</ul>
-<h3 id="upgrading-from-earlier-versions">Upgrading from earlier versions</h3>
-<p>If you upgrade from 6.y.z this release is a drop in
-replacement. If you come from a version prior to 6.0.0, please
-read our Wicket 6 migration guide found at</p>
-<pre><code>http://s.apache.org/wicket-6.0-migration
-</code></pre>
-<p>Have fun!</p>
-<p>— The Wicket team</p>
-<h3 id="release-notes---wicket---version-650">Release Notes - Wicket - Version 6.5.0</h3>
-<h4 id="sub-task">Sub-task</h4>
-<pre><code>* [WICKET-4976](https://issues.apache.org/jira/browse/WICKET-4976) - WicketTester#startComponent(Component) doesn't detach the component and request cycle
-</code></pre>
-<h4 id="bug">Bug</h4>
-<pre><code>* [WICKET-4906](https://issues.apache.org/jira/browse/WICKET-4906) - Form#visitFormComponents can cause ClassCastException
-* [WICKET-4925](https://issues.apache.org/jira/browse/WICKET-4925) - AbstractAjaxBehavior should clean stored reference to a component on unbind
-* [WICKET-4927](https://issues.apache.org/jira/browse/WICKET-4927) - Header can not be set from IRequestCycleListener#onEndRequest()
-* [WICKET-4928](https://issues.apache.org/jira/browse/WICKET-4928) - Error adding links to WebSocketRequestHandler
-* [WICKET-4935](https://issues.apache.org/jira/browse/WICKET-4935) - Rendered URL is resulting with double slash when using AuthenticatedWebApplication
-* [WICKET-4939](https://issues.apache.org/jira/browse/WICKET-4939) - AbstractAjaxTimerBehavior never triggers if attached to WebPage
-* [WICKET-4948](https://issues.apache.org/jira/browse/WICKET-4948) - Modal window does not center correctly when window is scrolled in safari
-* [WICKET-4950](https://issues.apache.org/jira/browse/WICKET-4950) - ResourceStreamLocator#newResourceNameIterator isn't a factory method anymore
-* [WICKET-4953](https://issues.apache.org/jira/browse/WICKET-4953) - RangeValidator#decorate mixes error keys
-* [WICKET-4954](https://issues.apache.org/jira/browse/WICKET-4954) - Issue with file upload with progress bar via AJAX and Firefox
-* [WICKET-4955](https://issues.apache.org/jira/browse/WICKET-4955) - SessionData violates comparison contract
-* [WICKET-4956](https://issues.apache.org/jira/browse/WICKET-4956) - compareTo methods of Actions in BufferedWebResponse violate Comparable contract
-* [WICKET-4959](https://issues.apache.org/jira/browse/WICKET-4959) - Notify behaviors when a component is removed from the tree
-* [WICKET-4961](https://issues.apache.org/jira/browse/WICKET-4961) - wicket ajax submit does not serialize elements of parental forms
-* [WICKET-4962](https://issues.apache.org/jira/browse/WICKET-4962) - AjaxFormChoiceComponentUpdatingBehavior cannot be triggered with BaseWicketTester#executeAjaxEvent()
-* [WICKET-4965](https://issues.apache.org/jira/browse/WICKET-4965) - NPE when stopping Tomcat
-* [WICKET-4968](https://issues.apache.org/jira/browse/WICKET-4968) - NPE in FencedFeedbackPanel#onRemove
-* [WICKET-4971](https://issues.apache.org/jira/browse/WICKET-4971) - AtmosphereEventSubscriptionCollector is slow
-* [WICKET-4973](https://issues.apache.org/jira/browse/WICKET-4973) - AbstractRequestLogger - infinite ArrayIndexOutOfBoundsException when requestWindow size is 0
-* [WICKET-4975](https://issues.apache.org/jira/browse/WICKET-4975) - client side memory leak on  date picker
-* [WICKET-4986](https://issues.apache.org/jira/browse/WICKET-4986) - wicket-ajax-jquery.js fails with 'member not found' on IE for delayed ajax requests
-</code></pre>
-<h4 id="improvement">Improvement</h4>
-<pre><code>* [WICKET-4919](https://issues.apache.org/jira/browse/WICKET-4919) - AjaxLazyLoadPanel needs a method to add components to the AjaxRequestTarget when the component is rendered
-* [WICKET-4933](https://issues.apache.org/jira/browse/WICKET-4933) - Palette does not handle disabled choices correctly
-* [WICKET-4937](https://issues.apache.org/jira/browse/WICKET-4937) - Add IResponseFilter that can filter out invalid XML characters
-* [WICKET-4940](https://issues.apache.org/jira/browse/WICKET-4940) - Make MountedMapper#getMatchedSegmentSizes(url) protected
-* [WICKET-4957](https://issues.apache.org/jira/browse/WICKET-4957) - Listener needed for registration and removal of pages
-* [WICKET-4958](https://issues.apache.org/jira/browse/WICKET-4958) - It should be possible to manipulate AjaxRequestAttributes globally
-* [WICKET-4963](https://issues.apache.org/jira/browse/WICKET-4963) - ComponentModel "setObject" methods should take generic "T" type instead of "Object"
-* [WICKET-4970](https://issues.apache.org/jira/browse/WICKET-4970) - Move the logic for creating the proper PackageResource from PackageResourceReference to ResourceReferenceRegistry
-* [WICKET-4982](https://issues.apache.org/jira/browse/WICKET-4982) - StatelessChecker: add helpful information to find stateful behavior (patch included)
-* [WICKET-4983](https://issues.apache.org/jira/browse/WICKET-4983) - extra recursion on Wicket.DOM.get
-</code></pre>
-</div>
-        </section>
-    </div>
-</main>
-        <footer class="l-container">
-            <div class="l-full">
-    <img height="60px" src="/img/asf_logo.gif" style="float:left">
-    Copyright © 2015 — The Apache Software Foundation. Apache Wicket,
-    Wicket, Apache, the Apache feather logo, and the Apache Wicket
-    project logo are trademarks of The Apache Software Foundation. All
-    other marks mentioned may be trademarks or registered trademarks of
-    their respective owners.
-</div>
-        </footer>
-    </body>
-
-</html>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2118a439/content/news/2013/01/index.html
----------------------------------------------------------------------
diff --git a/content/news/2013/01/index.html b/content/news/2013/01/index.html
index 1586871..c30e5b9 100644
--- a/content/news/2013/01/index.html
+++ b/content/news/2013/01/index.html
@@ -52,13 +52,14 @@
 	<p>The Apache Wicket PMC is proud to announce Apache Wicket 6.5.0!</p>
 <p>This release marks the fifth minor release of Wicket 6. Starting
 with Wicket 6 we u...</p>
-	<a href="/news/2013/01/23/wicket-6.5.0-released.html">more</a></li>
+	<a href="/news/2013/01/23/wicket-6-5-0-released.html">more</a></li>
 </div>
         </div>
         <div class="l-one-third">
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</a></li>
+            <li><a href="/news/2015/11">November</a></li>
             <li><a href="/news/2015/10">October</a></li>
             <li><a href="/news/2015/07">July</a></li>
             <li><a href="/news/2015/06">June</a></li>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2118a439/content/news/2013/02/15/wicket-6-6-0-released.html
----------------------------------------------------------------------
diff --git a/content/news/2013/02/15/wicket-6-6-0-released.html b/content/news/2013/02/15/wicket-6-6-0-released.html
new file mode 100644
index 0000000..1b85842
--- /dev/null
+++ b/content/news/2013/02/15/wicket-6-6-0-released.html
@@ -0,0 +1,155 @@
+<!DOCTYPE html>
+<html>
+    <head>
+        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+        <meta charset="utf-8">
+        <title>Apache Wicket 6.6.0 released | Apache Wicket</title>
+        <meta name="viewport" content="width=device-width, initial-scale=1" />
+
+        <link rel="shortcut icon" href="/favicon.ico" type="image/vnd.microsoft.icon" />
+        <link rel="stylesheet" href="/css/style.css" type="text/css" media="screen" />
+        <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet" />
+
+		<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
+
+    </head>
+
+    <body class="">
+        <div class="header default">
+    <div class="l-container">
+<nav class="mainmenu">
+    <ul>
+		<!-- /start/quickstart.html || /news/2013/02/15/wicket-6-6-0-released.html -->
+    	<li class=""><a href="/start/quickstart.html">Quick Start</a></li>
+		<!-- /start/download.html || /news/2013/02/15/wicket-6-6-0-released.html -->
+    	<li class=""><a href="/start/download.html">Download</a></li>
+		<!-- /learn || /news/2013/02/15/wicket-6-6-0-released.html -->
+    	<li class=""><a href="/learn">Documentation</a></li>
+		<!-- /help || /news/2013/02/15/wicket-6-6-0-released.html -->
+    	<li class=""><a href="/help">Support</a></li>
+		<!-- /contribute || /news/2013/02/15/wicket-6-6-0-released.html -->
+    	<li class=""><a href="/contribute">Contribute</a></li>
+		<!-- /community || /news/2013/02/15/wicket-6-6-0-released.html -->
+    	<li class=""><a href="/community">Community</a></li>
+		<!-- /apache || /news/2013/02/15/wicket-6-6-0-released.html -->
+    	<li class=""><a href="/apache">Apache</a></li>
+    </ul>
+</nav>
+        <div class="logo">
+    <a href="/"><img src="/img/logo-apachewicket-white.svg" alt="Apache Wicket"></a>
+</div>
+    </div>
+</div>
+<main>
+    <div class="l-container">
+        <header class="l-full preamble">
+            <h1>Apache Wicket 6.6.0 released</h1>
+        </header>
+        <section class="l-one-third right">
+        </section>
+        <section class="l-two-third left">
+            <div class="l-full">
+    <p class="meta">15 Feb 2013</p>
+    <p>The Apache Wicket PMC is proud to announce Apache Wicket 6.6.0!</p>
+<p>This release marks the sixth minor release of Wicket 6. Starting
+with Wicket 6 we use semantic versioning for the future development of
+Wicket, and as such no API breaks are present in this release compared
+to 6.0.0.</p>
+<h3 id="new-and-noteworthy">New and noteworthy</h3>
+<h4 id="wicketfor-attribute-for-html-label-tags">wicket:for attribute for html label tags</h4>
+<p>While already available for some time, the wicket-1.5.xsd now contains
+a valid definition for the <code>wicket:for</code> attribute such that it</p>
+<blockquote>
+  <p>Can be used in HTML <code>&lt;label&gt;</code> element to automatically link it
+to a form element. The value of this attribute must have the same value of
+the form component’s wicket:id attribute.</p>
+</blockquote>
+<p>So you can use the following markup:</p>
+<figure class="highlight"><pre><code class="language-html" data-lang="html"><span class="nt">&lt;label</span> <span class="na">wicket:for=</span><span class="s">"someinput"</span><span class="nt">&gt;</span>Some label<span class="nt">&lt;/label&gt;</span>
+<span class="nt">&lt;input</span> <span class="na">wicket:id=</span><span class="s">"someinput"</span> <span class="na">type=</span><span class="s">"text"</span><span class="nt">&gt;</span></code></pre></figure>
+<h4 id="added-a-callback-for-an-invalidated-session">Added a callback for an invalidated session</h4>
+<p>Session is extended with a life cycle event called <code>onInvalidate()</code>.
+This method is executed when the user session is invalidated either
+by explicit call to <code>org.apache.wicket.Session#invalidate()</code> or due
+to HttpSession expiration.</p>
+<p>In case of session expiration this method is called in a non-worker
+thread, i.e. there are no thread locals exported for the Application,
+RequestCycle and Session. The Session is the current instance. The
+Application can be found by using <code>Application#get(String)</code>. There is
+no way to get a reference to a RequestCycle.</p>
+<h3 id="using-this-release">Using this release</h3>
+<p>With Apache Maven update your dependency to (and don’t forget to
+update any other dependencies on Wicket projects to the same version):</p>
+<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>6.6.0<span class="nt">&lt;/version&gt;</span>
+<span class="nt">&lt;/dependency&gt;</span></code></pre></figure>
+<p>Or download and build the distribution yourself, or use our
+convenience binary package</p>
+<ul>
+  <li>Source: <a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">http://www.apache.org/dyn/closer.cgi/wicket/6.6.0</a></li>
+  <li>Binary: <a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0/binaries">http://www.apache.org/dyn/closer.cgi/wicket/6.6.0/binaries</a></li>
+</ul>
+<h3 id="upgrading-from-earlier-versions">Upgrading from earlier versions</h3>
+<p>If you upgrade from 6.y.z this release is a drop in replacement. If
+you come from a version prior to 6.0.0, please read our Wicket 6
+migration guide found at</p>
+<ul>
+  <li><a href="http://s.apache.org/wicket-6.0-migration">http://s.apache.org/wicket-6.0-migration</a></li>
+</ul>
+<p>Have fun!</p>
+<p>— The Wicket team</p>
+<h3 id="release-notes---wicket---version-660">Release Notes - Wicket - Version 6.6.0</h3>
+<h4 id="bugs">Bugs</h4>
+<ul>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-4723">WICKET-4723</a> - tracking id retrieved in AtmosphereBehavior#onRequest() is always 0</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-4724">WICKET-4724</a> - the option name “maxRequests” is wrong in jquery.wicketatmosphere.js</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-4926">WICKET-4926</a> - CheckGroupSelector does not work in nested forms in modal windows</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-4984">WICKET-4984</a> - Update quickstart info for changed workflow in IntelliJ idea</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-4990">WICKET-4990</a> - Problem using AutoCompleteBehavior with AjaxFormComponentUpdatingBehavior(“onchange”)</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-4998">WICKET-4998</a> - AjaxFormComponentUpdatingBehavior(“onkeypress”) is triggered when Enter is used on autocomplete list</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5011">WICKET-5011</a> - Allow Select to work with non-equals objects</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5013">WICKET-5013</a> - Wicket Enclosure fails with more than one component</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5014">WICKET-5014</a> - Changes in WicketObjects.sizeof(final Serializable object) clashes with <code>&lt;header-contribution&gt;</code> in AjaxResponse</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5019">WICKET-5019</a> - Handling of NO_MINIFIED_NAME in PackageResourceReference#internalGetMinifiedName()</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5020">WICKET-5020</a> - InlineEnclosureHandler always uses “wicket” namespace</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5024">WICKET-5024</a> - Global ajax event for precondition is not called</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5027">WICKET-5027</a> - FormTester#getInputValue() does not support Select/SelectOption nor other custom components</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5029">WICKET-5029</a> - Palette does not allow to turn off localization</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5031">WICKET-5031</a> - Upgrade bootstrap to 2.3</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5035">WICKET-5035</a> - script tag with wicket:id does not throw exception if it was not added in the code</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5036">WICKET-5036</a> - Post Parameters are lost when continueToOriginalDestination() is called</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5040">WICKET-5040</a> - Session.exists() returns false when ThreadContext#session is not set to current session</li>
+</ul>
+<h4 id="improvement">Improvement</h4>
+<ul>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-4444">WICKET-4444</a> - Add a callback to the Session which is called when the HttpSession is invalidated</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-4861">WICKET-4861</a> - Making MultiFileUploadField use HTML5 multiple attr &amp; remove confusing fakepath</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-4945">WICKET-4945</a> - Wicket-atmosphere filters should be functions on AtmosphereResource</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-4946">WICKET-4946</a> - Allow passing parameters to atmosphere JS</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5003">WICKET-5003</a> - Add wicket:for attribute in wicket.xsd</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5006">WICKET-5006</a> - Improve null display value in AbstractSingleSelectChoice</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5010">WICKET-5010</a> - Improve wicket-ajax.js to be able to work with jQuery 1.9+</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5016">WICKET-5016</a> - Updated Application_el.properties for 6.x</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5017">WICKET-5017</a> - BaseWicketTester#clickLink() doesn not serialize form to request for SubmitLink but does for AjaxSubmitLink</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5022">WICKET-5022</a> - Improve Application_es.properties</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5025">WICKET-5025</a> - Set the component as a context to the ajax listeners</li>
+</ul>
+</div>
+        </section>
+    </div>
+</main>
+        <footer class="l-container">
+            <div class="l-full">
+    <img height="60px" src="/img/asf_logo.gif" style="float:left">
+    Copyright © 2015 — The Apache Software Foundation. Apache Wicket,
+    Wicket, Apache, the Apache feather logo, and the Apache Wicket
+    project logo are trademarks of The Apache Software Foundation. All
+    other marks mentioned may be trademarks or registered trademarks of
+    their respective owners.
+</div>
+        </footer>
+    </body>
+
+</html>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2118a439/content/news/2013/02/15/wicket-6.6.0-released.html
----------------------------------------------------------------------
diff --git a/content/news/2013/02/15/wicket-6.6.0-released.html b/content/news/2013/02/15/wicket-6.6.0-released.html
deleted file mode 100644
index cec6ec6..0000000
--- a/content/news/2013/02/15/wicket-6.6.0-released.html
+++ /dev/null
@@ -1,155 +0,0 @@
-<!DOCTYPE html>
-<html>
-    <head>
-        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
-        <meta charset="utf-8">
-        <title>Apache Wicket 6.6.0 released | Apache Wicket</title>
-        <meta name="viewport" content="width=device-width, initial-scale=1" />
-
-        <link rel="shortcut icon" href="/favicon.ico" type="image/vnd.microsoft.icon" />
-        <link rel="stylesheet" href="/css/style.css" type="text/css" media="screen" />
-        <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet" />
-
-		<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
-
-    </head>
-
-    <body class="">
-        <div class="header default">
-    <div class="l-container">
-<nav class="mainmenu">
-    <ul>
-		<!-- /start/quickstart.html || /news/2013/02/15/wicket-6.6.0-released.html -->
-    	<li class=""><a href="/start/quickstart.html">Quick Start</a></li>
-		<!-- /start/download.html || /news/2013/02/15/wicket-6.6.0-released.html -->
-    	<li class=""><a href="/start/download.html">Download</a></li>
-		<!-- /learn || /news/2013/02/15/wicket-6.6.0-released.html -->
-    	<li class=""><a href="/learn">Documentation</a></li>
-		<!-- /help || /news/2013/02/15/wicket-6.6.0-released.html -->
-    	<li class=""><a href="/help">Support</a></li>
-		<!-- /contribute || /news/2013/02/15/wicket-6.6.0-released.html -->
-    	<li class=""><a href="/contribute">Contribute</a></li>
-		<!-- /community || /news/2013/02/15/wicket-6.6.0-released.html -->
-    	<li class=""><a href="/community">Community</a></li>
-		<!-- /apache || /news/2013/02/15/wicket-6.6.0-released.html -->
-    	<li class=""><a href="/apache">Apache</a></li>
-    </ul>
-</nav>
-        <div class="logo">
-    <a href="/"><img src="/img/logo-apachewicket-white.svg" alt="Apache Wicket"></a>
-</div>
-    </div>
-</div>
-<main>
-    <div class="l-container">
-        <header class="l-full preamble">
-            <h1>Apache Wicket 6.6.0 released</h1>
-        </header>
-        <section class="l-one-third right">
-        </section>
-        <section class="l-two-third left">
-            <div class="l-full">
-    <p class="meta">15 Feb 2013</p>
-    <p>The Apache Wicket PMC is proud to announce Apache Wicket 6.6.0!</p>
-<p>This release marks the sixth minor release of Wicket 6. Starting
-with Wicket 6 we use semantic versioning for the future development of
-Wicket, and as such no API breaks are present in this release compared
-to 6.0.0.</p>
-<h3 id="new-and-noteworthy">New and noteworthy</h3>
-<h4 id="wicketfor-attribute-for-html-label-tags">wicket:for attribute for html label tags</h4>
-<p>While already available for some time, the wicket-1.5.xsd now contains
-a valid definition for the <code>wicket:for</code> attribute such that it</p>
-<blockquote>
-  <p>Can be used in HTML <code>&lt;label&gt;</code> element to automatically link it
-to a form element. The value of this attribute must have the same value of
-the form component’s wicket:id attribute.</p>
-</blockquote>
-<p>So you can use the following markup:</p>
-<div class="highlight"><pre><code class="language-html" data-lang="html"><span class="nt">&lt;label</span> <span class="na">wicket:for=</span><span class="s">&quot;someinput&quot;</span><span class="nt">&gt;</span>Some label<span class="nt">&lt;/label&gt;</span>
-<span class="nt">&lt;input</span> <span class="na">wicket:id=</span><span class="s">&quot;someinput&quot;</span> <span class="na">type=</span><span class="s">&quot;text&quot;</span><span class="nt">&gt;</span></code></pre></div>
-<h4 id="added-a-callback-for-an-invalidated-session">Added a callback for an invalidated session</h4>
-<p>Session is extended with a life cycle event called <code>onInvalidate()</code>.
-This method is executed when the user session is invalidated either
-by explicit call to <code>org.apache.wicket.Session#invalidate()</code> or due
-to HttpSession expiration.</p>
-<p>In case of session expiration this method is called in a non-worker
-thread, i.e. there are no thread locals exported for the Application,
-RequestCycle and Session. The Session is the current instance. The
-Application can be found by using <code>Application#get(String)</code>. There is
-no way to get a reference to a RequestCycle.</p>
-<h3 id="using-this-release">Using this release</h3>
-<p>With Apache Maven update your dependency to (and don’t forget to
-update any other dependencies on Wicket projects to the same version):</p>
-<div class="highlight"><pre><code class="language-xml" data-lang="xml"><span class="nt">&lt;dependency&gt;</span>
-    <span class="nt">&lt;groupId&gt;</span>org.apache.wicket<span class="nt">&lt;/groupId&gt;</span>
-    <span class="nt">&lt;artifactId&gt;</span>wicket-core<span class="nt">&lt;/artifactId&gt;</span>
-    <span class="nt">&lt;version&gt;</span>6.6.0<span class="nt">&lt;/version&gt;</span>
-<span class="nt">&lt;/dependency&gt;</span></code></pre></div>
-<p>Or download and build the distribution yourself, or use our
-convenience binary package</p>
-<ul>
-  <li>Source: <a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">http://www.apache.org/dyn/closer.cgi/wicket/6.6.0</a></li>
-  <li>Binary: <a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0/binaries">http://www.apache.org/dyn/closer.cgi/wicket/6.6.0/binaries</a></li>
-</ul>
-<h3 id="upgrading-from-earlier-versions">Upgrading from earlier versions</h3>
-<p>If you upgrade from 6.y.z this release is a drop in replacement. If
-you come from a version prior to 6.0.0, please read our Wicket 6
-migration guide found at</p>
-<ul>
-  <li><a href="http://s.apache.org/wicket-6.0-migration">http://s.apache.org/wicket-6.0-migration</a></li>
-</ul>
-<p>Have fun!</p>
-<p>— The Wicket team</p>
-<h3 id="release-notes---wicket---version-660">Release Notes - Wicket - Version 6.6.0</h3>
-<h4 id="bugs">Bugs</h4>
-<ul>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-4723">WICKET-4723</a> - tracking id retrieved in AtmosphereBehavior#onRequest() is always 0</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-4724">WICKET-4724</a> - the option name “maxRequests” is wrong in jquery.wicketatmosphere.js</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-4926">WICKET-4926</a> - CheckGroupSelector does not work in nested forms in modal windows</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-4984">WICKET-4984</a> - Update quickstart info for changed workflow in IntelliJ idea</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-4990">WICKET-4990</a> - Problem using AutoCompleteBehavior with AjaxFormComponentUpdatingBehavior(“onchange”)</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-4998">WICKET-4998</a> - AjaxFormComponentUpdatingBehavior(“onkeypress”) is triggered when Enter is used on autocomplete list</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5011">WICKET-5011</a> - Allow Select to work with non-equals objects</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5013">WICKET-5013</a> - Wicket Enclosure fails with more than one component</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5014">WICKET-5014</a> - Changes in WicketObjects.sizeof(final Serializable object) clashes with <code>&lt;header-contribution&gt;</code> in AjaxResponse</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5019">WICKET-5019</a> - Handling of NO_MINIFIED_NAME in PackageResourceReference#internalGetMinifiedName()</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5020">WICKET-5020</a> - InlineEnclosureHandler always uses “wicket” namespace</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5024">WICKET-5024</a> - Global ajax event for precondition is not called</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5027">WICKET-5027</a> - FormTester#getInputValue() does not support Select/SelectOption nor other custom components</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5029">WICKET-5029</a> - Palette does not allow to turn off localization</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5031">WICKET-5031</a> - Upgrade bootstrap to 2.3</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5035">WICKET-5035</a> - script tag with wicket:id does not throw exception if it was not added in the code</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5036">WICKET-5036</a> - Post Parameters are lost when continueToOriginalDestination() is called</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5040">WICKET-5040</a> - Session.exists() returns false when ThreadContext#session is not set to current session</li>
-</ul>
-<h4 id="improvement">Improvement</h4>
-<ul>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-4444">WICKET-4444</a> - Add a callback to the Session which is called when the HttpSession is invalidated</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-4861">WICKET-4861</a> - Making MultiFileUploadField use HTML5 multiple attr &amp; remove confusing fakepath</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-4945">WICKET-4945</a> - Wicket-atmosphere filters should be functions on AtmosphereResource</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-4946">WICKET-4946</a> - Allow passing parameters to atmosphere JS</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5003">WICKET-5003</a> - Add wicket:for attribute in wicket.xsd</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5006">WICKET-5006</a> - Improve null display value in AbstractSingleSelectChoice</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5010">WICKET-5010</a> - Improve wicket-ajax.js to be able to work with jQuery 1.9+</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5016">WICKET-5016</a> - Updated Application_el.properties for 6.x</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5017">WICKET-5017</a> - BaseWicketTester#clickLink() doesn not serialize form to request for SubmitLink but does for AjaxSubmitLink</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5022">WICKET-5022</a> - Improve Application_es.properties</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5025">WICKET-5025</a> - Set the component as a context to the ajax listeners</li>
-</ul>
-</div>
-        </section>
-    </div>
-</main>
-        <footer class="l-container">
-            <div class="l-full">
-    <img height="60px" src="/img/asf_logo.gif" style="float:left">
-    Copyright © 2015 — The Apache Software Foundation. Apache Wicket,
-    Wicket, Apache, the Apache feather logo, and the Apache Wicket
-    project logo are trademarks of The Apache Software Foundation. All
-    other marks mentioned may be trademarks or registered trademarks of
-    their respective owners.
-</div>
-        </footer>
-    </body>
-
-</html>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2118a439/content/news/2013/02/26/wicket-1-5-10-released.html
----------------------------------------------------------------------
diff --git a/content/news/2013/02/26/wicket-1-5-10-released.html b/content/news/2013/02/26/wicket-1-5-10-released.html
new file mode 100644
index 0000000..f826524
--- /dev/null
+++ b/content/news/2013/02/26/wicket-1-5-10-released.html
@@ -0,0 +1,83 @@
+<!DOCTYPE html>
+<html>
+    <head>
+        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+        <meta charset="utf-8">
+        <title>Wicket 1.5.10 released | Apache Wicket</title>
+        <meta name="viewport" content="width=device-width, initial-scale=1" />
+
+        <link rel="shortcut icon" href="/favicon.ico" type="image/vnd.microsoft.icon" />
+        <link rel="stylesheet" href="/css/style.css" type="text/css" media="screen" />
+        <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet" />
+
+		<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
+
+    </head>
+
+    <body class="">
+        <div class="header default">
+    <div class="l-container">
+<nav class="mainmenu">
+    <ul>
+		<!-- /start/quickstart.html || /news/2013/02/26/wicket-1-5-10-released.html -->
+    	<li class=""><a href="/start/quickstart.html">Quick Start</a></li>
+		<!-- /start/download.html || /news/2013/02/26/wicket-1-5-10-released.html -->
+    	<li class=""><a href="/start/download.html">Download</a></li>
+		<!-- /learn || /news/2013/02/26/wicket-1-5-10-released.html -->
+    	<li class=""><a href="/learn">Documentation</a></li>
+		<!-- /help || /news/2013/02/26/wicket-1-5-10-released.html -->
+    	<li class=""><a href="/help">Support</a></li>
+		<!-- /contribute || /news/2013/02/26/wicket-1-5-10-released.html -->
+    	<li class=""><a href="/contribute">Contribute</a></li>
+		<!-- /community || /news/2013/02/26/wicket-1-5-10-released.html -->
+    	<li class=""><a href="/community">Community</a></li>
+		<!-- /apache || /news/2013/02/26/wicket-1-5-10-released.html -->
+    	<li class=""><a href="/apache">Apache</a></li>
+    </ul>
+</nav>
+        <div class="logo">
+    <a href="/"><img src="/img/logo-apachewicket-white.svg" alt="Apache Wicket"></a>
+</div>
+    </div>
+</div>
+<main>
+    <div class="l-container">
+        <header class="l-full preamble">
+            <h1>Wicket 1.5.10 released</h1>
+        </header>
+        <section class="l-one-third right">
+        </section>
+        <section class="l-two-third left">
+            <div class="l-full">
+    <p class="meta">26 Feb 2013</p>
+    <p>This is the tenth maintenance release of the Wicket 1.5.x series. This release brings over 28 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.10">Git tag</a></li>
+  <li><a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;version=12323510">Changelog</a></li>
+  <li>To use in Maven:</li>
+</ul>
+<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>1.5.10<span class="nt">&lt;/version&gt;</span>
+<span class="nt">&lt;/dependency&gt;</span></code></pre></figure>
+<ul>
+  <li>Download the <a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.10">full distribution</a> (including source)</li>
+</ul>
+</div>
+        </section>
+    </div>
+</main>
+        <footer class="l-container">
+            <div class="l-full">
+    <img height="60px" src="/img/asf_logo.gif" style="float:left">
+    Copyright © 2015 — The Apache Software Foundation. Apache Wicket,
+    Wicket, Apache, the Apache feather logo, and the Apache Wicket
+    project logo are trademarks of The Apache Software Foundation. All
+    other marks mentioned may be trademarks or registered trademarks of
+    their respective owners.
+</div>
+        </footer>
+    </body>
+
+</html>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2118a439/content/news/2013/02/26/wicket-1.5.10-released.html
----------------------------------------------------------------------
diff --git a/content/news/2013/02/26/wicket-1.5.10-released.html b/content/news/2013/02/26/wicket-1.5.10-released.html
deleted file mode 100644
index d2eb657..0000000
--- a/content/news/2013/02/26/wicket-1.5.10-released.html
+++ /dev/null
@@ -1,83 +0,0 @@
-<!DOCTYPE html>
-<html>
-    <head>
-        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
-        <meta charset="utf-8">
-        <title>Wicket 1.5.10 released | Apache Wicket</title>
-        <meta name="viewport" content="width=device-width, initial-scale=1" />
-
-        <link rel="shortcut icon" href="/favicon.ico" type="image/vnd.microsoft.icon" />
-        <link rel="stylesheet" href="/css/style.css" type="text/css" media="screen" />
-        <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet" />
-
-		<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
-
-    </head>
-
-    <body class="">
-        <div class="header default">
-    <div class="l-container">
-<nav class="mainmenu">
-    <ul>
-		<!-- /start/quickstart.html || /news/2013/02/26/wicket-1.5.10-released.html -->
-    	<li class=""><a href="/start/quickstart.html">Quick Start</a></li>
-		<!-- /start/download.html || /news/2013/02/26/wicket-1.5.10-released.html -->
-    	<li class=""><a href="/start/download.html">Download</a></li>
-		<!-- /learn || /news/2013/02/26/wicket-1.5.10-released.html -->
-    	<li class=""><a href="/learn">Documentation</a></li>
-		<!-- /help || /news/2013/02/26/wicket-1.5.10-released.html -->
-    	<li class=""><a href="/help">Support</a></li>
-		<!-- /contribute || /news/2013/02/26/wicket-1.5.10-released.html -->
-    	<li class=""><a href="/contribute">Contribute</a></li>
-		<!-- /community || /news/2013/02/26/wicket-1.5.10-released.html -->
-    	<li class=""><a href="/community">Community</a></li>
-		<!-- /apache || /news/2013/02/26/wicket-1.5.10-released.html -->
-    	<li class=""><a href="/apache">Apache</a></li>
-    </ul>
-</nav>
-        <div class="logo">
-    <a href="/"><img src="/img/logo-apachewicket-white.svg" alt="Apache Wicket"></a>
-</div>
-    </div>
-</div>
-<main>
-    <div class="l-container">
-        <header class="l-full preamble">
-            <h1>Wicket 1.5.10 released</h1>
-        </header>
-        <section class="l-one-third right">
-        </section>
-        <section class="l-two-third left">
-            <div class="l-full">
-    <p class="meta">26 Feb 2013</p>
-    <p>This is the tenth maintenance release of the Wicket 1.5.x series. This release brings over 28 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.10">Git tag</a></li>
-  <li><a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;version=12323510">Changelog</a></li>
-  <li>To use in Maven:</li>
-</ul>
-<div class="highlight"><pre><code class="language-xml" data-lang="xml"><span class="nt">&lt;dependency&gt;</span>
-    <span class="nt">&lt;groupId&gt;</span>org.apache.wicket<span class="nt">&lt;/groupId&gt;</span>
-    <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.10<span class="nt">&lt;/version&gt;</span>
-<span class="nt">&lt;/dependency&gt;</span></code></pre></div>
-<ul>
-  <li>Download the <a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.10">full distribution</a> (including source)</li>
-</ul>
-</div>
-        </section>
-    </div>
-</main>
-        <footer class="l-container">
-            <div class="l-full">
-    <img height="60px" src="/img/asf_logo.gif" style="float:left">
-    Copyright © 2015 — The Apache Software Foundation. Apache Wicket,
-    Wicket, Apache, the Apache feather logo, and the Apache Wicket
-    project logo are trademarks of The Apache Software Foundation. All
-    other marks mentioned may be trademarks or registered trademarks of
-    their respective owners.
-</div>
-        </footer>
-    </body>
-
-</html>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2118a439/content/news/2013/02/index.html
----------------------------------------------------------------------
diff --git a/content/news/2013/02/index.html b/content/news/2013/02/index.html
index 1d03d4f..2604d70 100644
--- a/content/news/2013/02/index.html
+++ b/content/news/2013/02/index.html
@@ -52,7 +52,7 @@
 	<p>The Apache Wicket PMC is proud to announce Apache Wicket 6.6.0!</p>
 <p>This release marks the sixth minor release of Wicket 6. Starting
 with Wicket 6 we u...</p>
-	<a href="/news/2013/02/15/wicket-6.6.0-released.html">more</a></li>
+	<a href="/news/2013/02/15/wicket-6-6-0-released.html">more</a></li>
 </div>
 <div class="news">
 	<h3>Wicket 1.5.10 released</h3>
@@ -63,15 +63,16 @@ with Wicket 6 we u...</p>
   <li><a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;version=12323510">Changelog</a></li>
   <li>To use in Maven:</li>
 </ul>
-<div class="highlight"><pre><code class="language-xml" data-lang="xml"><span class="nt">&lt;dependency&gt;</span>
-    <span class="nt">&lt;groupId&gt;</span>org.apache.w...</code></pre></div>
-	<a href="/news/2013/02/26/wicket-1.5.10-released.html">more</a></li>
+<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.w...</code></pre></figure>
+	<a href="/news/2013/02/26/wicket-1-5-10-released.html">more</a></li>
 </div>
         </div>
         <div class="l-one-third">
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</a></li>
+            <li><a href="/news/2015/11">November</a></li>
             <li><a href="/news/2015/10">October</a></li>
             <li><a href="/news/2015/07">July</a></li>
             <li><a href="/news/2015/06">June</a></li>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2118a439/content/news/2013/03/index.html
----------------------------------------------------------------------
diff --git a/content/news/2013/03/index.html b/content/news/2013/03/index.html
index e64e252..dde76e4 100644
--- a/content/news/2013/03/index.html
+++ b/content/news/2013/03/index.html
@@ -64,6 +64,7 @@ This mig...</p>
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</a></li>
+            <li><a href="/news/2015/11">November</a></li>
             <li><a href="/news/2015/10">October</a></li>
             <li><a href="/news/2015/07">July</a></li>
             <li><a href="/news/2015/06">June</a></li>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2118a439/content/news/2013/04/12/wicket-6-7-0-released.html
----------------------------------------------------------------------
diff --git a/content/news/2013/04/12/wicket-6-7-0-released.html b/content/news/2013/04/12/wicket-6-7-0-released.html
new file mode 100644
index 0000000..226a1f6
--- /dev/null
+++ b/content/news/2013/04/12/wicket-6-7-0-released.html
@@ -0,0 +1,204 @@
+<!DOCTYPE html>
+<html>
+    <head>
+        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+        <meta charset="utf-8">
+        <title>Apache Wicket 6.7.0 released | Apache Wicket</title>
+        <meta name="viewport" content="width=device-width, initial-scale=1" />
+
+        <link rel="shortcut icon" href="/favicon.ico" type="image/vnd.microsoft.icon" />
+        <link rel="stylesheet" href="/css/style.css" type="text/css" media="screen" />
+        <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet" />
+
+		<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
+
+    </head>
+
+    <body class="">
+        <div class="header default">
+    <div class="l-container">
+<nav class="mainmenu">
+    <ul>
+		<!-- /start/quickstart.html || /news/2013/04/12/wicket-6-7-0-released.html -->
+    	<li class=""><a href="/start/quickstart.html">Quick Start</a></li>
+		<!-- /start/download.html || /news/2013/04/12/wicket-6-7-0-released.html -->
+    	<li class=""><a href="/start/download.html">Download</a></li>
+		<!-- /learn || /news/2013/04/12/wicket-6-7-0-released.html -->
+    	<li class=""><a href="/learn">Documentation</a></li>
+		<!-- /help || /news/2013/04/12/wicket-6-7-0-released.html -->
+    	<li class=""><a href="/help">Support</a></li>
+		<!-- /contribute || /news/2013/04/12/wicket-6-7-0-released.html -->
+    	<li class=""><a href="/contribute">Contribute</a></li>
+		<!-- /community || /news/2013/04/12/wicket-6-7-0-released.html -->
+    	<li class=""><a href="/community">Community</a></li>
+		<!-- /apache || /news/2013/04/12/wicket-6-7-0-released.html -->
+    	<li class=""><a href="/apache">Apache</a></li>
+    </ul>
+</nav>
+        <div class="logo">
+    <a href="/"><img src="/img/logo-apachewicket-white.svg" alt="Apache Wicket"></a>
+</div>
+    </div>
+</div>
+<main>
+    <div class="l-container">
+        <header class="l-full preamble">
+            <h1>Apache Wicket 6.7.0 released</h1>
+        </header>
+        <section class="l-one-third right">
+        </section>
+        <section class="l-two-third left">
+            <div class="l-full">
+    <p class="meta">12 Apr 2013</p>
+    <p>The Apache Wicket PMC is proud to announce Apache Wicket 6.7.0!</p>
+<p>This release marks the seventh minor release of Wicket 6. Starting
+with Wicket 6 we use semantic versioning for the future development
+of Wicket, and as such no API breaks are present in this release
+compared to 6.0.0.</p>
+<h3 id="new-and-noteworthy">New and noteworthy</h3>
+<h4 id="webfonts-are-now-supported">webfonts are now supported</h4>
+<p>Our resource guard that prevents access to classpath resources that
+are not intended to be shared through the web server is a whitelist
+of permissable resource extensions. Typically images, JavaScript
+files, stylesheets are on the whitelist, but the file types for
+webfonts were blocked. From Wicket 6.7 and onward you can now embed
+webfonts with your components and link to them from your stylesheets.</p>
+<h4 id="render-a-page-or-component-to-a-string">Render a page or component to a String</h4>
+<p>One of the issues that keeps propping up on the user lists is the
+ability to render a page or component to a String so that you can use
+Wicket to render HTML email messages. Now you can use
+<a href="http://ci.apache.org/projects/wicket/apidocs/6.x/org/apache/wicket/core/util/string/ComponentRenderer.html">ComponentRenderer</a> to
+actually do so without having to resort to other less obvious methods.</p>
+<p>ComponentRenderer exposes two methods: <code>renderComponent</code> and
+<code>renderPage</code> and they do exactly what their names suggest. Happy
+emailing!</p>
+<h3 id="using-this-release">Using this release</h3>
+<p>With Apache Maven update your dependency to (and don’t forget to
+update any other dependencies on Wicket projects to the same version):</p>
+<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>6.7.0<span class="nt">&lt;/version&gt;</span>
+<span class="nt">&lt;/dependency&gt;</span></code></pre></figure>
+<p>Or download and build the distribution yourself, or use our
+convenience binary package</p>
+<ul>
+  <li>Source: <a href="http://www.apache.org/dyn/closer.cgi/wicket/6.7.0">http://www.apache.org/dyn/closer.cgi/wicket/6.7.0</a></li>
+  <li>Binary: <a href="http://www.apache.org/dyn/closer.cgi/wicket/6.7.0/binaries">http://www.apache.org/dyn/closer.cgi/wicket/6.7.0/binaries</a></li>
+</ul>
+<h3 id="upgrading-from-earlier-versions">Upgrading from earlier versions</h3>
+<p>If you upgrade from 6.y.z this release is a drop in replacement. If
+you come from a version prior to 6.0.0, please read our Wicket 6
+migration guide found at</p>
+<ul>
+  <li><a href="http://s.apache.org/wicket-6.0-migration">http://s.apache.org/wicket-6.0-migration</a></li>
+</ul>
+<p>Have fun!</p>
+<p>— The Wicket team</p>
+<h3 id="release-notes---wicket---version-670">Release Notes - Wicket - Version 6.7.0</h3>
+<h4 id="bug">Bug</h4>
+<ul>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-4658">WICKET-4658</a> - TabbedPanel CSS “last” is wrong if last step is not visible</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-4803">WICKET-4803</a> - UrlDecoder should log a message when invalid input is provided</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-4871">WICKET-4871</a> - wicket-atmosphere version mismatch with wicket-example-jar</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-4893">WICKET-4893</a> - AutoCompleteTextField removes DropDownChoice from Page</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-4903">WICKET-4903</a> - relativeUrl’s begins with ./</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-4907">WICKET-4907</a> - UrlResourceReference generates broken relative URLs</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-4942">WICKET-4942</a> - Double slash ‘//’ in starting url makes Url.parse output a relative Url</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-4989">WICKET-4989</a> - WicketTester should send copies of its cookies</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-4995">WICKET-4995</a> - Using CryptoMapper causes page to render twice</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5039">WICKET-5039</a> - Manual invocation of FunctionsExecutor#notify() is broken</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5041">WICKET-5041</a> - DefaultCssAutoCompleteTextField should have Constructor (String id)</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5044">WICKET-5044</a> - Atmosphere + DateLabel</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5045">WICKET-5045</a> - Upgrade Atmosphere to 1.0.10</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5047">WICKET-5047</a> - Wicket Ajax: Inline script header contribution issue</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5048">WICKET-5048</a> - Inline enclosures don’t work with different namespace</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5049">WICKET-5049</a> - Wicket Session may be null in SessionBindingListener after deserialization</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5052">WICKET-5052</a> - @SpringBean fails to invoke methods on bean with non-public methods</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5053">WICKET-5053</a> - “random” parameters is now “_” with jQuery Ajax</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5054">WICKET-5054</a> - Possible bug in org.apache.wicket.util.lang.Packages when building path with repeating names</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5055">WICKET-5055</a> - AutoComplete still triggers redundant events to registered change listener</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5061">WICKET-5061</a> - EnclosureHandler ignores wicket:xyz elements as children</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5067">WICKET-5067</a> - SelectOptions fails to render text on openClose tag</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5072">WICKET-5072</a> - Cookies#isEqual(Cookie, Cookie) may fail with NullPointerException</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5073">WICKET-5073</a> - UrlRenderer#removeCommonPrefixes() fails when contextPath+filterPrefix has more segments than the argument</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5075">WICKET-5075</a> - When modal window is closed page scrolls to top</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5076">WICKET-5076</a> - form#onSubmit() is called on just replaced nested forms</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5078">WICKET-5078</a> - RestartResponseException broken with page instance and bookmarkable page</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5080">WICKET-5080</a> - FilterToolbar.html contains javascript that is used elsewhere</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5082">WICKET-5082</a> - Ajax update renders parent/child JS in different order than initial Page render</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5085">WICKET-5085</a> - InlineEnclosure are piling up on each render</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5086">WICKET-5086</a> - FormTester throws an exception when a Palette component is added to a Form associated with a compound property model</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5093">WICKET-5093</a> - The event listener in Wicket.Ajax.ajax() should not return the value of attrs.ad (allowDefault)</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5094">WICKET-5094</a> - ISecuritySettings#getEnforceMounts(true) prevents access to <em>all</em> non-mounted bookmarkable pages</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5098">WICKET-5098</a> - PackageResourceBlockedException under Windows for *.js files in web app’s own packages, not in jars</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5102">WICKET-5102</a> - wicket-bean-validation: Bean validation PropertyValidator only works with direct field access</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5103">WICKET-5103</a> - Wicket session id not up to date when container changes session id</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5104">WICKET-5104</a> - AjaxSelfUpdatingTimerBehavior in hidden component in ModalWindow causes Ajax Response Error</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5112">WICKET-5112</a> - Parantheses problem with UrlValidator</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5114">WICKET-5114</a> - Url#toString(StringMode.FULL) throws exception if a segment contains two dots</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5116">WICKET-5116</a> - TabbedPanel.setSelectedTab() does not behave as specified in JavaDoc</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5117">WICKET-5117</a> - Wicket ignores allowDefault:false attribute in multipart ajax requests</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5123">WICKET-5123</a> - Component.continueToOriginalDestination() can redirect to ./.</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5125">WICKET-5125</a> - IE8 error in wicket-date.js when used in a modalwindow</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5126">WICKET-5126</a> - SecurePackageResourceGuard is blocking access to web fonts</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5131">WICKET-5131</a> - Problems with cookies disabled when using 301/302 and also 303 (even with cookies)</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5132">WICKET-5132</a> - Evaluation of returned data (which includes alot of javascript) very slow after ajax call in IE10.</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5134">WICKET-5134</a> - java.lang.NullPointerException at org.apache.wicket.markup.html.form.Form.onComponentTag(Form.java:1520) during Atmosphere eventbus.post() if using WebSockets</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5136">WICKET-5136</a> - CheckingObjectOutputStream#check(Object) swallows Exception without logging the cause</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5138">WICKET-5138</a> - Wicket does not correctly handle http OPTIONS requests</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5141">WICKET-5141</a> - Exception while rendering absolute URL with UrlResourceReference</li>
+</ul>
+<h4 id="improvement">Improvement</h4>
+<ul>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-4115">WICKET-4115</a> - SignInPanel should not always redirect to the Home page when the user is signed-in automaticaly with the remember-me feature.</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5005">WICKET-5005</a> - Add Utility to allow conversion from Panel (or Component) to html String</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5038">WICKET-5038</a> - Add equals() and hashcode() implementation to INamedParameters.NamedPair</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5046">WICKET-5046</a> - NumberTextField should use appropriate validator</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5050">WICKET-5050</a> - AutoComplete should not request suggestions if input is no longer active element</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5057">WICKET-5057</a> - FilteringHeaderResponse requires a usage of FilteringHeaderResponse.IHeaderResponseFilter for no reason when FilteredHeaderItem is used</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5062">WICKET-5062</a> - Update the list of HTML void elements with the latest HTML5 ones</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5065">WICKET-5065</a> - Improve UrlRenderer to be able to render urls without scheme and/or host</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5066">WICKET-5066</a> - Allow PackageResource to decide itself whether it could be accepted or not</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5074">WICKET-5074</a> - Improvement for MockHttpServletRequest and FormTester to support ‘multiple’ input type of fileUpload</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5079">WICKET-5079</a> - Allow WebApplication-specific Spring configuration</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5088">WICKET-5088</a> - The Bootstrap class does not provide a handle for the CSSResourceReferences.</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5089">WICKET-5089</a> - Make MultiFileUploadField’s ResourceReference JS public to be able to include in Application’s getResourceBundles.</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5090">WICKET-5090</a> - Add path syntax to MarkupContainer#get( String )</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5091">WICKET-5091</a> - Extract the short names of the ajax attributes as a constants</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5095">WICKET-5095</a> - Upgrade Wicket Native WebSocket to Jetty 9.0.0</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5096">WICKET-5096</a> - Add setStep method to NumberTextField</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5105">WICKET-5105</a> - JavaDoc of IHeaderContributor is outdated</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5111">WICKET-5111</a> - Upgrade bootstrap to 2.3.1</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5113">WICKET-5113</a> - Set a different TimeZone for the RequestLogger</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5121">WICKET-5121</a> - Log warning message if a component that is not on the page associated with the AjaxRequestTarget is added</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5122">WICKET-5122</a> - Add the free Wicket guide in the books page on the official site.</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5127">WICKET-5127</a> - Dont use sun-internal packages to allow easy jdk7 compilation</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5137">WICKET-5137</a> - Improve TagTester support for Ajax responses</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5139">WICKET-5139</a> - Missing French translations</li>
+</ul>
+<h4 id="task">Task</h4>
+<ul>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5097">WICKET-5097</a> - Deprecate BaseWicketTester#startComponent(Component)</li>
+</ul>
+<h4 id="test">Test</h4>
+<ul>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-5042">WICKET-5042</a> - Cleanup FilteringHeaderResponseTest to make it more readable</li>
+</ul>
+</div>
+        </section>
+    </div>
+</main>
+        <footer class="l-container">
+            <div class="l-full">
+    <img height="60px" src="/img/asf_logo.gif" style="float:left">
+    Copyright © 2015 — The Apache Software Foundation. Apache Wicket,
+    Wicket, Apache, the Apache feather logo, and the Apache Wicket
+    project logo are trademarks of The Apache Software Foundation. All
+    other marks mentioned may be trademarks or registered trademarks of
+    their respective owners.
+</div>
+        </footer>
+    </body>
+
+</html>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2118a439/content/news/2013/04/12/wicket-6.7.0-released.html
----------------------------------------------------------------------
diff --git a/content/news/2013/04/12/wicket-6.7.0-released.html b/content/news/2013/04/12/wicket-6.7.0-released.html
deleted file mode 100644
index a03d82d..0000000
--- a/content/news/2013/04/12/wicket-6.7.0-released.html
+++ /dev/null
@@ -1,204 +0,0 @@
-<!DOCTYPE html>
-<html>
-    <head>
-        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
-        <meta charset="utf-8">
-        <title>Apache Wicket 6.7.0 released | Apache Wicket</title>
-        <meta name="viewport" content="width=device-width, initial-scale=1" />
-
-        <link rel="shortcut icon" href="/favicon.ico" type="image/vnd.microsoft.icon" />
-        <link rel="stylesheet" href="/css/style.css" type="text/css" media="screen" />
-        <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet" />
-
-		<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
-
-    </head>
-
-    <body class="">
-        <div class="header default">
-    <div class="l-container">
-<nav class="mainmenu">
-    <ul>
-		<!-- /start/quickstart.html || /news/2013/04/12/wicket-6.7.0-released.html -->
-    	<li class=""><a href="/start/quickstart.html">Quick Start</a></li>
-		<!-- /start/download.html || /news/2013/04/12/wicket-6.7.0-released.html -->
-    	<li class=""><a href="/start/download.html">Download</a></li>
-		<!-- /learn || /news/2013/04/12/wicket-6.7.0-released.html -->
-    	<li class=""><a href="/learn">Documentation</a></li>
-		<!-- /help || /news/2013/04/12/wicket-6.7.0-released.html -->
-    	<li class=""><a href="/help">Support</a></li>
-		<!-- /contribute || /news/2013/04/12/wicket-6.7.0-released.html -->
-    	<li class=""><a href="/contribute">Contribute</a></li>
-		<!-- /community || /news/2013/04/12/wicket-6.7.0-released.html -->
-    	<li class=""><a href="/community">Community</a></li>
-		<!-- /apache || /news/2013/04/12/wicket-6.7.0-released.html -->
-    	<li class=""><a href="/apache">Apache</a></li>
-    </ul>
-</nav>
-        <div class="logo">
-    <a href="/"><img src="/img/logo-apachewicket-white.svg" alt="Apache Wicket"></a>
-</div>
-    </div>
-</div>
-<main>
-    <div class="l-container">
-        <header class="l-full preamble">
-            <h1>Apache Wicket 6.7.0 released</h1>
-        </header>
-        <section class="l-one-third right">
-        </section>
-        <section class="l-two-third left">
-            <div class="l-full">
-    <p class="meta">12 Apr 2013</p>
-    <p>The Apache Wicket PMC is proud to announce Apache Wicket 6.7.0!</p>
-<p>This release marks the seventh minor release of Wicket 6. Starting
-with Wicket 6 we use semantic versioning for the future development
-of Wicket, and as such no API breaks are present in this release
-compared to 6.0.0.</p>
-<h3 id="new-and-noteworthy">New and noteworthy</h3>
-<h4 id="webfonts-are-now-supported">webfonts are now supported</h4>
-<p>Our resource guard that prevents access to classpath resources that
-are not intended to be shared through the web server is a whitelist
-of permissable resource extensions. Typically images, JavaScript
-files, stylesheets are on the whitelist, but the file types for
-webfonts were blocked. From Wicket 6.7 and onward you can now embed
-webfonts with your components and link to them from your stylesheets.</p>
-<h4 id="render-a-page-or-component-to-a-string">Render a page or component to a String</h4>
-<p>One of the issues that keeps propping up on the user lists is the
-ability to render a page or component to a String so that you can use
-Wicket to render HTML email messages. Now you can use
-<a href="http://ci.apache.org/projects/wicket/apidocs/6.x/org/apache/wicket/core/util/string/ComponentRenderer.html">ComponentRenderer</a> to
-actually do so without having to resort to other less obvious methods.</p>
-<p>ComponentRenderer exposes two methods: <code>renderComponent</code> and
-<code>renderPage</code> and they do exactly what their names suggest. Happy
-emailing!</p>
-<h3 id="using-this-release">Using this release</h3>
-<p>With Apache Maven update your dependency to (and don’t forget to
-update any other dependencies on Wicket projects to the same version):</p>
-<div class="highlight"><pre><code class="language-xml" data-lang="xml"><span class="nt">&lt;dependency&gt;</span>
-    <span class="nt">&lt;groupId&gt;</span>org.apache.wicket<span class="nt">&lt;/groupId&gt;</span>
-    <span class="nt">&lt;artifactId&gt;</span>wicket-core<span class="nt">&lt;/artifactId&gt;</span>
-    <span class="nt">&lt;version&gt;</span>6.7.0<span class="nt">&lt;/version&gt;</span>
-<span class="nt">&lt;/dependency&gt;</span></code></pre></div>
-<p>Or download and build the distribution yourself, or use our
-convenience binary package</p>
-<ul>
-  <li>Source: <a href="http://www.apache.org/dyn/closer.cgi/wicket/6.7.0">http://www.apache.org/dyn/closer.cgi/wicket/6.7.0</a></li>
-  <li>Binary: <a href="http://www.apache.org/dyn/closer.cgi/wicket/6.7.0/binaries">http://www.apache.org/dyn/closer.cgi/wicket/6.7.0/binaries</a></li>
-</ul>
-<h3 id="upgrading-from-earlier-versions">Upgrading from earlier versions</h3>
-<p>If you upgrade from 6.y.z this release is a drop in replacement. If
-you come from a version prior to 6.0.0, please read our Wicket 6
-migration guide found at</p>
-<ul>
-  <li><a href="http://s.apache.org/wicket-6.0-migration">http://s.apache.org/wicket-6.0-migration</a></li>
-</ul>
-<p>Have fun!</p>
-<p>— The Wicket team</p>
-<h3 id="release-notes---wicket---version-670">Release Notes - Wicket - Version 6.7.0</h3>
-<h4 id="bug">Bug</h4>
-<ul>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-4658">WICKET-4658</a> - TabbedPanel CSS “last” is wrong if last step is not visible</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-4803">WICKET-4803</a> - UrlDecoder should log a message when invalid input is provided</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-4871">WICKET-4871</a> - wicket-atmosphere version mismatch with wicket-example-jar</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-4893">WICKET-4893</a> - AutoCompleteTextField removes DropDownChoice from Page</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-4903">WICKET-4903</a> - relativeUrl’s begins with ./</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-4907">WICKET-4907</a> - UrlResourceReference generates broken relative URLs</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-4942">WICKET-4942</a> - Double slash ‘//’ in starting url makes Url.parse output a relative Url</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-4989">WICKET-4989</a> - WicketTester should send copies of its cookies</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-4995">WICKET-4995</a> - Using CryptoMapper causes page to render twice</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5039">WICKET-5039</a> - Manual invocation of FunctionsExecutor#notify() is broken</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5041">WICKET-5041</a> - DefaultCssAutoCompleteTextField should have Constructor (String id)</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5044">WICKET-5044</a> - Atmosphere + DateLabel</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5045">WICKET-5045</a> - Upgrade Atmosphere to 1.0.10</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5047">WICKET-5047</a> - Wicket Ajax: Inline script header contribution issue</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5048">WICKET-5048</a> - Inline enclosures don’t work with different namespace</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5049">WICKET-5049</a> - Wicket Session may be null in SessionBindingListener after deserialization</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5052">WICKET-5052</a> - @SpringBean fails to invoke methods on bean with non-public methods</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5053">WICKET-5053</a> - “random” parameters is now “_” with jQuery Ajax</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5054">WICKET-5054</a> - Possible bug in org.apache.wicket.util.lang.Packages when building path with repeating names</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5055">WICKET-5055</a> - AutoComplete still triggers redundant events to registered change listener</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5061">WICKET-5061</a> - EnclosureHandler ignores wicket:xyz elements as children</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5067">WICKET-5067</a> - SelectOptions fails to render text on openClose tag</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5072">WICKET-5072</a> - Cookies#isEqual(Cookie, Cookie) may fail with NullPointerException</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5073">WICKET-5073</a> - UrlRenderer#removeCommonPrefixes() fails when contextPath+filterPrefix has more segments than the argument</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5075">WICKET-5075</a> - When modal window is closed page scrolls to top</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5076">WICKET-5076</a> - form#onSubmit() is called on just replaced nested forms</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5078">WICKET-5078</a> - RestartResponseException broken with page instance and bookmarkable page</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5080">WICKET-5080</a> - FilterToolbar.html contains javascript that is used elsewhere</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5082">WICKET-5082</a> - Ajax update renders parent/child JS in different order than initial Page render</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5085">WICKET-5085</a> - InlineEnclosure are piling up on each render</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5086">WICKET-5086</a> - FormTester throws an exception when a Palette component is added to a Form associated with a compound property model</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5093">WICKET-5093</a> - The event listener in Wicket.Ajax.ajax() should not return the value of attrs.ad (allowDefault)</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5094">WICKET-5094</a> - ISecuritySettings#getEnforceMounts(true) prevents access to <em>all</em> non-mounted bookmarkable pages</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5098">WICKET-5098</a> - PackageResourceBlockedException under Windows for *.js files in web app’s own packages, not in jars</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5102">WICKET-5102</a> - wicket-bean-validation: Bean validation PropertyValidator only works with direct field access</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5103">WICKET-5103</a> - Wicket session id not up to date when container changes session id</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5104">WICKET-5104</a> - AjaxSelfUpdatingTimerBehavior in hidden component in ModalWindow causes Ajax Response Error</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5112">WICKET-5112</a> - Parantheses problem with UrlValidator</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5114">WICKET-5114</a> - Url#toString(StringMode.FULL) throws exception if a segment contains two dots</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5116">WICKET-5116</a> - TabbedPanel.setSelectedTab() does not behave as specified in JavaDoc</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5117">WICKET-5117</a> - Wicket ignores allowDefault:false attribute in multipart ajax requests</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5123">WICKET-5123</a> - Component.continueToOriginalDestination() can redirect to ./.</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5125">WICKET-5125</a> - IE8 error in wicket-date.js when used in a modalwindow</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5126">WICKET-5126</a> - SecurePackageResourceGuard is blocking access to web fonts</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5131">WICKET-5131</a> - Problems with cookies disabled when using 301/302 and also 303 (even with cookies)</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5132">WICKET-5132</a> - Evaluation of returned data (which includes alot of javascript) very slow after ajax call in IE10.</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5134">WICKET-5134</a> - java.lang.NullPointerException at org.apache.wicket.markup.html.form.Form.onComponentTag(Form.java:1520) during Atmosphere eventbus.post() if using WebSockets</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5136">WICKET-5136</a> - CheckingObjectOutputStream#check(Object) swallows Exception without logging the cause</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5138">WICKET-5138</a> - Wicket does not correctly handle http OPTIONS requests</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5141">WICKET-5141</a> - Exception while rendering absolute URL with UrlResourceReference</li>
-</ul>
-<h4 id="improvement">Improvement</h4>
-<ul>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-4115">WICKET-4115</a> - SignInPanel should not always redirect to the Home page when the user is signed-in automaticaly with the remember-me feature.</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5005">WICKET-5005</a> - Add Utility to allow conversion from Panel (or Component) to html String</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5038">WICKET-5038</a> - Add equals() and hashcode() implementation to INamedParameters.NamedPair</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5046">WICKET-5046</a> - NumberTextField should use appropriate validator</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5050">WICKET-5050</a> - AutoComplete should not request suggestions if input is no longer active element</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5057">WICKET-5057</a> - FilteringHeaderResponse requires a usage of FilteringHeaderResponse.IHeaderResponseFilter for no reason when FilteredHeaderItem is used</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5062">WICKET-5062</a> - Update the list of HTML void elements with the latest HTML5 ones</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5065">WICKET-5065</a> - Improve UrlRenderer to be able to render urls without scheme and/or host</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5066">WICKET-5066</a> - Allow PackageResource to decide itself whether it could be accepted or not</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5074">WICKET-5074</a> - Improvement for MockHttpServletRequest and FormTester to support ‘multiple’ input type of fileUpload</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5079">WICKET-5079</a> - Allow WebApplication-specific Spring configuration</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5088">WICKET-5088</a> - The Bootstrap class does not provide a handle for the CSSResourceReferences.</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5089">WICKET-5089</a> - Make MultiFileUploadField’s ResourceReference JS public to be able to include in Application’s getResourceBundles.</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5090">WICKET-5090</a> - Add path syntax to MarkupContainer#get( String )</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5091">WICKET-5091</a> - Extract the short names of the ajax attributes as a constants</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5095">WICKET-5095</a> - Upgrade Wicket Native WebSocket to Jetty 9.0.0</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5096">WICKET-5096</a> - Add setStep method to NumberTextField</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5105">WICKET-5105</a> - JavaDoc of IHeaderContributor is outdated</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5111">WICKET-5111</a> - Upgrade bootstrap to 2.3.1</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5113">WICKET-5113</a> - Set a different TimeZone for the RequestLogger</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5121">WICKET-5121</a> - Log warning message if a component that is not on the page associated with the AjaxRequestTarget is added</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5122">WICKET-5122</a> - Add the free Wicket guide in the books page on the official site.</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5127">WICKET-5127</a> - Dont use sun-internal packages to allow easy jdk7 compilation</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5137">WICKET-5137</a> - Improve TagTester support for Ajax responses</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5139">WICKET-5139</a> - Missing French translations</li>
-</ul>
-<h4 id="task">Task</h4>
-<ul>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5097">WICKET-5097</a> - Deprecate BaseWicketTester#startComponent(Component)</li>
-</ul>
-<h4 id="test">Test</h4>
-<ul>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-5042">WICKET-5042</a> - Cleanup FilteringHeaderResponseTest to make it more readable</li>
-</ul>
-</div>
-        </section>
-    </div>
-</main>
-        <footer class="l-container">
-            <div class="l-full">
-    <img height="60px" src="/img/asf_logo.gif" style="float:left">
-    Copyright © 2015 — The Apache Software Foundation. Apache Wicket,
-    Wicket, Apache, the Apache feather logo, and the Apache Wicket
-    project logo are trademarks of The Apache Software Foundation. All
-    other marks mentioned may be trademarks or registered trademarks of
-    their respective owners.
-</div>
-        </footer>
-    </body>
-
-</html>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2118a439/content/news/2013/04/index.html
----------------------------------------------------------------------
diff --git a/content/news/2013/04/index.html b/content/news/2013/04/index.html
index 6771227..73be05e 100644
--- a/content/news/2013/04/index.html
+++ b/content/news/2013/04/index.html
@@ -52,13 +52,14 @@
 	<p>The Apache Wicket PMC is proud to announce Apache Wicket 6.7.0!</p>
 <p>This release marks the seventh minor release of Wicket 6. Starting
 with Wicket 6 we u...</p>
-	<a href="/news/2013/04/12/wicket-6.7.0-released.html">more</a></li>
+	<a href="/news/2013/04/12/wicket-6-7-0-released.html">more</a></li>
 </div>
         </div>
         <div class="l-one-third">
             <h2>2015</h2>
             <ul>
             <li><a href="/news/2015">All of 2015</a></li>
+            <li><a href="/news/2015/11">November</a></li>
             <li><a href="/news/2015/10">October</a></li>
             <li><a href="/news/2015/07">July</a></li>
             <li><a href="/news/2015/06">June</a></li>