http://git-wip-us.apache.org/repos/asf/wicket-site/blob/d8f15469/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
new file mode 100644
index 0000000..0c4ed09
--- /dev/null
+++ b/content/news/2013/11/01/wicket-6.12.0-released.html
@@ -0,0 +1,181 @@
+<!DOCTYPE html>
+<html>
+    <head>
+        <meta charset="utf-8">
+        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+        <title>Apache Wicket 6.12.0 released | Apache Wicket</title>
+        <meta charset="utf8">
+        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+        <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/11/01/wicket-6.12.0-released.html -->
+       <li class=""><a href="/start/quickstart.html">Quick Start</a></li>
+               <!-- /start/download.html || 
/news/2013/11/01/wicket-6.12.0-released.html -->
+       <li class=""><a href="/start/download.html">Download</a></li>
+               <!-- /learn || /news/2013/11/01/wicket-6.12.0-released.html -->
+       <li class=""><a href="/learn">Documentation</a></li>
+               <!-- /help || /news/2013/11/01/wicket-6.12.0-released.html -->
+       <li class=""><a href="/help">Support</a></li>
+               <!-- /contribute || 
/news/2013/11/01/wicket-6.12.0-released.html -->
+       <li class=""><a href="/contribute">Contribute</a></li>
+               <!-- /apache || /news/2013/11/01/wicket-6.12.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.12.0 released</h1>
+        </header>
+        <section class="l-one-third right">
+        </section>
+        <section class="l-two-third left">
+            <div class="l-full">
+    <p class="meta">01 Nov 2013</p>
+    <p>The Apache Wicket PMC is proud to announce Apache Wicket 6.12.0!</p>
+<p>This release marks the twelfth 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>
+<p>This release fixes 16 bugs and adds the following improvements:</p>
+<ul>
+  <li>Support MultiFileUploadField in FormTester</li>
+  <li>Add support for parsing IE 11 user agent</li>
+  <li>Log the exception if the application cannot start properly</li>
+  <li>Add Wicket.Event.unsubscribe method</li>
+  <li>Allow form components to trim the input themselves</li>
+  <li>Allow DebugBar contributors to be removed</li>
+  <li>Session management doesn’t work with Jetty’s JDBCSessionManager </li>
+  <li>HeaderItem to be Serializable</li>
+</ul>
+<h3 id="jquery-update-in-690">JQuery update in 6.9.0</h3>
+<p>As of Wicket 6.9 we ship JQuery 1.10.1. The JQuery project has
+decided to remove deprecated APIs from their codebase from JQuery 1.9
+and up. This means that JQuery plugins using these deprecated APIs no
+longer work. See the JQuery migration guide for more information,
+available from http://jquery.com/upgrade-guide/1.9/</p>
+<p>If your application depends on these deprecated APIs you can easily
+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>
+<div 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="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></div>
+<h3 id="cdi-injection-issue">CDI injection issue</h3>
+<p>In the CDI releases of Weld 2.0.1 and prior, it was assumed that
+injection in anonymous inner classes was not legal and when
+attempted, it resulted in an exception:</p>
+<div class="highlight"><pre><code class="language-text" 
data-lang="text">Caused by: org.jboss.weld.exceptions.DefinitionException:
+WELD-000070 Simple bean [EnhancedAnnotatedTypeImpl] private class
+com.example.HomePage$AForm cannot be a non-static inner 
class</code></pre></div>
+<p>This was reported as
+<a href="https://issues.apache.org/jira/browse/WICKET-5226";>WICKET-5226</a>, as
+it became an issue in Glassfish 4, which ships with Weld 2.0.1 (or
+earlier). We implemented a fix for this particular issue by not
+injecting into anonymous inner classes.</p>
+<p>Unfortunately this was not a bug that needed fixing on our part, but
+rather in the Weld framework (see
+<a href="https://issues.jboss.org/browse/WELD-1441";>WELD-1441</a>)</p>
+<p>Therefore we reverted the commits done for WICKET-5226 and hope that
+Glassfish will upgrade their Weld implementation soon. For the whole
+story read
+<a href="https://issues.apache.org/jira/browse/WICKET-5264";>WICKET-5264</a></p>
+<p>Glassfish has fixed this in trunk according to
+<a href="https://java.net/jira/browse/GLASSFISH-20619";>GLASSFISH-20619</a> but
+the fix has yet to be integrated into a release.</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.12.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.12.0";>http://www.apache.org/dyn/closer.cgi/wicket/6.12.0</a></li>
+  <li>Binary: <a 
href="http://www.apache.org/dyn/closer.cgi/wicket/6.12.0/binaries";>http://www.apache.org/dyn/closer.cgi/wicket/6.12.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="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+6.0";>Migration
 to Wicket 6.0</a></li>
