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 2013/02/20 12:30:24 UTC

svn commit: r1448092 [2/2] - in /wicket/common/site/trunk: ./ _includes/ _posts/ _site/ _site/2009/07/30/ _site/2009/08/21/ _site/2009/10/12/ _site/2009/10/24/ _site/2009/12/13/ _site/2009/12/21/ _site/2010/02/01/ _site/2010/03/05/ _site/2010/05/03/ _s...

Modified: wicket/common/site/trunk/_site/atom.xml
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/atom.xml?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/atom.xml (original)
+++ wicket/common/site/trunk/_site/atom.xml Wed Feb 20 11:30:22 2013
@@ -4,7 +4,7 @@
  <title>Apache Wicket</title>
  <link href="http://wicket.apache.org/atom.xml" rel="self"/>
  <link href="http://wicket.apache.org/"/>
- <updated>2013-02-19T16:59:50+01:00</updated>
+ <updated>2013-02-19T17:37:47+01:00</updated>
  <id>http://wicket.apache.org/</id>
  <author>
    <name>Apache Wicket</name>
@@ -13,6 +13,133 @@
  
  
  <entry>
+   <title>Apache Wicket 6.6.0 released</title>
+   <link href="http://wicket.apache.org/2013/02/15/wicket-6.6.0-released.html"/>
+   <updated>2013-02-15T00:00:00+01:00</updated>
+   <id>http://wicket.apache.org/2013/02/15/wicket-6.6.0-released</id>
+   <content type="html">&lt;p&gt;The Apache Wicket PMC is proud to announce Apache Wicket 6.6.0!&lt;/p&gt;
+
+&lt;p&gt;This release marks the sixth minor release of Wicket 6. Starting with Wicket 6 we use semantic versioning for the future development of Wicket, and as such no API breaks are present in this release compared to 6.0.0.&lt;/p&gt;
+
+&lt;h3 id='new_and_noteworthy'&gt;New and noteworthy&lt;/h3&gt;
+
+&lt;h4 id='wicketfor_attribute_for_html_label_tags'&gt;wicket:for attribute for html label tags&lt;/h4&gt;
+
+&lt;p&gt;While already available for some time, the wicket-1.5.xsd now contains a valid definition for the &lt;code&gt;wicket:for&lt;/code&gt; attribute such that it&lt;/p&gt;
+
+&lt;blockquote&gt;
+&lt;p&gt;Can be used in HTML &lt;code&gt;&amp;lt;label&amp;gt;&lt;/code&gt; element to automatically link it to a form element. The value of this attribute must have the same value of the form component&amp;#8217;s wicket:id attribute.&lt;/p&gt;
+&lt;/blockquote&gt;
+
+&lt;p&gt;So you can use the following markup:&lt;/p&gt;
+&lt;div class='highlight'&gt;&lt;pre&gt;&lt;code class='html'&gt;&lt;span class='nt'&gt;&amp;lt;label&lt;/span&gt; &lt;span class='na'&gt;wicket:for=&lt;/span&gt;&lt;span class='s'&gt;&amp;quot;someinput&amp;quot;&lt;/span&gt;&lt;span class='nt'&gt;&amp;gt;&lt;/span&gt;Some label&lt;span class='nt'&gt;&amp;lt;/label&amp;gt;&lt;/span&gt;
+&lt;span class='nt'&gt;&amp;lt;input&lt;/span&gt; &lt;span class='na'&gt;wicket:id=&lt;/span&gt;&lt;span class='s'&gt;&amp;quot;someinput&amp;quot;&lt;/span&gt; &lt;span class='na'&gt;type=&lt;/span&gt;&lt;span class='s'&gt;&amp;quot;text&amp;quot;&lt;/span&gt;&lt;span class='nt'&gt;&amp;gt;&lt;/span&gt;
+&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
+&lt;h4 id='added_a_callback_for_an_invalidated_session'&gt;Added a callback for an invalidated session&lt;/h4&gt;
+
+&lt;p&gt;Session is extended with a life cycle event called &lt;code&gt;onInvalidate()&lt;/code&gt;. This method is executed when the user session is invalidated either by explicit call to &lt;code&gt;org.apache.wicket.Session#invalidate()&lt;/code&gt; or due to HttpSession expiration.&lt;/p&gt;
+
+&lt;p&gt;In case of session expiration this method is called in a non-worker thread, i.e. there are no thread locals exported for the Application, RequestCycle and Session. The Session is the current instance. The Application can be found by using &lt;code&gt;Application#get(String)&lt;/code&gt;. There is no way to get a reference to a RequestCycle.&lt;/p&gt;
+
+&lt;h3 id='using_this_release'&gt;Using this release&lt;/h3&gt;
+
+&lt;p&gt;With Apache Maven update your dependency to (and don&amp;#8217;t forget to update any other dependencies on Wicket projects to the same version):&lt;/p&gt;
+&lt;div class='highlight'&gt;&lt;pre&gt;&lt;code class='xml'&gt;&lt;span class='nt'&gt;&amp;lt;dependency&amp;gt;&lt;/span&gt;
+    &lt;span class='nt'&gt;&amp;lt;groupId&amp;gt;&lt;/span&gt;org.apache.wicket&lt;span class='nt'&gt;&amp;lt;/groupId&amp;gt;&lt;/span&gt;
+    &lt;span class='nt'&gt;&amp;lt;artifactId&amp;gt;&lt;/span&gt;wicket-core&lt;span class='nt'&gt;&amp;lt;/artifactId&amp;gt;&lt;/span&gt;
+    &lt;span class='nt'&gt;&amp;lt;version&amp;gt;&lt;/span&gt;6.6.0&lt;span class='nt'&gt;&amp;lt;/version&amp;gt;&lt;/span&gt;
+&lt;span class='nt'&gt;&amp;lt;/dependency&amp;gt;&lt;/span&gt;
+&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
+&lt;p&gt;Or download and build the distribution yourself, or use our convenience binary package&lt;/p&gt;
+
+&lt;ul&gt;
+&lt;li&gt;Source: &lt;a href='http://www.apache.org/dyn/closer.cgi/wicket/6.6.0'&gt;http://www.apache.org/dyn/closer.cgi/wicket/6.6.0&lt;/a&gt;&lt;/li&gt;
+
+&lt;li&gt;Binary: &lt;a href='http://www.apache.org/dyn/closer.cgi/wicket/6.6.0/binaries'&gt;http://www.apache.org/dyn/closer.cgi/wicket/6.6.0/binaries&lt;/a&gt;&lt;/li&gt;
+&lt;/ul&gt;
+
+&lt;h3 id='upgrading_from_earlier_versions'&gt;Upgrading from earlier versions&lt;/h3&gt;
+
+&lt;p&gt;If you upgrade from 6.y.z this release is a drop in replacement. If you come from a version prior to 6.0.0, please read our Wicket 6 migration guide found at&lt;/p&gt;
+
+&lt;ul&gt;
+&lt;li&gt;&lt;a href='http://s.apache.org/wicket-6.0-migration'&gt;http://s.apache.org/wicket-6.0-migration&lt;/a&gt;&lt;/li&gt;
+&lt;/ul&gt;
+
+&lt;p&gt;Have fun!&lt;/p&gt;
+
+&lt;p&gt;— The Wicket team&lt;/p&gt;
+
+&lt;h3 id='release_notes__wicket__version_660'&gt;Release Notes - Wicket - Version 6.6.0&lt;/h3&gt;
+
+&lt;h4 id='bugs'&gt;Bugs&lt;/h4&gt;
+
+&lt;ul&gt;
+&lt;li&gt;&lt;a href='https://isues.apache.org/jira/browse/WICKET-4723'&gt;WICKET-4723&lt;/a&gt; - tracking id retrieved in AtmosphereBehavior#onRequest() is always 0&lt;/li&gt;
+
+&lt;li&gt;&lt;a href='https://isues.apache.org/jira/browse/WICKET-4724'&gt;WICKET-4724&lt;/a&gt; - the option name &amp;#8220;maxRequests&amp;#8221; is wrong in jquery.wicketatmosphere.js&lt;/li&gt;
+
+&lt;li&gt;&lt;a href='https://isues.apache.org/jira/browse/WICKET-4926'&gt;WICKET-4926&lt;/a&gt; - CheckGroupSelector does not work in nested forms in modal windows&lt;/li&gt;
+
+&lt;li&gt;&lt;a href='https://isues.apache.org/jira/browse/WICKET-4984'&gt;WICKET-4984&lt;/a&gt; - Update quickstart info for changed workflow in IntelliJ idea&lt;/li&gt;
+
+&lt;li&gt;&lt;a href='https://isues.apache.org/jira/browse/WICKET-4990'&gt;WICKET-4990&lt;/a&gt; - Problem using AutoCompleteBehavior with AjaxFormComponentUpdatingBehavior(&amp;#8220;onchange&amp;#8221;)&lt;/li&gt;
+
+&lt;li&gt;&lt;a href='https://isues.apache.org/jira/browse/WICKET-4998'&gt;WICKET-4998&lt;/a&gt; - AjaxFormComponentUpdatingBehavior(&amp;#8220;onkeypress&amp;#8221;) is triggered when Enter is used on autocomplete list&lt;/li&gt;
+
+&lt;li&gt;&lt;a href='https://isues.apache.org/jira/browse/WICKET-5011'&gt;WICKET-5011&lt;/a&gt; - Allow Select to work with non-equals objects&lt;/li&gt;
+
+&lt;li&gt;&lt;a href='https://isues.apache.org/jira/browse/WICKET-5013'&gt;WICKET-5013&lt;/a&gt; - Wicket Enclosure fails with more than one component&lt;/li&gt;
+
+&lt;li&gt;&lt;a href='https://isues.apache.org/jira/browse/WICKET-5014'&gt;WICKET-5014&lt;/a&gt; - Changes in WicketObjects.sizeof(final Serializable object) clashes with &lt;code&gt;&amp;lt;header-contribution&amp;gt;&lt;/code&gt; in AjaxResponse&lt;/li&gt;
+
+&lt;li&gt;&lt;a href='https://isues.apache.org/jira/browse/WICKET-5019'&gt;WICKET-5019&lt;/a&gt; - Handling of NO_MINIFIED_NAME in PackageResourceReference#internalGetMinifiedName()&lt;/li&gt;
+
+&lt;li&gt;&lt;a href='https://isues.apache.org/jira/browse/WICKET-5020'&gt;WICKET-5020&lt;/a&gt; - InlineEnclosureHandler always uses &amp;#8220;wicket&amp;#8221; namespace&lt;/li&gt;
+
+&lt;li&gt;&lt;a href='https://isues.apache.org/jira/browse/WICKET-5024'&gt;WICKET-5024&lt;/a&gt; - Global ajax event for precondition is not called&lt;/li&gt;
+
+&lt;li&gt;&lt;a href='https://isues.apache.org/jira/browse/WICKET-5027'&gt;WICKET-5027&lt;/a&gt; - FormTester#getInputValue() does not support Select/SelectOption nor other custom components&lt;/li&gt;
+
+&lt;li&gt;&lt;a href='https://isues.apache.org/jira/browse/WICKET-5029'&gt;WICKET-5029&lt;/a&gt; - Palette does not allow to turn off localization&lt;/li&gt;
+
+&lt;li&gt;&lt;a href='https://isues.apache.org/jira/browse/WICKET-5031'&gt;WICKET-5031&lt;/a&gt; - Upgrade bootstrap to 2.3&lt;/li&gt;
+
+&lt;li&gt;&lt;a href='https://isues.apache.org/jira/browse/WICKET-5035'&gt;WICKET-5035&lt;/a&gt; - script tag with wicket:id does not throw exception if it was not added in the code&lt;/li&gt;
+
+&lt;li&gt;&lt;a href='https://isues.apache.org/jira/browse/WICKET-5036'&gt;WICKET-5036&lt;/a&gt; - Post Parameters are lost when continueToOriginalDestination() is called&lt;/li&gt;
+
+&lt;li&gt;&lt;a href='https://isues.apache.org/jira/browse/WICKET-5040'&gt;WICKET-5040&lt;/a&gt; - Session.exists() returns false when ThreadContext#session is not set to current session&lt;/li&gt;
+&lt;/ul&gt;
+
+&lt;h4 id='improvement'&gt;Improvement&lt;/h4&gt;
+
+&lt;ul&gt;
+&lt;li&gt;&lt;a href='https://isues.apache.org/jira/browse/WICKET-4444'&gt;WICKET-4444&lt;/a&gt; - Add a callback to the Session which is called when the HttpSession is invalidated&lt;/li&gt;
+
+&lt;li&gt;&lt;a href='https://isues.apache.org/jira/browse/WICKET-4861'&gt;WICKET-4861&lt;/a&gt; - Making MultiFileUploadField use HTML5 multiple attr &amp;amp; remove confusing fakepath&lt;/li&gt;
+
+&lt;li&gt;&lt;a href='https://isues.apache.org/jira/browse/WICKET-4945'&gt;WICKET-4945&lt;/a&gt; - Wicket-atmosphere filters should be functions on AtmosphereResource&lt;/li&gt;
+
+&lt;li&gt;&lt;a href='https://isues.apache.org/jira/browse/WICKET-4946'&gt;WICKET-4946&lt;/a&gt; - Allow passing parameters to atmosphere JS&lt;/li&gt;
+
+&lt;li&gt;&lt;a href='https://isues.apache.org/jira/browse/WICKET-5003'&gt;WICKET-5003&lt;/a&gt; - Add wicket:for attribute in wicket.xsd&lt;/li&gt;
+
+&lt;li&gt;&lt;a href='https://isues.apache.org/jira/browse/WICKET-5006'&gt;WICKET-5006&lt;/a&gt; - Improve null display value in AbstractSingleSelectChoice&lt;/li&gt;
+
+&lt;li&gt;&lt;a href='https://isues.apache.org/jira/browse/WICKET-5010'&gt;WICKET-5010&lt;/a&gt; - Improve wicket-ajax.js to be able to work with jQuery 1.9+&lt;/li&gt;
+
+&lt;li&gt;&lt;a href='https://isues.apache.org/jira/browse/WICKET-5016'&gt;WICKET-5016&lt;/a&gt; - Updated Application_el.properties for 6.x&lt;/li&gt;
+
+&lt;li&gt;&lt;a href='https://isues.apache.org/jira/browse/WICKET-5017'&gt;WICKET-5017&lt;/a&gt; - BaseWicketTester#clickLink() doesn not serialize form to request for SubmitLink but does for AjaxSubmitLink&lt;/li&gt;
+
+&lt;li&gt;&lt;a href='https://isues.apache.org/jira/browse/WICKET-5022'&gt;WICKET-5022&lt;/a&gt; - Improve Application_es.properties&lt;/li&gt;
+
+&lt;li&gt;&lt;a href='https://isues.apache.org/jira/browse/WICKET-5025'&gt;WICKET-5025&lt;/a&gt; - Set the component as a context to the ajax listeners&lt;/li&gt;
+&lt;/ul&gt;</content>
+ </entry>
+ 
+ <entry>
    <title>Apache Wicket 6.5.0 released</title>
    <link href="http://wicket.apache.org/2013/01/23/wicket-6.5.0-released.html"/>
    <updated>2013-01-23T00:00:00+01:00</updated>
@@ -830,29 +957,4 @@
 &lt;p&gt;&amp;#8220;Apache&amp;#8221;, &amp;#8220;Wicket&amp;#8221;, &amp;#8220;Apache Wicket&amp;#8221;, and &amp;#8220;ApacheCon&amp;#8221; are trademarks of The Apache Software Foundation. All other brands and trademarks are the property of their respective owners.&lt;/p&gt;</content>
  </entry>
  
- <entry>
-   <title>Wicket 1.4.21 released</title>
-   <link href="http://wicket.apache.org/2012/09/05/wicket-1.4.21-released.html"/>
-   <updated>2012-09-05T00:00:00+02:00</updated>
-   <id>http://wicket.apache.org/2012/09/05/wicket-1.4.21-released</id>
-   <content type="html">&lt;p&gt;This is 21st release of the Wicket 1.4.x series. This is also the last release of the 1.4.x series, rounding up the remaining bugfixes. No further releases will happen in this branch.&lt;/p&gt;
-
-&lt;ul&gt;
-&lt;li&gt;&lt;a href='http://git-wip-us.apache.org/repos/asf/wicket/repo?p=wicket.git;a=shortlog;h=refs/tags/release/wicket-1.4.21'&gt;Git tag&lt;/a&gt;&lt;/li&gt;
-
-&lt;li&gt;&lt;a href='https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;amp;version=12320171'&gt;Changelog&lt;/a&gt;&lt;/li&gt;
-
-&lt;li&gt;To use in Maven:&lt;/li&gt;
-&lt;/ul&gt;
-&lt;div class='highlight'&gt;&lt;pre&gt;&lt;code class='xml'&gt;&lt;span class='nt'&gt;&amp;lt;dependency&amp;gt;&lt;/span&gt;
-    &lt;span class='nt'&gt;&amp;lt;groupId&amp;gt;&lt;/span&gt;org.apache.wicket&lt;span class='nt'&gt;&amp;lt;/groupId&amp;gt;&lt;/span&gt;
-    &lt;span class='nt'&gt;&amp;lt;artifactId&amp;gt;&lt;/span&gt;wicket&lt;span class='nt'&gt;&amp;lt;/artifactId&amp;gt;&lt;/span&gt;
-    &lt;span class='nt'&gt;&amp;lt;version&amp;gt;&lt;/span&gt;1.4.21&lt;span class='nt'&gt;&amp;lt;/version&amp;gt;&lt;/span&gt;
-&lt;span class='nt'&gt;&amp;lt;/dependency&amp;gt;&lt;/span&gt;
-&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
-&lt;ul&gt;
-&lt;li&gt;Download the &lt;a href='http://www.apache.org/dyn/closer.cgi/wicket/1.4.21'&gt;full distribution&lt;/a&gt; (including source)&lt;/li&gt;
-&lt;/ul&gt;</content>
- </entry>
- 
 </feed>

Modified: wicket/common/site/trunk/_site/contribute/build.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/contribute/build.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/contribute/build.html (original)
+++ wicket/common/site/trunk/_site/contribute/build.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>

Modified: wicket/common/site/trunk/_site/contribute/index.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/contribute/index.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/contribute/index.html (original)
+++ wicket/common/site/trunk/_site/contribute/index.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>

Modified: wicket/common/site/trunk/_site/contribute/patch.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/contribute/patch.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/contribute/patch.html (original)
+++ wicket/common/site/trunk/_site/contribute/patch.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>

Modified: wicket/common/site/trunk/_site/contribute/release.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/contribute/release.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/contribute/release.html (original)
+++ wicket/common/site/trunk/_site/contribute/release.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>

Modified: wicket/common/site/trunk/_site/contribute/write.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/contribute/write.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/contribute/write.html (original)
+++ wicket/common/site/trunk/_site/contribute/write.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>

Modified: wicket/common/site/trunk/_site/doap.rdf
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/doap.rdf?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/doap.rdf (original)
+++ wicket/common/site/trunk/_site/doap.rdf Wed Feb 20 11:30:22 2013
@@ -25,8 +25,8 @@
 		<release>
 			<Version>
 				<name>Latest Stable Release</name>
-				<created>2013-01-23</created>
-				<revision>6.5.0</revision>
+				<created>2013-02-15</created>
+				<revision>6.6.0</revision>
 			</Version>
 		</release>
 		<repository>

Modified: wicket/common/site/trunk/_site/dtds.data/index.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/dtds.data/index.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/dtds.data/index.html (original)
+++ wicket/common/site/trunk/_site/dtds.data/index.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>

Modified: wicket/common/site/trunk/_site/help/email.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/help/email.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/help/email.html (original)
+++ wicket/common/site/trunk/_site/help/email.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>

Modified: wicket/common/site/trunk/_site/help/index.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/help/index.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/help/index.html (original)
+++ wicket/common/site/trunk/_site/help/index.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>

Modified: wicket/common/site/trunk/_site/help/irc.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/help/irc.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/help/irc.html (original)
+++ wicket/common/site/trunk/_site/help/irc.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>

Modified: wicket/common/site/trunk/_site/help/reportabug.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/help/reportabug.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/help/reportabug.html (original)
+++ wicket/common/site/trunk/_site/help/reportabug.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>

Modified: wicket/common/site/trunk/_site/help/security.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/help/security.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/help/security.html (original)
+++ wicket/common/site/trunk/_site/help/security.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>

Modified: wicket/common/site/trunk/_site/help/support.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/help/support.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/help/support.html (original)
+++ wicket/common/site/trunk/_site/help/support.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>

Modified: wicket/common/site/trunk/_site/index.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/index.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/index.html (original)
+++ wicket/common/site/trunk/_site/index.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>
@@ -188,6 +188,81 @@
 
 <p>Wicket is released under the <a href='http://www.apache.org/licenses/LICENSE-2.0.html'>Apache License, Version 2.0</a>.</p>
 
+<h1 id='apache_wicket_660_released'><a href='/2013/02/15/wicket-6.6.0-released.html'>Apache Wicket 6.6.0 released</a></h1>
+<p>The Apache Wicket PMC is proud to announce Apache Wicket 6.6.0!</p><p>This release marks the sixth minor release of Wicket 6. Starting with Wicket 6 we use semantic versioning for the future development of Wicket, and as such no API breaks are present in this release compared to 6.0.0.</p><h3 id='new_and_noteworthy'>New and noteworthy</h3><h4 id='wicketfor_attribute_for_html_label_tags'>wicket:for attribute for html label tags</h4><p>While already available for some time, the wicket-1.5.xsd now contains a valid definition for the <code>wicket:for</code> attribute such that it</p><blockquote>
+<p>Can be used in HTML <code>&lt;label&gt;</code> element to automatically link it to a form element. The value of this attribute must have the same value of the form component&#8217;s wicket:id attribute.</p>
+</blockquote><p>So you can use the following markup:</p><div class='highlight'><pre><code class='html'><span class='nt'>&lt;label</span> <span class='na'>wicket:for=</span><span class='s'>&quot;someinput&quot;</span><span class='nt'>&gt;</span>Some label<span class='nt'>&lt;/label&gt;</span>
+<span class='nt'>&lt;input</span> <span class='na'>wicket:id=</span><span class='s'>&quot;someinput&quot;</span> <span class='na'>type=</span><span class='s'>&quot;text&quot;</span><span class='nt'>&gt;</span>
+</code></pre></div><h4 id='added_a_callback_for_an_invalidated_session'>Added a callback for an invalidated session</h4><p>Session is extended with a life cycle event called <code>onInvalidate()</code>. This method is executed when the user session is invalidated either by explicit call to <code>org.apache.wicket.Session#invalidate()</code> or due to HttpSession expiration.</p><p>In case of session expiration this method is called in a non-worker thread, i.e. there are no thread locals exported for the Application, RequestCycle and Session. The Session is the current instance. The Application can be found by using <code>Application#get(String)</code>. There is no way to get a reference to a RequestCycle.</p><h3 id='using_this_release'>Using this release</h3><p>With Apache Maven update your dependency to (and don&#8217;t forget to update any other dependencies on Wicket projects to the same version):</p><div class='highlight'><pre><code class='xml'><span class='nt'>&lt;depend
 ency&gt;</span>
+    <span class='nt'>&lt;groupId&gt;</span>org.apache.wicket<span class='nt'>&lt;/groupId&gt;</span>
+    <span class='nt'>&lt;artifactId&gt;</span>wicket-core<span class='nt'>&lt;/artifactId&gt;</span>
+    <span class='nt'>&lt;version&gt;</span>6.6.0<span class='nt'>&lt;/version&gt;</span>
+<span class='nt'>&lt;/dependency&gt;</span>
+</code></pre></div><p>Or download and build the distribution yourself, or use our convenience binary package</p><ul>
+<li>Source: <a href='http://www.apache.org/dyn/closer.cgi/wicket/6.6.0'>http://www.apache.org/dyn/closer.cgi/wicket/6.6.0</a></li>
+
+<li>Binary: <a href='http://www.apache.org/dyn/closer.cgi/wicket/6.6.0/binaries'>http://www.apache.org/dyn/closer.cgi/wicket/6.6.0/binaries</a></li>
+</ul><h3 id='upgrading_from_earlier_versions'>Upgrading from earlier versions</h3><p>If you upgrade from 6.y.z this release is a drop in replacement. If you come from a version prior to 6.0.0, please read our Wicket 6 migration guide found at</p><ul>
+<li><a href='http://s.apache.org/wicket-6.0-migration'>http://s.apache.org/wicket-6.0-migration</a></li>
+</ul><p>Have fun!</p><p>— The Wicket team</p><h3 id='release_notes__wicket__version_660'>Release Notes - Wicket - Version 6.6.0</h3><h4 id='bugs'>Bugs</h4><ul>
+<li><a href='https://isues.apache.org/jira/browse/WICKET-4723'>WICKET-4723</a> - tracking id retrieved in AtmosphereBehavior#onRequest() is always 0</li>
+
+<li><a href='https://isues.apache.org/jira/browse/WICKET-4724'>WICKET-4724</a> - the option name &#8220;maxRequests&#8221; is wrong in jquery.wicketatmosphere.js</li>
+
+<li><a href='https://isues.apache.org/jira/browse/WICKET-4926'>WICKET-4926</a> - CheckGroupSelector does not work in nested forms in modal windows</li>
+
+<li><a href='https://isues.apache.org/jira/browse/WICKET-4984'>WICKET-4984</a> - Update quickstart info for changed workflow in IntelliJ idea</li>
+
+<li><a href='https://isues.apache.org/jira/browse/WICKET-4990'>WICKET-4990</a> - Problem using AutoCompleteBehavior with AjaxFormComponentUpdatingBehavior(&#8220;onchange&#8221;)</li>
+
+<li><a href='https://isues.apache.org/jira/browse/WICKET-4998'>WICKET-4998</a> - AjaxFormComponentUpdatingBehavior(&#8220;onkeypress&#8221;) is triggered when Enter is used on autocomplete list</li>
+
+<li><a href='https://isues.apache.org/jira/browse/WICKET-5011'>WICKET-5011</a> - Allow Select to work with non-equals objects</li>
+
+<li><a href='https://isues.apache.org/jira/browse/WICKET-5013'>WICKET-5013</a> - Wicket Enclosure fails with more than one component</li>
+
+<li><a href='https://isues.apache.org/jira/browse/WICKET-5014'>WICKET-5014</a> - Changes in WicketObjects.sizeof(final Serializable object) clashes with <code>&lt;header-contribution&gt;</code> in AjaxResponse</li>
+
+<li><a href='https://isues.apache.org/jira/browse/WICKET-5019'>WICKET-5019</a> - Handling of NO_MINIFIED_NAME in PackageResourceReference#internalGetMinifiedName()</li>
+
+<li><a href='https://isues.apache.org/jira/browse/WICKET-5020'>WICKET-5020</a> - InlineEnclosureHandler always uses &#8220;wicket&#8221; namespace</li>
+
+<li><a href='https://isues.apache.org/jira/browse/WICKET-5024'>WICKET-5024</a> - Global ajax event for precondition is not called</li>
+
+<li><a href='https://isues.apache.org/jira/browse/WICKET-5027'>WICKET-5027</a> - FormTester#getInputValue() does not support Select/SelectOption nor other custom components</li>
+
+<li><a href='https://isues.apache.org/jira/browse/WICKET-5029'>WICKET-5029</a> - Palette does not allow to turn off localization</li>
+
+<li><a href='https://isues.apache.org/jira/browse/WICKET-5031'>WICKET-5031</a> - Upgrade bootstrap to 2.3</li>
+
+<li><a href='https://isues.apache.org/jira/browse/WICKET-5035'>WICKET-5035</a> - script tag with wicket:id does not throw exception if it was not added in the code</li>
+
+<li><a href='https://isues.apache.org/jira/browse/WICKET-5036'>WICKET-5036</a> - Post Parameters are lost when continueToOriginalDestination() is called</li>
+
+<li><a href='https://isues.apache.org/jira/browse/WICKET-5040'>WICKET-5040</a> - Session.exists() returns false when ThreadContext#session is not set to current session</li>
+</ul><h4 id='improvement'>Improvement</h4><ul>
+<li><a href='https://isues.apache.org/jira/browse/WICKET-4444'>WICKET-4444</a> - Add a callback to the Session which is called when the HttpSession is invalidated</li>
+
+<li><a href='https://isues.apache.org/jira/browse/WICKET-4861'>WICKET-4861</a> - Making MultiFileUploadField use HTML5 multiple attr &amp; remove confusing fakepath</li>
+
+<li><a href='https://isues.apache.org/jira/browse/WICKET-4945'>WICKET-4945</a> - Wicket-atmosphere filters should be functions on AtmosphereResource</li>
+
+<li><a href='https://isues.apache.org/jira/browse/WICKET-4946'>WICKET-4946</a> - Allow passing parameters to atmosphere JS</li>
+
+<li><a href='https://isues.apache.org/jira/browse/WICKET-5003'>WICKET-5003</a> - Add wicket:for attribute in wicket.xsd</li>
+
+<li><a href='https://isues.apache.org/jira/browse/WICKET-5006'>WICKET-5006</a> - Improve null display value in AbstractSingleSelectChoice</li>
+
+<li><a href='https://isues.apache.org/jira/browse/WICKET-5010'>WICKET-5010</a> - Improve wicket-ajax.js to be able to work with jQuery 1.9+</li>
+
+<li><a href='https://isues.apache.org/jira/browse/WICKET-5016'>WICKET-5016</a> - Updated Application_el.properties for 6.x</li>
+
+<li><a href='https://isues.apache.org/jira/browse/WICKET-5017'>WICKET-5017</a> - BaseWicketTester#clickLink() doesn not serialize form to request for SubmitLink but does for AjaxSubmitLink</li>
+
+<li><a href='https://isues.apache.org/jira/browse/WICKET-5022'>WICKET-5022</a> - Improve Application_es.properties</li>
+
+<li><a href='https://isues.apache.org/jira/browse/WICKET-5025'>WICKET-5025</a> - Set the component as a context to the ajax listeners</li>
+</ul>
 <h1 id='apache_wicket_650_released'><a href='/2013/01/23/wicket-6.5.0-released.html'>Apache Wicket 6.5.0 released</a></h1>
 <p>The Apache Wicket PMC is proud to announce Apache Wicket 6.5.0!</p><p>This release marks the fifth minor release of Wicket 6. Starting with Wicket 6 we use semantic versioning for the future development of Wicket, and as such no API breaks are present in this release compared to 6.0.0.</p><h3 id='new_and_noteworthy'>New and noteworthy</h3><h4 id='behavioronremovecomponent'>Behavior.onRemove(Component)</h4><p>org.apache.wicket.Behavior has a new method - #onRemove(Component). This callback method is called when a host component of this behavior is removed from its parent.</p><h4 id='global_updaters_for_ajax_request_attributes'>Global updaters for Ajax request attributes</h4><p>By registering a custom AjaxRequestTarget.AbstractListener the application can manipulate all the attributes for all Ajax requests.</p><p>Example:</p><div class='highlight'><pre><code class='java'><span class='n'>application</span><span class='o'>.</span><span class='na'>getAjaxRequestTargetListeners
 </span><span class='o'>().</span><span class='na'>add</span><span class='o'>(</span><span class='k'>new</span> <span class='n'>AjaxRequestTarget</span><span class='o'>.</span><span class='na'>AbstractListener</span><span class='o'>()</span>
 <span class='o'>{</span>
@@ -236,125 +311,13 @@
 * [WICKET-4963](https://issues.apache.org/jira/browse/WICKET-4963) - ComponentModel &quot;setObject&quot; methods should take generic &quot;T&quot; type instead of &quot;Object&quot;
 * [WICKET-4970](https://issues.apache.org/jira/browse/WICKET-4970) - Move the logic for creating the proper PackageResource from PackageResourceReference to ResourceReferenceRegistry
 * [WICKET-4982](https://issues.apache.org/jira/browse/WICKET-4982) - StatelessChecker: add helpful information to find stateful behavior (patch included)
-* [WICKET-4983](https://issues.apache.org/jira/browse/WICKET-4983) - extra recursion on Wicket.DOM.get</code></pre>
-<h1 id='apache_wicket_640_released'><a href='/2012/12/14/wicket-6.4.0-released.html'>Apache Wicket 6.4.0 released</a></h1>
-<p>The Apache Wicket PMC is proud to announce Apache Wicket 6.4.0!</p><p>This release marks the fourth minor release of Wicket 6. Starting with Wicket 6 we use semantic versioning for the future development of Wicket, and as such no API breaks are present in this release compared to 6.0.0.</p><h3 id='new_and_noteworthy'>New and noteworthy</h3><p>JQuery was upgraded to 1.8.3, bootstrap to 2.2.2.</p><h4 id='jsr_303_beanvalidation_support'>JSR 303 BeanValidation support</h4><p>Native support for BeanValidation (JSR 303) was added as an experimental module and released as version 0.5. You can grab it by using these maven coordinates:</p><ul>
-<li>org.apache.wicket:wicket-bean-validation:0.5:jar</li>
-</ul><p>or by pasting in the pom snippet below:</p><div class='highlight'><pre><code class='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-bean-validation<span class='nt'>&lt;/artifactId&gt;</span>
-    <span class='nt'>&lt;version&gt;</span>0.5<span class='nt'>&lt;/version&gt;</span>
-<span class='nt'>&lt;/dependency&gt;</span>
-</code></pre></div><p>Note that this is an experimental module and that it is not released under the SemVer rules. Use at your own risk.</p><h4 id='hierarchical_feedback_panel'>Hierarchical feedback panel</h4><p>A new kind of feedback panel was introduced: a hierarchical feedback panel. A specialized feedback panel that only displays messages from inside a fence defined by a container component. Instances will not show messages coming from inside a nested fence, allowing the nesting of these panels to work correctly without displaying the same feedback message twice. A constructor that does not takes a fencing component creates a catch-all panel that shows messages that do not come from inside any fence or from the Session.</p><p>For more information see the <a href='http://s.apache.org/wicket-FencedFeedbackPanel'>FencedFeedbackPanel javadoc</a>.</p><p>For the full changelog see the release notes attached to the end of this announcement.</p><h3 id='using_this_release'>Using 
 this release</h3><p>With Apache Maven update your dependency to (and don&#8217;t forget to update any other dependencies on Wicket projects to the same version):</p><div class='highlight'><pre><code class='xml'><span class='nt'>&lt;dependency&gt;</span>
-    <span class='nt'>&lt;groupId&gt;</span>org.apache.wicket<span class='nt'>&lt;/groupId&gt;</span>
-    <span class='nt'>&lt;artifactId&gt;</span>wicket-core<span class='nt'>&lt;/artifactId&gt;</span>
-    <span class='nt'>&lt;version&gt;</span>6.4.0<span class='nt'>&lt;/version&gt;</span>
-<span class='nt'>&lt;/dependency&gt;</span>
-</code></pre></div><p>Or download and build the distribution yourself, or use our convenience binary package</p><ul>
-<li>Source: <a href='http://www.apache.org/dyn/closer.cgi/wicket/6.4.0'>http://www.apache.org/dyn/closer.cgi/wicket/6.4.0</a></li>
-
-<li>Binary: <a href='http://www.apache.org/dyn/closer.cgi/wicket/6.4.0/binaries'>http://www.apache.org/dyn/closer.cgi/wicket/6.4.0/binaries</a></li>
-</ul><h3 id='upgrading_from_earlier_versions'>Upgrading from earlier versions</h3><p>If you upgrade from 6.0.0, 6.1.0, 6.2.0 or 6.3.0 this release is a drop in replacement. If you come from a version prior to 6.0.0, please read our Wicket 6 migration guide found at</p><pre><code>http://s.apache.org/wicket-6.0-migration</code></pre><p>Have fun!</p><p>— The Wicket team</p><h3 id='release_notes__wicket__version_640'>Release Notes - Wicket - Version 6.4.0</h3><h4 id='subtask'>Sub-task</h4><ul>
-<li><a href='WICKET-4880'>WICKET-4880</a> - Make it possible to override the Ajax behavior of AjaxSubmitLink and AjaxButton</li>
-</ul><h4 id='bug'>Bug</h4><ul>
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4869'>WICKET-4869</a> - Wicket-Atmosphere track message length</li>
-
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4872'>WICKET-4872</a> - IllegalArgumentException on ReloadingWicketFilter and inheritance markup</li>
-
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4877'>WICKET-4877</a> - encodeUrl fails parsing jsessionid when using root context</li>
-
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4878'>WICKET-4878</a> - Rendering of feedback messages fails with DebugBar in page</li>
+* [WICKET-4983](https://issues.apache.org/jira/browse/WICKET-4983) - extra recursion on Wicket.DOM.get</code></pre><h1>Older news items</h1><ul>
 
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4881'>WICKET-4881</a> - IE 8 : error when handling Wicket Ajax Response</li>
-
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4884'>WICKET-4884</a> - ValidationError messages for NumberTextFields with minimum/maximum are always English</li>
-
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4886'>WICKET-4886</a> - Do not register Ajax timer if the component is removed</li>
-
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4890'>WICKET-4890</a> - Bad validation messages after WICKET-2128</li>
-
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4891'>WICKET-4891</a> - UrlRenderer.renderRelativeUrl misbehavior if the filterPath is composed.</li>
-
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4894'>WICKET-4894</a> - Internet Explorer fails fails to properly include conditional stylesheet links added via AjaxRequestTarget</li>
-
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4895'>WICKET-4895</a> - WicketRuntimeException: addOrReplace for feedback panel does not clear Component.FEEDBACK_LIST - feedback from replaced component causes error.</li>
-
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4899'>WICKET-4899</a> - autocomplete shows strings with quotes strings as string2 with &#34;quote&#34;</li>
-
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4900'>WICKET-4900</a> - Setting a status code on an AbstractResource results in no HTTP body</li>
-
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4908'>WICKET-4908</a> - Wrong charset or screwed up characters in Norwegian properties-file</li>
-
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4911'>WICKET-4911</a> - Palette Ajax update does not work</li>
-
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4913'>WICKET-4913</a> - HtmlDocumentParser does not support tags containing number (e.g. h1-h6)</li>
-
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4915'>WICKET-4915</a> - org.apache.wicket.util.resource.Patht#find fails on Windows</li>
-
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4916'>WICKET-4916</a> - AbstractTree$TreeItem renderHead does not call renderHead for child TreeItems.</li>
-
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4917'>WICKET-4917</a> - Websockets are not working if URL has a hash in it</li>
-
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4918'>WICKET-4918</a> - LazyInitProxyFactory prevents using package private interfaces</li>
-
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4920'>WICKET-4920</a> - Rendered Url on root context with cookies disabled might result in double slash //</li>
-
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4922'>WICKET-4922</a> - Cloned ServletWebRequest returns wrong OriginalUrl</li>
-
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4923'>WICKET-4923</a> - CryptoMapper ignores original queryString parameters</li>
-</ul><h4 id='improvement'>Improvement</h4><ul>
-<li>
-<p><a href='https://issues.apache.org/jira/browse/WICKET-4873'>WICKET-4873</a> - Support different session id parameter</p>
-</li>
-
-<li>
-<p><a href='https://issues.apache.org/jira/browse/WICKET-4876'>WICKET-4876</a> - CheckBoxMultipleChoice should implement getAdditionalAttributes as RadioChoice</p>
-</li>
 
 <li>
-<p><a href='https://issues.apache.org/jira/browse/WICKET-4887'>WICKET-4887</a> - Use a Set to keep the supported wicket elements in WicketTagIdentifier</p>
-</li>
-
-<li>
-<p><a href='https://issues.apache.org/jira/browse/WICKET-4889'>WICKET-4889</a> - Label constructor should accept Serializable as label</p>
-</li>
-
-<li>
-<p><a href='https://issues.apache.org/jira/browse/WICKET-4892'>WICKET-4892</a> - Provide helpful exception message in RequestCycle#urlFor()</p>
-</li>
-
-<li>
-<p><a href='https://issues.apache.org/jira/browse/WICKET-4901'>WICKET-4901</a> - AjaxPagingNaviagtionLink should provide updateAjaxAttributes like AjaxLink</p>
-</li>
-
-<li>
-<p><a href='https://issues.apache.org/jira/browse/WICKET-4902'>WICKET-4902</a> - ConcatBundleResource should use the respective ITextResourceCompressor</p>
-</li>
-
-<li>
-<p><a href='https://issues.apache.org/jira/browse/WICKET-4924'>WICKET-4924</a> - Websocket broadcast support does not work with OSGi</p>
-
-<h4 id='new_feature'>New Feature</h4>
-</li>
-
-<li>
-<p><a href='https://issues.apache.org/jira/browse/WICKET-4832'>WICKET-4832</a> - Websocket broadcast support</p>
-</li>
-
-<li>
-<p><a href='https://issues.apache.org/jira/browse/WICKET-4879'>WICKET-4879</a> - Implementing channels in wicket-atmosphere</p>
-</li>
-
-<li>
-<p><a href='https://issues.apache.org/jira/browse/WICKET-4883'>WICKET-4883</a> - Out of the box bean-validation (JSR 303) integration</p>
-</li>
-
-<li>
-<p><a href='https://issues.apache.org/jira/browse/WICKET-4888'>WICKET-4888</a> - Introduce a hierarchical feedback panel (FencedFeedbackPanel)</p>
-</li>
-</ul><h4 id='task'>Task</h4><ul>
-<li><a href='https://issues.apache.org/jira/browse/WICKET-4885'>WICKET-4885</a> - Upgrade jQuery to its latest stable version (1.8.3)</li>
-</ul><h1>Older news items</h1><ul>
+        <a href='/2012/12/14/wicket-6.4.0-released.html'>Apache Wicket 6.4.0 released</a> - <span>14 Dec 2012</span><br />
+        The Apache Wicket PMC is proud to announce Apache Wicket 6.4.0! This release marks the fourth minor release of Wicket 6. Starting with Wicket 6...
+        <a href='/2012/12/14/wicket-6.4.0-released.html'>more</a></li>
 
 
 <li>
@@ -410,12 +373,6 @@
         This is the eighth maintenance release of the Wicket 1.5.x series. This release brings over 45 bug fixes and improvements. Git tag Changelog To use...
         <a href='/2012/08/24/wicket-1.5.8-released.html'>more</a></li>
 
-
-<li>
-        <a href='/2012/07/16/wicket-6.0.0-beta3-released.html'>Wicket 6.0.0-beta3 released</a> - <span>16 Jul 2012</span><br />
-        The Wicket team is proud to announce the third beta release of the Wicket 6.x series. This release is an intermediary release just before we...
-        <a href='/2012/07/16/wicket-6.0.0-beta3-released.html'>more</a></li>
-
 </ul>
 <h1 id='books_about_wicket'>Books about Wicket</h1>
 

Modified: wicket/common/site/trunk/_site/learn/books/awc.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/books/awc.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/books/awc.html (original)
+++ wicket/common/site/trunk/_site/learn/books/awc.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>

Modified: wicket/common/site/trunk/_site/learn/books/ewdww.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/books/ewdww.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/books/ewdww.html (original)
+++ wicket/common/site/trunk/_site/learn/books/ewdww.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>

Modified: wicket/common/site/trunk/_site/learn/books/index.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/books/index.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/books/index.html (original)
+++ wicket/common/site/trunk/_site/learn/books/index.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>

Modified: wicket/common/site/trunk/_site/learn/books/koda.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/books/koda.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/books/koda.html (original)
+++ wicket/common/site/trunk/_site/learn/books/koda.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>

Modified: wicket/common/site/trunk/_site/learn/books/kwij.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/books/kwij.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/books/kwij.html (original)
+++ wicket/common/site/trunk/_site/learn/books/kwij.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>

Modified: wicket/common/site/trunk/_site/learn/books/praxisbuchwicket.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/books/praxisbuchwicket.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/books/praxisbuchwicket.html (original)
+++ wicket/common/site/trunk/_site/learn/books/praxisbuchwicket.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>

Modified: wicket/common/site/trunk/_site/learn/books/prowicket.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/books/prowicket.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/books/prowicket.html (original)
+++ wicket/common/site/trunk/_site/learn/books/prowicket.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>

Modified: wicket/common/site/trunk/_site/learn/books/wia.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/books/wia.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/books/wia.html (original)
+++ wicket/common/site/trunk/_site/learn/books/wia.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>

Modified: wicket/common/site/trunk/_site/learn/books/wicket-jp.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/books/wicket-jp.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/books/wicket-jp.html (original)
+++ wicket/common/site/trunk/_site/learn/books/wicket-jp.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>

Modified: wicket/common/site/trunk/_site/learn/examples/ajaxcounter.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/examples/ajaxcounter.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/examples/ajaxcounter.html (original)
+++ wicket/common/site/trunk/_site/learn/examples/ajaxcounter.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>

Modified: wicket/common/site/trunk/_site/learn/examples/dropdownchoice.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/examples/dropdownchoice.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/examples/dropdownchoice.html (original)
+++ wicket/common/site/trunk/_site/learn/examples/dropdownchoice.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>

Modified: wicket/common/site/trunk/_site/learn/examples/guestbook.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/examples/guestbook.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/examples/guestbook.html (original)
+++ wicket/common/site/trunk/_site/learn/examples/guestbook.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>

Modified: wicket/common/site/trunk/_site/learn/examples/helloworld.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/examples/helloworld.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/examples/helloworld.html (original)
+++ wicket/common/site/trunk/_site/learn/examples/helloworld.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>

Modified: wicket/common/site/trunk/_site/learn/examples/index.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/examples/index.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/examples/index.html (original)
+++ wicket/common/site/trunk/_site/learn/examples/index.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>

Modified: wicket/common/site/trunk/_site/learn/examples/markupinheritance.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/examples/markupinheritance.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/examples/markupinheritance.html (original)
+++ wicket/common/site/trunk/_site/learn/examples/markupinheritance.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>

Modified: wicket/common/site/trunk/_site/learn/examples/navomatic.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/examples/navomatic.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/examples/navomatic.html (original)
+++ wicket/common/site/trunk/_site/learn/examples/navomatic.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>

Modified: wicket/common/site/trunk/_site/learn/examples/usingfragments.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/examples/usingfragments.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/examples/usingfragments.html (original)
+++ wicket/common/site/trunk/_site/learn/examples/usingfragments.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>

Modified: wicket/common/site/trunk/_site/learn/ides.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/ides.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/ides.html (original)
+++ wicket/common/site/trunk/_site/learn/ides.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>

Modified: wicket/common/site/trunk/_site/learn/index.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/index.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/index.html (original)
+++ wicket/common/site/trunk/_site/learn/index.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>

Modified: wicket/common/site/trunk/_site/learn/projects/authroles.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/projects/authroles.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/projects/authroles.html (original)
+++ wicket/common/site/trunk/_site/learn/projects/authroles.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>
@@ -256,7 +256,7 @@
 <div class='highlight'><pre><code class='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-auth-roles<span class='nt'>&lt;/artifactId&gt;</span>
-    <span class='nt'>&lt;version&gt;</span>6.5.0<span class='nt'>&lt;/version&gt;</span>
+    <span class='nt'>&lt;version&gt;</span>6.6.0<span class='nt'>&lt;/version&gt;</span>
 <span class='nt'>&lt;/dependency&gt;</span>
 </code></pre></div>
 <h3 id='required_dependencies'>Required dependencies</h3>

Modified: wicket/common/site/trunk/_site/learn/projects/datetime.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/projects/datetime.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/projects/datetime.html (original)
+++ wicket/common/site/trunk/_site/learn/projects/datetime.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>

Modified: wicket/common/site/trunk/_site/learn/projects/devutils.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/projects/devutils.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/projects/devutils.html (original)
+++ wicket/common/site/trunk/_site/learn/projects/devutils.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>

Modified: wicket/common/site/trunk/_site/learn/projects/extensions.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/projects/extensions.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/projects/extensions.html (original)
+++ wicket/common/site/trunk/_site/learn/projects/extensions.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>

Modified: wicket/common/site/trunk/_site/learn/projects/guice.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/projects/guice.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/projects/guice.html (original)
+++ wicket/common/site/trunk/_site/learn/projects/guice.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>

Modified: wicket/common/site/trunk/_site/learn/projects/index.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/projects/index.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/projects/index.html (original)
+++ wicket/common/site/trunk/_site/learn/projects/index.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>

Modified: wicket/common/site/trunk/_site/learn/projects/ioc.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/projects/ioc.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/projects/ioc.html (original)
+++ wicket/common/site/trunk/_site/learn/projects/ioc.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>

Modified: wicket/common/site/trunk/_site/learn/projects/jmx.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/projects/jmx.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/projects/jmx.html (original)
+++ wicket/common/site/trunk/_site/learn/projects/jmx.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>

Modified: wicket/common/site/trunk/_site/learn/projects/spring.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/projects/spring.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/projects/spring.html (original)
+++ wicket/common/site/trunk/_site/learn/projects/spring.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>

Modified: wicket/common/site/trunk/_site/learn/projects/velocity.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/learn/projects/velocity.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/learn/projects/velocity.html (original)
+++ wicket/common/site/trunk/_site/learn/projects/velocity.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>
@@ -236,7 +236,7 @@
 <div class='highlight'><pre><code class='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-velocity<span class='nt'>&lt;/artifactId&gt;</span>
-    <span class='nt'>&lt;version&gt;</span>6.5.0<span class='nt'>&lt;/version&gt;</span>
+    <span class='nt'>&lt;version&gt;</span>6.6.0<span class='nt'>&lt;/version&gt;</span>
 <span class='nt'>&lt;/dependency&gt;</span>
 </code></pre></div>
 <h3 id='required_dependencies'>Required dependencies</h3>

Modified: wicket/common/site/trunk/_site/meet/blogs.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/meet/blogs.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/meet/blogs.html (original)
+++ wicket/common/site/trunk/_site/meet/blogs.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>

Modified: wicket/common/site/trunk/_site/meet/buzz.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/meet/buzz.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/meet/buzz.html (original)
+++ wicket/common/site/trunk/_site/meet/buzz.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>

Modified: wicket/common/site/trunk/_site/meet/features.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/meet/features.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/meet/features.html (original)
+++ wicket/common/site/trunk/_site/meet/features.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>

Modified: wicket/common/site/trunk/_site/meet/index.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/meet/index.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/meet/index.html (original)
+++ wicket/common/site/trunk/_site/meet/index.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>

Modified: wicket/common/site/trunk/_site/meet/introduction.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/meet/introduction.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/meet/introduction.html (original)
+++ wicket/common/site/trunk/_site/meet/introduction.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>

Modified: wicket/common/site/trunk/_site/meet/vision.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/meet/vision.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/meet/vision.html (original)
+++ wicket/common/site/trunk/_site/meet/vision.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>

Modified: wicket/common/site/trunk/_site/start/download.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/start/download.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/start/download.html (original)
+++ wicket/common/site/trunk/_site/start/download.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>
@@ -168,16 +168,16 @@
 
 		<div id="contentbody">
 			<h1>Download Wicket releases</h1>
-			<p>Apache Wicket 6.5.0 is the current stable release. Most users get Apache Wicket using <a href='#maven'>Apache Maven&#8217;s dependency management</a>, which incidentally is the most convenient way of obtaining the latest and greatest Wicket.</p>
+			<p>Apache Wicket 6.6.0 is the current stable release. Most users get Apache Wicket using <a href='#maven'>Apache Maven&#8217;s dependency management</a>, which incidentally is the most convenient way of obtaining the latest and greatest Wicket.</p>
 
 <h2 id='download'>Download</h2>
 
-<p>New projects should use <a href='http://www.apache.org/dyn/closer.cgi/wicket/6.5.0'>Wicket 6.5.0</a> as their base.</p>
+<p>New projects should use <a href='http://www.apache.org/dyn/closer.cgi/wicket/6.6.0'>Wicket 6.6.0</a> as their base.</p>
 
 <ul>
-<li><strong>Latest stable release</strong>: <a href='http://www.apache.org/dyn/closer.cgi/wicket/6.5.0'>6.5.0</a></li>
+<li><strong>Latest stable release</strong>: <a href='http://www.apache.org/dyn/closer.cgi/wicket/6.6.0'>6.6.0</a></li>
 
-<li><strong>Latest 6.x release</strong>: <a href='http://archive.apache.org/dist/wicket/6.5.0'>6.5.0</a></li>
+<li><strong>Latest 6.x release</strong>: <a href='http://archive.apache.org/dist/wicket/6.6.0'>6.6.0</a></li>
 
 <li><strong>Latest 1.5.x release</strong>: <a href='http://archive.apache.org/dist/wicket/1.5.9'>1.5.9</a></li>
 
@@ -232,7 +232,7 @@
 <div class='highlight'><pre><code class='xml'><span class='nt'>&lt;dependency&gt;</span>
     <span class='nt'>&lt;groupId&gt;</span>org.apache.wicket<span class='nt'>&lt;/groupId&gt;</span>
     <span class='nt'>&lt;artifactId&gt;</span>wicket-core<span class='nt'>&lt;/artifactId&gt;</span>
-    <span class='nt'>&lt;version&gt;</span>6.5.0<span class='nt'>&lt;/version&gt;</span>
+    <span class='nt'>&lt;version&gt;</span>6.6.0<span class='nt'>&lt;/version&gt;</span>
 <span class='nt'>&lt;/dependency&gt;</span>
 </code></pre></div>
 <p>For the SLF4J log4j binding:</p>

Modified: wicket/common/site/trunk/_site/start/index.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/start/index.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/start/index.html (original)
+++ wicket/common/site/trunk/_site/start/index.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>

Modified: wicket/common/site/trunk/_site/start/installing.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/start/installing.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/start/installing.html (original)
+++ wicket/common/site/trunk/_site/start/installing.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>

Modified: wicket/common/site/trunk/_site/start/quickstart.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/start/quickstart.html?rev=1448092&r1=1448091&r2=1448092&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/start/quickstart.html (original)
+++ wicket/common/site/trunk/_site/start/quickstart.html Wed Feb 20 11:30:22 2013
@@ -89,7 +89,7 @@
 	</h5>
 	<ul>
 		<li>
-			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.5.0">Wicket 6.5</a>
+			<a href="http://www.apache.org/dyn/closer.cgi/wicket/6.6.0">Wicket 6.6</a>
 		</li>
 		<li>
 			<a href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.9">Wicket 1.5</a>
@@ -218,7 +218,7 @@
 		<select id='version' onchange='changeIt();'>
 
 		
-			<option value='6.6-SNAPSHOT'>6.6-SNAPSHOT</option>
+			<option value='6.7-SNAPSHOT'>6.7-SNAPSHOT</option>
 		
 
 		
@@ -238,7 +238,7 @@
 		
 
 		
-			<option selected='selected' value='6.5.0'>6.5.0</option>
+			<option selected='selected' value='6.6.0'>6.6.0</option>
 		
 
 		</select><span title='Wicket Version'>&nbsp;(?)</span>