You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by ad...@apache.org on 2015/12/04 23:49:43 UTC

[18/19] wicket-site git commit: WICKET-6049 updated links to example site

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/f39616cb/content/learn/examples/usingfragments.html
----------------------------------------------------------------------
diff --git a/content/learn/examples/usingfragments.html b/content/learn/examples/usingfragments.html
index 34c037b..8dfb452 100644
--- a/content/learn/examples/usingfragments.html
+++ b/content/learn/examples/usingfragments.html
@@ -52,12 +52,12 @@
             <p>This example shows you how to use fragments (Wicket 1.2 feature) to lessen
 the burden on extra markup files. Fragments are ‘inline panels’ and are a
 quick way of using panel type components in pages without having to create a
-<code>Panel</code> markup file and class.</p>
+<code class="highlighter-rouge">Panel</code> markup file and class.</p>
 <p>In all the Wicket examples, you have to put all files in the same package
 directory. This means putting the markup files and the java files next to one
 another. It is possible to alter this behavior, but that is beyond the scope
-of this example. The only exception is the obligatory <code>web.xml</code> file which
-should reside in the <code>WEB-INF/</code> directory of your web application root
+of this example. The only exception is the obligatory <code class="highlighter-rouge">web.xml</code> file which
+should reside in the <code class="highlighter-rouge">WEB-INF/</code> directory of your web application root
 folder.</p>
 <p>In this example we assume you already have read and understood the other
 examples which give you information on the structure and nature of Wicket
@@ -78,7 +78,7 @@ each item in the loop.</p>
 <span class="nt">&lt;/body&gt;</span>
 <span class="nt">&lt;/html&gt;</span></code></pre></figure>
 <p>As you can see in this markup file, we already took care of adding the
-fragment markup to the page in the <code>&lt;wicket:fragment&gt;</code> tags. Each fragment
+fragment markup to the page in the <code class="highlighter-rouge">&lt;wicket:fragment&gt;</code> tags. Each fragment
 can contain its own markup and components. Those components need to be added
 to the Fragment instance in the Java file, just as you would do with a panel
 and web markup container.</p>
@@ -96,9 +96,9 @@ and web markup container.</p>
         <span class="n">add</span><span class="o">(</span><span class="n">loop</span><span class="o">);</span>
     <span class="o">}</span>
 <span class="o">}</span></code></pre></figure>
-<p>The Loop will render 5 items, and the <code>populateItem</code> method will be called
+<p>The Loop will render 5 items, and the <code class="highlighter-rouge">populateItem</code> method will be called
 for each item. In each item we construct a fragment identifier that
-corresponds to the identifier in the <code>&lt;wicket:fragment&gt;</code>. The <code>Fragment</code>
+corresponds to the identifier in the <code class="highlighter-rouge">&lt;wicket:fragment&gt;</code>. The <code class="highlighter-rouge">Fragment</code>
 constructor takes the identifier of the markup it needs to attach to, and the
 fragment identifier telling it where to find the specific markup in the file.</p>
 <h2 id="adding-components-to-fragments">Adding components to fragments</h2>
@@ -143,14 +143,14 @@ subclass for fragment one to encapsulate the component.</p>
         <span class="n">add</span><span class="o">(</span><span class="n">loop</span><span class="o">);</span>
     <span class="o">}</span>
 <span class="o">}</span></code></pre></figure>
-<p>The class <code>Fragment1</code> adds the label to itself. In the loop’s <code>populateItem</code>
-we alternate the fragments type between <code>Fragment</code> and <code>Fragment1</code>. This
-means that in the final page on one line you’ll see <code>"panel 1 Hello, World!"</code>
-and on the other line just <code>"panel 2"</code>.</p>
+<p>The class <code class="highlighter-rouge">Fragment1</code> adds the label to itself. In the loop’s <code class="highlighter-rouge">populateItem</code>
+we alternate the fragments type between <code class="highlighter-rouge">Fragment</code> and <code class="highlighter-rouge">Fragment1</code>. This
+means that in the final page on one line you’ll see <code class="highlighter-rouge">"panel 1 Hello, World!"</code>
+and on the other line just <code class="highlighter-rouge">"panel 2"</code>.</p>
 <h2 id="summary">Summary</h2>
 <p>Fragments make a quick way to add encapsulated components without having to
 resort to setting the visibility flag on a markup container. For fragments we
-introduced a new Wicket tag: <code>&lt;wicket:fragment&gt;</code>.</p>
+introduced a new Wicket tag: <code class="highlighter-rouge">&lt;wicket:fragment&gt;</code>.</p>
         </section>
     </div>
 </main>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/f39616cb/content/learn/index.html
----------------------------------------------------------------------
diff --git a/content/learn/index.html b/content/learn/index.html
index f0cbf37..22ffc15 100644
--- a/content/learn/index.html
+++ b/content/learn/index.html
@@ -72,13 +72,13 @@ We also publish a news item on our website with the announcement, and it is also
 <p>Here are the most recent headlines:</p>
 <ul>
   <li>
-    <p><a href="/news/2015/11/16/wicket-6-21-0-released.html">Apache Wicket 6.21.0 released</a> <small>16 Nov 2015</small></p>
+    <p><a href="/news/2015/11/16/wicket-6.21.0-released.html">Apache Wicket 6.21.0 released</a> <small>16 Nov 2015</small></p>
   </li>
   <li>
-    <p><a href="/news/2015/11/15/wicket-1-4-x-eol.html">Apache Wicket 1.4.x end of life</a> <small>15 Nov 2015</small></p>
+    <p><a href="/news/2015/11/15/wicket-1.4.x-eol.html">Apache Wicket 1.4.x end of life</a> <small>15 Nov 2015</small></p>
   </li>
   <li>
-    <p><a href="/news/2015/10/25/wicket-7-1-0-released.html">Apache Wicket 7.1.0 released</a> <small>25 Oct 2015</small></p>
+    <p><a href="/news/2015/10/25/wicket-7.1.0-released.html">Apache Wicket 7.1.0 released</a> <small>25 Oct 2015</small></p>
   </li>
 </ul>
 <p>The complete articles and all other news items are available in the <a href="/news">archives</a>.</p>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/f39616cb/content/news/2009/07/30/wicket-1-3-7-released.html
----------------------------------------------------------------------
diff --git a/content/news/2009/07/30/wicket-1-3-7-released.html b/content/news/2009/07/30/wicket-1-3-7-released.html
deleted file mode 100644
index aa89da2..0000000
--- a/content/news/2009/07/30/wicket-1-3-7-released.html
+++ /dev/null
@@ -1,155 +0,0 @@
-<!DOCTYPE html>
-<html>
-    <head>
-        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
-        <meta charset="utf-8">
-        <title>Apache Wicket 1.3.7 marks end of life for Wicket 1.3 | Apache Wicket</title>
-        <meta name="viewport" content="width=device-width, initial-scale=1" />
-
-        <link rel="shortcut icon" href="/favicon.ico" type="image/vnd.microsoft.icon" />
-        <link rel="stylesheet" href="/css/style.css" type="text/css" media="screen" />
-        <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet" />
-
-		<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
-
-    </head>
-
-    <body class="">
-        <div class="header default">
-    <div class="l-container">
-<nav class="mainmenu">
-    <ul>
-		<!-- /start/quickstart.html || /news/2009/07/30/wicket-1-3-7-released.html -->
-    	<li class=""><a href="/start/quickstart.html">Quick Start</a></li>
-		<!-- /start/download.html || /news/2009/07/30/wicket-1-3-7-released.html -->
-    	<li class=""><a href="/start/download.html">Download</a></li>
-		<!-- /learn || /news/2009/07/30/wicket-1-3-7-released.html -->
-    	<li class=""><a href="/learn">Documentation</a></li>
-		<!-- /help || /news/2009/07/30/wicket-1-3-7-released.html -->
-    	<li class=""><a href="/help">Support</a></li>
-		<!-- /contribute || /news/2009/07/30/wicket-1-3-7-released.html -->
-    	<li class=""><a href="/contribute">Contribute</a></li>
-		<!-- /community || /news/2009/07/30/wicket-1-3-7-released.html -->
-    	<li class=""><a href="/community">Community</a></li>
-		<!-- /apache || /news/2009/07/30/wicket-1-3-7-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 1.3.7 marks end of life for Wicket 1.3</h1>
-        </header>
-        <section class="l-one-third right">
-            <div id="toc" class="toc"><div id="toc-title"><h2>Table of Contents</h2></div><ul><li class="toc--level-1 toc--section-1"><a href="#apache-wicket-137"><span class="toc-number">1</span> <span class="toc-text">Apache Wicket 1.3.7</span></a><ul><li class="toc--level-2 toc--section-2"><a href="#this-release"><span class="toc-number">1.1</span> <span class="toc-text">This release</span></a></li><li class="toc--level-2 toc--section-3"><a href="#migrating-from-12"><span class="toc-number">1.2</span> <span class="toc-text">Migrating from 1.2</span></a></li><li class="toc--level-2 toc--section-4"><a href="#downloading-the-release"><span class="toc-number">1.3</span> <span class="toc-text">Downloading the release</span></a></li><li class="toc--level-2 toc--section-5"><a href="#validating-the-release"><span class="toc-number">1.4</span> <span class="toc-text">Validating the release</span></a></li><li class="toc--level-2 toc--section-6"><a href="#reporting-bugs"><span class="toc-num
 ber">1.5</span> <span class="toc-text">Reporting bugs</span></a></li><li class="toc--level-2 toc--section-7"><a href="#the-distribution"><span class="toc-number">1.6</span> <span class="toc-text">The distribution</span></a></li><li class="toc--level-2 toc--section-8"><a href="#release-notes"><span class="toc-number">1.7</span> <span class="toc-text">Release Notes</span></a></li></ul></li></ul></div>