+</ul>
+<p>Have fun!</p>
+<p>— The Wicket team</p>
+<h3 id="release-notes---wicket---version-6120">Release Notes - Wicket - 
Version 6.12.0</h3>
+<h4 id="bug">Bug</h4>
+<ul>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-4862";>WICKET-4862</a> - 
AjaxPagingNavigationLink and AjaxPagingNavigationIncrementLink output inline 
onclick attributes in addition to Wicket.Ajax.ajax event registration</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5101";>WICKET-5101</a> - 
Could not open second modal window after closing first</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5356";>WICKET-5356</a> - 
AutoCompleteSettings.setShowListOnEmptyInput(true) is not working anymore</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5359";>WICKET-5359</a> - 
org.apache.wicket.util.string.StringValue#equals broken</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5366";>WICKET-5366</a> - 
ResourceAggregator looses information about priority/filtering/… when using a 
bundle</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5369";>WICKET-5369</a> - 
Can’t set a cookie using CookieUtils during an ajax request due to 
java.lang.ClassCastException: 
org.apache.wicket.ajax.AbstractAjaxResponse$AjaxResponse cannot be cast to 
org.apache.wicket.request.http.WebResponse</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5374";>WICKET-5374</a> - 
SourcesPage fails on resources with non-ASCII characters</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5375";>WICKET-5375</a> - 
Improve ConcatBundleResource error handling when a resource is missing</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5378";>WICKET-5378</a> - 
AutoCompleteTextField inside a ModalWindow shows auto complete dropdown in the 
wrong location</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5379";>WICKET-5379</a> - IE7: 
AutoCompleteTextField inside a ModalWindow shows auto complete dropdown behind 
ModalWindow</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5380";>WICKET-5380</a> - 
Wicket rebinds the SessionEntry session attribute and this causes problems in 
Glassfish</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5382";>WICKET-5382</a> - 
AutoComplete JavaScript errors</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5385";>WICKET-5385</a> - 
wicket-bean-validation PropertyValidator_fr.properties.xml : 
org.xml.sax.SAXParseException</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5386";>WICKET-5386</a> - 
ChainingModel should not check if the modelObject given as argument is null</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5397";>WICKET-5397</a> - 
target.prependJavaScript and JQuery-Animation in IE8</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5398";>WICKET-5398</a> - 
XmlPullParser fails to properly parse from String with encoding declaration</li>
+</ul>
+<h4 id="improvement">Improvement</h4>
+<ul>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5346";>WICKET-5346</a> - 
Support MultiFileUploadField in FormTester</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5362";>WICKET-5362</a> - Add 
support for parsing IE 11 user agent</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5376";>WICKET-5376</a> - Log 
the exception if the application cannot start properly</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5381";>WICKET-5381</a> - Add 
Wicket.Event.unsubscribe method</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5384";>WICKET-5384</a> - 
Allow form components to trim the input themselves</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5388";>WICKET-5388</a> - 
Allow DebugBar contributors to be removed</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5390";>WICKET-5390</a> - 
Session management doesn’t work with Jetty’s JDBCSessionManager </li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5395";>WICKET-5395</a> - 
HeaderItem to be Serializable</li>
+</ul>
+<h4 id="wish">Wish</h4>
+<ul>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5393";>WICKET-5393</a> - 
Remove ‘final’ from InlineFrame#onComponentTag()</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 © 2014 — 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/d8f15469/content/news/2013/11/index.html
----------------------------------------------------------------------
diff --git a/content/news/2013/11/index.html b/content/news/2013/11/index.html
new file mode 100644
index 0000000..461cc9d
--- /dev/null
+++ b/content/news/2013/11/index.html
@@ -0,0 +1,152 @@
+<!DOCTYPE html>
+<html>
+    <head>
+        <meta charset="utf-8">
+        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+        <title>Monthly archive for November 2013 | Apache Wicket</title>
+        <meta charset="utf8">
+        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+        <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/11 -->
+       <li class=""><a href="/start/quickstart.html">Quick Start</a></li>
+               <!-- /start/download.html || /news/2013/11 -->
+       <li class=""><a href="/start/download.html">Download</a></li>
+               <!-- /learn || /news/2013/11 -->
+       <li class=""><a href="/learn">Documentation</a></li>
+               <!-- /help || /news/2013/11 -->
+       <li class=""><a href="/help">Support</a></li>
+               <!-- /contribute || /news/2013/11 -->
+       <li class=""><a href="/contribute">Contribute</a></li>
+               <!-- /apache || /news/2013/11 -->
+       <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>Monthly archive for November 2013</h1>
+        </header>
+        <div class="l-two-third">
+<div class="news">
+       <h3>Apache Wicket 6.12.0 released</h3>
+  <p><small>01 Nov 2013</small></p>
+       <p>The Apache Wicket PMC is proud to announce Apache Wicket 6.12.0!</p>
+<p>This release marks the twelfth minor release of Wicket 6. Starting
+with Wicket 6 we us...</p>
+       <a href="/news/2013/11/01/wicket-6.12.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/06">June</a></li>
+            <li><a href="/news/2015/02">February</a></li>
+            </ul>
+            <h2>2014</h2>
+            <ul>
+            <li><a href="/news/2014">All of 2014</a></li>
+            <li><a href="/news/2014/11">November</a></li>
+            <li><a href="/news/2014/09">September</a></li>
+            <li><a href="/news/2014/08">August</a></li>
+            <li><a href="/news/2014/06">June</a></li>
+            <li><a href="/news/2014/04">April</a></li>
+            <li><a href="/news/2014/02">February</a></li>
+            <li><a href="/news/2014/01">January</a></li>
+            </ul>
+            <h2>2013</h2>
+            <ul>
+            <li><a href="/news/2013">All of 2013</a></li>
+            <li><a href="/news/2013/11">November</a></li>
+            <li><a href="/news/2013/09">September</a></li>
+            <li><a href="/news/2013/08">August</a></li>
+            <li><a href="/news/2013/07">July</a></li>
+            <li><a href="/news/2013/06">June</a></li>
+            <li><a href="/news/2013/05">May</a></li>
+            <li><a href="/news/2013/04">April</a></li>
+            <li><a href="/news/2013/03">March</a></li>
+            <li><a href="/news/2013/02">February</a></li>
+            <li><a href="/news/2013/01">January</a></li>
+            </ul>
+            <h2>2012</h2>
+            <ul>
+            <li><a href="/news/2012">All of 2012</a></li>
+            <li><a href="/news/2012/12">December</a></li>
+            <li><a href="/news/2012/11">November</a></li>
+            <li><a href="/news/2012/10">October</a></li>
+            <li><a href="/news/2012/09">September</a></li>
+            <li><a href="/news/2012/08">August</a></li>
+            <li><a href="/news/2012/07">July</a></li>
+            <li><a href="/news/2012/06">June</a></li>
+            <li><a href="/news/2012/05">May</a></li>
+            <li><a href="/news/2012/03">March</a></li>
+            <li><a href="/news/2012/01">January</a></li>
+            </ul>
+            <h2>2011</h2>
+            <ul>
+            <li><a href="/news/2011">All of 2011</a></li>
+            <li><a href="/news/2011/11">November</a></li>
+            <li><a href="/news/2011/10">October</a></li>
+            <li><a href="/news/2011/09">September</a></li>
+            <li><a href="/news/2011/08">August</a></li>
+            <li><a href="/news/2011/06">June</a></li>
+            <li><a href="/news/2011/05">May</a></li>
+            <li><a href="/news/2011/04">April</a></li>
+            <li><a href="/news/2011/03">March</a></li>
+            <li><a href="/news/2011/02">February</a></li>
+            <li><a href="/news/2011/01">January</a></li>
+            </ul>
+            <h2>2010</h2>
+            <ul>
+            <li><a href="/news/2010">All of 2010</a></li>
+            <li><a href="/news/2010/12">December</a></li>
+            <li><a href="/news/2010/11">November</a></li>
+            <li><a href="/news/2010/09">September</a></li>
+            <li><a href="/news/2010/08">August</a></li>
+            <li><a href="/news/2010/05">May</a></li>
+            <li><a href="/news/2010/03">March</a></li>
+            <li><a href="/news/2010/02">February</a></li>
+            </ul>
+            <h2>2009</h2>
+            <ul>
+            <li><a href="/news/2009">All of 2009</a></li>
+            <li><a href="/news/2009/12">December</a></li>
+            <li><a href="/news/2009/10">October</a></li>
+            <li><a href="/news/2009/08">August</a></li>
+            <li><a href="/news/2009/07">July</a></li>
+            </ul>
+        </div>
+    </div>
+</main>
+        <footer class="l-container">
+            <div class="l-full">
+    <img height="60px" src="/img/asf_logo.gif" style="float:left">
+    Copyright © 2014 — 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/d8f15469/content/news/2013/index.html
----------------------------------------------------------------------
diff --git a/content/news/2013/index.html b/content/news/2013/index.html
new file mode 100644
index 0000000..57f1193
--- /dev/null
+++ b/content/news/2013/index.html
@@ -0,0 +1,272 @@
+<!DOCTYPE html>
+<html>
+    <head>
+        <meta charset="utf-8">
+        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+        <title>Yearly archive for 2013 | Apache Wicket</title>
+        <meta charset="utf8">
+        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+        <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 -->
+       <li class=""><a href="/start/quickstart.html">Quick Start</a></li>
+               <!-- /start/download.html || /news/2013 -->
+       <li class=""><a href="/start/download.html">Download</a></li>
+               <!-- /learn || /news/2013 -->
+       <li class=""><a href="/learn">Documentation</a></li>
+               <!-- /help || /news/2013 -->
+       <li class=""><a href="/help">Support</a></li>
+               <!-- /contribute || /news/2013 -->
+       <li class=""><a href="/contribute">Contribute</a></li>
+               <!-- /apache || /news/2013 -->
+       <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>Yearly archive for 2013</h1>
+        </header>
+        <div class="l-two-third">
+      <div class="l-first">
+              <div  class="l-full">
+                  <h1>All News for November 2013</h1>
+                  <p>This section contains all news items published in <a 
href="/news/2013/11">November 2013</a>.</p>
+              </div>
+                  <div class="l-full">
+                       <h3 
id="/news/2013/11/01/wicket-6.12.0-released.html">Apache Wicket 6.12.0 
released</h3>
+                      <small>01 Nov 2013</small>
+                       <p>The Apache Wicket PMC is proud to announce Apache 
Wicket 6.12.0! This release marks the twelfth minor release of Wicket 6. 
Starting with Wicket 6...
+                       <a 
href="/news/2013/11/01/wicket-6.12.0-released.html">more</a></li></p>
+                  </div>
+              <hr>
+              <div class="l-first"></div>
+              <div  class="l-full">
+                  <h1>All News for September 2013</h1>
+                  <p>This section contains all news items published in <a 
href="/news/2013/09">September 2013</a>.</p>
+              </div>
+                  <div class="l-full">
+                       <h3 
id="/news/2013/09/20/wicket-6.11.0-released.html">Apache Wicket 6.11.0 
released</h3>
+                      <small>20 Sep 2013</small>
+                       <p>The Apache Wicket PMC is proud to announce Apache 
Wicket 6.11.0! This release marks the eleventh minor release of Wicket 6. 
Starting with Wicket 6...
+                       <a 
href="/news/2013/09/20/wicket-6.11.0-released.html">more</a></li></p>
+                  </div>
+              <hr>
+              <div class="l-first"></div>
+              <div  class="l-full">
+                  <h1>All News for August 2013</h1>
+                  <p>This section contains all news items published in <a 
href="/news/2013/08">August 2013</a>.</p>
+              </div>
+                  <div class="l-full">
+                       <h3 
id="/news/2013/08/18/wicket-6.10.0-released.html">Apache Wicket 6.10.0 
released</h3>
+                      <small>18 Aug 2013</small>
+                       <p>The Apache Wicket PMC is proud to announce Apache 
Wicket 6.10.0! This release marks the tenth minor release of Wicket 6. Starting 
with Wicket 6...
+                       <a 
href="/news/2013/08/18/wicket-6.10.0-released.html">more</a></li></p>
+                  </div>
+              <hr>
+              <div class="l-first"></div>
+              <div  class="l-full">
+                  <h1>All News for July 2013</h1>
+                  <p>This section contains all news items published in <a 
href="/news/2013/07">July 2013</a>.</p>
+              </div>
+                  <div class="l-full">
+                       <h3 
id="/news/2013/07/10/wicket-6.9.1-released.html">Apache Wicket 6.9.1 
released</h3>
+                      <small>10 Jul 2013</small>
+                       <p>The Apache Wicket PMC announces Apache Wicket 6.9.1! 
This is a patch release for 6.9.0 where we inadvertently broke CDI injection 
into (amongst others) anonymous...
+                       <a 
href="/news/2013/07/10/wicket-6.9.1-released.html">more</a></li></p>
+                  </div>
+              <hr>
+              <div class="l-first"></div>
+              <div  class="l-full">
+                  <h1>All News for June 2013</h1>
+                  <p>This section contains all news items published in <a 
href="/news/2013/06">June 2013</a>.</p>
+              </div>
+                  <div class="l-full">
+                       <h3 
id="/news/2013/06/27/wicket-6.9.0-released.html">Apache Wicket 6.9.0 
released</h3>
+                      <small>27 Jun 2013</small>
+                       <p>The Apache Wicket PMC is proud to announce Apache 
Wicket 6.9.0! This release marks the ninth minor release of Wicket 6. Starting 
with Wicket 6...
+                       <a 
href="/news/2013/06/27/wicket-6.9.0-released.html">more</a></li></p>
+                  </div>
+              <hr>
+              <div class="l-first"></div>
+              <div  class="l-full">
+                  <h1>All News for May 2013</h1>
+                  <p>This section contains all news items published in <a 
href="/news/2013/05">May 2013</a>.</p>
+              </div>
+                  <div class="l-full">
+                       <h3 
id="/news/2013/05/17/wicket-6.8.0-released.html">Apache Wicket 6.8.0 
released</h3>
+                      <small>17 May 2013</small>
+                       <p>The Apache Wicket PMC is proud to announce Apache 
Wicket 6.8.0! This release marks the eighth minor release of Wicket 6. Starting 
with Wicket 6...
+                       <a 
href="/news/2013/05/17/wicket-6.8.0-released.html">more</a></li></p>
+                  </div>
+              <hr>
+              <div class="l-first"></div>
+              <div  class="l-full">
+                  <h1>All News for April 2013</h1>
+                  <p>This section contains all news items published in <a 
href="/news/2013/04">April 2013</a>.</p>
+              </div>
+                  <div class="l-full">
+                       <h3 
id="/news/2013/04/12/wicket-6.7.0-released.html">Apache Wicket 6.7.0 
released</h3>
+                      <small>12 Apr 2013</small>
+                       <p>The Apache Wicket PMC is proud to announce Apache 
Wicket 6.7.0! This release marks the seventh minor release of Wicket 6. 
Starting with Wicket 6...
+                       <a 
href="/news/2013/04/12/wicket-6.7.0-released.html">more</a></li></p>
+                  </div>
+              <hr>
+              <div class="l-first"></div>
+              <div  class="l-full">
+                  <h1>All News for March 2013</h1>
+                  <p>This section contains all news items published in <a 
href="/news/2013/03">March 2013</a>.</p>
+              </div>
+                  <div class="l-full">
+                       <h3 
id="/news/2013/03/03/cve-2012-5636.html">CVE-2012-5636 - Apache Wicket XSS 
vulnerability</h3>
+                      <small>03 Mar 2013</small>
+                       <p>Severity: Important Vendor: The Apache Software 
Foundation Versions Affected: Apache Wicket 1.4.x, 1.5.x and 1.6.x Description: 
It is possible for JavaScript statements to break out...
+                       <a 
href="/news/2013/03/03/cve-2012-5636.html">more</a></li></p>
+                  </div>
+              <hr>
+              <div class="l-first"></div>
+              <div  class="l-full">
+                  <h1>All News for February 2013</h1>
+                  <p>This section contains all news items published in <a 
href="/news/2013/02">February 2013</a>.</p>
+              </div>
+                  <div class="l-full">
+                       <h3 
id="/news/2013/02/26/wicket-1.5.10-released.html">Wicket 1.5.10 released</h3>
+                      <small>26 Feb 2013</small>
+                       <p>This is the tenth maintenance release of the Wicket 
1.5.x series. This release brings over 28 bug fixes and improvements. Git tag 
Changelog To use...
+                       <a 
href="/news/2013/02/26/wicket-1.5.10-released.html">more</a></li></p>
+                  </div>
+                  <div class="l-full">
+                       <h3 
id="/news/2013/02/15/wicket-6.6.0-released.html">Apache Wicket 6.6.0 
released</h3>
+                      <small>15 Feb 2013</small>
+                       <p>The Apache Wicket PMC is proud to announce Apache 
Wicket 6.6.0! This release marks the sixth minor release of Wicket 6. Starting 
with Wicket 6...
+                       <a 
href="/news/2013/02/15/wicket-6.6.0-released.html">more</a></li></p>
+                  </div>
+              <hr>
+              <div class="l-first"></div>
+              <div  class="l-full">
+                  <h1>All News for January 2013</h1>
+                  <p>This section contains all news items published in <a 
href="/news/2013/01">January 2013</a>.</p>
+              </div>
+                  <div class="l-full">
+                       <h3 
id="/news/2013/01/23/wicket-6.5.0-released.html">Apache Wicket 6.5.0 
released</h3>
+                      <small>23 Jan 2013</small>
+                       <p>The Apache Wicket PMC is proud to announce Apache 
Wicket 6.5.0! This release marks the fifth minor release of Wicket 6. Starting 
with Wicket 6...
+                       <a 
href="/news/2013/01/23/wicket-6.5.0-released.html">more</a></li></p>
+                  </div>
+              <hr>
+              <div class="l-first"></div>
+      </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/06">June</a></li>
+            <li><a href="/news/2015/02">February</a></li>
+            </ul>
+            <h2>2014</h2>
+            <ul>
+            <li><a href="/news/2014">All of 2014</a></li>
+            <li><a href="/news/2014/11">November</a></li>
+            <li><a href="/news/2014/09">September</a></li>
+            <li><a href="/news/2014/08">August</a></li>
+            <li><a href="/news/2014/06">June</a></li>
+            <li><a href="/news/2014/04">April</a></li>
+            <li><a href="/news/2014/02">February</a></li>
+            <li><a href="/news/2014/01">January</a></li>
+            </ul>
+            <h2>2013</h2>
+            <ul>
+            <li><a href="/news/2013">All of 2013</a></li>
+            <li><a href="/news/2013/11">November</a></li>
+            <li><a href="/news/2013/09">September</a></li>
+            <li><a href="/news/2013/08">August</a></li>
+            <li><a href="/news/2013/07">July</a></li>
+            <li><a href="/news/2013/06">June</a></li>
+            <li><a href="/news/2013/05">May</a></li>
+            <li><a href="/news/2013/04">April</a></li>
+            <li><a href="/news/2013/03">March</a></li>
+            <li><a href="/news/2013/02">February</a></li>
+            <li><a href="/news/2013/01">January</a></li>
+            </ul>
+            <h2>2012</h2>
+            <ul>
+            <li><a href="/news/2012">All of 2012</a></li>
+            <li><a href="/news/2012/12">December</a></li>
+            <li><a href="/news/2012/11">November</a></li>
+            <li><a href="/news/2012/10">October</a></li>
+            <li><a href="/news/2012/09">September</a></li>
+            <li><a href="/news/2012/08">August</a></li>
+            <li><a href="/news/2012/07">July</a></li>
+            <li><a href="/news/2012/06">June</a></li>
+            <li><a href="/news/2012/05">May</a></li>
+            <li><a href="/news/2012/03">March</a></li>
+            <li><a href="/news/2012/01">January</a></li>
+            </ul>
+            <h2>2011</h2>
+            <ul>
+            <li><a href="/news/2011">All of 2011</a></li>
+            <li><a href="/news/2011/11">November</a></li>
+            <li><a href="/news/2011/10">October</a></li>
+            <li><a href="/news/2011/09">September</a></li>
+            <li><a href="/news/2011/08">August</a></li>
+            <li><a href="/news/2011/06">June</a></li>
+            <li><a href="/news/2011/05">May</a></li>
+            <li><a href="/news/2011/04">April</a></li>
+            <li><a href="/news/2011/03">March</a></li>
+            <li><a href="/news/2011/02">February</a></li>
+            <li><a href="/news/2011/01">January</a></li>
+            </ul>
+            <h2>2010</h2>
+            <ul>
+            <li><a href="/news/2010">All of 2010</a></li>
+            <li><a href="/news/2010/12">December</a></li>
+            <li><a href="/news/2010/11">November</a></li>
+            <li><a href="/news/2010/09">September</a></li>
+            <li><a href="/news/2010/08">August</a></li>
+            <li><a href="/news/2010/05">May</a></li>
+            <li><a href="/news/2010/03">March</a></li>
+            <li><a href="/news/2010/02">February</a></li>
+            </ul>
+            <h2>2009</h2>
+            <ul>
+            <li><a href="/news/2009">All of 2009</a></li>
+            <li><a href="/news/2009/12">December</a></li>
+            <li><a href="/news/2009/10">October</a></li>
+            <li><a href="/news/2009/08">August</a></li>
+            <li><a href="/news/2009/07">July</a></li>
+            </ul>
+        </div>
+    </div>
+</main>
+        <footer class="l-container">
+            <div class="l-full">
+    <img height="60px" src="/img/asf_logo.gif" style="float:left">
+    Copyright © 2014 — 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/d8f15469/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
new file mode 100644
index 0000000..b7be5a0
--- /dev/null
+++ b/content/news/2014/01/05/wicket-6.13.0-released.html
@@ -0,0 +1,257 @@
+<!DOCTYPE html>
+<html>
+    <head>
+        <meta charset="utf-8">
+        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+        <title>Apache Wicket 6.13.0 released | Apache Wicket</title>
+        <meta charset="utf8">
+        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+        <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/2014/01/05/wicket-6.13.0-released.html -->
+       <li class=""><a href="/start/quickstart.html">Quick Start</a></li>
+               <!-- /start/download.html || 
/news/2014/01/05/wicket-6.13.0-released.html -->
+       <li class=""><a href="/start/download.html">Download</a></li>
+               <!-- /learn || /news/2014/01/05/wicket-6.13.0-released.html -->
+       <li class=""><a href="/learn">Documentation</a></li>
+               <!-- /help || /news/2014/01/05/wicket-6.13.0-released.html -->
+       <li class=""><a href="/help">Support</a></li>
+               <!-- /contribute || 
/news/2014/01/05/wicket-6.13.0-released.html -->
+       <li class=""><a href="/contribute">Contribute</a></li>
+               <!-- /apache || /news/2014/01/05/wicket-6.13.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.13.0 released</h1>
+        </header>
+        <section class="l-one-third right">
+        </section>
+        <section class="l-two-third left">
+            <div class="l-full">
+    <p class="meta">05 Jan 2014</p>
+    <p>The Apache Wicket PMC is proud to announce Apache Wicket 6.13.0!</p>
+<p>This release marks the thirteenth 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>
+<p>This release fixes 25 bugs and adds the following improvements:</p>
+<ul>
+  <li>Online Wicket User guide (see below)</li>
+  <li>CDI 1.1 support (see below)</li>
+  <li>JQuery upgraded from 1.10.1 to 1.10.2</li>
+  <li>Implemented BigIntegerConverter</li>
+  <li>Migrate Wicket-Atmosphere to Atmosphere 2</li>
+</ul>
+<h3 id="online-wicket-reference-guide">Online Wicket reference guide</h3>
+<p>After many years of people asking for a reference guide for Apache
+Wicket we finally were able to add one to our site thanks to Andrea del
+Bene and comSysto for writing the guide and providing the hours of
+converting it to our site.</p>
+<p>You can read the manual in 3 forms: multi page HTML, single page HTML
+and PDF.</p>
+<p>The contents:</p>
+<ul>
+  <li>Introduction</li>
+  <li>How to use the example code</li>
+  <li>Why should I learn Wicket?</li>
+  <li>Wicket says “Hello, World!”</li>
+  <li>Wicket as page layout manager</li>
+  <li>Keeping control over HTML</li>
+  <li>Component Lifecycle</li>
+  <li>Page versioning and caching</li>
+  <li>Under the hood of request processing</li>
+  <li>Wicket Links and URL generation</li>
+  <li>Wicket models and forms</li>
+  <li>Wicket forms in detail</li>
+  <li>Displaying multiple items with repeaters</li>
+  <li>Internationalization with Wicket</li>
+  <li>Resource management with Wicket</li>
+  <li>An example of integration with JavaScript</li>
+  <li>Wicket advanced topics</li>
+  <li>Working with AJAX</li>
+  <li>Integration with enterprise containers</li>
+  <li>Security with Wicket</li>
+  <li>Test Driven Development with Wicket</li>
+  <li>Test Driven Development with Wicket and Spring</li>
+  <li>Wicket Best Practices</li>
+  <li>Working with Maven (Appendix)</li>
+  <li>Project WicketStuff (Appendix)</li>
+  <li>Lost in redirection with Apache Wicket (Appendix)</li>
+  <li>Contributing to this guide (Appendix)</li>
+</ul>
+<p>Read more in the <a 
href="http://wicket.apache.org/start/userguide.html";>“User guide”</a>.</p>
+<h3 id="new-cdi-11-integration-project">New CDI-1.1 integration project</h3>
+<p>A new (experimental) module for CDI integration was added to support
+CDI 1.1 with Wicket. As CDI 1.0 and 1.1 are different beasts and not
+compatible, we had to craft a new module with specific support for the
+new CDI standard. The module is still experimental, but we expect to
+make it a default module in a couple of releases.</p>
+<p>You can use the new Wicket CDI module by including the following
+dependency in your POM:</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-cdi-1.1<span 
class="nt">&lt;/artifactId&gt;</span>
+       <span class="nt">&lt;version&gt;</span>0.2<span 
class="nt">&lt;/version&gt;</span>
+<span class="nt">&lt;/dependency&gt;</span></code></pre></div>
+<p>Note that you have to remove the old wicket-cdi module and the Seam
+conversation dependency: 
<code>org.jboss.seam.conversation:seam-conversation-weld</code></p>
+<p>For more information about what is new in CDI 1.1 read <a 
href="http://s.apache.org/newincdi11";>this blog post
+by Pete Muir</a>.</p>
+<h3 id="jquery-update-in-690">JQuery update in 6.9.0</h3>
+<p>As of Wicket 6.9 we ship JQuery 1.10.1 (since 6.13.0 we ship 1.10.2).
+The JQuery project has decided to remove deprecated APIs from their
+codebase from JQuery 1.9 and up. This means that JQuery plugins using
+these deprecated APIs no longer work. See the JQuery migration guide
+for more information, available from <a 
href="http://jquery.com/upgrade-guide/1.9/";>the JQuery web
+site</a></p>
+<p>If your application depends on these deprecated APIs you can easily
+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>
+<div 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="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></div>
+<h3 id="cdi-injection-issue">CDI injection issue</h3>
+<p>In the CDI releases of Weld 2.0.1 and prior, it was assumed that
+injection in anonymous inner classes was not legal and when
+attempted, it resulted in an exception:</p>
+<div class="highlight"><pre><code class="language-text" 
data-lang="text">Caused by: org.jboss.weld.exceptions.DefinitionException:
+WELD-000070 Simple bean [EnhancedAnnotatedTypeImpl] private class
+com.example.HomePage$AForm cannot be a non-static inner 
class</code></pre></div>
+<p>This was reported as
+<a href="https://issues.apache.org/jira/browse/WICKET-5226";>WICKET-5226</a>, as
+it became an issue in Glassfish 4, which ships with Weld 2.0.1 (or
+earlier). We implemented a fix for this particular issue by not
+injecting into anonymous inner classes.</p>
+<p>Unfortunately this was not a bug that needed fixing on our part, but
+rather in the Weld framework (see
+<a href="https://issues.jboss.org/browse/WELD-1441";>WELD-1441</a>)</p>
+<p>Therefore we reverted the commits done for WICKET-5226 and hope that
+Glassfish will upgrade their Weld implementation soon. For the whole
+story read
+<a href="https://issues.apache.org/jira/browse/WICKET-5264";>WICKET-5264</a></p>
+<p>Glassfish has fixed this in trunk according to
+<a href="https://java.net/jira/browse/GLASSFISH-20619";>GLASSFISH-20619</a> but
+the fix has yet to be integrated into a release.</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.13.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.13.0";>http://www.apache.org/dyn/closer.cgi/wicket/6.13.0</a></li>
+  <li>Binary: <a 
href="http://www.apache.org/dyn/closer.cgi/wicket/6.13.0/binaries";>http://www.apache.org/dyn/closer.cgi/wicket/6.13.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="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+6.0";>Migration
 to Wicket 6.0</a></li>
