You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by da...@apache.org on 2015/07/10 10:50:35 UTC

[10/53] [abbrv] [partial] wicket-site git commit: Preparing for wicket 7 site relaunch

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/230d6865/content/news/2010/08/11/wicket-1.4.10-released.html
----------------------------------------------------------------------
diff --git a/content/news/2010/08/11/wicket-1.4.10-released.html b/content/news/2010/08/11/wicket-1.4.10-released.html
new file mode 100644
index 0000000..3c84f28
--- /dev/null
+++ b/content/news/2010/08/11/wicket-1.4.10-released.html
@@ -0,0 +1,179 @@
+<!DOCTYPE html>
+<html>
+    <head>
+        <meta charset="utf-8">
+        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+        <title>Wicket 1.4.10 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/2010/08/11/wicket-1.4.10-released.html -->
+    	<li class=""><a href="/start/quickstart.html">Quick Start</a></li>
+		<!-- /start/download.html || /news/2010/08/11/wicket-1.4.10-released.html -->
+    	<li class=""><a href="/start/download.html">Download</a></li>
+		<!-- /learn || /news/2010/08/11/wicket-1.4.10-released.html -->
+    	<li class=""><a href="/learn">Documentation</a></li>
+		<!-- /help || /news/2010/08/11/wicket-1.4.10-released.html -->
+    	<li class=""><a href="/help">Support</a></li>
+		<!-- /contribute || /news/2010/08/11/wicket-1.4.10-released.html -->
+    	<li class=""><a href="/contribute">Contribute</a></li>
+		<!-- /apache || /news/2010/08/11/wicket-1.4.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.4.10 released</h1>
+        </header>
+        <section class="l-one-third right">
+        </section>
+        <section class="l-two-third left">
+            <div class="l-full">
+    <p class="meta">11 Aug 2010</p>
+    <p>This is the tenth maintenance release of the 1.4.x series and brings over
+thirty bug fixes and improvements.</p>
+<p>As well as bringing bug fixes and small improvements, 1.4.10 brings two major new features:
+* Delayed component initialization
+* Component configuration</p>
+<p>Delayed component initialization allows developers to initialize their components outside of a constructor, when more environment is available to the component instance. From the javadoc:</p>
+<div class="highlight"><pre><code class="language-java" data-lang="java"><span class="kd">public</span> <span class="kd">class</span> <span class="nc">Component</span> <span class="o">{</span>
+	<span class="cm">/**</span>
+<span class="cm">	 * This method is meant to be used as an alternative to initialize components. Usually the</span>
+<span class="cm">	 * component&#39;s constructor is used for this task, but sometimes a component cannot be</span>
+<span class="cm">	 * initialized in isolation, it may need to access its parent component or its markup in order</span>
+<span class="cm">	 * to fully initialize. This method is invoked once per component&#39;s lifecycle when a path exists</span>
+<span class="cm">	 * from this component to the {@link Page} thus providing the component with an atomic callback</span>
+<span class="cm">	 * when the component&#39;s environment is built out.</span>
+<span class="cm">	 * &lt;p&gt;</span>
+<span class="cm">	 * Overrides must call super#{@link #onInitialize()}. Usually this should be the first thing an</span>
+<span class="cm">	 * override does, much like a constructor.</span>
+<span class="cm">	 * &lt;/p&gt;</span>
+<span class="cm">	 * &lt;p&gt;</span>
+<span class="cm">	 * Parent containers are guaranteed to be initialized before their children</span>
+<span class="cm">	 * &lt;/p&gt;</span>
+<span class="cm">	 * &lt;p&gt;</span>
+<span class="cm">	 * It is safe to use {@link #getPage()} in this method</span>
+<span class="cm">	 * &lt;/p&gt;</span>
+<span class="cm">	 * </span>
+<span class="cm">	 * &lt;p&gt;</span>
+<span class="cm">	 * NOTE:The timing of this call is not precise, the contract is that it is called sometime</span>
+<span class="cm">	 * before {@link Component#onBeforeRender()}.</span>
+<span class="cm">	 * &lt;/p&gt;</span>
+<span class="cm">	 * </span>
+<span class="cm">	 */</span>
+	<span class="kd">protected</span> <span class="kt">void</span> <span class="nf">onInitialize</span><span class="o">()</span> <span class="o">{}</span>
+<span class="o">}</span></code></pre></div>
+<p>Component configuration allows developers to easier configure component states such as visibility, enabled, etc. From the javadoc:</p>
+<div class="highlight"><pre><code class="language-java" data-lang="java"><span class="kd">public</span> <span class="kd">class</span> <span class="nc">Component</span> <span class="o">{</span>
+	<span class="cm">/**</span>
+<span class="cm">	 * Called once per request on components before they are about to be rendered. This method</span>
+<span class="cm">	 * should be used to configure such things as visibility and enabled flags.</span>
+<span class="cm">	 * &lt;p&gt;</span>
+<span class="cm">	 * Overrides must call {@code super.onConfigure()}, usually before any other code</span>
+<span class="cm">	 * &lt;/p&gt;</span>
+<span class="cm">	 * &lt;p&gt;</span>
+<span class="cm">	 * NOTE: Component hierarchy should not be modified inside this method, instead it should be</span>
+<span class="cm">	 * done in {@link #onBeforeRender()}</span>
+<span class="cm">	 * &lt;/p&gt;</span>
+<span class="cm">	 * &lt;p&gt;</span>
+<span class="cm">	 * NOTE: Why this method is preferrable to directly overriding {@link #isVisible()} and</span>
+<span class="cm">	 * {@link #isEnabled()}? Because those methods are called multiple times even for processing of</span>
+<span class="cm">	 * a single request. If they contain expensive logic they can slow down the response time of the</span>
+<span class="cm">	 * entire page. Further, overriding those methods directly on form components may lead to</span>
+<span class="cm">	 * inconsistent or unexpected state depending on when those methods are called in the form</span>
+<span class="cm">	 * processing workflow. It is a better practice to push changes to state rather than pull.</span>
+<span class="cm">	 * &lt;/p&gt;</span>
+<span class="cm">	 * &lt;p&gt;</span>
+<span class="cm">	 * NOTE: If component&#39;s visibility or another property depends on another component you may call</span>
+<span class="cm">	 * {@code other.configure()} followed by {@code other.isVisible()} as mentioned in</span>
+<span class="cm">	 * {@link #configure()} javadoc.</span>
+<span class="cm">	 * &lt;/p&gt;</span>
+<span class="cm">	 * &lt;p&gt;</span>
+<span class="cm">	 * NOTE: Why should {@link #onBeforeRender()} not be used for this? Because if visibility of a</span>
+<span class="cm">	 * component is toggled inside {@link #onBeforeRender()} another method needs to be overridden</span>
+<span class="cm">	 * to make sure {@link #onBeforeRender()} will be invoked on ivisible components:</span>
+<span class="cm">	 * </span>
+<span class="cm">	 * &lt;pre&gt;</span>
+<span class="cm">	 * class MyComponent extends WebComponent</span>
+<span class="cm">	 * {</span>
+<span class="cm">	 * 	protected void onBeforeRender()</span>
+<span class="cm">	 * 	{</span>
+<span class="cm">	 * 		setVisible(Math.rand() &amp;gt; 0.5f);</span>
+<span class="cm">	 * 		super.onBeforeRender();</span>
+<span class="cm">	 * 	}</span>
+<span class="cm">	 * </span>
+<span class="cm">	 * 	// if this override is forgotten, once invisible component will never become visible</span>
+<span class="cm">	 * 	protected boolean callOnBeforeRenderIfNotVisible()</span>
+<span class="cm">	 * 	{</span>
+<span class="cm">	 * 		return true;</span>
+<span class="cm">	 * 	}</span>
+<span class="cm">	 * }</span>
+<span class="cm">	 * &lt;/pre&gt;</span>
+<span class="cm">	 * </span>
+<span class="cm">	 * VS</span>
+<span class="cm">	 * </span>
+<span class="cm">	 * &lt;pre&gt;</span>
+<span class="cm">	 * class MyComponent extends WebComponent</span>
+<span class="cm">	 * {</span>
+<span class="cm">	 * 	protected void onConfigure()</span>
+<span class="cm">	 * 	{</span>
+<span class="cm">	 * 		setVisible(Math.rand() &amp;gt; 0.5f);</span>
+<span class="cm">	 * 		super.onConfigure();</span>
+<span class="cm">	 * 	}</span>
+<span class="cm">	 * }</span>
+<span class="cm">	 * &lt;/pre&gt;</span>
+<span class="cm">	 */</span>
+	<span class="kd">protected</span> <span class="kt">void</span> <span class="nf">onConfigure</span><span class="o">()</span> <span class="o">{}</span>
+<span class="o">}</span></code></pre></div>
+<ul>
+  <li><a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.10/">Subversion tag</a></li>
+  <li><a href="https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&amp;mode=hide&amp;sorter/order=DESC&amp;sorter/field=priority&amp;pid=12310561&amp;fixfor=12315070">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<span class="nt">&lt;/artifactId&gt;</span>
+    <span class="nt">&lt;version&gt;</span>1.4.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.4.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 © 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/230d6865/content/news/2010/08/11/wicket-1.5-M1-released.html
----------------------------------------------------------------------
diff --git a/content/news/2010/08/11/wicket-1.5-M1-released.html b/content/news/2010/08/11/wicket-1.5-M1-released.html
new file mode 100644
index 0000000..a7e8aa7
--- /dev/null
+++ b/content/news/2010/08/11/wicket-1.5-M1-released.html
@@ -0,0 +1,86 @@
+<!DOCTYPE html>
+<html>
+    <head>
+        <meta charset="utf-8">
+        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+        <title>Wicket 1.5-M1 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/2010/08/11/wicket-1.5-M1-released.html -->
+    	<li class=""><a href="/start/quickstart.html">Quick Start</a></li>
+		<!-- /start/download.html || /news/2010/08/11/wicket-1.5-M1-released.html -->
+    	<li class=""><a href="/start/download.html">Download</a></li>
+		<!-- /learn || /news/2010/08/11/wicket-1.5-M1-released.html -->
+    	<li class=""><a href="/learn">Documentation</a></li>
+		<!-- /help || /news/2010/08/11/wicket-1.5-M1-released.html -->
+    	<li class=""><a href="/help">Support</a></li>
+		<!-- /contribute || /news/2010/08/11/wicket-1.5-M1-released.html -->
+    	<li class=""><a href="/contribute">Contribute</a></li>
+		<!-- /apache || /news/2010/08/11/wicket-1.5-M1-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-M1 released</h1>
+        </header>
+        <section class="l-one-third right">
+        </section>
+        <section class="l-two-third left">
+            <div class="l-full">
+    <p class="meta">11 Aug 2010</p>
+    <p>This is the first milestone of the new 1.5.x Wicket series. The focus of 1.5.x is to 
+provide our users with a more powerful and flexible request processing pipeline.</p>
+<p>This release is NOT production-ready, it is more of a technology demo that should facilitate user-feedback we can fold into the next milestone.</p>
+<ul>
+  <li><a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+1.5">Migration notes</a></li>
+  <li><a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.5-M1/">Subversion 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.5-M1<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-M1">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/230d6865/content/news/2010/08/24/peter-ertl-committer.html
----------------------------------------------------------------------
diff --git a/content/news/2010/08/24/peter-ertl-committer.html b/content/news/2010/08/24/peter-ertl-committer.html
new file mode 100644
index 0000000..da62eb7
--- /dev/null
+++ b/content/news/2010/08/24/peter-ertl-committer.html
@@ -0,0 +1,74 @@
+<!DOCTYPE html>
+<html>
+    <head>
+        <meta charset="utf-8">
+        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+        <title>Peter Ertl is a Wicket team member | 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/2010/08/24/peter-ertl-committer.html -->
+    	<li class=""><a href="/start/quickstart.html">Quick Start</a></li>
+		<!-- /start/download.html || /news/2010/08/24/peter-ertl-committer.html -->
+    	<li class=""><a href="/start/download.html">Download</a></li>
+		<!-- /learn || /news/2010/08/24/peter-ertl-committer.html -->
+    	<li class=""><a href="/learn">Documentation</a></li>
+		<!-- /help || /news/2010/08/24/peter-ertl-committer.html -->
+    	<li class=""><a href="/help">Support</a></li>
+		<!-- /contribute || /news/2010/08/24/peter-ertl-committer.html -->
+    	<li class=""><a href="/contribute">Contribute</a></li>
+		<!-- /apache || /news/2010/08/24/peter-ertl-committer.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>Peter Ertl is a Wicket team member</h1>
+        </header>
+        <section class="l-one-third right">
+        </section>
+        <section class="l-two-third left">
+            <div class="l-full">
+    <p class="meta">24 Aug 2010</p>
+    <p>The Apache Wicket team is proud to have Peter Ertl as a new member to the team
+of developers. Peter has been active in our community for a long time now and
+has contributed many patches, reported many bugs as well as helping out on the
+user list.</p>
+<p>Welcome Peter!</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/230d6865/content/news/2010/08/index.html
----------------------------------------------------------------------
diff --git a/content/news/2010/08/index.html b/content/news/2010/08/index.html
new file mode 100644
index 0000000..5b347e9
--- /dev/null
+++ b/content/news/2010/08/index.html
@@ -0,0 +1,172 @@
+<!DOCTYPE html>
+<html>
+    <head>
+        <meta charset="utf-8">
+        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+        <title>Monthly archive for August 2010 | 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/2010/08 -->
+    	<li class=""><a href="/start/quickstart.html">Quick Start</a></li>
+		<!-- /start/download.html || /news/2010/08 -->
+    	<li class=""><a href="/start/download.html">Download</a></li>
+		<!-- /learn || /news/2010/08 -->
+    	<li class=""><a href="/learn">Documentation</a></li>
+		<!-- /help || /news/2010/08 -->
+    	<li class=""><a href="/help">Support</a></li>
+		<!-- /contribute || /news/2010/08 -->
+    	<li class=""><a href="/contribute">Contribute</a></li>
+		<!-- /apache || /news/2010/08 -->
+    	<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 August 2010</h1>
+        </header>
+        <div class="l-two-third">
+<div class="news">
+	<h3>Martin Grigorov is a Wicket team member</h3>
+  <p><small>04 Aug 2010</small></p>
+	<p>The Apache Wicket team is proud to have Martin Grigorov ...</p>
+	<a href="/news/2010/08/04/martin-grigorov-committer.html">more</a></li>
+</div>
+<div class="news">
+	<h3>Wicket 1.4.10 released</h3>
+  <p><small>11 Aug 2010</small></p>
+	<p>This is the tenth maintenance release of the 1.4.x series and brings over
+thirty bug fixes and improvements.</p>
+<p>As well as bringing bug fixes and small improvements, 1.4.10 bri...</p>
+	<a href="/news/2010/08/11/wicket-1.4.10-released.html">more</a></li>
+</div>
+<div class="news">
+	<h3>Wicket 1.5-M1 released</h3>
+  <p><small>11 Aug 2010</small></p>
+	<p>This is the first milestone of the new 1.5.x Wicket series. The focus of 1.5.x is to 
+provide our users with a more powerful and flexible request processing pipeline.</p>
+<p>This release is NOT production-ready, it is more of a technology demo that should facilitate user-feedback we can...</p>
+	<a href="/news/2010/08/11/wicket-1.5-M1-released.html">more</a></li>
+</div>
+<div class="news">
+	<h3>Peter Ertl is a Wicket team member</h3>
+  <p><small>24 Aug 2010</small></p>
+	<p>The Apache Wicket team is proud to have Peter Er...</p>
+	<a href="/news/2010/08/24/peter-ertl-committer.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/230d6865/content/news/2010/09/09/wicket-1.4.11-released.html
----------------------------------------------------------------------
diff --git a/content/news/2010/09/09/wicket-1.4.11-released.html b/content/news/2010/09/09/wicket-1.4.11-released.html
new file mode 100644
index 0000000..3337bb1
--- /dev/null
+++ b/content/news/2010/09/09/wicket-1.4.11-released.html
@@ -0,0 +1,84 @@
+<!DOCTYPE html>
+<html>
+    <head>
+        <meta charset="utf-8">
+        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+        <title>Wicket 1.4.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/2010/09/09/wicket-1.4.11-released.html -->
+    	<li class=""><a href="/start/quickstart.html">Quick Start</a></li>
+		<!-- /start/download.html || /news/2010/09/09/wicket-1.4.11-released.html -->
+    	<li class=""><a href="/start/download.html">Download</a></li>
+		<!-- /learn || /news/2010/09/09/wicket-1.4.11-released.html -->
+    	<li class=""><a href="/learn">Documentation</a></li>
+		<!-- /help || /news/2010/09/09/wicket-1.4.11-released.html -->
+    	<li class=""><a href="/help">Support</a></li>
+		<!-- /contribute || /news/2010/09/09/wicket-1.4.11-released.html -->
+    	<li class=""><a href="/contribute">Contribute</a></li>
+		<!-- /apache || /news/2010/09/09/wicket-1.4.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.4.11 released</h1>
+        </header>
+        <section class="l-one-third right">
+        </section>
+        <section class="l-two-third left">
+            <div class="l-full">
+    <p class="meta">09 Sep 2010</p>
+    <p>This is the eleventh maintenance release of the 1.4.x series and brings over
+fifty bug fixes and improvements.</p>
+<ul>
+  <li><a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.11/">Subversion tag</a></li>
+  <li><a href="https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&amp;&amp;pid=12310561&amp;fixfor=12315236&amp;sorter/field=issuekey&amp;sorter/order=DESC">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<span class="nt">&lt;/artifactId&gt;</span>
+    <span class="nt">&lt;version&gt;</span>1.4.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.4.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/230d6865/content/news/2010/09/17/wicket.1.4.12-released.html
----------------------------------------------------------------------
diff --git a/content/news/2010/09/17/wicket.1.4.12-released.html b/content/news/2010/09/17/wicket.1.4.12-released.html
new file mode 100644
index 0000000..9e963f9
--- /dev/null
+++ b/content/news/2010/09/17/wicket.1.4.12-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.12 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/2010/09/17/wicket.1.4.12-released.html -->
+    	<li class=""><a href="/start/quickstart.html">Quick Start</a></li>
+		<!-- /start/download.html || /news/2010/09/17/wicket.1.4.12-released.html -->
+    	<li class=""><a href="/start/download.html">Download</a></li>
+		<!-- /learn || /news/2010/09/17/wicket.1.4.12-released.html -->
+    	<li class=""><a href="/learn">Documentation</a></li>
+		<!-- /help || /news/2010/09/17/wicket.1.4.12-released.html -->
+    	<li class=""><a href="/help">Support</a></li>
+		<!-- /contribute || /news/2010/09/17/wicket.1.4.12-released.html -->
+    	<li class=""><a href="/contribute">Contribute</a></li>
+		<!-- /apache || /news/2010/09/17/wicket.1.4.12-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.12 released</h1>
+        </header>
+        <section class="l-one-third right">
+        </section>
+        <section class="l-two-third left">
+            <div class="l-full">
+    <p class="meta">17 Sep 2010</p>
+    <p>This is the twelfth maintenance release of the 1.4.x series. This release brings a fix to a <a href="https://issues.apache.org/jira/browse/WICKET-3040">critical bug</a> which prevented ajax form submits in FireFox.</p>
+<ul>
+  <li><a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.12">Subversion tag</a></li>
+  <li><a href="https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&amp;&amp;pid=12310561&amp;fixfor=12315312&amp;sorter/field=priority&amp;sorter/order=DESC">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<span class="nt">&lt;/artifactId&gt;</span>
+    <span class="nt">&lt;version&gt;</span>1.4.12<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.12">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/230d6865/content/news/2010/09/17/wicket.1.5-M2.1-released.html
----------------------------------------------------------------------
diff --git a/content/news/2010/09/17/wicket.1.5-M2.1-released.html b/content/news/2010/09/17/wicket.1.5-M2.1-released.html
new file mode 100644
index 0000000..4a7f110
--- /dev/null
+++ b/content/news/2010/09/17/wicket.1.5-M2.1-released.html
@@ -0,0 +1,87 @@
+<!DOCTYPE html>
+<html>
+    <head>
+        <meta charset="utf-8">
+        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+        <title>Wicket 1.5-M2.1 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/2010/09/17/wicket.1.5-M2.1-released.html -->
+    	<li class=""><a href="/start/quickstart.html">Quick Start</a></li>
+		<!-- /start/download.html || /news/2010/09/17/wicket.1.5-M2.1-released.html -->
+    	<li class=""><a href="/start/download.html">Download</a></li>
+		<!-- /learn || /news/2010/09/17/wicket.1.5-M2.1-released.html -->
+    	<li class=""><a href="/learn">Documentation</a></li>
+		<!-- /help || /news/2010/09/17/wicket.1.5-M2.1-released.html -->
+    	<li class=""><a href="/help">Support</a></li>
+		<!-- /contribute || /news/2010/09/17/wicket.1.5-M2.1-released.html -->
+    	<li class=""><a href="/contribute">Contribute</a></li>
+		<!-- /apache || /news/2010/09/17/wicket.1.5-M2.1-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-M2.1 released</h1>
+        </header>
+        <section class="l-one-third right">
+        </section>
+        <section class="l-two-third left">
+            <div class="l-full">
+    <p class="meta">17 Sep 2010</p>
+    <p>This is the second milestone of the new 1.5.x Wicket series. The focus of 1.5.x is to 
+provide our users with a more powerful and flexible request processing pipeline.</p>
+<p>This release is NOT production-ready, it is more of a technology demo that should facilitate user-feedback we can fold into the next milestone.</p>
+<p>New and noteworthy items in this milestone include <a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+1.5#MigrationtoWicket1.5-Intercomponentevents">Inter-component event mechanism</a> which allows components to communicate in a decoupled fashion, and improved <a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+1.5#MigrationtoWicket1.5-getResourceSettings%2528%2529.setAddLastModifiedTimeToResourceReferenceUrl%2528%2529hasbeenreplaced">resource caching</a>.</p>
+<ul>
+  <li><a href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+1.5">Migration notes</a></li>
+  <li><a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.5-M2.1">Subversion 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.5-M2.1<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-M2.1">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/230d6865/content/news/2010/09/index.html
----------------------------------------------------------------------
diff --git a/content/news/2010/09/index.html b/content/news/2010/09/index.html
new file mode 100644
index 0000000..1e2f65a
--- /dev/null
+++ b/content/news/2010/09/index.html
@@ -0,0 +1,177 @@
+<!DOCTYPE html>
+<html>
+    <head>
+        <meta charset="utf-8">
+        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+        <title>Monthly archive for September 2010 | 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/2010/09 -->
+    	<li class=""><a href="/start/quickstart.html">Quick Start</a></li>
+		<!-- /start/download.html || /news/2010/09 -->
+    	<li class=""><a href="/start/download.html">Download</a></li>
+		<!-- /learn || /news/2010/09 -->
+    	<li class=""><a href="/learn">Documentation</a></li>
+		<!-- /help || /news/2010/09 -->
+    	<li class=""><a href="/help">Support</a></li>
+		<!-- /contribute || /news/2010/09 -->
+    	<li class=""><a href="/contribute">Contribute</a></li>
+		<!-- /apache || /news/2010/09 -->
+    	<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 September 2010</h1>
+        </header>
+        <div class="l-two-third">
+<div class="news">
+	<h3>Wicket 1.4.11 released</h3>
+  <p><small>09 Sep 2010</small></p>
+	<p>This is the eleventh maintenance release of the 1.4.x series and brings over
+fifty bug fixes and improvements.</p>
+<ul>
+  <li><a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.11/">Subversion tag</a></li>
+  <li><a href="https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&amp;&amp;pid=12310561&amp;fixfor=12315236&amp;sorter/field=issuekey&amp;sorter/order=DESC">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.apac...</code></pre></div>
+	<a href="/news/2010/09/09/wicket-1.4.11-released.html">more</a></li>
+</div>
+<div class="news">
+	<h3>Wicket 1.4.12 released</h3>
+  <p><small>17 Sep 2010</small></p>
+	<p>This is the twelfth maintenance release of the 1.4.x series. This release brings a fix to a <a href="https://issues.apache.org/jira/browse/WICKET-3040">critical bug</a> which prevented ajax form submits in FireFox.</p>
+<ul>
+  <li><a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.12">Subversion tag</a></li>
+  <li><a href="https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&amp;&amp;pid=12310561&amp;fixfor=12315312&amp;sorter/field=priority&amp;sorter/order=DESC">Changelog</a></li>
+  <li>To use in Maven:</li>
+...</ul>
+	<a href="/news/2010/09/17/wicket.1.4.12-released.html">more</a></li>
+</div>
+<div class="news">
+	<h3>Wicket 1.5-M2.1 released</h3>
+  <p><small>17 Sep 2010</small></p>
+	<p>This is the second milestone of the new 1.5.x Wicket series. The focus of 1.5.x is to 
+provide our users with a more powerful and flexible request processing pipeline.</p>
+<p>This release is NOT production-ready, it is more of a technology demo that should facilitate user-feedback we can ...</p>
+	<a href="/news/2010/09/17/wicket.1.5-M2.1-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/230d6865/content/news/2010/11/01/wicket-1.4.13-released.html
----------------------------------------------------------------------
diff --git a/content/news/2010/11/01/wicket-1.4.13-released.html b/content/news/2010/11/01/wicket-1.4.13-released.html
new file mode 100644
index 0000000..6474e0d
--- /dev/null
+++ b/content/news/2010/11/01/wicket-1.4.13-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.13 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/2010/11/01/wicket-1.4.13-released.html -->
+    	<li class=""><a href="/start/quickstart.html">Quick Start</a></li>
+		<!-- /start/download.html || /news/2010/11/01/wicket-1.4.13-released.html -->
+    	<li class=""><a href="/start/download.html">Download</a></li>
+		<!-- /learn || /news/2010/11/01/wicket-1.4.13-released.html -->
+    	<li class=""><a href="/learn">Documentation</a></li>
+		<!-- /help || /news/2010/11/01/wicket-1.4.13-released.html -->
+    	<li class=""><a href="/help">Support</a></li>
+		<!-- /contribute || /news/2010/11/01/wicket-1.4.13-released.html -->
+    	<li class=""><a href="/contribute">Contribute</a></li>
+		<!-- /apache || /news/2010/11/01/wicket-1.4.13-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.13 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 2010</p>
+    <p>This is thirteenth release of the Wicket 1.4.x series. This is primarily a minor bugfix release on the 1.4.x (stable) branch.</p>
+<ul>
+  <li><a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.13">Subversion tag</a></li>
+  <li><a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;styleName=Html&amp;version=12315330">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<span class="nt">&lt;/artifactId&gt;</span>
+    <span class="nt">&lt;version&gt;</span>1.4.13<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.13">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/230d6865/content/news/2010/11/05/wicket-1.5-M3-released.html
----------------------------------------------------------------------
diff --git a/content/news/2010/11/05/wicket-1.5-M3-released.html b/content/news/2010/11/05/wicket-1.5-M3-released.html
new file mode 100644
index 0000000..b916453
--- /dev/null
+++ b/content/news/2010/11/05/wicket-1.5-M3-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-M3 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/2010/11/05/wicket-1.5-M3-released.html -->
+    	<li class=""><a href="/start/quickstart.html">Quick Start</a></li>
+		<!-- /start/download.html || /news/2010/11/05/wicket-1.5-M3-released.html -->
+    	<li class=""><a href="/start/download.html">Download</a></li>
+		<!-- /learn || /news/2010/11/05/wicket-1.5-M3-released.html -->
+    	<li class=""><a href="/learn">Documentation</a></li>
+		<!-- /help || /news/2010/11/05/wicket-1.5-M3-released.html -->
+    	<li class=""><a href="/help">Support</a></li>
+		<!-- /contribute || /news/2010/11/05/wicket-1.5-M3-released.html -->
+    	<li class=""><a href="/contribute">Contribute</a></li>
+		<!-- /apache || /news/2010/11/05/wicket-1.5-M3-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-M3 released</h1>
+        </header>
+        <section class="l-one-third right">
+        </section>
+        <section class="l-two-third left">
+            <div class="l-full">
+    <p class="meta">05 Nov 2010</p>
+    <p>This is another milestone release from trunk (in-development branch).  This release includes several enhancments and fixes, which can be seen in the changelog (linked below).</p>
+<ul>
+  <li><a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.5-M3">Subversion tag</a></li>
+  <li><a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;styleName=Html&amp;version=12315329">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<span class="nt">&lt;/artifactId&gt;</span>
+    <span class="nt">&lt;version&gt;</span>1.5-M3<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-M3">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/230d6865/content/news/2010/11/21/pedro-santos-committer.html
----------------------------------------------------------------------
diff --git a/content/news/2010/11/21/pedro-santos-committer.html b/content/news/2010/11/21/pedro-santos-committer.html
new file mode 100644
index 0000000..5eeb38b
--- /dev/null
+++ b/content/news/2010/11/21/pedro-santos-committer.html
@@ -0,0 +1,77 @@
+<!DOCTYPE html>
+<html>
+    <head>
+        <meta charset="utf-8">
+        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+        <title>Pedro Santos is a Wicket team member | 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/2010/11/21/pedro-santos-committer.html -->
+    	<li class=""><a href="/start/quickstart.html">Quick Start</a></li>
+		<!-- /start/download.html || /news/2010/11/21/pedro-santos-committer.html -->
+    	<li class=""><a href="/start/download.html">Download</a></li>
+		<!-- /learn || /news/2010/11/21/pedro-santos-committer.html -->
+    	<li class=""><a href="/learn">Documentation</a></li>
+		<!-- /help || /news/2010/11/21/pedro-santos-committer.html -->
+    	<li class=""><a href="/help">Support</a></li>
+		<!-- /contribute || /news/2010/11/21/pedro-santos-committer.html -->
+    	<li class=""><a href="/contribute">Contribute</a></li>
+		<!-- /apache || /news/2010/11/21/pedro-santos-committer.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>Pedro Santos is a Wicket team member</h1>
+        </header>
+        <section class="l-one-third right">
+        </section>
+        <section class="l-two-third left">
+            <div class="l-full">
+    <p class="meta">21 Nov 2010</p>
+    <p>Pedro Santos has been added as a committer and PMC member for Apache Wicket.
+Pedro has been increasingly active in the Wicket community in recent months,
+and his patches continue to improve in quality. Additionally, Pedro is always
+willing to do the “grunt work” of creating great test cases for his patches,
+or for JIRA issues that others have attached patches to. Test cases are
+invaluable to the development of Wicket because they help us not introduce
+regressions as we fix bugs and add features.</p>
+<p>Thanks Pedro, and we look forward to working with you!</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/230d6865/content/news/2010/11/29/wicket-1.4.14-released.html
----------------------------------------------------------------------
diff --git a/content/news/2010/11/29/wicket-1.4.14-released.html b/content/news/2010/11/29/wicket-1.4.14-released.html
new file mode 100644
index 0000000..b662865
--- /dev/null
+++ b/content/news/2010/11/29/wicket-1.4.14-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.14 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/2010/11/29/wicket-1.4.14-released.html -->
+    	<li class=""><a href="/start/quickstart.html">Quick Start</a></li>
+		<!-- /start/download.html || /news/2010/11/29/wicket-1.4.14-released.html -->
+    	<li class=""><a href="/start/download.html">Download</a></li>
+		<!-- /learn || /news/2010/11/29/wicket-1.4.14-released.html -->
+    	<li class=""><a href="/learn">Documentation</a></li>
+		<!-- /help || /news/2010/11/29/wicket-1.4.14-released.html -->
+    	<li class=""><a href="/help">Support</a></li>
+		<!-- /contribute || /news/2010/11/29/wicket-1.4.14-released.html -->
+    	<li class=""><a href="/contribute">Contribute</a></li>
+		<!-- /apache || /news/2010/11/29/wicket-1.4.14-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.14 released</h1>
+        </header>
+        <section class="l-one-third right">
+        </section>
+        <section class="l-two-third left">
+            <div class="l-full">
+    <p class="meta">29 Nov 2010</p>
+    <p>This is fourteenth release of the Wicket 1.4.x series. This is primarily a minor bugfix release on the 1.4.x (stable) branch.</p>
+<ul>
+  <li><a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.14">Subversion tag</a></li>
+  <li><a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;styleName=Html&amp;version=12315480">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<span class="nt">&lt;/artifactId&gt;</span>
+    <span class="nt">&lt;version&gt;</span>1.4.14<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.14">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/230d6865/content/news/2010/11/index.html
----------------------------------------------------------------------
diff --git a/content/news/2010/11/index.html b/content/news/2010/11/index.html
new file mode 100644
index 0000000..edada6d
--- /dev/null
+++ b/content/news/2010/11/index.html
@@ -0,0 +1,189 @@
+<!DOCTYPE html>
+<html>
+    <head>
+        <meta charset="utf-8">
+        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+        <title>Monthly archive for November 2010 | 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/2010/11 -->
+    	<li class=""><a href="/start/quickstart.html">Quick Start</a></li>
+		<!-- /start/download.html || /news/2010/11 -->
+    	<li class=""><a href="/start/download.html">Download</a></li>
+		<!-- /learn || /news/2010/11 -->
+    	<li class=""><a href="/learn">Documentation</a></li>
+		<!-- /help || /news/2010/11 -->
+    	<li class=""><a href="/help">Support</a></li>
+		<!-- /contribute || /news/2010/11 -->
+    	<li class=""><a href="/contribute">Contribute</a></li>
+		<!-- /apache || /news/2010/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 2010</h1>
+        </header>
+        <div class="l-two-third">
+<div class="news">
+	<h3>Wicket 1.4.13 released</h3>
+  <p><small>01 Nov 2010</small></p>
+	<p>This is thirteenth release of the Wicket 1.4.x series. This is primarily a minor bugfix release on the 1.4.x (stable) branch.</p>
+<ul>
+  <li><a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.13">Subversion tag</a></li>
+  <li><a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;styleName=Html&amp;version=12315330">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;group...</span></code></pre></div>
+	<a href="/news/2010/11/01/wicket-1.4.13-released.html">more</a></li>
+</div>
+<div class="news">
+	<h3>Wicket 1.5-M3 released</h3>
+  <p><small>05 Nov 2010</small></p>
+	<p>This is another milestone release from trunk (in-development branch).  This release includes several enhancments and fixes, which can be seen in the changelog (linked below).</p>
+<ul>
+  <li><a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.5-M3">Subversion tag</a></li>
+  <li><a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;styleName=Html&amp;version=12315329">Changel...</a></li>
+</ul>
+	<a href="/news/2010/11/05/wicket-1.5-M3-released.html">more</a></li>
+</div>
+<div class="news">
+	<h3>Pedro Santos is a Wicket team member</h3>
+  <p><small>21 Nov 2010</small></p>
+	<p>Pedro Santos has been added as a committer and PMC member for Apache Wicket.
+Pedro has been increasingly active in the Wicket community in recent months,
+and his patches continue to improve in quality. Additionally, Pedro is always
+willing to do the “grunt work” of creating great test cases for his pa...</p>
+	<a href="/news/2010/11/21/pedro-santos-committer.html">more</a></li>
+</div>
+<div class="news">
+	<h3>Wicket 1.4.14 released</h3>
+  <p><small>29 Nov 2010</small></p>
+	<p>This is fourteenth release of the Wicket 1.4.x series. This is primarily a minor bugfix release on the 1.4.x (stable) branch.</p>
+<ul>
+  <li><a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.14">Subversion tag</a></li>
+  <li><a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;styleName=Html&amp;version=12315480">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;group...</span></code></pre></div>
+	<a href="/news/2010/11/29/wicket-1.4.14-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/230d6865/content/news/2010/12/24/wicket-1.4.15-released.html
----------------------------------------------------------------------
diff --git a/content/news/2010/12/24/wicket-1.4.15-released.html b/content/news/2010/12/24/wicket-1.4.15-released.html
new file mode 100644
index 0000000..2a92c70
--- /dev/null
+++ b/content/news/2010/12/24/wicket-1.4.15-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.15 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/2010/12/24/wicket-1.4.15-released.html -->
+    	<li class=""><a href="/start/quickstart.html">Quick Start</a></li>
+		<!-- /start/download.html || /news/2010/12/24/wicket-1.4.15-released.html -->
+    	<li class=""><a href="/start/download.html">Download</a></li>
+		<!-- /learn || /news/2010/12/24/wicket-1.4.15-released.html -->
+    	<li class=""><a href="/learn">Documentation</a></li>
+		<!-- /help || /news/2010/12/24/wicket-1.4.15-released.html -->
+    	<li class=""><a href="/help">Support</a></li>
+		<!-- /contribute || /news/2010/12/24/wicket-1.4.15-released.html -->
+    	<li class=""><a href="/contribute">Contribute</a></li>
+		<!-- /apache || /news/2010/12/24/wicket-1.4.15-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.15 released</h1>
+        </header>
+        <section class="l-one-third right">
+        </section>
+        <section class="l-two-third left">
+            <div class="l-full">
+    <p class="meta">24 Dec 2010</p>
+    <p>This is fifteenth release of the Wicket 1.4.x series. This is primarily a minor bugfix release on the 1.4.x (stable) branch.</p>
+<ul>
+  <li><a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.15">Subversion tag</a></li>
+  <li><a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;styleName=Html&amp;version=12315900">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<span class="nt">&lt;/artifactId&gt;</span>
+    <span class="nt">&lt;version&gt;</span>1.4.15<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.15">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/230d6865/content/news/2010/12/index.html
----------------------------------------------------------------------
diff --git a/content/news/2010/12/index.html b/content/news/2010/12/index.html
new file mode 100644
index 0000000..aa1ca65
--- /dev/null
+++ b/content/news/2010/12/index.html
@@ -0,0 +1,157 @@
+<!DOCTYPE html>
+<html>
+    <head>
+        <meta charset="utf-8">
+        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+        <title>Monthly archive for December 2010 | 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/2010/12 -->
+    	<li class=""><a href="/start/quickstart.html">Quick Start</a></li>
+		<!-- /start/download.html || /news/2010/12 -->
+    	<li class=""><a href="/start/download.html">Download</a></li>
+		<!-- /learn || /news/2010/12 -->
+    	<li class=""><a href="/learn">Documentation</a></li>
+		<!-- /help || /news/2010/12 -->
+    	<li class=""><a href="/help">Support</a></li>
+		<!-- /contribute || /news/2010/12 -->
+    	<li class=""><a href="/contribute">Contribute</a></li>
+		<!-- /apache || /news/2010/12 -->
+    	<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 December 2010</h1>
+        </header>
+        <div class="l-two-third">
+<div class="news">
+	<h3>Wicket 1.4.15 released</h3>
+  <p><small>24 Dec 2010</small></p>
+	<p>This is fifteenth release of the Wicket 1.4.x series. This is primarily a minor bugfix release on the 1.4.x (stable) branch.</p>
+<ul>
+  <li><a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.15">Subversion tag</a></li>
+  <li><a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;styleName=Html&amp;version=12315900">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;grou...</span></code></pre></div>
+	<a href="/news/2010/12/24/wicket-1.4.15-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>