-        </section>
-        <section class="l-two-third left">
-            <div class="l-full">
-    <p class="meta">30 Jul 2009</p>
-    <p>The Apache Wicket team is proud to present the release of Apache Wicket
-1.3.7. This will be the last feature release for the 1.3.x branch. Going
-forward, only security fixes will be released in the 1.3.x branch - meaning
-that 1.3.7 may be the last release in this branch. All users are encouraged
-to upgrade to 1.4.0 as soon as possible. As work begins on 1.5 in the near
-future, we will be supporting 1.4.x and 1.5.x.</p>
-<p>Eager people click here to download the distribution, others can read
-further:</p>
-<ul>
-  <li><a href="http://www.apache.org/dyn/closer.cgi/wicket/1.3.7">http://www.apache.org/dyn/closer.cgi/wicket/1.3.7</a></li>
-</ul>
-<p>We thank you for your patience and support.</p>
-<p>The Wicket Team</p>
-<h2 id="apache-wicket-137">Apache Wicket 1.3.7</h2>
-<p>Apache Wicket is a component oriented Java web application framework. With
-proper mark-up/logic separation, a POJO data model, and a refreshing lack of
-XML, Apache Wicket makes developing web-apps simple and enjoyable again. Swap
-the boilerplate, complex debugging and brittle code for powerful, reusable
-components written with plain Java and HTML.</p>
-<p>You can find out more about Apache Wicket on <a href="http://wicket.apache.org">our website</a></p>
-<h3 id="this-release">This release</h3>
-<p>This will be the last feature release for the 1.3.x branch. Going forward,
-only security fixes will be released in the 1.3.x branch - meaning that 1.3.7
-may be the last release in this branch. All users are encouraged to upgrade
-to 1.4.0 as soon as possible. As work begins on 1.5 in the near future, we
-will be supporting 1.4.x and 1.5.x.</p>
-<h3 id="migrating-from-12">Migrating from 1.2</h3>
-<p>If you are coming from Wicket 1.2, you really want to read our migration
-guide, found on the wiki:</p>
-<p>https://cwiki.apache.org/confluence/display/WICKET/Migrating+to+Wicket+1.3</p>
-<h3 id="downloading-the-release">Downloading the release</h3>
-<p>You can download the release from the official Apache mirror system, and you
-can find it through the following link:</p>
-<p>http://www.apache.org/dyn/closer.cgi/wicket/1.3.7/</p>
-<p>For the Maven and Ivy fans out there: update your pom’s to the following, and
-everything will be downloaded automatically:</p>
-<figure class="highlight"><pre><code class="language-xml" data-lang="xml"><span class="nt">&lt;dependency&gt;</span>
-    <span class="nt">&lt;groupId&gt;</span>org.apache.wicket<span class="nt">&lt;/groupId&gt;</span>
-    <span class="nt">&lt;artifactId&gt;</span>wicket<span class="nt">&lt;/artifactId&gt;</span>
-    <span class="nt">&lt;version&gt;</span>1.3.7<span class="nt">&lt;/version&gt;</span>
-<span class="nt">&lt;/dependency&gt;</span></code></pre></figure>
-<p>Substitute the artifact ID with the projects of your liking to get the other
-projects.</p>
-<p>Please note that we don’t prescribe a Logging implementation for SLF4J. You
-need to specify yourself which one you prefer. Read more about SLF4J here:
-http://slf4j.org</p>
-<h3 id="validating-the-release">Validating the release</h3>
-<p>The release has been signed by Igor Vaynberg, your release manager for today.
-The public key can be found in the KEYS file in the download area. Download
-the KEYS file only from the Apache website.</p>
-<p>http://www.apache.org/dist/wicket/1.3.7/KEYS</p>
-<p>Instructions on how to validate the release can be found here:</p>
-<p>http://www.apache.org/dev/release-signing.html#check-integrity</p>
-<h3 id="reporting-bugs">Reporting bugs</h3>
-<p>In case you do encounter a bug, we would appreciate a report in our JIRA:</p>
-<p>http://issues.apache.org/jira/browse/WICKET</p>
-<h3 id="the-distribution">The distribution</h3>
-<p>In the distribution you will find a README. The README contains instructions
-on how to build from source yourself. You also find a CHANGELOG-1.3 which
-contains a list of all things that have been fixed, added and/or removed
-since Wicket 1.3.0.</p>
-<h3 id="release-notes">Release Notes</h3>
-<h4 id="bug">Bug</h4>
-<ul>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-1912">WICKET-1912</a> - StatelessForm problems with query string</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-1922">WICKET-1922</a> - AbstractTree - setting root to null causes NullPointerException</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-1960">WICKET-1960</a> - AutoCompleteTextField - gives a type mismatch error on IE - version wicket-1.4-rc1</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-1992">WICKET-1992</a> - SharedResourceRequestTarget allows access to almost arbitrary files under WEB-INF.</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-2215">WICKET-2215</a> - WebClientInfo does not set browerMajorVersion for IE8</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-2252">WICKET-2252</a> - Autocomplete text fields don’t call existing JavaScript event handlers properly</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-2268">WICKET-2268</a> - NullPointerException NPE in DiskPageStore after Session Timeout</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-2289">WICKET-2289</a> - AutoCompleteBehavior: Selected input not modiefied when selected with keyboard</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-2308">WICKET-2308</a> - Append lastmodified to Resources shouldnt append when the resource is a directory (ends with /)</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-2313">WICKET-2313</a> - BaseWicketTester doesn’t invoke Application.newAjaxRequestTarget for ajax request target</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-2337">WICKET-2337</a> - IndexOutOfBoundsException when PropertyResolver is using an invalid list index</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-2354">WICKET-2354</a> - PropertyModel does not support index only property (“[0]”)</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-2371">WICKET-2371</a> - jre 1.5 method used in wicket-extensions</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-2384">WICKET-2384</a> - OutOfMemoryError occur for memory leak on FeedbackPanel &amp; FeedbackMessages</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-2385">WICKET-2385</a> - BigDecimalConverter uses jdk5</li>
-</ul>
-<h4 id="improvement">Improvement</h4>
-<ul>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-2168">WICKET-2168</a> - TableTree.html is not XHTML valid</li>
-  <li><a href="https://issues.apache.org/jira/browse/WICKET-2315">WICKET-2315</a> - Backport PageReference from trunk</li>
-</ul>
-</div>
-        </section>
-    </div>
-</main>
-        <footer class="l-container">
-            <div class="l-full">
-    <img height="60px" src="/img/asf_logo.gif" style="float:left">
-    Copyright © 2015 — The Apache Software Foundation. Apache Wicket,
-    Wicket, Apache, the Apache feather logo, and the Apache Wicket
-    project logo are trademarks of The Apache Software Foundation. All
-    other marks mentioned may be trademarks or registered trademarks of
-    their respective owners.
-</div>
-        </footer>
-    </body>
-
-</html>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/f39616cb/content/news/2009/07/30/wicket-1-4-takes-typesafety-to-the-next-level.html
----------------------------------------------------------------------
diff --git a/content/news/2009/07/30/wicket-1-4-takes-typesafety-to-the-next-level.html b/content/news/2009/07/30/wicket-1-4-takes-typesafety-to-the-next-level.html
deleted file mode 100644
index 48d774b..0000000
--- a/content/news/2009/07/30/wicket-1-4-takes-typesafety-to-the-next-level.html
+++ /dev/null
@@ -1,157 +0,0 @@
-<!DOCTYPE html>
-<html>
-    <head>
-        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
-        <meta charset="utf-8">
-        <title>Apache Wicket 1.4 takes typesafety to the next level | Apache Wicket</title>
-        <meta name="viewport" content="width=device-width, initial-scale=1" />
-
-        <link rel="shortcut icon" href="/favicon.ico" type="image/vnd.microsoft.icon" />
-        <link rel="stylesheet" href="/css/style.css" type="text/css" media="screen" />
-        <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet" />
-
-		<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
-
-    </head>
-
-    <body class="">
-        <div class="header default">
-    <div class="l-container">
-<nav class="mainmenu">
-    <ul>
-		<!-- /start/quickstart.html || /news/2009/07/30/wicket-1-4-takes-typesafety-to-the-next-level.html -->
-    	<li class=""><a href="/start/quickstart.html">Quick Start</a></li>
-		<!-- /start/download.html || /news/2009/07/30/wicket-1-4-takes-typesafety-to-the-next-level.html -->
-    	<li class=""><a href="/start/download.html">Download</a></li>
-		<!-- /learn || /news/2009/07/30/wicket-1-4-takes-typesafety-to-the-next-level.html -->
-    	<li class=""><a href="/learn">Documentation</a></li>
-		<!-- /help || /news/2009/07/30/wicket-1-4-takes-typesafety-to-the-next-level.html -->
-    	<li class=""><a href="/help">Support</a></li>
-		<!-- /contribute || /news/2009/07/30/wicket-1-4-takes-typesafety-to-the-next-level.html -->
-    	<li class=""><a href="/contribute">Contribute</a></li>
-		<!-- /community || /news/2009/07/30/wicket-1-4-takes-typesafety-to-the-next-level.html -->
-    	<li class=""><a href="/community">Community</a></li>
-		<!-- /apache || /news/2009/07/30/wicket-1-4-takes-typesafety-to-the-next-level.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 1.4 takes typesafety to the next level</h1>
-        </header>
-        <section class="l-one-third right">
-            <div id="toc" class="toc"><div id="toc-title"><h2>Table of Contents</h2></div><ul><li class="toc--level-1 toc--section-1"><a href="#download-apache-wicket-14"><span class="toc-number">1</span> <span class="toc-text">Download Apache Wicket 1.4</span></a></li><li class="toc--level-1 toc--section-2"><a href="#most-notable-changes"><span class="toc-number">2</span> <span class="toc-text">Most notable changes</span></a></li><li class="toc--level-1 toc--section-3"><a href="#increased-type-safety"><span class="toc-number">3</span> <span class="toc-text">Increased type safety</span></a></li><li class="toc--level-1 toc--section-4"><a href="#removal-of-default-model-from-component"><span class="toc-number">4</span> <span class="toc-text">Removal of default model from component</span></a></li></ul></div>
-        </section>
-        <section class="l-two-third left">
-            <div class="l-full">
-    <p class="meta">30 Jul 2009</p>
-    <p>The Apache Wicket project is proud to announce the release of Apache Wicket
-1.4. Apache Wicket is an open source, component oriented Java web application
-framework. With overwhelming support from the user community, this release
-marks a departure from the past where we leave Java 1.4 behind and we require
-Java 5 as the minimum JDK version. By moving to Java 5 as the required
-minimum platform, we were able to utilize Java 5 idioms and increase the type
-safety of our APIs. Using Java generics you can now write typesafe web
-applications and create typesafe, self documenting, reusable custom
-components.</p>
-<h2 id="download-apache-wicket-14">Download Apache Wicket 1.4</h2>
-<p>You can download the release here:
-http://www.apache.org/dyn/closer.cgi/wicket/1.4.0</p>
-<p>Or use this in your Maven pom’s to upgrade to the new version:</p>
-<figure class="highlight"><pre><code class="language-xml" data-lang="xml"><span class="nt">&lt;dependency&gt;</span>
-  <span class="nt">&lt;groupId&gt;</span>org.apache.wicket<span class="nt">&lt;/groupId&gt;</span>
-  <span class="nt">&lt;artifactId&gt;</span>wicket<span class="nt">&lt;/artifactId&gt;</span>
-  <span class="nt">&lt;version&gt;</span>1.4.0<span class="nt">&lt;/version&gt;</span>
-<span class="nt">&lt;/dependency&gt;</span></code></pre></figure>
-<p>You will need to upgrade all modules (i.e. wicket, wicket-extensions) to
-their 1.4 counterparts. It is not possible to mix Wicket 1.3 libraries with
-1.4 libraries due to API changes.</p>
-<h2 id="most-notable-changes">Most notable changes</h2>
-<p>From all the changes that went into this release, the following are the most
-important ones:</p>
-<ul>
-  <li>Generified <code>IModel</code> interface and implementations increases type safety in your Wicket applications</li>
-  <li><code>Component#getModel()</code> and <code>Component#setModel()</code> have been renamed to <code>getDefaultModel()</code> and <code>setDefaultModel()</code> to better support generified models</li>
-  <li>The Spring modules have been merged (wicket-spring-annot is now obsolete, all you need is wicket-spring)</li>
-  <li>Many API’s have been altered to better work with Java 5’s idioms</li>
-  <li>Wicket jars are now packaged with metadata that makes them OSGI bundles</li>
-</ul>
-<p>Apart from these changes, the release is mostly compatible with Wicket 1.3
-and upgrading shouldn’t take too long. Early adopters report about a days
-work to upgrade medium to large applications to Wicket 1.4. Read the
-migration guide to learn more about the changes in our APIs. To learn more
-about all the improvements and new features that went into this release,
-check the solved issue list in our JIRA instance.</p>
-<h2 id="increased-type-safety">Increased type safety</h2>
-<p>Moving towards Java 5 has given us the opportunity to utilize generics and
-clarify our API’s. For example, take a look at <code>DropDownChoice</code>—one of the
-components with the most questions on our list prior to 1.4. A
-<code>DropDownChoice</code> component is a form component that displays a list of
-available choices in a drop down box, and allows one selection to be made.
-DropDownChoice components are typically used to display a list of countries,
-nationalities, credit card processors, etc.</p>
-<p>The signature of a constructor for the <code>DropDownChoice</code> component in Wicket
-1.3 was:</p>
-<figure class="highlight"><pre><code class="language-java" data-lang="java"><span class="kd">public</span> <span class="kd">class</span> <span class="nc">DropDownChoice</span> <span class="kd">extends</span> <span class="o">...</span>
-    <span class="kd">public</span> <span class="n">DropDownChoice</span><span class="o">(</span><span class="n">String</span> <span class="n">id</span><span class="o">,</span> <span class="n">IModel</span> <span class="n">model</span><span class="o">,</span> <span class="n">IModel</span> <span class="n">choices</span><span class="o">)</span>
-<span class="o">}</span></code></pre></figure>
-<p>As you can see, this constructor doesn’t give much insight into what goes
-where (other than the names of the parameters). The first parameter is the
-component identifier, the second parameter is the model that contains the
-selection, and the third parameter is a model that contains the list of
-choices from which the user can select one. You’ll have to read the JavaDoc
-to assign the right IModel values to the right parameters. Now take a look at
-the same constructor, but now in Wicket 1.4. The signature for our generified
-constructor looks like the following example.</p>
-<figure class="highlight"><pre><code class="language-java" data-lang="java"><span class="kd">public</span> <span class="o">&lt;</span><span class="n">T</span><span class="o">&gt;</span> <span class="n">DropDownChoice</span> <span class="kd">extends</span> <span class="o">...</span>
-    <span class="kd">public</span> <span class="n">DropDownChoice</span><span class="o">(</span><span class="n">String</span> <span class="n">id</span><span class="o">,</span> <span class="n">IModel</span><span class="o">&lt;</span><span class="n">T</span><span class="o">&gt;</span> <span class="n">model</span><span class="o">,</span> <span class="n">IModel</span><span class="o">&lt;?</span> <span class="kd">extends</span> <span class="n">List</span><span class="o">&lt;?</span> <span class="kd">extends</span> <span class="n">T</span><span class="o">&gt;&gt;</span> <span class="n">choices</span><span class="o">)</span>
-<span class="o">}</span></code></pre></figure>
-<p>Here we communicate that the first <code>IModel</code> parameter is a <code>T</code>, which is the
-single value that will be provided when the <code>DropDownChoice</code> selects one
-value. The second parameter provides a <code>List</code> of objects that extend <code>T</code>, the
-choices from which to select one value. This was not apparent in the Wicket
-1.3 API, and the type safety brought by generics make this much more clear,
-albeit much more verbose.</p>
-<h2 id="removal-of-default-model-from-component">Removal of default model from component</h2>
-<p>In Wicket 1.3 each component had by default a model: a <code>Label</code> had a model, a
-<code>Link</code> and even <code>WebMarkupContainer</code> had a model property (all because they
-extend <code>Component</code> which has a model property). When we generified <code>IModel</code>,
-this had averse effects on <code>Component</code>: suddenly all components had to be
-generified and had to take the type parameter of the model that was
-associated with it. But that poses problems for components that either do not
-use a model or use two different model types: which one should be in the
-lead? We chose to generify only the components that clearly benefited from
-the extra type information, leading to clean code like this:</p>
-<figure class="highlight"><pre><code class="language-java" data-lang="java"><span class="n">ListView</span><span class="o">&lt;</span><span class="n">Person</span><span class="o">&gt;</span> <span class="n">peopleListView</span> <span class="o">=</span> <span class="k">new</span> <span class="n">ListView</span><span class="o">&lt;</span><span class="n">Person</span><span class="o">&gt;(</span><span class="s">"people"</span><span class="o">,</span> <span class="n">people</span><span class="o">)</span> <span class="o">{</span>
-        <span class="kd">protected</span> <span class="kt">void</span> <span class="n">populateItem</span><span class="o">(</span><span class="n">ListItem</span><span class="o">&lt;</span><span class="n">Person</span><span class="o">&gt;</span> <span class="n">item</span><span class="o">)</span> <span class="o">{</span>
-            <span class="n">item</span><span class="o">.</span><span class="na">add</span><span class="o">(</span><span class="k">new</span> <span class="n">Link</span><span class="o">&lt;</span><span class="n">Person</span><span class="o">&gt;(</span><span class="s">"editPerson"</span><span class="o">,</span> <span class="n">item</span><span class="o">.</span><span class="na">getModel</span><span class="o">()){</span>
-                <span class="kd">public</span> <span class="kt">void</span> <span class="n">onClick</span><span class="o">()</span> <span class="o">{</span>
-                    <span class="n">Person</span> <span class="n">p</span> <span class="o">=</span> <span class="n">getModelObject</span><span class="o">();</span>
-                    <span class="n">setResponsePage</span><span class="o">(</span><span class="k">new</span> <span class="n">EditPersonPage</span><span class="o">(</span><span class="n">p</span><span class="o">));</span>
-                <span class="o">}</span>
-            <span class="o">});</span>
-        <span class="o">}</span>
-    <span class="o">};</span></code></pre></figure>
-</div>
-        </section>
-    </div>
-</main>
-        <footer class="l-container">
-            <div class="l-full">
-    <img height="60px" src="/img/asf_logo.gif" style="float:left">
-    Copyright © 2015 — The Apache Software Foundation. Apache Wicket,
-    Wicket, Apache, the Apache feather logo, and the Apache Wicket
-    project logo are trademarks of The Apache Software Foundation. All
-    other marks mentioned may be trademarks or registered trademarks of
-    their respective owners.
-</div>
-        </footer>
-    </body>
-
-</html>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/f39616cb/content/news/2009/07/30/wicket-1.3.7-released.html
----------------------------------------------------------------------
diff --git a/content/news/2009/07/30/wicket-1.3.7-released.html b/content/news/2009/07/30/wicket-1.3.7-released.html
new file mode 100644
index 0000000..83cc5b1
--- /dev/null
+++ b/content/news/2009/07/30/wicket-1.3.7-released.html
@@ -0,0 +1,155 @@
+<!DOCTYPE html>
+<html>
+    <head>
+        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+        <meta charset="utf-8">
+        <title>Apache Wicket 1.3.7 marks end of life for Wicket 1.3 | Apache Wicket</title>
+        <meta name="viewport" content="width=device-width, initial-scale=1" />
+
+        <link rel="shortcut icon" href="/favicon.ico" type="image/vnd.microsoft.icon" />
+        <link rel="stylesheet" href="/css/style.css" type="text/css" media="screen" />
+        <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet" />
+
+		<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
+
+    </head>
+
+    <body class="">
+        <div class="header default">
+    <div class="l-container">
+<nav class="mainmenu">
+    <ul>
+		<!-- /start/quickstart.html || /news/2009/07/30/wicket-1.3.7-released.html -->
+    	<li class=""><a href="/start/quickstart.html">Quick Start</a></li>
+		<!-- /start/download.html || /news/2009/07/30/wicket-1.3.7-released.html -->
+    	<li class=""><a href="/start/download.html">Download</a></li>
+		<!-- /learn || /news/2009/07/30/wicket-1.3.7-released.html -->
+    	<li class=""><a href="/learn">Documentation</a></li>
+		<!-- /help || /news/2009/07/30/wicket-1.3.7-released.html -->
+    	<li class=""><a href="/help">Support</a></li>
+		<!-- /contribute || /news/2009/07/30/wicket-1.3.7-released.html -->
+    	<li class=""><a href="/contribute">Contribute</a></li>
+		<!-- /community || /news/2009/07/30/wicket-1.3.7-released.html -->
+    	<li class=""><a href="/community">Community</a></li>
+		<!-- /apache || /news/2009/07/30/wicket-1.3.7-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 1.3.7 marks end of life for Wicket 1.3</h1>
+        </header>
+        <section class="l-one-third right">
+            <div id="toc" class="toc"><div id="toc-title"><h2>Table of Contents</h2></div><ul><li class="toc--level-1 toc--section-1"><a href="#apache-wicket-137"><span class="toc-number">1</span> <span class="toc-text">Apache Wicket 1.3.7</span></a><ul><li class="toc--level-2 toc--section-2"><a href="#this-release"><span class="toc-number">1.1</span> <span class="toc-text">This release</span></a></li><li class="toc--level-2 toc--section-3"><a href="#migrating-from-12"><span class="toc-number">1.2</span> <span class="toc-text">Migrating from 1.2</span></a></li><li class="toc--level-2 toc--section-4"><a href="#downloading-the-release"><span class="toc-number">1.3</span> <span class="toc-text">Downloading the release</span></a></li><li class="toc--level-2 toc--section-5"><a href="#validating-the-release"><span class="toc-number">1.4</span> <span class="toc-text">Validating the release</span></a></li><li class="toc--level-2 toc--section-6"><a href="#reporting-bugs"><span class="toc-num
 ber">1.5</span> <span class="toc-text">Reporting bugs</span></a></li><li class="toc--level-2 toc--section-7"><a href="#the-distribution"><span class="toc-number">1.6</span> <span class="toc-text">The distribution</span></a></li><li class="toc--level-2 toc--section-8"><a href="#release-notes"><span class="toc-number">1.7</span> <span class="toc-text">Release Notes</span></a></li></ul></li></ul></div>