+</ul>
+<p>Have fun!</p>
+<p>— The Wicket team</p>
+<h3 id="release-notes---wicket---version-6130">Release Notes - Wicket - 
Version 6.13.0</h3>
+<h4 id="bug">Bug</h4>
+<ul>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-4294";>WICKET-4294</a> - 
AutoCompleteTextField does not show suggestions when it is used on ModalWindow 
in InternetExplorer</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-4997";>WICKET-4997</a> - 
Mounted bookmarkable Page not recreated on Session Expiry</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5084";>WICKET-5084</a> - 
ClassNotFoundException with Atmosphere on Bookmarkable pages</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5224";>WICKET-5224</a> - 
ModalWindow is not visible in Safari when opened from a link at the bottom of a 
large page</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5321";>WICKET-5321</a> - 
Incorporate Wicket Guide into website</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5379";>WICKET-5379</a> - IE7: 
AutoCompleteTextField inside a ModalWindow shows auto complete dropdown behind 
ModalWindow</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5387";>WICKET-5387</a> - 
Page#onInitialize called after an exception in the constructor of Page</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5400";>WICKET-5400</a> - 
Behaviors#internalAdd(Behavior) erroneously gets id for stateless behaviors</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5402";>WICKET-5402</a> - 
NullPointerException when logging out with wicket-atmosphere</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5404";>WICKET-5404</a> - 
JQuery 1.10.1 does not work well with IE11, upgrade to 1.10.2</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5409";>WICKET-5409</a> - 
wicket-native-websocket does not work with Safari/Safari iOS</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5413";>WICKET-5413</a> - 
Positioning AutoCompleteTextField not correct on resized window</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5416";>WICKET-5416</a> - BOM 
in UTF markup file breaks encoding detection</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5418";>WICKET-5418</a> - 
PropertyValidator ignoring groups with the @NotNull annotation only</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5422";>WICKET-5422</a> - 
ComponentRenderer.renderComponent() adds a page to DataStore</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5424";>WICKET-5424</a> - 
Page.isPageStateless() returning true in regular run but false in 
WicketTester</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5425";>WICKET-5425</a> - 
WicketTester doesn’t preserve the request cookies when #executeListener() is 
used</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5426";>WICKET-5426</a> - Page 
not recognized as stateless although stateful component is hidden in 
#onConfigure()</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5429";>WICKET-5429</a> - 
ResourceReference’s properties are not preserved when using reference 
replacement</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5437";>WICKET-5437</a> - When 
a ConversionException is thrown, its message is not used in the 
ValidationError</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5441";>WICKET-5441</a> - 
IResourceCachingStrategy implementations should only set caching if version 
matches</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5442";>WICKET-5442</a> - 
TimeOfDay.valueOf(Calendar, Time) and TimeOfDay.valueOf(Time) incorrectly use 
12-hour clock</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5444";>WICKET-5444</a> - Make 
org.apache.wicket.pageStore.memory.PageTable public so custom impls of 
IDataStoreEvictionStrategy can be made</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5447";>WICKET-5447</a> - 
TableTree’s NodeBorder does not properly close divs</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5450";>WICKET-5450</a> - 
Double escaping when using EnumChoiceRenderer and DropDownChoice</li>
+</ul>
+<h4 id="improvement">Improvement</h4>
+<ul>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-4268";>WICKET-4268</a> - 
Quality of ThumbnailImageResource</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-4762";>WICKET-4762</a> - 
IResourceVersion should be based on final result</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-4905";>WICKET-4905</a> - 
PagingNavigation: possible to call setStartIndex() earlier than 
onBeforeRender?</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-4909";>WICKET-4909</a> - 
ModalWindow overwrites window.onbeforeunload</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5364";>WICKET-5364</a> - 
Reduce logging for wicket-atmosphere</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5367";>WICKET-5367</a> - 
migrate Wicket-Atmosphere to Atmosphere 2</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5401";>WICKET-5401</a> - 
provide no-argument constructor in string based header items</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5411";>WICKET-5411</a> - 
Improve AutoLabels by updating their CSS classes automatically during Ajax 
requests</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5415";>WICKET-5415</a> - Do 
not initialize pages which were not rendered</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5420";>WICKET-5420</a> - Make 
UploadProgressBar easier to extend</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5423";>WICKET-5423</a> - 
Create IResource based implementation of Native Web Sockets</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5435";>WICKET-5435</a> - 
Ajaxified version of WebSession#getClientInfo should be added</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5436";>WICKET-5436</a> - 
Implement BigIntegerConverter</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5443";>WICKET-5443</a> - 
Increase randomness and reduce predictability of CaptchaImageResource rendered 
images</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5445";>WICKET-5445</a> - Make 
CaptchaImageResource easier to extend and reuse</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5455";>WICKET-5455</a> - 
Allow access to the JS ResourceReference of AbstractAutoCompleteBehavior</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5456";>WICKET-5456</a> - Make 
RawMarkup extendable</li>
+</ul>
+<h4 id="task">Task</h4>
+<ul>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-5431";>WICKET-5431</a> - 
Download pages must use ASF mirror system for current releases</li>
+</ul>
+<h4 id="wish">Wish</h4>
+<ul>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-1197";>WICKET-1197</a> - 
add/remove all buttons in Palette component</li>
+  <li><a 
href="https://issues.apache.org/jira/browse/WICKET-4951";>WICKET-4951</a> - 
Wicket-cdi and OpenWebBeans 1.1.x incompatibility</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 © 2014 — 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/d8f15469/content/news/2014/01/index.html
----------------------------------------------------------------------
diff --git a/content/news/2014/01/index.html b/content/news/2014/01/index.html
new file mode 100644
index 0000000..26d968b
--- /dev/null
+++ b/content/news/2014/01/index.html
@@ -0,0 +1,152 @@
+<!DOCTYPE html>
+<html>
+    <head>
+        <meta charset="utf-8">
+        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+        <title>Monthly archive for January 2014 | Apache Wicket</title>
+        <meta charset="utf8">
+        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+        <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/2014/01 -->
+       <li class=""><a href="/start/quickstart.html">Quick Start</a></li>
+               <!-- /start/download.html || /news/2014/01 -->
+       <li class=""><a href="/start/download.html">Download</a></li>
+               <!-- /learn || /news/2014/01 -->
+       <li class=""><a href="/learn">Documentation</a></li>
+               <!-- /help || /news/2014/01 -->
+       <li class=""><a href="/help">Support</a></li>
+               <!-- /contribute || /news/2014/01 -->
+       <li class=""><a href="/contribute">Contribute</a></li>
+               <!-- /apache || /news/2014/01 -->
+       <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>Monthly archive for January 2014</h1>
+        </header>
+        <div class="l-two-third">
+<div class="news">
+       <h3>Apache Wicket 6.13.0 released</h3>
+  <p><small>05 Jan 2014</small></p>
+       <p>The Apache Wicket PMC is proud to announce Apache Wicket 6.13.0!</p>
+<p>This release marks the thirteenth minor release of Wicket 6. Starting
+with Wicket 6 we us...</p>
+       <a href="/news/2014/01/05/wicket-6.13.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/06">June</a></li>
+            <li><a href="/news/2015/02">February</a></li>
+            </ul>
+            <h2>2014</h2>
+            <ul>
+            <li><a href="/news/2014">All of 2014</a></li>
+            <li><a href="/news/2014/11">November</a></li>
+            <li><a href="/news/2014/09">September</a></li>
+            <li><a href="/news/2014/08">August</a></li>
+            <li><a href="/news/2014/06">June</a></li>
+            <li><a href="/news/2014/04">April</a></li>
+            <li><a href="/news/2014/02">February</a></li>
+            <li><a href="/news/2014/01">January</a></li>
+            </ul>
+            <h2>2013</h2>
+            <ul>
+            <li><a href="/news/2013">All of 2013</a></li>
+            <li><a href="/news/2013/11">November</a></li>
+            <li><a href="/news/2013/09">September</a></li>
+            <li><a href="/news/2013/08">August</a></li>
+            <li><a href="/news/2013/07">July</a></li>
+            <li><a href="/news/2013/06">June</a></li>
+            <li><a href="/news/2013/05">May</a></li>
+            <li><a href="/news/2013/04">April</a></li>
+            <li><a href="/news/2013/03">March</a></li>
+            <li><a href="/news/2013/02">February</a></li>
+            <li><a href="/news/2013/01">January</a></li>
+            </ul>
+            <h2>2012</h2>
+            <ul>
+            <li><a href="/news/2012">All of 2012</a></li>
+            <li><a href="/news/2012/12">December</a></li>
+            <li><a href="/news/2012/11">November</a></li>
+            <li><a href="/news/2012/10">October</a></li>
+            <li><a href="/news/2012/09">September</a></li>
+            <li><a href="/news/2012/08">August</a></li>
+            <li><a href="/news/2012/07">July</a></li>
+            <li><a href="/news/2012/06">June</a></li>
+            <li><a href="/news/2012/05">May</a></li>
+            <li><a href="/news/2012/03">March</a></li>
+            <li><a href="/news/2012/01">January</a></li>
+            </ul>
+            <h2>2011</h2>
+            <ul>
+            <li><a href="/news/2011">All of 2011</a></li>
+            <li><a href="/news/2011/11">November</a></li>
+            <li><a href="/news/2011/10">October</a></li>
+            <li><a href="/news/2011/09">September</a></li>
+            <li><a href="/news/2011/08">August</a></li>
+            <li><a href="/news/2011/06">June</a></li>
+            <li><a href="/news/2011/05">May</a></li>
+            <li><a href="/news/2011/04">April</a></li>
+            <li><a href="/news/2011/03">March</a></li>
+            <li><a href="/news/2011/02">February</a></li>
+            <li><a href="/news/2011/01">January</a></li>
+            </ul>
+            <h2>2010</h2>
+            <ul>
+            <li><a href="/news/2010">All of 2010</a></li>
+            <li><a href="/news/2010/12">December</a></li>
+            <li><a href="/news/2010/11">November</a></li>
+            <li><a href="/news/2010/09">September</a></li>
+            <li><a href="/news/2010/08">August</a></li>
+            <li><a href="/news/2010/05">May</a></li>
+            <li><a href="/news/2010/03">March</a></li>
+            <li><a href="/news/2010/02">February</a></li>
+            </ul>
+            <h2>2009</h2>
+            <ul>
+            <li><a href="/news/2009">All of 2009</a></li>
+            <li><a href="/news/2009/12">December</a></li>
+            <li><a href="/news/2009/10">October</a></li>
+            <li><a href="/news/2009/08">August</a></li>
+            <li><a href="/news/2009/07">July</a></li>
+            </ul>
+        </div>
+    </div>
+</main>
+        <footer class="l-container">
+            <div class="l-full">
+    <img height="60px" src="/img/asf_logo.gif" style="float:left">
+    Copyright © 2014 — 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/d8f15469/content/news/2014/02/06/cve-2013-2055.html
----------------------------------------------------------------------
diff --git a/content/news/2014/02/06/cve-2013-2055.html 
b/content/news/2014/02/06/cve-2013-2055.html
new file mode 100644
index 0000000..7ad8222
--- /dev/null
+++ b/content/news/2014/02/06/cve-2013-2055.html
@@ -0,0 +1,90 @@
+<!DOCTYPE html>
+<html>
+    <head>
+        <meta charset="utf-8">
+        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+        <title>CVE-2013-2055 - Apache Wicket Information disclosure 
vulnerability | Apache Wicket</title>
+        <meta charset="utf8">
+        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+        <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/2014/02/06/cve-2013-2055.html -->
+       <li class=""><a href="/start/quickstart.html">Quick Start</a></li>
+               <!-- /start/download.html || 
/news/2014/02/06/cve-2013-2055.html -->
+       <li class=""><a href="/start/download.html">Download</a></li>
+               <!-- /learn || /news/2014/02/06/cve-2013-2055.html -->
+       <li class=""><a href="/learn">Documentation</a></li>
+               <!-- /help || /news/2014/02/06/cve-2013-2055.html -->
+       <li class=""><a href="/help">Support</a></li>
+               <!-- /contribute || /news/2014/02/06/cve-2013-2055.html -->
+       <li class=""><a href="/contribute">Contribute</a></li>
+               <!-- /apache || /news/2014/02/06/cve-2013-2055.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>CVE-2013-2055 - Apache Wicket Information disclosure 
vulnerability</h1>
+        </header>
+        <section class="l-one-third right">
+        </section>
+        <section class="l-two-third left">
+            <div class="l-full">
+    <p class="meta">06 Feb 2014</p>
+    <p>Severity: Important</p>
+<p>Vendor:
+The Apache Software Foundation</p>
+<p>Versions Affected:
+Apache Wicket 1.4.22, 1.5.10 and 6.7.0</p>
+<p>Description:
+It is possible to make Wicket deliver the HTML templates in their 
raw/non-processed form.
+An attacker could see any sensitive information in the part of the HTML 
template that is usually ignored during rendering.
+For example if there is sensitive information before or after the Wicket 
Panel/Border’s markup:</p>
+<div class="highlight"><pre><code class="language-xml" 
data-lang="xml">something sensitive here 1
+<span class="nt">&lt;wicket:panel&gt;</span>
+   real application code
+<span class="nt">&lt;/wicket:panel&gt;</span>
+something sensitive here 2</code></pre></div>
+<p>Usually Wicket will render only the “real application code” part but by 
exploiting this vulnerability an attacker can see also the code with the 
sensitive information.</p>
+<p>The application developers are recommended to upgrade to: 
+- <a href="/2014/02/06/wicket-1.4.23-released.html">Apache Wicket 1.4.23</a>
+- <a href="/2014/02/06/wicket-1.5.11-released.html">Apache Wicket 1.5.11</a>
+- <a href="/2013/05/17/wicket-6.8.0-released.html">Apache Wicket 6.8.0</a></p>
+<p>and/or to remove any sensitive information in the HTML templates.</p>
+<p>Apache Wicket Team</p>
+</div>
+        </section>
+    </div>
+</main>
+        <footer class="l-container">
+            <div class="l-full">
+    <img height="60px" src="/img/asf_logo.gif" style="float:left">
+    Copyright © 2014 — 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/d8f15469/content/news/2014/02/06/wicket-1.4.23-released.html
----------------------------------------------------------------------
diff --git a/content/news/2014/02/06/wicket-1.4.23-released.html 
b/content/news/2014/02/06/wicket-1.4.23-released.html
new file mode 100644
index 0000000..96475a6
--- /dev/null
+++ b/content/news/2014/02/06/wicket-1.4.23-released.html
@@ -0,0 +1,83 @@
+<!DOCTYPE html>
+<html>
+    <head>
+        <meta charset="utf-8">
+        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+        <title>Wicket 1.4.23 released | Apache Wicket</title>
+        <meta charset="utf8">
+        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+        <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/2014/02/06/wicket-1.4.23-released.html -->
+       <li class=""><a href="/start/quickstart.html">Quick Start</a></li>
+               <!-- /start/download.html || 
/news/2014/02/06/wicket-1.4.23-released.html -->
+       <li class=""><a href="/start/download.html">Download</a></li>
+               <!-- /learn || /news/2014/02/06/wicket-1.4.23-released.html -->
+       <li class=""><a href="/learn">Documentation</a></li>
+               <!-- /help || /news/2014/02/06/wicket-1.4.23-released.html -->
+       <li class=""><a href="/help">Support</a></li>
+               <!-- /contribute || 
/news/2014/02/06/wicket-1.4.23-released.html -->
+       <li class=""><a href="/contribute">Contribute</a></li>
+               <!-- /apache || /news/2014/02/06/wicket-1.4.23-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.4.23 released</h1>
+        </header>
+        <section class="l-one-third right">
+        </section>
+        <section class="l-two-third left">
+            <div class="l-full">
+    <p class="meta">06 Feb 2014</p>
+    <p>This is twenty thirdth release of the Wicket 1.4.x series. This is a 
security bugfix release on the 1.4.x branch.
+Read <a href="/2014/02/06/cve-2013-2055.html">CVE-2013-2055</a> for more 
information.</p>
+<ul>
+  <li><a 
href="http://git-wip-us.apache.org/repos/asf/wicket/repo?p=wicket.git;a=shortlog;h=refs/tags/wicket-1.4.23";>Git
 tag</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<span 
class="nt">&lt;/artifactId&gt;</span>
+    <span class="nt">&lt;version&gt;</span>1.4.23<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.4.23";>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 © 2014 — 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/d8f15469/content/news/2014/02/06/wicket-1.5.11-released.html
----------------------------------------------------------------------
diff --git a/content/news/2014/02/06/wicket-1.5.11-released.html 
b/content/news/2014/02/06/wicket-1.5.11-released.html
new file mode 100644
index 0000000..b01aba9
--- /dev/null
+++ b/content/news/2014/02/06/wicket-1.5.11-released.html
@@ -0,0 +1,83 @@
+<!DOCTYPE html>
+<html>
+    <head>
+        <meta charset="utf-8">
+        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+        <title>Wicket 1.5.11 released | Apache Wicket</title>
+        <meta charset="utf8">
+        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+        <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/2014/02/06/wicket-1.5.11-released.html -->
+       <li class=""><a href="/start/quickstart.html">Quick Start</a></li>
+               <!-- /start/download.html || 
/news/2014/02/06/wicket-1.5.11-released.html -->
+       <li class=""><a href="/start/download.html">Download</a></li>
+               <!-- /learn || /news/2014/02/06/wicket-1.5.11-released.html -->
+       <li class=""><a href="/learn">Documentation</a></li>
+               <!-- /help || /news/2014/02/06/wicket-1.5.11-released.html -->
+       <li class=""><a href="/help">Support</a></li>
+               <!-- /contribute || 
/news/2014/02/06/wicket-1.5.11-released.html -->
+       <li class=""><a href="/contribute">Contribute</a></li>
+               <!-- /apache || /news/2014/02/06/wicket-1.5.11-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.11 released</h1>
+        </header>
+        <section class="l-one-third right">
+        </section>
+        <section class="l-two-third left">
+            <div class="l-full">
+    <p class="meta">06 Feb 2014</p>
+    <p>This is the eleventh maintenance release of the Wicket 1.5.x series. 
This release brings over 34 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/wicket-1.5.11";>Git
 tag</a></li>