+        </section>
+        <section class="l-two-third left">
+            <div class="l-full">
+    <p class="meta">30 Jul 2009</p>
+    <p>The Apache Wicket team is proud to present the release of Apache Wicket
+1.3.7. This will be the last feature release for the 1.3.x branch. Going
+forward, only security fixes will be released in the 1.3.x branch - meaning
+that 1.3.7 may be the last release in this branch. All users are encouraged
+to upgrade to 1.4.0 as soon as possible. As work begins on 1.5 in the near
+future, we will be supporting 1.4.x and 1.5.x.</p>
+<p>Eager people click here to download the distribution, others can read
+further:</p>
+<ul>
+  <li><a href="http://www.apache.org/dyn/closer.cgi/wicket/1.3.7">http://www.apache.org/dyn/closer.cgi/wicket/1.3.7</a></li>
+</ul>
+<p>We thank you for your patience and support.</p>
+<p>The Wicket Team</p>
+<h2 id="apache-wicket-137">Apache Wicket 1.3.7</h2>
+<p>Apache Wicket is a component oriented Java web application framework. With
+proper mark-up/logic separation, a POJO data model, and a refreshing lack of
+XML, Apache Wicket makes developing web-apps simple and enjoyable again. Swap
+the boilerplate, complex debugging and brittle code for powerful, reusable
+components written with plain Java and HTML.</p>
+<p>You can find out more about Apache Wicket on <a href="http://wicket.apache.org">our website</a></p>
+<h3 id="this-release">This release</h3>
+<p>This will be the last feature release for the 1.3.x branch. Going forward,
+only security fixes will be released in the 1.3.x branch - meaning that 1.3.7
+may be the last release in this branch. All users are encouraged to upgrade
+to 1.4.0 as soon as possible. As work begins on 1.5 in the near future, we
+will be supporting 1.4.x and 1.5.x.</p>
+<h3 id="migrating-from-12">Migrating from 1.2</h3>
+<p>If you are coming from Wicket 1.2, you really want to read our migration
+guide, found on the wiki:</p>
+<p>https://cwiki.apache.org/confluence/display/WICKET/Migrating+to+Wicket+1.3</p>
+<h3 id="downloading-the-release">Downloading the release</h3>
+<p>You can download the release from the official Apache mirror system, and you
+can find it through the following link:</p>
+<p>http://www.apache.org/dyn/closer.cgi/wicket/1.3.7/</p>
+<p>For the Maven and Ivy fans out there: update your pom’s to the following, and
+everything will be downloaded automatically:</p>
+<figure class="highlight"><pre><code class="language-xml" data-lang="xml"><span class="nt">&lt;dependency&gt;</span>
+    <span class="nt">&lt;groupId&gt;</span>org.apache.wicket<span class="nt">&lt;/groupId&gt;</span>
+    <span class="nt">&lt;artifactId&gt;</span>wicket<span class="nt">&lt;/artifactId&gt;</span>
+    <span class="nt">&lt;version&gt;</span>1.3.7<span class="nt">&lt;/version&gt;</span>
+<span class="nt">&lt;/dependency&gt;</span></code></pre></figure>
+<p>Substitute the artifact ID with the projects of your liking to get the other
+projects.</p>
+<p>Please note that we don’t prescribe a Logging implementation for SLF4J. You
+need to specify yourself which one you prefer. Read more about SLF4J here:
+http://slf4j.org</p>
+<h3 id="validating-the-release">Validating the release</h3>
+<p>The release has been signed by Igor Vaynberg, your release manager for today.
+The public key can be found in the KEYS file in the download area. Download
+the KEYS file only from the Apache website.</p>
+<p>http://www.apache.org/dist/wicket/1.3.7/KEYS</p>
+<p>Instructions on how to validate the release can be found here:</p>
+<p>http://www.apache.org/dev/release-signing.html#check-integrity</p>
+<h3 id="reporting-bugs">Reporting bugs</h3>
+<p>In case you do encounter a bug, we would appreciate a report in our JIRA:</p>
+<p>http://issues.apache.org/jira/browse/WICKET</p>
+<h3 id="the-distribution">The distribution</h3>
+<p>In the distribution you will find a README. The README contains instructions
+on how to build from source yourself. You also find a CHANGELOG-1.3 which
+contains a list of all things that have been fixed, added and/or removed
+since Wicket 1.3.0.</p>
+<h3 id="release-notes">Release Notes</h3>
+<h4 id="bug">Bug</h4>
+<ul>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-1912">WICKET-1912</a> - StatelessForm problems with query string</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-1922">WICKET-1922</a> - AbstractTree - setting root to null causes NullPointerException</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-1960">WICKET-1960</a> - AutoCompleteTextField - gives a type mismatch error on IE - version wicket-1.4-rc1</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-1992">WICKET-1992</a> - SharedResourceRequestTarget allows access to almost arbitrary files under WEB-INF.</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-2215">WICKET-2215</a> - WebClientInfo does not set browerMajorVersion for IE8</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-2252">WICKET-2252</a> - Autocomplete text fields don’t call existing JavaScript event handlers properly</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-2268">WICKET-2268</a> - NullPointerException NPE in DiskPageStore after Session Timeout</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-2289">WICKET-2289</a> - AutoCompleteBehavior: Selected input not modiefied when selected with keyboard</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-2308">WICKET-2308</a> - Append lastmodified to Resources shouldnt append when the resource is a directory (ends with /)</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-2313">WICKET-2313</a> - BaseWicketTester doesn’t invoke Application.newAjaxRequestTarget for ajax request target</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-2337">WICKET-2337</a> - IndexOutOfBoundsException when PropertyResolver is using an invalid list index</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-2354">WICKET-2354</a> - PropertyModel does not support index only property (“[0]”)</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-2371">WICKET-2371</a> - jre 1.5 method used in wicket-extensions</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-2384">WICKET-2384</a> - OutOfMemoryError occur for memory leak on FeedbackPanel &amp; FeedbackMessages</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-2385">WICKET-2385</a> - BigDecimalConverter uses jdk5</li>
+</ul>
+<h4 id="improvement">Improvement</h4>
+<ul>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-2168">WICKET-2168</a> - TableTree.html is not XHTML valid</li>
+  <li><a href="https://issues.apache.org/jira/browse/WICKET-2315">WICKET-2315</a> - Backport PageReference from trunk</li>
+</ul>
+</div>
+        </section>
+    </div>
+</main>
+        <footer class="l-container">
+            <div class="l-full">
+    <img height="60px" src="/img/asf_logo.gif" style="float:left">
+    Copyright © 2015 — The Apache Software Foundation. Apache Wicket,
+    Wicket, Apache, the Apache feather logo, and the Apache Wicket
+    project logo are trademarks of The Apache Software Foundation. All
+    other marks mentioned may be trademarks or registered trademarks of
+    their respective owners.
+</div>
+        </footer>
+    </body>
+
+</html>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/f39616cb/content/news/2009/07/30/wicket-1.4-takes-typesafety-to-the-next-level.html
----------------------------------------------------------------------
diff --git a/content/news/2009/07/30/wicket-1.4-takes-typesafety-to-the-next-level.html b/content/news/2009/07/30/wicket-1.4-takes-typesafety-to-the-next-level.html
new file mode 100644
index 0000000..bf136ff
--- /dev/null
+++ b/content/news/2009/07/30/wicket-1.4-takes-typesafety-to-the-next-level.html
@@ -0,0 +1,157 @@
+<!DOCTYPE html>
+<html>
+    <head>
+        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+        <meta charset="utf-8">
+        <title>Apache Wicket 1.4 takes typesafety to the next level | Apache Wicket</title>
+        <meta name="viewport" content="width=device-width, initial-scale=1" />
+
+        <link rel="shortcut icon" href="/favicon.ico" type="image/vnd.microsoft.icon" />
+        <link rel="stylesheet" href="/css/style.css" type="text/css" media="screen" />
+        <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet" />
+
+		<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
+
+    </head>
+
+    <body class="">
+        <div class="header default">
+    <div class="l-container">
+<nav class="mainmenu">
+    <ul>
+		<!-- /start/quickstart.html || /news/2009/07/30/wicket-1.4-takes-typesafety-to-the-next-level.html -->
+    	<li class=""><a href="/start/quickstart.html">Quick Start</a></li>
+		<!-- /start/download.html || /news/2009/07/30/wicket-1.4-takes-typesafety-to-the-next-level.html -->
+    	<li class=""><a href="/start/download.html">Download</a></li>
+		<!-- /learn || /news/2009/07/30/wicket-1.4-takes-typesafety-to-the-next-level.html -->
+    	<li class=""><a href="/learn">Documentation</a></li>
+		<!-- /help || /news/2009/07/30/wicket-1.4-takes-typesafety-to-the-next-level.html -->
+    	<li class=""><a href="/help">Support</a></li>
+		<!-- /contribute || /news/2009/07/30/wicket-1.4-takes-typesafety-to-the-next-level.html -->
+    	<li class=""><a href="/contribute">Contribute</a></li>
+		<!-- /community || /news/2009/07/30/wicket-1.4-takes-typesafety-to-the-next-level.html -->
+    	<li class=""><a href="/community">Community</a></li>
+		<!-- /apache || /news/2009/07/30/wicket-1.4-takes-typesafety-to-the-next-level.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 1.4 takes typesafety to the next level</h1>
+        </header>
+        <section class="l-one-third right">
+            <div id="toc" class="toc"><div id="toc-title"><h2>Table of Contents</h2></div><ul><li class="toc--level-1 toc--section-1"><a href="#download-apache-wicket-14"><span class="toc-number">1</span> <span class="toc-text">Download Apache Wicket 1.4</span></a></li><li class="toc--level-1 toc--section-2"><a href="#most-notable-changes"><span class="toc-number">2</span> <span class="toc-text">Most notable changes</span></a></li><li class="toc--level-1 toc--section-3"><a href="#increased-type-safety"><span class="toc-number">3</span> <span class="toc-text">Increased type safety</span></a></li><li class="toc--level-1 toc--section-4"><a href="#removal-of-default-model-from-component"><span class="toc-number">4</span> <span class="toc-text">Removal of default model from component</span></a></li></ul></div>
+        </section>
+        <section class="l-two-third left">
+            <div class="l-full">
+    <p class="meta">30 Jul 2009</p>
+    <p>The Apache Wicket project is proud to announce the release of Apache Wicket
+1.4. Apache Wicket is an open source, component oriented Java web application
+framework. With overwhelming support from the user community, this release
+marks a departure from the past where we leave Java 1.4 behind and we require
+Java 5 as the minimum JDK version. By moving to Java 5 as the required
+minimum platform, we were able to utilize Java 5 idioms and increase the type
+safety of our APIs. Using Java generics you can now write typesafe web
+applications and create typesafe, self documenting, reusable custom
+components.</p>
+<h2 id="download-apache-wicket-14">Download Apache Wicket 1.4</h2>
+<p>You can download the release here:
+http://www.apache.org/dyn/closer.cgi/wicket/1.4.0</p>
+<p>Or use this in your Maven pom’s to upgrade to the new version:</p>
+<figure class="highlight"><pre><code class="language-xml" data-lang="xml"><span class="nt">&lt;dependency&gt;</span>
+  <span class="nt">&lt;groupId&gt;</span>org.apache.wicket<span class="nt">&lt;/groupId&gt;</span>
+  <span class="nt">&lt;artifactId&gt;</span>wicket<span class="nt">&lt;/artifactId&gt;</span>
+  <span class="nt">&lt;version&gt;</span>1.4.0<span class="nt">&lt;/version&gt;</span>
+<span class="nt">&lt;/dependency&gt;</span></code></pre></figure>
+<p>You will need to upgrade all modules (i.e. wicket, wicket-extensions) to
+their 1.4 counterparts. It is not possible to mix Wicket 1.3 libraries with
+1.4 libraries due to API changes.</p>
+<h2 id="most-notable-changes">Most notable changes</h2>
+<p>From all the changes that went into this release, the following are the most
+important ones:</p>
+<ul>
+  <li>Generified <code class="highlighter-rouge">IModel</code> interface and implementations increases type safety in your Wicket applications</li>
+  <li><code class="highlighter-rouge">Component#getModel()</code> and <code class="highlighter-rouge">Component#setModel()</code> have been renamed to <code class="highlighter-rouge">getDefaultModel()</code> and <code class="highlighter-rouge">setDefaultModel()</code> to better support generified models</li>
+  <li>The Spring modules have been merged (wicket-spring-annot is now obsolete, all you need is wicket-spring)</li>
+  <li>Many API’s have been altered to better work with Java 5’s idioms</li>
+  <li>Wicket jars are now packaged with metadata that makes them OSGI bundles</li>
+</ul>
+<p>Apart from these changes, the release is mostly compatible with Wicket 1.3
+and upgrading shouldn’t take too long. Early adopters report about a days
+work to upgrade medium to large applications to Wicket 1.4. Read the
+migration guide to learn more about the changes in our APIs. To learn more
+about all the improvements and new features that went into this release,
+check the solved issue list in our JIRA instance.</p>
+<h2 id="increased-type-safety">Increased type safety</h2>
+<p>Moving towards Java 5 has given us the opportunity to utilize generics and
+clarify our API’s. For example, take a look at <code class="highlighter-rouge">DropDownChoice</code>—one of the
+components with the most questions on our list prior to 1.4. A
+<code class="highlighter-rouge">DropDownChoice</code> component is a form component that displays a list of
+available choices in a drop down box, and allows one selection to be made.
+DropDownChoice components are typically used to display a list of countries,
+nationalities, credit card processors, etc.</p>
+<p>The signature of a constructor for the <code class="highlighter-rouge">DropDownChoice</code> component in Wicket
+1.3 was:</p>
+<figure class="highlight"><pre><code class="language-java" data-lang="java"><span class="kd">public</span> <span class="kd">class</span> <span class="nc">DropDownChoice</span> <span class="kd">extends</span> <span class="o">...</span>
+    <span class="kd">public</span> <span class="n">DropDownChoice</span><span class="o">(</span><span class="n">String</span> <span class="n">id</span><span class="o">,</span> <span class="n">IModel</span> <span class="n">model</span><span class="o">,</span> <span class="n">IModel</span> <span class="n">choices</span><span class="o">)</span>
+<span class="o">}</span></code></pre></figure>
+<p>As you can see, this constructor doesn’t give much insight into what goes
+where (other than the names of the parameters). The first parameter is the
+component identifier, the second parameter is the model that contains the
+selection, and the third parameter is a model that contains the list of
+choices from which the user can select one. You’ll have to read the JavaDoc
+to assign the right IModel values to the right parameters. Now take a look at
+the same constructor, but now in Wicket 1.4. The signature for our generified
+constructor looks like the following example.</p>
+<figure class="highlight"><pre><code class="language-java" data-lang="java"><span class="kd">public</span> <span class="o">&lt;</span><span class="n">T</span><span class="o">&gt;</span> <span class="n">DropDownChoice</span> <span class="kd">extends</span> <span class="o">...</span>
+    <span class="kd">public</span> <span class="n">DropDownChoice</span><span class="o">(</span><span class="n">String</span> <span class="n">id</span><span class="o">,</span> <span class="n">IModel</span><span class="o">&lt;</span><span class="n">T</span><span class="o">&gt;</span> <span class="n">model</span><span class="o">,</span> <span class="n">IModel</span><span class="o">&lt;?</span> <span class="kd">extends</span> <span class="n">List</span><span class="o">&lt;?</span> <span class="kd">extends</span> <span class="n">T</span><span class="o">&gt;&gt;</span> <span class="n">choices</span><span class="o">)</span>
+<span class="o">}</span></code></pre></figure>
+<p>Here we communicate that the first <code class="highlighter-rouge">IModel</code> parameter is a <code class="highlighter-rouge">T</code>, which is the
+single value that will be provided when the <code class="highlighter-rouge">DropDownChoice</code> selects one
+value. The second parameter provides a <code class="highlighter-rouge">List</code> of objects that extend <code class="highlighter-rouge">T</code>, the
+choices from which to select one value. This was not apparent in the Wicket
+1.3 API, and the type safety brought by generics make this much more clear,
+albeit much more verbose.</p>
+<h2 id="removal-of-default-model-from-component">Removal of default model from component</h2>
+<p>In Wicket 1.3 each component had by default a model: a <code class="highlighter-rouge">Label</code> had a model, a
+<code class="highlighter-rouge">Link</code> and even <code class="highlighter-rouge">WebMarkupContainer</code> had a model property (all because they
+extend <code class="highlighter-rouge">Component</code> which has a model property). When we generified <code class="highlighter-rouge">IModel</code>,
+this had averse effects on <code class="highlighter-rouge">Component</code>: suddenly all components had to be
+generified and had to take the type parameter of the model that was
+associated with it. But that poses problems for components that either do not
+use a model or use two different model types: which one should be in the
+lead? We chose to generify only the components that clearly benefited from
+the extra type information, leading to clean code like this:</p>
+<figure class="highlight"><pre><code class="language-java" data-lang="java"><span class="n">ListView</span><span class="o">&lt;</span><span class="n">Person</span><span class="o">&gt;</span> <span class="n">peopleListView</span> <span class="o">=</span> <span class="k">new</span> <span class="n">ListView</span><span class="o">&lt;</span><span class="n">Person</span><span class="o">&gt;(</span><span class="s">"people"</span><span class="o">,</span> <span class="n">people</span><span class="o">)</span> <span class="o">{</span>
+        <span class="kd">protected</span> <span class="kt">void</span> <span class="n">populateItem</span><span class="o">(</span><span class="n">ListItem</span><span class="o">&lt;</span><span class="n">Person</span><span class="o">&gt;</span> <span class="n">item</span><span class="o">)</span> <span class="o">{</span>
+            <span class="n">item</span><span class="o">.</span><span class="na">add</span><span class="o">(</span><span class="k">new</span> <span class="n">Link</span><span class="o">&lt;</span><span class="n">Person</span><span class="o">&gt;(</span><span class="s">"editPerson"</span><span class="o">,</span> <span class="n">item</span><span class="o">.</span><span class="na">getModel</span><span class="o">()){</span>
+                <span class="kd">public</span> <span class="kt">void</span> <span class="n">onClick</span><span class="o">()</span> <span class="o">{</span>
+                    <span class="n">Person</span> <span class="n">p</span> <span class="o">=</span> <span class="n">getModelObject</span><span class="o">();</span>
+                    <span class="n">setResponsePage</span><span class="o">(</span><span class="k">new</span> <span class="n">EditPersonPage</span><span class="o">(</span><span class="n">p</span><span class="o">));</span>
+                <span class="o">}</span>
+            <span class="o">});</span>
+        <span class="o">}</span>
+    <span class="o">};</span></code></pre></figure>
+</div>
+        </section>
+    </div>
+</main>
+        <footer class="l-container">
+            <div class="l-full">
+    <img height="60px" src="/img/asf_logo.gif" style="float:left">
+    Copyright © 2015 — The Apache Software Foundation. Apache Wicket,
+    Wicket, Apache, the Apache feather logo, and the Apache Wicket
+    project logo are trademarks of The Apache Software Foundation. All
+    other marks mentioned may be trademarks or registered trademarks of
+    their respective owners.
+</div>
+        </footer>
+    </body>
+
+</html>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/f39616cb/content/news/2009/07/index.html
----------------------------------------------------------------------
diff --git a/content/news/2009/07/index.html b/content/news/2009/07/index.html
index 164a26d..b82842f 100644
--- a/content/news/2009/07/index.html
+++ b/content/news/2009/07/index.html
@@ -52,7 +52,7 @@
 	<p>The Apache Wicket team is proud to present the release of Apache Wicket
 1.3.7. This will be the last feature release for the 1.3.x branch. Going
 forward, only security fixes will be released in the 1.3.x branch - meaning...</p>
-	<a href="/news/2009/07/30/wicket-1-3-7-released.html">more</a></li>
+	<a href="/news/2009/07/30/wicket-1.3.7-released.html">more</a></li>
 </div>
 <div class="news">
 	<h3>Apache Wicket 1.4 takes typesafety to the next level</h3>
@@ -63,7 +63,7 @@ framework. With overwhelming support from the user community, this release
 marks a departure from the past where we leave Java 1.4 behind and we require
 Java 5 as the minimum JDK version. By moving to Java 5 as the required
 minimum platform, we were able...</p>
-	<a href="/news/2009/07/30/wicket-1-4-takes-typesafety-to-the-next-level.html">more</a></li>
+	<a href="/news/2009/07/30/wicket-1.4-takes-typesafety-to-the-next-level.html">more</a></li>
 </div>
         </div>
         <div class="l-one-third">

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/f39616cb/content/news/2009/08/21/wicket-1-4-1-released.html
----------------------------------------------------------------------
diff --git a/content/news/2009/08/21/wicket-1-4-1-released.html b/content/news/2009/08/21/wicket-1-4-1-released.html
deleted file mode 100644
index ebc1b8e..0000000
--- a/content/news/2009/08/21/wicket-1-4-1-released.html
+++ /dev/null
@@ -1,90 +0,0 @@
-<!DOCTYPE html>
-<html>
-    <head>
-        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
-        <meta charset="utf-8">
-        <title>Wicket 1.4.1 released | Apache Wicket</title>
-        <meta name="viewport" content="width=device-width, initial-scale=1" />
-
-        <link rel="shortcut icon" href="/favicon.ico" type="image/vnd.microsoft.icon" />
-        <link rel="stylesheet" href="/css/style.css" type="text/css" media="screen" />
-        <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet" />
-
-		<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
-
-    </head>
-
-    <body class="">
-        <div class="header default">
-    <div class="l-container">
-<nav class="mainmenu">
-    <ul>
-		<!-- /start/quickstart.html || /news/2009/08/21/wicket-1-4-1-released.html -->
-    	<li class=""><a href="/start/quickstart.html">Quick Start</a></li>
-		<!-- /start/download.html || /news/2009/08/21/wicket-1-4-1-released.html -->
-    	<li class=""><a href="/start/download.html">Download</a></li>
-		<!-- /learn || /news/2009/08/21/wicket-1-4-1-released.html -->
-    	<li class=""><a href="/learn">Documentation</a></li>
-		<!-- /help || /news/2009/08/21/wicket-1-4-1-released.html -->
-    	<li class=""><a href="/help">Support</a></li>
-		<!-- /contribute || /news/2009/08/21/wicket-1-4-1-released.html -->
-    	<li class=""><a href="/contribute">Contribute</a></li>
-		<!-- /community || /news/2009/08/21/wicket-1-4-1-released.html -->
-    	<li class=""><a href="/community">Community</a></li>
-		<!-- /apache || /news/2009/08/21/wicket-1-4-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.4.1 released</h1>
-        </header>
-        <section class="l-one-third right">
-        </section>
-        <section class="l-two-third left">
-            <div class="l-full">
-    <p class="meta">21 Aug 2009</p>
-    <p>The Apache Wicket project is proud to announce the first maintenance release
-of Apache Wicket 1.4.</p>
-<h3 id="download-apache-wicket-14">Download Apache Wicket 1.4</h3>
-<p>You can download the release here:
-<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.4.1">http://www.apache.org/dyn/closer.cgi/wicket/1.4.1</a></p>
-<p>Or use this in your Maven pom’s to upgrade to the new version:</p>
-<figure class="highlight"><pre><code class="language-xml" data-lang="xml"><span class="nt">&lt;dependency&gt;</span>
-    <span class="nt">&lt;groupId&gt;</span>org.apache.wicket<span class="nt">&lt;/groupId&gt;</span>
-    <span class="nt">&lt;artifactId&gt;</span>wicket<span class="nt">&lt;/artifactId&gt;</span>
-    <span class="nt">&lt;version&gt;</span>1.4.1<span class="nt">&lt;/version&gt;</span>
-<span class="nt">&lt;/dependency&gt;</span></code></pre></figure>
-<h3 id="changes">Changes</h3>
-<p>The most notable change in this release is the transparent support for
-multipart form submissions via Ajax. Wicket is now smart enough to submit a
-form using a hidden iframe rather then the standard XMLHttpRequest if the
-form contains file upload fields.</p>
-<p>A complete list of changes can be found in our
-<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=12314113">Jira</a>
-instance.</p>
-<p>We thank you for your patience and support.</p>
-<p>The 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 © 2015 — The Apache Software Foundation. Apache Wicket,
-    Wicket, Apache, the Apache feather logo, and the Apache Wicket
-    project logo are trademarks of The Apache Software Foundation. All
-    other marks mentioned may be trademarks or registered trademarks of
-    their respective owners.
-</div>
-        </footer>
-    </body>
-
-</html>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/f39616cb/content/news/2009/08/21/wicket-1.4.1-released.html
----------------------------------------------------------------------
diff --git a/content/news/2009/08/21/wicket-1.4.1-released.html b/content/news/2009/08/21/wicket-1.4.1-released.html
new file mode 100644
index 0000000..d12ba0f
--- /dev/null
+++ b/content/news/2009/08/21/wicket-1.4.1-released.html
@@ -0,0 +1,90 @@
+<!DOCTYPE html>
+<html>
+    <head>
+        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+        <meta charset="utf-8">
+        <title>Wicket 1.4.1 released | Apache Wicket</title>
+        <meta name="viewport" content="width=device-width, initial-scale=1" />
+
+        <link rel="shortcut icon" href="/favicon.ico" type="image/vnd.microsoft.icon" />
+        <link rel="stylesheet" href="/css/style.css" type="text/css" media="screen" />
+        <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet" />
+
+		<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
+
+    </head>
+
+    <body class="">
+        <div class="header default">
+    <div class="l-container">
+<nav class="mainmenu">
+    <ul>
+		<!-- /start/quickstart.html || /news/2009/08/21/wicket-1.4.1-released.html -->
+    	<li class=""><a href="/start/quickstart.html">Quick Start</a></li>
+		<!-- /start/download.html || /news/2009/08/21/wicket-1.4.1-released.html -->
+    	<li class=""><a href="/start/download.html">Download</a></li>
+		<!-- /learn || /news/2009/08/21/wicket-1.4.1-released.html -->
+    	<li class=""><a href="/learn">Documentation</a></li>
+		<!-- /help || /news/2009/08/21/wicket-1.4.1-released.html -->
+    	<li class=""><a href="/help">Support</a></li>
+		<!-- /contribute || /news/2009/08/21/wicket-1.4.1-released.html -->
+    	<li class=""><a href="/contribute">Contribute</a></li>
+		<!-- /community || /news/2009/08/21/wicket-1.4.1-released.html -->
+    	<li class=""><a href="/community">Community</a></li>
+		<!-- /apache || /news/2009/08/21/wicket-1.4.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.4.1 released</h1>
+        </header>
+        <section class="l-one-third right">
+        </section>
+        <section class="l-two-third left">
+            <div class="l-full">
+    <p class="meta">21 Aug 2009</p>
+    <p>The Apache Wicket project is proud to announce the first maintenance release
+of Apache Wicket 1.4.</p>
+<h3 id="download-apache-wicket-14">Download Apache Wicket 1.4</h3>
+<p>You can download the release here:
+<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.4.1">http://www.apache.org/dyn/closer.cgi/wicket/1.4.1</a></p>
+<p>Or use this in your Maven pom’s to upgrade to the new version:</p>
+<figure class="highlight"><pre><code class="language-xml" data-lang="xml"><span class="nt">&lt;dependency&gt;</span>
+    <span class="nt">&lt;groupId&gt;</span>org.apache.wicket<span class="nt">&lt;/groupId&gt;</span>
+    <span class="nt">&lt;artifactId&gt;</span>wicket<span class="nt">&lt;/artifactId&gt;</span>
+    <span class="nt">&lt;version&gt;</span>1.4.1<span class="nt">&lt;/version&gt;</span>
+<span class="nt">&lt;/dependency&gt;</span></code></pre></figure>
+<h3 id="changes">Changes</h3>
+<p>The most notable change in this release is the transparent support for
+multipart form submissions via Ajax. Wicket is now smart enough to submit a
+form using a hidden iframe rather then the standard XMLHttpRequest if the
+form contains file upload fields.</p>
+<p>A complete list of changes can be found in our
+<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=12314113">Jira</a>
+instance.</p>
+<p>We thank you for your patience and support.</p>
+<p>The 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 © 2015 — The Apache Software Foundation. Apache Wicket,
+    Wicket, Apache, the Apache feather logo, and the Apache Wicket
+    project logo are trademarks of The Apache Software Foundation. All
+    other marks mentioned may be trademarks or registered trademarks of
+    their respective owners.
+</div>
+        </footer>
+    </body>
+
+</html>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/f39616cb/content/news/2009/08/index.html
----------------------------------------------------------------------
diff --git a/content/news/2009/08/index.html b/content/news/2009/08/index.html
index 53c53dd..45dbbab 100644
--- a/content/news/2009/08/index.html
+++ b/content/news/2009/08/index.html
@@ -54,7 +54,7 @@ of Apache Wicket 1.4.</p>
 <h3 id="download-apache-wicket-14">Download Apache Wicket 1.4</h3>
 <p>You can download the release here:
 <a href="http://www.apache.org/dyn/closer.cgi/wicket/1.4.1">http://www.apa...</a></p>