+  <li><a 
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;version=12324069";>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.11<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.11";>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 © 2014 — 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/d8f15469/content/news/2014/02/20/wicket-6.14.0-released.html
----------------------------------------------------------------------
diff --git a/content/news/2014/02/20/wicket-6.14.0-released.html 
b/content/news/2014/02/20/wicket-6.14.0-released.html
new file mode 100644
index 0000000..d2b3732
--- /dev/null
+++ b/content/news/2014/02/20/wicket-6.14.0-released.html
@@ -0,0 +1,149 @@
+<!DOCTYPE html>
+<html>
+    <head>
+        <meta charset="utf-8">
+        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+        <title>Apache Wicket 6.14.0 released | Apache Wicket</title>
+        <meta charset="utf8">
+        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+        <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/2014/02/20/wicket-6.14.0-released.html -->
+       <li class=""><a href="/start/quickstart.html">Quick Start</a></li>
+               <!-- /start/download.html || 
/news/2014/02/20/wicket-6.14.0-released.html -->
+       <li class=""><a href="/start/download.html">Download</a></li>
+               <!-- /learn || /news/2014/02/20/wicket-6.14.0-released.html -->
+       <li class=""><a href="/learn">Documentation</a></li>
+               <!-- /help || /news/2014/02/20/wicket-6.14.0-released.html -->
+       <li class=""><a href="/help">Support</a></li>
+               <!-- /contribute || 
/news/2014/02/20/wicket-6.14.0-released.html -->
+       <li class=""><a href="/contribute">Contribute</a></li>
+               <!-- /apache || /news/2014/02/20/wicket-6.14.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.14.0 released</h1>
+        </header>
+        <section class="l-one-third right">
+        </section>
+        <section class="l-two-third left">
+            <div class="l-full">
+    <p class="meta">20 Feb 2014</p>
+    <p>The Apache Wicket PMC is proud to announce Apache Wicket 6.14.0!</p>
+<p>This release marks the fourteenth 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>
+<p>This release fixes 34 bugs and adds the following improvements:</p>
+<ul>
+  <li>JQuery upgraded from 1.10.2 to 1.11.0</li>
+  <li>Fix for <a href="/2014/02/21/cve-2014-0043.html">CVE-2014-0043</a></li>
+  <li>Wicket Session may not be saved in the SessionStore (Http Session) under 
some conditions and lead to lost state</li>
+  <li>Update classes copied from commons-fileupload to fix CVE-2014-0050</li>
+  <li>Allow &lt;script&gt; tags to have children components to be able to use 
client side templating</li>
+</ul>
+<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.14.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.14.0";>http://www.apache.org/dyn/closer.cgi/wicket/6.14.0</a></li>
+  <li>Binary: <a 
href="http://www.apache.org/dyn/closer.cgi/wicket/6.14.0/binaries";>http://www.apache.org/dyn/closer.cgi/wicket/6.14.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="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+6.0";>Migration
 to Wicket 6.0</a></li>
+</ul>
+<p>Have fun!</p>
+<p>— The Wicket team</p>
+<h3 id="release-notes---wicket---version-6140">Release Notes - Wicket - 
Version 6.14.0</h3>
+<h4 id="bug">Bug</h4>
+<pre><code>* [WICKET-4697] - Autolinking not working as soon as component gets 
a wicket:id
+* [WICKET-5043] - Page not mounted with WebApplication#mountPackage
+* [WICKET-5449] - Missing chapter 2 is causing off-by-one page names in the 
guides URL links
+* [WICKET-5460] - onBeforeRender called too early on stateless page
+* [WICKET-5462] - Ajax form-component-label repainting fails when 
setResponsePage() is used to navigate away from the page that has previously 
failed form validaiton
+* [WICKET-5464] - AbstractAjaxTimerBehavior does not work in combination with 
Wizards
+* [WICKET-5466] - ListenerInterfaceRequestHandler#respond throws 
ComponentNotFoundException as a side-effect
+* [WICKET-5467] - NumberTextField should support "any" as valid step attribute 
value
+* [WICKET-5468] - UrlRenderer#renderRelativeUrl potentially appends "/" after 
query parameters
+* [WICKET-5469] - ModalWindow unload warning always displayed (even if window 
is closed)
+* [WICKET-5472] - PackageResource#internalGetResourceStream() should return 
ProcessingResourceStream only when the resource is existing
+* [WICKET-5473] - Wicket does not handle non in-memory Httpsessions correctly
+* [WICKET-5477] - CSS class is not applied to &lt;TD&gt; for data filter
+* [WICKET-5478] - Wrong JavaDoc for WicketTester
+* [WICKET-5480] - AutoLabelResolver creates null pointer exception in 6.13
+* [WICKET-5482] - Wicket-guice doesn't support @javax.inject.Named annotations
+* [WICKET-5484] - WebPageRenderer must not render full page in Ajax requests
+* [WICKET-5486] - WebPageRenderer should honor RedirectPolicy.ALWAYS_REDIRECT 
more consistently
+* [WICKET-5491] - Wicket.DateTime.getViewportHeight() returning undefined on 
IE8, positions calendar out of viewport
+* [WICKET-5492] - WebApplication ignores a SecurityException when reading the 
configuration type
+* [WICKET-5496] - Wrong translation of RangeValidator.minimum and 
RangeValidator.maximum
+* [WICKET-5497] - NPE in JsonUtils when the value is null
+* [WICKET-5499] - Page is not touched during initialization
+* [WICKET-5500] - Ignore the path parameters when reading the page class
+* [WICKET-5502] - Patch FileUploadBase to fix CVE-2014-0050
+</code></pre>
+<h4 id="improvement">Improvement</h4>
+<pre><code>* [WICKET-5288] - Allow &amp;lt;script&amp;gt;-Tags act as 
WebMarkUpContainer to add Child-Components
+* [WICKET-5439] - Allow restarting AbstractAjaxTimerBehavior without updating 
its hosting component
+* [WICKET-5463] - RequestUtil.getCharset(HttpServletRequest request) 
Resilience against unsupported Charsets in Request
+* [WICKET-5470] - Remove 'final' from 
org.apache.wicket.markup.html.form.EnumChoiceRenderer#getDisplayValue
+* [WICKET-5471] - Store the page if it is known that it will be used in a 
following request
+* [WICKET-5493] - Disable jar indexing
+</code></pre>
+<h4 id="new-feature">New Feature</h4>
+<pre><code>* [WICKET-3491] - Introduce IComponentOnConfigureListener
+</code></pre>
+<h4 id="task">Task</h4>
+<pre><code>* [WICKET-5488] - Promote experimental modules to become stable
+* [WICKET-5494] - Upgrade JQuery to latest stable - 1.11.0 and 2.1.0
+</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 © 2014 — 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/d8f15469/content/news/2014/02/21/cve-2014-0043.html
----------------------------------------------------------------------
diff --git a/content/news/2014/02/21/cve-2014-0043.html 
b/content/news/2014/02/21/cve-2014-0043.html
new file mode 100644
index 0000000..bfc6c97
--- /dev/null
+++ b/content/news/2014/02/21/cve-2014-0043.html
@@ -0,0 +1,82 @@
+<!DOCTYPE html>
+<html>
+    <head>
+        <meta charset="utf-8">
+        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+        <title>CVE-2014-0043 - Apache Wicket Information disclosure 
vulnerability | Apache Wicket</title>
+        <meta charset="utf8">
+        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+        <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/2014/02/21/cve-2014-0043.html -->
+       <li class=""><a href="/start/quickstart.html">Quick Start</a></li>
+               <!-- /start/download.html || 
/news/2014/02/21/cve-2014-0043.html -->
+       <li class=""><a href="/start/download.html">Download</a></li>
+               <!-- /learn || /news/2014/02/21/cve-2014-0043.html -->
+       <li class=""><a href="/learn">Documentation</a></li>
+               <!-- /help || /news/2014/02/21/cve-2014-0043.html -->
+       <li class=""><a href="/help">Support</a></li>
+               <!-- /contribute || /news/2014/02/21/cve-2014-0043.html -->
+       <li class=""><a href="/contribute">Contribute</a></li>
+               <!-- /apache || /news/2014/02/21/cve-2014-0043.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>CVE-2014-0043 - Apache Wicket Information disclosure 
vulnerability</h1>
+        </header>
+        <section class="l-one-third right">
+        </section>
+        <section class="l-two-third left">
+            <div class="l-full">
+    <p class="meta">21 Feb 2014</p>
+    <p>Severity: Important</p>
+<p>Vendor:
+The Apache Software Foundation</p>
+<p>Versions Affected:
+Apache Wicket 1.5.10 and 6.13.0</p>
+<p>Description:</p>
+<p>By issuing requests to special urls handled by Wicket it is possible to 
check for the existence of particular classes in the classpath and thus check 
whether a third party library with a known security vulnerability is in use.</p>
+<p>The application developers are recommended to upgrade to: 
+- <a href="/2014/02/06/wicket-1.5.11-released.html">Apache Wicket 1.5.11</a>
+- <a href="/2014/02/20/wicket-6.14.0-released.html">Apache Wicket 
6.14.0</a></p>
+<p>Credit:
+This issue was reported by Christian Schneider!</p>
+<p>Apache Wicket Team</p>
+</div>
+        </section>
+    </div>
+</main>
+        <footer class="l-container">
+            <div class="l-full">
+    <img height="60px" src="/img/asf_logo.gif" style="float:left">
+    Copyright © 2014 — 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>

Reply via email to