-	<a href="/news/2009/08/21/wicket-1-4-1-released.html">more</a></li>
+	<a href="/news/2009/08/21/wicket-1.4.1-released.html">more</a></li>
 </div>
         </div>
         <div class="l-one-third">

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/f39616cb/content/news/2009/10/12/wicket-1-4-2-released.html
----------------------------------------------------------------------
diff --git a/content/news/2009/10/12/wicket-1-4-2-released.html b/content/news/2009/10/12/wicket-1-4-2-released.html
deleted file mode 100644
index 9dc1369..0000000
--- a/content/news/2009/10/12/wicket-1-4-2-released.html
+++ /dev/null
@@ -1,84 +0,0 @@
-<!DOCTYPE html>
-<html>
-    <head>
-        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
-        <meta charset="utf-8">
-        <title>Wicket 1.4.2 released | Apache Wicket</title>
-        <meta name="viewport" content="width=device-width, initial-scale=1" />
-
-        <link rel="shortcut icon" href="/favicon.ico" type="image/vnd.microsoft.icon" />
-        <link rel="stylesheet" href="/css/style.css" type="text/css" media="screen" />
-        <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet" />
-
-		<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
-
-    </head>
-
-    <body class="">
-        <div class="header default">
-    <div class="l-container">
-<nav class="mainmenu">
-    <ul>
-		<!-- /start/quickstart.html || /news/2009/10/12/wicket-1-4-2-released.html -->
-    	<li class=""><a href="/start/quickstart.html">Quick Start</a></li>
-		<!-- /start/download.html || /news/2009/10/12/wicket-1-4-2-released.html -->
-    	<li class=""><a href="/start/download.html">Download</a></li>
-		<!-- /learn || /news/2009/10/12/wicket-1-4-2-released.html -->
-    	<li class=""><a href="/learn">Documentation</a></li>
-		<!-- /help || /news/2009/10/12/wicket-1-4-2-released.html -->
-    	<li class=""><a href="/help">Support</a></li>
-		<!-- /contribute || /news/2009/10/12/wicket-1-4-2-released.html -->
-    	<li class=""><a href="/contribute">Contribute</a></li>
-		<!-- /community || /news/2009/10/12/wicket-1-4-2-released.html -->
-    	<li class=""><a href="/community">Community</a></li>
-		<!-- /apache || /news/2009/10/12/wicket-1-4-2-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.2 released</h1>
-        </header>
-        <section class="l-one-third right">
-        </section>
-        <section class="l-two-third left">
-            <div class="l-full">
-    <p class="meta">12 Oct 2009</p>
-    <p>The Apache Wicket project is proud to announce the second maintenance release
-of Apache Wicket 1.4.</p>
-<h3 id="download-apache-wicket-142">Download Apache Wicket 1.4.2</h3>
-<p>You can download the release here: <a href="http://www.apache.org/dyn/closer.cgi/wicket/1.4.2">http://www.apache.org/dyn/closer.cgi/wicket/1.4.2</a></p>
-<p>Or use this in your Maven pom’s to upgrade to the new version:</p>
-<figure class="highlight"><pre><code class="language-xml" data-lang="xml"><span class="nt">&lt;dependency&gt;</span>
-    <span class="nt">&lt;groupId&gt;</span>org.apache.wicket<span class="nt">&lt;/groupId&gt;</span>
-    <span class="nt">&lt;artifactId&gt;</span>wicket<span class="nt">&lt;/artifactId&gt;</span>
-    <span class="nt">&lt;version&gt;</span>1.4.2<span class="nt">&lt;/version&gt;</span>
-<span class="nt">&lt;/dependency&gt;</span></code></pre></figure>
-<h3 id="changes">Changes</h3>
-<p>A complete list of changes can be found
-<a href="https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&amp;&amp;pid=12310561&amp;fixfor=12314163&amp;sorter/field=priority&amp;sorter/order=DESC">here</a>.</p>
-<p>We thank you for your patience and support.</p>
-<p>The 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 © 2015 — The Apache Software Foundation. Apache Wicket,
-    Wicket, Apache, the Apache feather logo, and the Apache Wicket
-    project logo are trademarks of The Apache Software Foundation. All
-    other marks mentioned may be trademarks or registered trademarks of
-    their respective owners.
-</div>
-        </footer>
-    </body>
-
-</html>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/f39616cb/content/news/2009/10/12/wicket-1.4.2-released.html
----------------------------------------------------------------------
diff --git a/content/news/2009/10/12/wicket-1.4.2-released.html b/content/news/2009/10/12/wicket-1.4.2-released.html
new file mode 100644
index 0000000..523e0ed
--- /dev/null
+++ b/content/news/2009/10/12/wicket-1.4.2-released.html
@@ -0,0 +1,84 @@
+<!DOCTYPE html>
+<html>
+    <head>
+        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+        <meta charset="utf-8">
+        <title>Wicket 1.4.2 released | Apache Wicket</title>
+        <meta name="viewport" content="width=device-width, initial-scale=1" />
+
+        <link rel="shortcut icon" href="/favicon.ico" type="image/vnd.microsoft.icon" />
+        <link rel="stylesheet" href="/css/style.css" type="text/css" media="screen" />
+        <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet" />
+
+		<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
+
+    </head>
+
+    <body class="">
+        <div class="header default">
+    <div class="l-container">
+<nav class="mainmenu">
+    <ul>
+		<!-- /start/quickstart.html || /news/2009/10/12/wicket-1.4.2-released.html -->
+    	<li class=""><a href="/start/quickstart.html">Quick Start</a></li>
+		<!-- /start/download.html || /news/2009/10/12/wicket-1.4.2-released.html -->
+    	<li class=""><a href="/start/download.html">Download</a></li>
+		<!-- /learn || /news/2009/10/12/wicket-1.4.2-released.html -->
+    	<li class=""><a href="/learn">Documentation</a></li>
+		<!-- /help || /news/2009/10/12/wicket-1.4.2-released.html -->
+    	<li class=""><a href="/help">Support</a></li>
+		<!-- /contribute || /news/2009/10/12/wicket-1.4.2-released.html -->
+    	<li class=""><a href="/contribute">Contribute</a></li>
+		<!-- /community || /news/2009/10/12/wicket-1.4.2-released.html -->
+    	<li class=""><a href="/community">Community</a></li>
+		<!-- /apache || /news/2009/10/12/wicket-1.4.2-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.2 released</h1>
+        </header>
+        <section class="l-one-third right">
+        </section>
+        <section class="l-two-third left">
+            <div class="l-full">
+    <p class="meta">12 Oct 2009</p>
+    <p>The Apache Wicket project is proud to announce the second maintenance release
+of Apache Wicket 1.4.</p>
+<h3 id="download-apache-wicket-142">Download Apache Wicket 1.4.2</h3>
+<p>You can download the release here: <a href="http://www.apache.org/dyn/closer.cgi/wicket/1.4.2">http://www.apache.org/dyn/closer.cgi/wicket/1.4.2</a></p>
+<p>Or use this in your Maven pom’s to upgrade to the new version:</p>
+<figure class="highlight"><pre><code class="language-xml" data-lang="xml"><span class="nt">&lt;dependency&gt;</span>
+    <span class="nt">&lt;groupId&gt;</span>org.apache.wicket<span class="nt">&lt;/groupId&gt;</span>
+    <span class="nt">&lt;artifactId&gt;</span>wicket<span class="nt">&lt;/artifactId&gt;</span>
+    <span class="nt">&lt;version&gt;</span>1.4.2<span class="nt">&lt;/version&gt;</span>
+<span class="nt">&lt;/dependency&gt;</span></code></pre></figure>
+<h3 id="changes">Changes</h3>
+<p>A complete list of changes can be found
+<a href="https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&amp;&amp;pid=12310561&amp;fixfor=12314163&amp;sorter/field=priority&amp;sorter/order=DESC">here</a>.</p>
+<p>We thank you for your patience and support.</p>
+<p>The 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 © 2015 — The Apache Software Foundation. Apache Wicket,
+    Wicket, Apache, the Apache feather logo, and the Apache Wicket
+    project logo are trademarks of The Apache Software Foundation. All
+    other marks mentioned may be trademarks or registered trademarks of
+    their respective owners.
+</div>
+        </footer>
+    </body>
+
+</html>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/f39616cb/content/news/2009/10/24/wicket-1-4-3-released.html
----------------------------------------------------------------------
diff --git a/content/news/2009/10/24/wicket-1-4-3-released.html b/content/news/2009/10/24/wicket-1-4-3-released.html
deleted file mode 100644
index 57e880a..0000000
--- a/content/news/2009/10/24/wicket-1-4-3-released.html
+++ /dev/null
@@ -1,83 +0,0 @@
-<!DOCTYPE html>
-<html>
-    <head>
-        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
-        <meta charset="utf-8">
-        <title>Wicket 1.4.3 released | Apache Wicket</title>
-        <meta name="viewport" content="width=device-width, initial-scale=1" />
-
-        <link rel="shortcut icon" href="/favicon.ico" type="image/vnd.microsoft.icon" />
-        <link rel="stylesheet" href="/css/style.css" type="text/css" media="screen" />
-        <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet" />
-
-		<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
-
-    </head>
-
-    <body class="">
-        <div class="header default">
-    <div class="l-container">
-<nav class="mainmenu">
-    <ul>
-		<!-- /start/quickstart.html || /news/2009/10/24/wicket-1-4-3-released.html -->
-    	<li class=""><a href="/start/quickstart.html">Quick Start</a></li>
-		<!-- /start/download.html || /news/2009/10/24/wicket-1-4-3-released.html -->
-    	<li class=""><a href="/start/download.html">Download</a></li>
-		<!-- /learn || /news/2009/10/24/wicket-1-4-3-released.html -->
-    	<li class=""><a href="/learn">Documentation</a></li>
-		<!-- /help || /news/2009/10/24/wicket-1-4-3-released.html -->
-    	<li class=""><a href="/help">Support</a></li>
-		<!-- /contribute || /news/2009/10/24/wicket-1-4-3-released.html -->
-    	<li class=""><a href="/contribute">Contribute</a></li>
-		<!-- /community || /news/2009/10/24/wicket-1-4-3-released.html -->
-    	<li class=""><a href="/community">Community</a></li>
-		<!-- /apache || /news/2009/10/24/wicket-1-4-3-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.3 released</h1>
-        </header>
-        <section class="l-one-third right">
-        </section>
-        <section class="l-two-third left">
-            <div class="l-full">
-    <p class="meta">24 Oct 2009</p>
-    <p>The Apache Wicket project is proud to announce the third maintenance release
-of Apache Wicket 1.4.</p>
-<h3 id="download-apache-wicket-143">Download Apache Wicket 1.4.3</h3>
-<p>You can download the release here: <a href="http://www.apache.org/dyn/closer.cgi/wicket/1.4.3">http://www.apache.org/dyn/closer.cgi/wicket/1.4.3</a></p>
-<p>Or use this in your Maven pom’s to upgrade to the new version:</p>
-<figure class="highlight"><pre><code class="language-xml" data-lang="xml"><span class="nt">&lt;dependency&gt;</span>
-    <span class="nt">&lt;groupId&gt;</span>org.apache.wicket<span class="nt">&lt;/groupId&gt;</span>
-    <span class="nt">&lt;artifactId&gt;</span>wicket<span class="nt">&lt;/artifactId&gt;</span>
-    <span class="nt">&lt;version&gt;</span>1.4.3<span class="nt">&lt;/version&gt;</span>
-<span class="nt">&lt;/dependency&gt;</span></code></pre></figure>
-<h3 id="changes">Changes</h3>
-<p>A complete list of changes can be found
-<a href="https://issues.apache.org/jira/browse/WICKET/fixforversion/12314250">here</a>.</p>
-<p>We thank you for your patience and support.</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 © 2015 — The Apache Software Foundation. Apache Wicket,
-    Wicket, Apache, the Apache feather logo, and the Apache Wicket
-    project logo are trademarks of The Apache Software Foundation. All
-    other marks mentioned may be trademarks or registered trademarks of
-    their respective owners.
-</div>
-        </footer>
-    </body>
-
-</html>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/f39616cb/content/news/2009/10/24/wicket-1.4.3-released.html
----------------------------------------------------------------------
diff --git a/content/news/2009/10/24/wicket-1.4.3-released.html b/content/news/2009/10/24/wicket-1.4.3-released.html
new file mode 100644
index 0000000..fb9936b
--- /dev/null
+++ b/content/news/2009/10/24/wicket-1.4.3-released.html
@@ -0,0 +1,83 @@
+<!DOCTYPE html>
+<html>
+    <head>
+        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+        <meta charset="utf-8">
+        <title>Wicket 1.4.3 released | Apache Wicket</title>
+        <meta name="viewport" content="width=device-width, initial-scale=1" />
+
+        <link rel="shortcut icon" href="/favicon.ico" type="image/vnd.microsoft.icon" />
+        <link rel="stylesheet" href="/css/style.css" type="text/css" media="screen" />
+        <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet" />
+
+		<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
+
+    </head>
+
+    <body class="">
+        <div class="header default">
+    <div class="l-container">
+<nav class="mainmenu">
+    <ul>
+		<!-- /start/quickstart.html || /news/2009/10/24/wicket-1.4.3-released.html -->
+    	<li class=""><a href="/start/quickstart.html">Quick Start</a></li>
+		<!-- /start/download.html || /news/2009/10/24/wicket-1.4.3-released.html -->
+    	<li class=""><a href="/start/download.html">Download</a></li>
+		<!-- /learn || /news/2009/10/24/wicket-1.4.3-released.html -->
+    	<li class=""><a href="/learn">Documentation</a></li>
+		<!-- /help || /news/2009/10/24/wicket-1.4.3-released.html -->
+    	<li class=""><a href="/help">Support</a></li>
+		<!-- /contribute || /news/2009/10/24/wicket-1.4.3-released.html -->
+    	<li class=""><a href="/contribute">Contribute</a></li>
+		<!-- /community || /news/2009/10/24/wicket-1.4.3-released.html -->
+    	<li class=""><a href="/community">Community</a></li>
+		<!-- /apache || /news/2009/10/24/wicket-1.4.3-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.3 released</h1>
+        </header>
+        <section class="l-one-third right">
+        </section>
+        <section class="l-two-third left">
+            <div class="l-full">
+    <p class="meta">24 Oct 2009</p>
+    <p>The Apache Wicket project is proud to announce the third maintenance release
+of Apache Wicket 1.4.</p>
+<h3 id="download-apache-wicket-143">Download Apache Wicket 1.4.3</h3>
+<p>You can download the release here: <a href="http://www.apache.org/dyn/closer.cgi/wicket/1.4.3">http://www.apache.org/dyn/closer.cgi/wicket/1.4.3</a></p>
+<p>Or use this in your Maven pom’s to upgrade to the new version:</p>
+<figure class="highlight"><pre><code class="language-xml" data-lang="xml"><span class="nt">&lt;dependency&gt;</span>
+    <span class="nt">&lt;groupId&gt;</span>org.apache.wicket<span class="nt">&lt;/groupId&gt;</span>
+    <span class="nt">&lt;artifactId&gt;</span>wicket<span class="nt">&lt;/artifactId&gt;</span>
+    <span class="nt">&lt;version&gt;</span>1.4.3<span class="nt">&lt;/version&gt;</span>
+<span class="nt">&lt;/dependency&gt;</span></code></pre></figure>
+<h3 id="changes">Changes</h3>
+<p>A complete list of changes can be found
+<a href="https://issues.apache.org/jira/browse/WICKET/fixforversion/12314250">here</a>.</p>
+<p>We thank you for your patience and support.</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 © 2015 — The Apache Software Foundation. Apache Wicket,
+    Wicket, Apache, the Apache feather logo, and the Apache Wicket
+    project logo are trademarks of The Apache Software Foundation. All
+    other marks mentioned may be trademarks or registered trademarks of
+    their respective owners.
+</div>
+        </footer>
+    </body>
+
+</html>

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/f39616cb/content/news/2009/10/index.html
----------------------------------------------------------------------
diff --git a/content/news/2009/10/index.html b/content/news/2009/10/index.html
index dce2f7e..54a0c57 100644
--- a/content/news/2009/10/index.html
+++ b/content/news/2009/10/index.html
@@ -53,7 +53,7 @@
 of Apache Wicket 1.4.</p>
 <h3 id="download-apache-wicket-142">Download Apache Wicket 1.4.2</h3>
 <p>You can download the release here: <a href="http://www.apache.org/dyn/closer.cgi/wicket/1.4.2">http://www.apache...</a></p>
-	<a href="/news/2009/10/12/wicket-1-4-2-released.html">more</a></li>
+	<a href="/news/2009/10/12/wicket-1.4.2-released.html">more</a></li>
 </div>
 <div class="news">
 	<h3>Wicket 1.4.3 released</h3>
@@ -62,7 +62,7 @@ of Apache Wicket 1.4.</p>
 of Apache Wicket 1.4.</p>
 <h3 id="download-apache-wicket-143">Download Apache Wicket 1.4.3</h3>
 <p>You can download the release here: <a href="http://www.apache.org/dyn/closer.cgi/wicket/1.4.3">http://www.apach...</a></p>
-	<a href="/news/2009/10/24/wicket-1-4-3-released.html">more</a></li>
+	<a href="/news/2009/10/24/wicket-1.4.3-released.html">more</a></li>
 </div>
         </div>
         <div class="l-one-third">