http://git-wip-us.apache.org/repos/asf/wicket-site/blob/8cc72bad/_posts/2014/2014-04-23-wicket-6.15.0-released.md
----------------------------------------------------------------------
diff --git a/_posts/2014/2014-04-23-wicket-6.15.0-released.md 
b/_posts/2014/2014-04-23-wicket-6.15.0-released.md
new file mode 100644
index 0000000..b9f1197
--- /dev/null
+++ b/_posts/2014/2014-04-23-wicket-6.15.0-released.md
@@ -0,0 +1,105 @@
+---
+layout: post
+title: Apache Wicket 6.15.0 released
+---
+
+The Apache Wicket PMC is proud to announce Apache Wicket 6.15.0!
+
+This release marks the fifteenth 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.
+
+### New and noteworthy
+
+This release fixes 25 bugs and adds the following improvements:
+
+ * The second level page store has been disabled by default (see issue 
[WICKET-5554](https://issues.apache.org/jira/browse/WICKET-5554) for more 
details).
+ * Created new placeholder tag to indicate where header contributions should 
appear. See this [blog post 
entry](http://wicketinaction.com/2014/03/header-contributions-positioning/) or 
paragraph 15.8 of the official guide. 
+
+This release also celebrates the 10th birthday of Wicket!
+
+### Using this release
+
+With Apache Maven update your dependency to (and don't forget to
+update any other dependencies on Wicket projects to the same version):
+
+{% highlight xml %}
+<dependency>
+ <groupId>org.apache.wicket</groupId>
+ <artifactId>wicket-core</artifactId>
+ <version>6.15.0</version>
+</dependency>
+{% endhighlight %}
+
+Or download and build the distribution yourself, or use our
+convenience binary package
+
+* Source: 
[http://www.apache.org/dyn/closer.cgi/wicket/6.15.0](http://www.apache.org/dyn/closer.cgi/wicket/6.15.0)
+* Binary: 
[http://www.apache.org/dyn/closer.cgi/wicket/6.15.0/binaries](http://www.apache.org/dyn/closer.cgi/wicket/6.15.0/binaries)
+
+### Upgrading from earlier versions
+
+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
+
+* [Migration to Wicket 
6.0](https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+6.0)
+
+Have fun!
+
+— The Wicket team
+
+### Release Notes - Wicket - Version 6.15.0
+
+#### Sub-task
+    * [WICKET-5510] - Avoid using jQuery.text() when possible. It is very slow 
in IE
+    * [WICKET-5554] - Disable second level pages store because it is efficient 
only when manually configured
+
+#### Bug
+    * [WICKET-5243] - JS: High stack size in Function Executor causes "too 
much recursion"
+    * [WICKET-5284] - Too deep recursion in AbstractHierarchyIterator
+    * [WICKET-5504] - AjaxRequestTarget.append/prependJavaScript cannot handle 
scripts with new-lines anymore
+    * [WICKET-5505] - DefaultPropertyResolver does not respect JavaBean 
conventions
+    * [WICKET-5506] - DefaultPropertyResolver should resolve the Property 
according to the getter first
+    * [WICKET-5509] - Wicket examples' MailTemplate from Page is broken
+    * [WICKET-5517] - IE11 returns false for Wicket.Browser.isIE()
+    * [WICKET-5518] - FormComponent.updateCollectionModel  does not handle 
unmodifiableList
+    * [WICKET-5521] - Stateless forms does not work when 
RecreateMountedPagesAfterExpiry turned off
+    * [WICKET-5522] - Failing HTTPS redirect to RequireHttps annotated pages 
with ONE_PASS_RENDER strategy
+    * [WICKET-5523] - Ajax indicator not working when display is set to none 
in css
+    * [WICKET-5532] - NPE calling PackageResource.getResourceStream() if there 
is no RequestCycle defined
+    * [WICKET-5534] - DataTable component must throw an exception when 
attached to non-&lt;table&gt; element
+    * [WICKET-5536] - Error message without parmeters filled.
+    * [WICKET-5537] - Wicket.DOM.toggleClass is called with additional "#" 
inside AutoLabelResolver
+    * [WICKET-5541] - NullPointerException in 
SubscribeAnnotationEventSubscriptionInvoker on remove of component from page
+    * [WICKET-5545] - Cannot use redirect in ModalWindow's page#onInitialize()
+    * [WICKET-5546] - Adding behavior in component instantiation listener 
causes Page.onInitialize() being called even if constructor throws an exception
+    * [WICKET-5547] - Javadoc for ReuseIfModelsEqualStrategy should mention 
that models must implement hashCode() method
+    * [WICKET-5548] - Websocket initialization URL is not valid when filter is 
not mapped to root.
+    * [WICKET-5555] - AbstractAutoCompleteBehavior.WrappedHeaderItem should 
depend on wicket-ajax.js
+    * [WICKET-5556] - Error in wicket-autocomplete.js bad reference of $
+    * [WICKET-5557] - Don't cache the result of 
AuthenticatedWebApplication#getWebSessionClass()
+    * [WICKET-5558] - Autolinking does not always work in inheritted markup
+    * [WICKET-5561] - Derived page without own markup leads to 
MarkupNotFoundException when BasePage has &lt;wicket:head&gt; in its markup
+
+#### Improvement
+    * [WICKET-5508] - Memory model improvements for Session fields
+    * [WICKET-5512] - Allow using child selector for JS event bindings
+    * [WICKET-5520] - improve reusability of DataTable and AbstractPageableView
+    * [WICKET-5528] - Allow models of subtypes of Select type parameter in 
SelectOption constructor
+    * [WICKET-5529] - Add WebSocketBehavior/Resource#onPush() callback method
+    * [WICKET-5531] - Create new placeholder tag to indicate where header 
contributions should appear
+    * [WICKET-5538] - When using Component.setDefaultModel, only detach the 
previous model if the new one is different
+    * [WICKET-5549] - continueToOriginalDestination() fails after 
redirectToInterceptPage() on AjaxRequest* [WICKET-5288] - Allow 
&amp;lt;script&amp;gt;-Tags act as WebMarkUpContainer to add Child-Components
+
+#### New Feature
+    * [WICKET-831] - Return response status 404 when a mapper cannot decode a 
request url
+    * [WICKET-2542] - Provide ajax buttons for wizard
+
+#### Task
+    * [WICKET-5514] - Update Wicket fragment example
+
+#### Wish
+    * [WICKET-5516] - RadioChoice / add a getAdditionalAttributes() also for 
<label>-tag
+    * [WICKET-5542] - Remove final from TextArea.onComponentTagBody()
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/8cc72bad/_posts/2014/2014-04-30-wicket-7.0.0-M1-released.md
----------------------------------------------------------------------
diff --git a/_posts/2014/2014-04-30-wicket-7.0.0-M1-released.md 
b/_posts/2014/2014-04-30-wicket-7.0.0-M1-released.md
new file mode 100644
index 0000000..b23d375
--- /dev/null
+++ b/_posts/2014/2014-04-30-wicket-7.0.0-M1-released.md
@@ -0,0 +1,62 @@
+---
+layout: post
+title: Apache Wicket 7.0.0-M1 released
+---
+
+We have released the first of a series of milestone releases for Apache
+Wicket 7. We aim to finalise Wicket 7 over the coming months and
+request your help in testing the new major version.
+
+### Caveats
+
+It is still a development version so expect API breaks to happen over
+the course of the coming milestone releases.
+
+### Semantic versioning
+
+As we adopted semver Wicket 7 will be the first release since 6.0 where
+we are able to refactor the API. We will continue to use semver when we
+have made Wicket 7 final and maintain api compatibility between minor
+versions of Wicket 7.
+
+### Requirements
+
+Wicket 7 requires the following:
+
+ - Java 7
+ - Servlet 3 compatible container
+
+You can't mix wicket libraries from prior Wicket versions with Wicket 7.
+
+### Migration guide
+
+As usual we have a migration guide available online for people
+migrating their applications to Wicket 7. We will continue to update
+the guide as development progresses. If you find something that is not
+in the guide, please update the guide, or let us know so we can update
+the guide.
+
+* [Migration to Wicket 7.0](http://s.apache.org/wicket7migrate)
+
+### Using this release
+
+This is pre-release software: use at your own peril!
+
+With Apache Maven update your dependency to (and don't forget to
+update any other dependencies on Wicket projects to the same version):
+
+{% highlight xml %}
+<dependency>
+    <groupId>org.apache.wicket</groupId>
+    <artifactId>wicket-core</artifactId>
+    <version>7.0.0-M1</version>
+</dependency>
+{% endhighlight %}
+
+Or download and build the distribution yourself, or use our
+convenience binary package
+
+ * Source: 
[http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M1](http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M1)
+ * Binary: 
[http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M1/binaries](http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M1/binaries)
+
+Have fun and let us know what you think!

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/8cc72bad/_posts/2014/2014-06-20-wicket-7.0.0-M2-released.md
----------------------------------------------------------------------
diff --git a/_posts/2014/2014-06-20-wicket-7.0.0-M2-released.md 
b/_posts/2014/2014-06-20-wicket-7.0.0-M2-released.md
new file mode 100644
index 0000000..5d7e393
--- /dev/null
+++ b/_posts/2014/2014-06-20-wicket-7.0.0-M2-released.md
@@ -0,0 +1,62 @@
+---
+layout: post
+title: Apache Wicket 7.0.0-M2 released
+---
+
+We have released the first of a series of milestone releases for Apache
+Wicket 7. We aim to finalise Wicket 7 over the coming months and
+request your help in testing the new major version.
+
+### Caveats
+
+It is still a development version so expect API breaks to happen over
+the course of the coming milestone releases.
+
+### Semantic versioning
+
+As we adopted semver Wicket 7 will be the first release since 6.0 where
+we are able to refactor the API. We will continue to use semver when we
+have made Wicket 7 final and maintain api compatibility between minor
+versions of Wicket 7.
+
+### Requirements
+
+Wicket 7 requires the following:
+
+ - Java 7
+ - Servlet 3 compatible container
+
+You can't mix wicket libraries from prior Wicket versions with Wicket 7.
+
+### Migration guide
+
+As usual we have a migration guide available online for people
+migrating their applications to Wicket 7. We will continue to update
+the guide as development progresses. If you find something that is not
+in the guide, please update the guide, or let us know so we can update
+the guide.
+
+* [Migration to Wicket 7.0](http://s.apache.org/wicket7migrate)
+
+### Using this release
+
+This is pre-release software: use at your own peril!
+
+With Apache Maven update your dependency to (and don't forget to
+update any other dependencies on Wicket projects to the same version):
+
+{% highlight xml %}
+<dependency>
+    <groupId>org.apache.wicket</groupId>
+    <artifactId>wicket-core</artifactId>
+    <version>7.0.0-M2</version>
+</dependency>
+{% endhighlight %}
+
+Or download and build the distribution yourself, or use our
+convenience binary package
+
+ * Source: 
[http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M2](http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M2)
+ * Binary: 
[http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M2/binaries](http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M2/binaries)
+
+Have fun and let us know what you think!

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/8cc72bad/_posts/2014/2014-06-21-wicket-6.16.0-released.md
----------------------------------------------------------------------
diff --git a/_posts/2014/2014-06-21-wicket-6.16.0-released.md 
b/_posts/2014/2014-06-21-wicket-6.16.0-released.md
new file mode 100644
index 0000000..9388c6d
--- /dev/null
+++ b/_posts/2014/2014-06-21-wicket-6.16.0-released.md
@@ -0,0 +1,89 @@
+---
+layout: post
+title: Apache Wicket 6.16.0 released
+---
+
+The Apache Wicket PMC is proud to announce Apache Wicket 6.16.0!
+
+This release marks the sixteenth 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.
+
+### New and noteworthy
+
+This release fixes 15 bugs and adds the following improvements:
+
+ * Upgrade JQuery to latest releases - 1.11.1 & 2.1.1
+ * Upgrade Atmosphere to latest version
+ * Generation of wicket ids with prefix / suffix
+ * Introduce CharSequenceResource similar to ByteArrayResource
+
+The full list of improvements and fixes can be found at the end of this
+announcement.
+
+### Using this release
+
+With Apache Maven update your dependency to (and don't forget to
+update any other dependencies on Wicket projects to the same version):
+
+{% highlight xml %}
+<dependency>
+ <groupId>org.apache.wicket</groupId>
+ <artifactId>wicket-core</artifactId>
+ <version>6.16.0</version>
+</dependency>
+{% endhighlight %}
+
+Or download and build the distribution yourself, or use our
+convenience binary package
+
+* Source: 
[http://www.apache.org/dyn/closer.cgi/wicket/6.16.0](http://www.apache.org/dyn/closer.cgi/wicket/6.16.0)
+* Binary: 
[http://www.apache.org/dyn/closer.cgi/wicket/6.16.0/binaries](http://www.apache.org/dyn/closer.cgi/wicket/6.16.0/binaries)
+
+### Upgrading from earlier versions
+
+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
+
+* [Migration to Wicket 
6.0](https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+6.0)
+
+Have fun!
+
+— The Wicket team
+
+### Release Notes - Wicket - Version 6.16.0
+
+#### Bug
+    * [WICKET-4545] - MarkupNotFoundException for Fragment and 
TransparentWebMarkupContainer
+    * [WICKET-5553] - When using an Ajax request to display initially hidden 
components inside inline enclosures, only the first one appears.
+    * [WICKET-5560] - A 404 error occurs when using a CryptoMapper
+    * [WICKET-5569] - Unable to find markup for children of deeply nested 
IComponentResolvers during Ajax response
+    * [WICKET-5570] - Rescheduling the same ajax timer behavior causes memory 
leak in the browser
+    * [WICKET-5573] - FilterToolbar generics broken
+    * [WICKET-5581] - CachingRes​ourceStrea​mLocator is not 
extension-​aware
+    * [WICKET-5582] - ServletWebResponse#encodeUrl() makes absolute Urls 
relative
+    * [WICKET-5589] - Upgrade wicket-atmosphere to the latest version of 
atmosphere
+    * [WICKET-5591] - Missing translation for HoursValidator.range (in 
DateTimeField)
+    * [WICKET-5592] - Add a method to clear the cache of 
CachingResourceStreamLocator
+    * [WICKET-5593] - AjaxFormValidatingBehavior attempts to update 
non-visible feedback panels
+    * [WICKET-5595] - Atmosphere: updates infinitly with long polling transport
+    * [WICKET-5596] - DropDownChoice#wantsOnSelectionChangedNotifications(T) 
not being called on unmounted page
+    * [WICKET-5601] - AbstractSingleSelectChoice fails with 
NullPointerException when its choice renderer returns null from #getIdValue() 
+
+#### Improvement
+    * [WICKET-5563] - RestartResponseAtInterceptPageException - add public 
function to retrieve originalUrl
+    * [WICKET-5574] - ComponentRenderer should use 
Application#createRequestCycle
+    * [WICKET-5575] - Add support in FormTester#submit(String|Component) for 
Ajax submitters
+    * [WICKET-5577] - Generation of wicket ids with prefix / suffix
+    * [WICKET-5580] - Allow markup to find child fragments when wicket:child 
is inside a component tag
+    * [WICKET-5585] - Wicket Extension Automplete does not work well with 
JavaScriptFilteredIntoFooterHeaderResponse
+    * [WICKET-5586] - NextButton isEnabled() should bo logical conjunction of 
getWizardModel().isNextAvailable() and super.isEnabled()
+    * [WICKET-5600] - Introduce CharSequenceResource similar to 
ByteArrayResource
+    * [WICKET-5606] - SelectOptions with #setRecreateChoices(true) loses 
selection on form errors
+
+#### Task
+    * [WICKET-5587] - Upgrade JQuery to latest releases - 1.11.1 & 2.1.1
+
+

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/8cc72bad/_posts/2014/2014-08-23-wicket-7.0.0-M3-released.md
----------------------------------------------------------------------
diff --git a/_posts/2014/2014-08-23-wicket-7.0.0-M3-released.md 
b/_posts/2014/2014-08-23-wicket-7.0.0-M3-released.md
new file mode 100644
index 0000000..2019e2a
--- /dev/null
+++ b/_posts/2014/2014-08-23-wicket-7.0.0-M3-released.md
@@ -0,0 +1,62 @@
+---
+layout: post
+title: Apache Wicket 7.0.0-M3 released
+---
+
+We have released the third of a series of milestone releases for Apache
+Wicket 7. We aim to finalise Wicket 7 over the coming months and
+request your help in testing the new major version.
+
+### Caveats
+
+It is still a development version so expect minor API breaks to happen over
+the course of the coming milestone releases.
+
+### Semantic versioning
+
+As we adopted semver Wicket 7 will be the first release since 6.0 where
+we are able to refactor the API. We will continue to use semver when we
+have made Wicket 7 final and maintain api compatibility between minor
+versions of Wicket 7.
+
+### Requirements
+
+Wicket 7 requires the following:
+
+ - Java 7
+ - Servlet 3 compatible container
+
+You can't mix wicket libraries from prior Wicket versions with Wicket 7.
+
+### Migration guide
+
+As usual we have a migration guide available online for people
+migrating their applications to Wicket 7. We will continue to update
+the guide as development progresses. If you find something that is not
+in the guide, please update the guide, or let us know so we can update
+the guide.
+
+* [Migration to Wicket 7.0](http://s.apache.org/wicket7migrate)
+
+### Using this release
+
+This is pre-release software: use at your own peril!
+
+With Apache Maven update your dependency to (and don't forget to
+update any other dependencies on Wicket projects to the same version):
+
+{% highlight xml %}
+<dependency>
+    <groupId>org.apache.wicket</groupId>
+    <artifactId>wicket-core</artifactId>
+    <version>7.0.0-M3</version>
+</dependency>
+{% endhighlight %}
+
+Or download and build the distribution yourself, or use our
+convenience binary package
+
+ * Source: 
[http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M3](http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M3)
+ * Binary: 
[http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M3/binaries](http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M3/binaries)
+
+Have fun and let us know what you think!

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/8cc72bad/_posts/2014/2014-08-24-wicket-6.17.0-released.md
----------------------------------------------------------------------
diff --git a/_posts/2014/2014-08-24-wicket-6.17.0-released.md 
b/_posts/2014/2014-08-24-wicket-6.17.0-released.md
new file mode 100644
index 0000000..8c3a4b2
--- /dev/null
+++ b/_posts/2014/2014-08-24-wicket-6.17.0-released.md
@@ -0,0 +1,126 @@
+---
+layout: post
+title: Apache Wicket 6.17.0 released
+---
+
+The Apache Wicket PMC is proud to announce Apache Wicket 6.17.0!
+
+This release marks the seventeenth 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.
+
+### New and noteworthy
+
+This release fixes 25 bugs and has 27 improvements some of which are:
+
+ * Rename log4j.properties in the quickstart when creating a project for 
WildFly
+ * Make is possible to position the choice label before/after/around the choice
+ * StringResourceModel with custom locale 
+ * Added an HeaderItem for meta data tags such as 'meta' or canonical link
+
+The full list of improvements and fixes can be found at the end of this
+announcement.
+
+### Using this release
+
+With Apache Maven update your dependency to (and don't forget to
+update any other dependencies on Wicket projects to the same version):
+
+{% highlight xml %}
+<dependency>
+ <groupId>org.apache.wicket</groupId>
+ <artifactId>wicket-core</artifactId>
+ <version>6.17.0</version>
+</dependency>
+{% endhighlight %}
+
+Or download and build the distribution yourself, or use our
+convenience binary package
+
+* Source: 
[http://www.apache.org/dyn/closer.cgi/wicket/6.17.0](http://www.apache.org/dyn/closer.cgi/wicket/6.17.0)
+* Binary: 
[http://www.apache.org/dyn/closer.cgi/wicket/6.17.0/binaries](http://www.apache.org/dyn/closer.cgi/wicket/6.17.0/binaries)
+
+### Upgrading from earlier versions
+
+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
+
+* [Migration to Wicket 
6.0](https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+6.0)
+
+Have fun!
+
+— The Wicket team
+
+### Release Notes - Wicket - Version 6.17.0
+
+#### Sub-task
+    * [WICKET-5633] - Make JavaScriptFilteredIntoFooterHeaderResponse 
non-final to be able to create custom filters
+
+
+#### Bug
+    * [WICKET-5371] - IllegalArgumentException: Argument 'page' may not be 
null. - when sending event from asynchronous process
+    * [WICKET-5539] - Allow preserving of the parsed PageParameters when 
re-creating an expired page
+    * [WICKET-5564] - AjaxRequestTarget.focusComponent() does not work when 
two Ajax responses arrive next to each other
+    * [WICKET-5603] - OnChangeAjaxBehavior attached to DropDownChoice produces 
two Ajax requests in Chrome v35
+    * [WICKET-5607] - Wicket Ajax fires calls scheduled by 
AbstractAjaxTimerBehavior even after unload of the page
+    * [WICKET-5609] - AutoCompleteTextField can only complete text that is 
visible on screen browser screen 
+    * [WICKET-5615] - UploadProgressBar does not show up if no FileUploadField 
is given
+    * [WICKET-5616] - CLONE - ModalWindow is not visible in Safari when opened 
from a link at the bottom of a large page
+    * [WICKET-5619] - ConcurrentModificationException may occur when calling 
EventBus.post()
+    * [WICKET-5624] - Do not throw when WebSocket is not supported
+    * [WICKET-5626] - ConcatBundleResource#reportError() doesn't print the 
resource attributes
+    * [WICKET-5630] - Fix last button translation germany of wizard to 
'Letzter'
+    * [WICKET-5631] - Allow submitting with POST method for PhantomJS
+    * [WICKET-5636] - Update StatelessForm's and AbstractRepeater's javadoc 
that FormComponents should be repeated only with RepeatingView
+    * [WICKET-5637] - Fix the encoding of the Chinese translations for Wizard 
component
+    * [WICKET-5639] - ResourceResponse does not write headers when status code 
is set
+    * [WICKET-5643] - WebPageRenderer should bind a Session if redirect is 
required and the session is temporary.
+    * [WICKET-5647] - missing generic cast causes compile error on OS X / jdk 8
+    * [WICKET-5655] - Problem with setting of IComponentInheritedModel and 
FLAG_INHERITABLE_MODEL
+    * [WICKET-5656] - PropertyResolver does not scan for NotNull in annotation 
tree
+    * [WICKET-5657] - wicket-autocomplete may fail after preceeding Ajax 
request
+    * [WICKET-5662] - @SpringBean(name="something", required=false) still 
throws org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean 
named 'something' is defined
+    * [WICKET-5670] - org.apache.wicket.protocol.ws.api.registry.IKey should 
be Serializable (IClusterable)
+    * [WICKET-5679] - RenderStrategy REDIRECT_TO_RENDER lets fail test with 
BaseWicketTester#startComponentInPage
+    * [WICKET-5680] - AjaxEditableLabel keeps raw input after cancel following 
a validation failure 
+
+
+#### Improvement
+    * [WICKET-4344] - Implement onValidateModelObjects() and 
beforeUpdateFormComponentModels() for nested forms
+    * [WICKET-4660] - Make it possible to notify about Atmosphere internal 
events
+    * [WICKET-5452] - Make Wicket-Atmosphere testable - AtmosphereTester
+    * [WICKET-5602] - DynamicImageResource should set the mime type after 
reading the image data
+    * [WICKET-5605] - Store browser capabilities in local variables in 
wicket-event-jquery.js
+    * [WICKET-5611] - Add AjaxChannel.DEFAULT constant = "0" and type "Queue"
+    * [WICKET-5627] - broadcastMessage(): hook to set more thread-local 
context before rendering components
+    * [WICKET-5628] - Introduce a marker interface for exception which are 
recommended to be handler by the framework
+    * [WICKET-5629] - Add an HeaderItem for meta data tags such as <meta> or 
canonical <link>
+    * [WICKET-5634] - Add IObjectCheckers that fails the serialization when 
the Session or another Page are serialized
+    * [WICKET-5635] - Provide a way to modify 
ResourceReferenceRegistry.DefaultResourceReferenceFactory externally to be used 
by wicket-bootstrap-less
+    * [WICKET-5642] - CheckingOutputObjectStream should filter duplicates by 
identity, not by equality
+    * [WICKET-5645] - Markup String of IMarkupResourceStreamProvider throws 
NPE for inherited markup
+    * [WICKET-5646] - Allow subclasses of ComponentStringResourceLoader to 
stop at specific components
+    * [WICKET-5648] - CookieUtils - multivalue related methods are broken due 
to the usage of ";" as a separator for the values
+    * [WICKET-5650] - Make is possible to position the choice label 
before/after/around the choice
+    * [WICKET-5651] - Add TagTester#getChild(String tagName) method
+    * [WICKET-5652] - Improve Javadoc of Ajax behaviors concerning their 
onXyz() methods
+    * [WICKET-5653] - Add a setter for IViolationTranslator to 
BeanValidationConfiguration
+    * [WICKET-5654] - DefaultViolationTranslator should maybe use getMessage()
+    * [WICKET-5658] - AjaxFormComponentUpdatingBehavior should not clear the 
rawInput when updateModel is false
+    * [WICKET-5659] - Add a setting to MultiFileUploadField to not close the 
file uploads' streams
+    * [WICKET-5660] - Throw more specific exception when a component cannot be 
found by ListenerInterfaceRequestHandler
+    * [WICKET-5667] - Preserve the NotSerializableException if an error occur 
while using the IObjectCheckers
+    * [WICKET-5668] - StringResourceModel with custom locale 
+    * [WICKET-5671] - Rename log4j.properties in the quickstart when creating 
a project for WildFly
+    * [WICKET-5673] - Improve BookmarkableMapper and 
BasicResourceReferenceMapper to not match when the last segment is empty
+    * [WICKET-5674] - Use jquery.atmosphere.js as a Webjar
+
+
+#### Task
+    * [WICKET-5604] - Add a page to the site that lists other Apache projects 
that use Wicket
+    * [WICKET-5632] - Use frontend-maven-plugin to run the JavaScript tests
+    * [WICKET-5665] - WicketTester#assertComponentOnAjaxResponse() cannot test 
invisible components
+
+

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/8cc72bad/_posts/2014/2014-09-15-wicket-1.5.12-released.md
----------------------------------------------------------------------
diff --git a/_posts/2014/2014-09-15-wicket-1.5.12-released.md 
b/_posts/2014/2014-09-15-wicket-1.5.12-released.md
new file mode 100644
index 0000000..16f696b
--- /dev/null
+++ b/_posts/2014/2014-09-15-wicket-1.5.12-released.md
@@ -0,0 +1,18 @@
+---
+layout: post
+title: Wicket 1.5.12 released
+---
+
+This is the twelfth maintenance release of the Wicket 1.5.x series. This 
release brings over 5 bug fixes and improvements.
+
+* [Git 
tag](https://git-wip-us.apache.org/repos/asf/wicket/repo?p=wicket.git;a=shortlog;h=refs/tags/wicket-1.5.12)
+* 
[Changelog](https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&version=12326154)
+* To use in Maven:
+{% highlight xml %}
+<dependency>
+    <groupId>org.apache.wicket</groupId>
+    <artifactId>wicket-core</artifactId>
+    <version>1.5.12</version>
+</dependency>
+{% endhighlight %}
+* Download the [full 
distribution](http://www.apache.org/dyn/closer.cgi/wicket/1.5.12) (including 
sources)

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/8cc72bad/_posts/2014/2014-09-22-cve-2014-3526.md
----------------------------------------------------------------------
diff --git a/_posts/2014/2014-09-22-cve-2014-3526.md 
b/_posts/2014/2014-09-22-cve-2014-3526.md
new file mode 100644
index 0000000..04ef47f
--- /dev/null
+++ b/_posts/2014/2014-09-22-cve-2014-3526.md
@@ -0,0 +1,29 @@
+---
+layout: post
+title: CVE-2014-3526 - Apache Wicket Information disclosure vulnerability
+---
+
+Severity: Important
+
+Vendor:
+The Apache Software Foundation
+
+Versions Affected:
+Apache Wicket 1.5.11, 6.16.0 and 7.0.0-M2
+
+Description:
+
+
+When rendering a web page Wicket checks the request url against the one at the 
render time. It is possible the application to change the page parameters (this 
includes both the query parameters and parameters encoded into the request 
path). When the requested url differs with the one at the rendering time Wicket 
stores the response (i.e. the page markup) at the server side and issues an 
HTTP redirect to the new url. When the second request comes Wicket just flushes 
the stored response from the first request into the http output stream. This 
way the browser address bar shows the updated page parameters.
+When storing the page markup at the server side Wicket uses as an identifier a 
pair of the current session id plus the new url. However, Wicket does not check 
if user session is temporary (i.e. sessionId is null).
+This could lead to a security issue if two or more users with a temporary 
session are redirected to the same url at the same time. Then user1 might see 
the markup for user2 which has overridden the markup for user1 while user1 was 
following the HTTP redirect. In this way user-sensitive informations can be 
seen by other users.
+
+The application developers are recommended to upgrade to: 
+- [Apache Wicket 1.5.12](/2014/09/15/wicket-1.5.12-released.html)
+- [Apache Wicket 6.17.0](/2014/08/24/wicket-6.17.0-released.html)
+- [Apache Wicket 7.0.0-M3](/2014/08/23/wicket-7.0.0-M3-released.html)
+
+Credit:
+This issue was reported by Andrea Del Bene and Martin Grigorov!
+
+Apache Wicket Team
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/8cc72bad/_posts/2014/2014-11-05-wicket-6.18.0-released.md
----------------------------------------------------------------------
diff --git a/_posts/2014/2014-11-05-wicket-6.18.0-released.md 
b/_posts/2014/2014-11-05-wicket-6.18.0-released.md
new file mode 100644
index 0000000..25e0378
--- /dev/null
+++ b/_posts/2014/2014-11-05-wicket-6.18.0-released.md
@@ -0,0 +1,117 @@
+---
+layout: post
+title: Apache Wicket 6.18.0 released
+---
+The Apache Wicket PMC is proud to announce Apache Wicket 6.18.0!
+
+This release marks another 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.
+
+### Using this release
+
+With Apache Maven update your dependency to (and don't forget to
+update any other dependencies on Wicket projects to the same version):
+
+{% highlight xml %}
+<dependency>
+    <groupId>org.apache.wicket</groupId>
+    <artifactId>wicket-core</artifactId>
+    <version>6.18.0</version>
+</dependency>
+{% endhighlight xml %}
+
+Or download and build the distribution yourself, or use our
+convenience binary package
+
+ * Source: 
[http://www.apache.org/dyn/closer.cgi/wicket/6.18.0](http://www.apache.org/dyn/closer.cgi/wicket/6.18.0)
+ * Binary: 
[http://www.apache.org/dyn/closer.cgi/wicket/6.18.0/binaries](http://www.apache.org/dyn/closer.cgi/wicket/6.18.0/binaries)
+
+### Upgrading from earlier versions
+
+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
+
+ * [migration to Wicket 6]( 
https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+6.0)
+
+Have fun!
+
+— The Wicket team
+
+### This release
+
+Below you can find the cryptographic signatures for the distributions
+and the release notes.
+
+#### The signatures for the source release artefacts:
+
+Signature for apache-wicket-6.18.0.zip:
+
+<div class="highlight"><pre>
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.22 (Darwin)
+Comment: GPGTools - https://gpgtools.org
+
+iEYEABECAAYFAlRTb2UACgkQJBX8W/xy/UW1egCg1LOkWMrnD+FJoHKjp7Gulyvm
+s+UAoMNN/mgMKo+p33h3vt4fnLTemLGT
+=RpfO
+-----END PGP SIGNATURE-----
+</pre></div>
+
+Signature for apache-wicket-6.18.0.tar.gz:
+
+<div class="highlight"><pre>
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.22 (Darwin)
+Comment: GPGTools - https://gpgtools.org
+
+iEYEABECAAYFAlRTb2UACgkQJBX8W/xy/UVZcACguyKdrM0byfMp5IWqzwFMx5Lo
+i6UAn25gHcC0w8QWiNJXV7u99iTHssaP
+=+QQW
+-----END PGP SIGNATURE-----
+</pre></div>
+
+#### CHANGELOG for 6.18.0:
+
+The following changes were made in Wicket for this release.
+
+#### Bug
+
+* [WICKET-5265](https://issues.apache.org/jira/browse/WICKET-5265) - 
FencedFeedbackPanel is broken with RefreshingView(and it's implementations)
+* [WICKET-5326](https://issues.apache.org/jira/browse/WICKET-5326) - Wicket 
doesn't encrypt links and Ajax URLs for mounted pages when CryptoMapper is used
+* [WICKET-5689](https://issues.apache.org/jira/browse/WICKET-5689) - Nested 
Redirects and REDIRECT_TO_BUFFER
+* [WICKET-5698](https://issues.apache.org/jira/browse/WICKET-5698) - 
WebApplication#unmount() unmounts the whole compound mapper if some of its 
inner ones matches
+* [WICKET-5699](https://issues.apache.org/jira/browse/WICKET-5699) - 
wicket-atmosphere 0.20 should use wicket-webjars 0.4.3
+* [WICKET-5701](https://issues.apache.org/jira/browse/WICKET-5701) - 
WebSocketRequestHandler is not set as a scheduled and thus 
RequestCycle#find(AjaxRequestTarget.class) doesn't work 
+* [WICKET-5704](https://issues.apache.org/jira/browse/WICKET-5704) - 
IllegalArgument exception with wicket:child in ajaxrequest
+* [WICKET-5706](https://issues.apache.org/jira/browse/WICKET-5706) - 
ResourceUtils.getLocaleFromFilename cannot handle filenames with classifiers
+* [WICKET-5711](https://issues.apache.org/jira/browse/WICKET-5711) - 
OnChangeAjaxBehavior should listen for both 'inputchange' and 'change' events 
for TextField and TextArea
+* [WICKET-5712](https://issues.apache.org/jira/browse/WICKET-5712) - 
SecuritySettings.setEnforceMounts() does not work when the mounted mapper is 
not in the root compound mapper
+* [WICKET-5714](https://issues.apache.org/jira/browse/WICKET-5714) - 
MockHttpServletRequest.buildRequest() should work for parameters with multiple 
values with multipart content type
+* [WICKET-5716](https://issues.apache.org/jira/browse/WICKET-5716) - 
wicket-autocomplete prevents "change"-listener when leaving input via mouse 
click
+* [WICKET-5717](https://issues.apache.org/jira/browse/WICKET-5717) - 
Url.parse/toString should support fragment
+* [WICKET-5719](https://issues.apache.org/jira/browse/WICKET-5719) - 
Wicket-atmosphere should warn about phone home
+* [WICKET-5720](https://issues.apache.org/jira/browse/WICKET-5720) - Method 
Strings.join doesn't work correctly if separator is empty.
+* [WICKET-5723](https://issues.apache.org/jira/browse/WICKET-5723) - 
CheckGroupSelector with disabled checks
+* [WICKET-5731](https://issues.apache.org/jira/browse/WICKET-5731) - Using 
"Submit" button in Ajax DropDownChoice example leads to broken HTML page
+* [WICKET-5736](https://issues.apache.org/jira/browse/WICKET-5736) - 
Atmosphere Eventbus throws Concurrent Modification Exception
+
+#### Improvement
+
+* [WICKET-5691](https://issues.apache.org/jira/browse/WICKET-5691) - Wicket 
FileUploadField.getFileUploads() should never return null.
+* [WICKET-5692](https://issues.apache.org/jira/browse/WICKET-5692) - 
Misleading message in PropertyValidator
+* [WICKET-5694](https://issues.apache.org/jira/browse/WICKET-5694) - Add 
WicketTester assertion methods for component's markup style, variation and 
locale 
+* [WICKET-5710](https://issues.apache.org/jira/browse/WICKET-5710) - 
StringValidator should set 'minlength' attribute to input and textarea
+* [WICKET-5715](https://issues.apache.org/jira/browse/WICKET-5715) - Allow 
setting 'async' attribute on reference <script> elements
+* [WICKET-5718](https://issues.apache.org/jira/browse/WICKET-5718) - Upgrade 
Atmosphere to 2.2.2
+* [WICKET-5725](https://issues.apache.org/jira/browse/WICKET-5725) - Add 
NumberTextField(String,Class<T>) constructor
+* [WICKET-5729](https://issues.apache.org/jira/browse/WICKET-5729) - Avoid 
using input names that conflict with JavaScript DOM API method and attribute 
names
+* [WICKET-5735](https://issues.apache.org/jira/browse/WICKET-5735) - Propagate 
fileSizeMax attribute to org.apache.commons.fileupload.FileUploadBase
+* [WICKET-5740](https://issues.apache.org/jira/browse/WICKET-5740) - Provide a 
way to adapt the lock timeout based on the page class/id
+
+#### New Feature
+
+* [WICKET-5677](https://issues.apache.org/jira/browse/WICKET-5677) - 
Components should have onAdd to complement onRemove
+

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/8cc72bad/_posts/2014/2014-11-05-wicket-7.0.0-M4-released.md
----------------------------------------------------------------------
diff --git a/_posts/2014/2014-11-05-wicket-7.0.0-M4-released.md 
b/_posts/2014/2014-11-05-wicket-7.0.0-M4-released.md
new file mode 100644
index 0000000..e4e525b
--- /dev/null
+++ b/_posts/2014/2014-11-05-wicket-7.0.0-M4-released.md
@@ -0,0 +1,160 @@
+---
+layout: post
+title: Apache Wicket 7.0.0-M4 released
+---
+The Apache Wicket PMC is proud to announce Apache Wicket 7.0.0-M4!
+
+We have released another milestone release for Apache Wicket 7. We aim
+to finalise Wicket 7 over the coming months and request your help in
+testing the new major version.
+
+### Caveats
+
+It is still a development version so expect API breaks to happen over
+the course of the coming milestone releases.
+
+### Semantic versioning
+
+As we adopted semver Wicket 7 will be the first release since 6.0 where
+we are able to refactor the API. We will continue to use semver when we
+have made Wicket 7 final and maintain api compatibility between minor
+versions of Wicket 7.
+
+### Requirements
+
+Wicket 7 requires the following:
+
+ - Java 7
+ - Servlet 3 compatible container
+
+You can't mix wicket libraries from prior Wicket versions with Wicket 7.
+
+### Migration guide
+
+As usual we have a migration guide available online for people
+migrating their applications to Wicket 7. We will continue to update
+the guide as development progresses. If you find something that is not
+in the guide, please update the guide, or let us know so we can update
+the guide.
+
+You can find the guide here: 
[http://s.apache.org/wicket7migrate](http://s.apache.org/wicket7migrate)
+
+### Using this release
+
+With Apache Maven update your dependency to (and don't forget to
+update any other dependencies on Wicket projects to the same version):
+
+{% highlight xml %}
+<dependency>
+    <groupId>org.apache.wicket</groupId>
+    <artifactId>wicket-core</artifactId>
+    <version>7.0.0-M4</version>
+</dependency>
+{% endhighlight xml %}
+
+Or download and build the distribution yourself, or use our
+convenience binary package
+
+ * Source: 
[http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4](http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4)
+ * Binary: 
[http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4/binaries](http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M4/binaries)
+
+### About this release
+
+Below you can find the cryptographic signatures for the distributions
+and the release notes.
+
+#### The signatures for the source release artefacts:
+
+The signatures for the source release artefacts:
+
+Signature for apache-wicket-7.0.0-M4.zip:
+
+<div class="highlight"><pre>
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.22 (Darwin)
+Comment: GPGTools - https://gpgtools.org
+
+iEYEABECAAYFAlRTjfQACgkQJBX8W/xy/UW+TQCfZn81bkbmcrVEGjWY4rUA2sfy
+rJMAn2Ah/6X2M9Cf02hEMyb8JV+ZPaBa
+=xlUP
+-----END PGP SIGNATURE-----
+</pre></div>
+
+Signature for apache-wicket-7.0.0-M4.tar.gz:
+
+<div class="highlight"><pre>
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.22 (Darwin)
+Comment: GPGTools - https://gpgtools.org
+
+iEYEABECAAYFAlRTjfQACgkQJBX8W/xy/UVGggCdFyCZATMis/829BmasZKgx28m
+uDEAn2eZhOrh8//AIYnkRYFLtWJnyx0F
+=kWVF
+-----END PGP SIGNATURE-----
+</pre></div>
+
+#### CHANGELOG for 7.0.0-M4:
+
+Release Notes - Wicket - Version 7.0.0-M4
+
+#### Bugs
+
+* [WICKET-5265](https://issues.apache.org/jira/browse/WICKET-5265) - 
FencedFeedbackPanel is broken with RefreshingView(and it's implementations)
+* [WICKET-5326](https://issues.apache.org/jira/browse/WICKET-5326) - Wicket 
doesn't encrypt links and Ajax URLs for mounted pages when CryptoMapper is used
+* [WICKET-5689](https://issues.apache.org/jira/browse/WICKET-5689) - Nested 
Redirects and REDIRECT_TO_BUFFER
+* [WICKET-5698](https://issues.apache.org/jira/browse/WICKET-5698) - 
WebApplication#unmount() unmounts the whole compound mapper if some of its 
inner ones matches
+* [WICKET-5701](https://issues.apache.org/jira/browse/WICKET-5701) - 
WebSocketRequestHandler is not set as a scheduled and thus 
RequestCycle#find(AjaxRequestTarget.class) doesn't work 
+* [WICKET-5704](https://issues.apache.org/jira/browse/WICKET-5704) - 
IllegalArgument exception with wicket:child in ajaxrequest
+* [WICKET-5706](https://issues.apache.org/jira/browse/WICKET-5706) - 
ResourceUtils.getLocaleFromFilename cannot handle filenames with classifiers
+* [WICKET-5711](https://issues.apache.org/jira/browse/WICKET-5711) - 
OnChangeAjaxBehavior should listen for both 'inputchange' and 'change' events 
for TextField and TextArea
+* [WICKET-5712](https://issues.apache.org/jira/browse/WICKET-5712) - 
SecuritySettings.setEnforceMounts() does not work when the mounted mapper is 
not in the root compound mapper
+* [WICKET-5714](https://issues.apache.org/jira/browse/WICKET-5714) - 
MockHttpServletRequest.buildRequest() should work for parameters with multiple 
values with multipart content type
+* [WICKET-5716](https://issues.apache.org/jira/browse/WICKET-5716) - 
wicket-autocomplete prevents "change"-listener when leaving input via mouse 
click
+* [WICKET-5717](https://issues.apache.org/jira/browse/WICKET-5717) - 
Url.parse/toString should support fragment
+* [WICKET-5719](https://issues.apache.org/jira/browse/WICKET-5719) - 
Wicket-atmosphere should warn about phone home
+* [WICKET-5720](https://issues.apache.org/jira/browse/WICKET-5720) - Method 
Strings.join doesn't work correctly if separator is empty.
+* [WICKET-5723](https://issues.apache.org/jira/browse/WICKET-5723) - 
CheckGroupSelector with disabled checks
+* [WICKET-5724](https://issues.apache.org/jira/browse/WICKET-5724) - Queueing 
component in autocomponent
+* [WICKET-5728](https://issues.apache.org/jira/browse/WICKET-5728) - Component 
queuing breaks with html tags that don't require close tag.
+* [WICKET-5730](https://issues.apache.org/jira/browse/WICKET-5730) - Dequeue 
auto component can't resolve components if they are nested in child markup
+* [WICKET-5731](https://issues.apache.org/jira/browse/WICKET-5731) - Using 
"Submit" button in Ajax DropDownChoice example leads to broken HTML page
+* [WICKET-5733](https://issues.apache.org/jira/browse/WICKET-5733) - 
ContextNotActiveException thrown when using both CDI & Native WebSocket
+* [WICKET-5734](https://issues.apache.org/jira/browse/WICKET-5734) - Problem 
with WICKET-4441 and RestartResponseAtInterceptPageException
+* [WICKET-5736](https://issues.apache.org/jira/browse/WICKET-5736) - 
Atmosphere Eventbus throws Concurrent Modification Exception
+* [WICKET-5741](https://issues.apache.org/jira/browse/WICKET-5741) - Ajax Form 
example is broken due to 9716f2a7e799133fdf3f7927d0093e6dfe16f529
+
+#### Improvements
+
+* [WICKET-5350](https://issues.apache.org/jira/browse/WICKET-5350) - 
Enhancement for AbstractChoice and WildcardListModel API
+* [WICKET-5691](https://issues.apache.org/jira/browse/WICKET-5691) - Wicket 
FileUploadField.getFileUploads() should never return null.
+* [WICKET-5692](https://issues.apache.org/jira/browse/WICKET-5692) - 
Misleading message in PropertyValidator
+* [WICKET-5694](https://issues.apache.org/jira/browse/WICKET-5694) - Add 
WicketTester assertion methods for component's markup style, variation and 
locale 
+* [WICKET-5695](https://issues.apache.org/jira/browse/WICKET-5695) - Use Log4j 
2.x for the archetype
+* [WICKET-5697](https://issues.apache.org/jira/browse/WICKET-5697) - Rework 
Spring application to use annotations based configuration
+* [WICKET-5708](https://issues.apache.org/jira/browse/WICKET-5708) - Making 
FormComponent.convertInput() public
+* [WICKET-5710](https://issues.apache.org/jira/browse/WICKET-5710) - 
StringValidator should set 'minlength' attribute to input and textarea
+* [WICKET-5713](https://issues.apache.org/jira/browse/WICKET-5713) - Move 
/wicket.properties to /META-INF/wicket/xyz.properties
+* [WICKET-5715](https://issues.apache.org/jira/browse/WICKET-5715) - Allow 
setting 'async' attribute on reference <script> elements
+* [WICKET-5718](https://issues.apache.org/jira/browse/WICKET-5718) - Upgrade 
Atmosphere to 2.2.2
+* [WICKET-5725](https://issues.apache.org/jira/browse/WICKET-5725) - Add 
NumberTextField(String,Class<T>) constructor
+* [WICKET-5729](https://issues.apache.org/jira/browse/WICKET-5729) - Avoid 
using input names that conflict with JavaScript DOM API method and attribute 
names
+* [WICKET-5735](https://issues.apache.org/jira/browse/WICKET-5735) - Propagate 
fileSizeMax attribute to org.apache.commons.fileupload.FileUploadBase
+* [WICKET-5737](https://issues.apache.org/jira/browse/WICKET-5737) - Log a 
warning when WebSocketResponse#sendError() is used
+* [WICKET-5739](https://issues.apache.org/jira/browse/WICKET-5739) - Add a 
factory method for WebSocketRequestHandler
+* [WICKET-5740](https://issues.apache.org/jira/browse/WICKET-5740) - Provide a 
way to adapt the lock timeout based on the page class/id
+
+#### New Features
+
+* [WICKET-5677](https://issues.apache.org/jira/browse/WICKET-5677) - 
Components should have onAdd to complement onRemove
+
+#### Tasks
+
+* [WICKET-5705](https://issues.apache.org/jira/browse/WICKET-5705) - Disable 
Javadoc linter in JDK 1.8 because it is too strict
+
+#### Tests
+
+* [WICKET-5722](https://issues.apache.org/jira/browse/WICKET-5722) - Queueing 
in merged markup with transparent resolver in the base class
+
+Have fun!
+
+— The Wicket team

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/8cc72bad/_posts/2015/2015-02-02-wicket-6.19.0-released.md
----------------------------------------------------------------------
diff --git a/_posts/2015/2015-02-02-wicket-6.19.0-released.md 
b/_posts/2015/2015-02-02-wicket-6.19.0-released.md
new file mode 100644
index 0000000..a426239
--- /dev/null
+++ b/_posts/2015/2015-02-02-wicket-6.19.0-released.md
@@ -0,0 +1,125 @@
+---
+layout: post
+title: Apache Wicket 6.19.0 released
+---
+The Apache Wicket PMC is proud to announce Apache Wicket 6.19.0!
+
+This release marks another 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.
+
+### Using this release
+
+With Apache Maven update your dependency to (and don't forget to
+update any other dependencies on Wicket projects to the same version):
+
+{% highlight xml %}
+<dependency>
+<groupId>org.apache.wicket</groupId>
+<artifactId>wicket-core</artifactId>
+<version>6.19.0</version>
+</dependency>
+{% endhighlight xml %}
+
+Or download and build the distribution yourself, or use our
+convenience binary package
+
+ * Source: 
[http://www.apache.org/dyn/closer.cgi/wicket/6.19.0](http://www.apache.org/dyn/closer.cgi/wicket/6.19.0)
+ * Binary: 
[http://www.apache.org/dyn/closer.cgi/wicket/6.19.0/binaries](http://www.apache.org/dyn/closer.cgi/wicket/6.19.0/binaries)
+
+### Upgrading from earlier versions
+
+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
+
+ * [migration to Wicket 6]( 
https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+6.0)
+
+Have fun!
+
+— The Wicket team
+
+### This release
+
+Below you can find the cryptographic signatures for the distributions
+and the release notes.
+
+#### The signatures for the source release artefacts:
+
+Signature for apache-wicket-6.19.0.zip:
+
+<div class="highlight"><pre>
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.22 (Darwin)
+Comment: GPGTools - https://gpgtools.org
+
+iEYEABECAAYFAlRTb2UACgkQJBX8W/xy/UW1egCg1LOkWMrnD+FJoHKjp7Gulyvm
+s+UAoMNN/mgMKo+p33h3vt4fnLTemLGT
+=RpfO
+-----END PGP SIGNATURE-----
+</pre></div>
+
+Signature for apache-wicket-6.19.0.tar.gz:
+
+<div class="highlight"><pre>
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.22 (Darwin)
+Comment: GPGTools - https://gpgtools.org
+
+iEYEABECAAYFAlRTb2UACgkQJBX8W/xy/UVZcACguyKdrM0byfMp5IWqzwFMx5Lo
+i6UAn25gHcC0w8QWiNJXV7u99iTHssaP
+=+QQW
+-----END PGP SIGNATURE-----
+</pre></div>
+
+#### CHANGELOG for 6.19.0:
+
+The following changes were made in Wicket for this release.
+
+#### Bug
+
+* [WICKET-5747](https://issues.apache.org/jira/browse/WICKET-5747) - Wicket 
Ajax Click handling gets requeued in OnDomReady so fire out of order
+* [WICKET-5752](https://issues.apache.org/jira/browse/WICKET-5752) - 
ReplacementResourceBundleReference should return the dependencies for the 
replacing resource ref
+* [WICKET-5755](https://issues.apache.org/jira/browse/WICKET-5755) - Restoring 
focus after Ajax replace no longer works in IE8
+* [WICKET-5759](https://issues.apache.org/jira/browse/WICKET-5759) - 
AjaxRequestAttributes extra parameters aren&#39;t properly handled in 
getCallbackFunction()
+* [WICKET-5770](https://issues.apache.org/jira/browse/WICKET-5770) - 
PageParametersEncoder should not decode parameters with no name
+* [WICKET-5782](https://issues.apache.org/jira/browse/WICKET-5782) - Missing 
escaping in MultiFileUploadField.js - sort of XSS
+* [WICKET-5783](https://issues.apache.org/jira/browse/WICKET-5783) - Multiple 
events in AjaxEventBehavior with prefix &#39;on&#39;
+* [WICKET-5784](https://issues.apache.org/jira/browse/WICKET-5784) - arraycopy 
with bad length in AbstractRequestLogger:172
+* [WICKET-5793](https://issues.apache.org/jira/browse/WICKET-5793) - Request 
for static resource creating a session in 6.13.0+
+* [WICKET-5809](https://issues.apache.org/jira/browse/WICKET-5809) - URL IPv6 
parsing
+* [WICKET-5811](https://issues.apache.org/jira/browse/WICKET-5811) - Infinite 
loop issue in 
PropertyValidator#createUnresolvablePropertyMessage(FormComponent&lt;&gt;)
+* [WICKET-5812](https://issues.apache.org/jira/browse/WICKET-5812) - 
AtmosphereBehavior wrongly sets Ajax base url to &#39;.&#39;
+
+#### Improvement
+
+* [WICKET-4703](https://issues.apache.org/jira/browse/WICKET-4703) - 
StringResourceModel should provide an overridable getString(Component) method
+* [WICKET-5746](https://issues.apache.org/jira/browse/WICKET-5746) - Fire an 
event once all JS event listeners are registered
+* [WICKET-5753](https://issues.apache.org/jira/browse/WICKET-5753) - It is 
impossible to determine the form submitting component&#39;s inputName when 
AjaxFormSubmitBehavior is used
+* [WICKET-5754](https://issues.apache.org/jira/browse/WICKET-5754) - 
(String)ResourceModel&#39;s defaultValue could be an IModel&lt;String&gt;
+* [WICKET-5756](https://issues.apache.org/jira/browse/WICKET-5756) - Allow to 
use custom ciphers when using SunJceCrypt class
+* [WICKET-5758](https://issues.apache.org/jira/browse/WICKET-5758) - 
Portuguese translation
+* [WICKET-5760](https://issues.apache.org/jira/browse/WICKET-5760) - Add 
constructor (String, Serializable, String) to AttributeAppender
+* [WICKET-5775](https://issues.apache.org/jira/browse/WICKET-5775) - Replace 
the session upon successful signin for better support for Session Fixation
+* [WICKET-5776](https://issues.apache.org/jira/browse/WICKET-5776) - Add 
information about the component when it fail in detach phase
+* [WICKET-5778](https://issues.apache.org/jira/browse/WICKET-5778) - Pass the 
IModifiable to the IChangeListener in ModificationWatcher
+* [WICKET-5780](https://issues.apache.org/jira/browse/WICKET-5780) - Add a 
resource reference for ContextRelativeResource
+* [WICKET-5794](https://issues.apache.org/jira/browse/WICKET-5794) - Make 
DefaultExceptionMapper extensible
+* [WICKET-5797](https://issues.apache.org/jira/browse/WICKET-5797) - 
Convenience method to call setResponsePage with forward option
+* [WICKET-5799](https://issues.apache.org/jira/browse/WICKET-5799) - Add 
rel=prev/next in PagingNavigator.html
+* [WICKET-5802](https://issues.apache.org/jira/browse/WICKET-5802) - HTML 
Import
+* [WICKET-5806](https://issues.apache.org/jira/browse/WICKET-5806) - 
Wicket.Log should log (at least errors) in the browser console even when Wicket 
Ajax Debug window is disabled
+
+#### New Feature
+
+* [WICKET-5771](https://issues.apache.org/jira/browse/WICKET-5771) - Ability 
to escape resource bundle messages added with wicket:message
+
+#### Task
+
+* [WICKET-5791](https://issues.apache.org/jira/browse/WICKET-5791) - Update 
JQuery to 1.11.2 and 2.1.3
+
+
+Have fun!
+
+— The Wicket team

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/8cc72bad/_posts/2015/2015-02-02-wicket-7.0.0-M5-released.md
----------------------------------------------------------------------
diff --git a/_posts/2015/2015-02-02-wicket-7.0.0-M5-released.md 
b/_posts/2015/2015-02-02-wicket-7.0.0-M5-released.md
new file mode 100644
index 0000000..a42c6ab
--- /dev/null
+++ b/_posts/2015/2015-02-02-wicket-7.0.0-M5-released.md
@@ -0,0 +1,157 @@
+---
+layout: post
+title: Apache Wicket 7.0.0-M5 released
+---
+The Apache Wicket PMC is proud to announce Apache Wicket 7.0.0-M5!
+
+We have released another milestone release for Apache Wicket 7. We aim
+to finalise Wicket 7 over the coming months and request your help in
+testing the new major version.
+
+### Caveats
+
+It is still a development version so expect API breaks to happen over
+the course of the coming milestone releases.
+
+### Semantic versioning
+
+As we adopted semver Wicket 7 will be the first release since 6.0 where
+we are able to refactor the API. We will continue to use semver when we
+have made Wicket 7 final and maintain api compatibility between minor
+versions of Wicket 7.
+
+### Requirements
+
+Wicket 7 requires the following:
+
+ - Java 7
+ - Servlet 3 compatible container
+
+You can't mix wicket libraries from prior Wicket versions with Wicket 7.
+
+### Migration guide
+
+As usual we have a migration guide available online for people
+migrating their applications to Wicket 7. We will continue to update
+the guide as development progresses. If you find something that is not
+in the guide, please update the guide, or let us know so we can update
+the guide.
+
+You can find the guide here: 
[http://s.apache.org/wicket7migrate](http://s.apache.org/wicket7migrate)
+
+### Using this release
+
+With Apache Maven update your dependency to (and don't forget to
+update any other dependencies on Wicket projects to the same version):
+
+{% highlight xml %}
+<dependency>
+    <groupId>org.apache.wicket</groupId>
+    <artifactId>wicket-core</artifactId>
+    <version>7.0.0-M5</version>
+</dependency>
+{% endhighlight xml %}
+
+Or download and build the distribution yourself, or use our
+convenience binary package
+
+ * Source: 
[http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M5](http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M5)
+ * Binary: 
[http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M5/binaries](http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M5/binaries)
+
+### About this release
+
+Below you can find the cryptographic signatures for the distributions
+and the release notes.
+
+#### The signatures for the source release artefacts:
+
+The signatures for the source release artefacts:
+
+Signature for apache-wicket-7.0.0-M5.zip:
+
+<div class="highlight"><pre>
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.22 (Darwin)
+Comment: GPGTools - https://gpgtools.org
+
+iEYEABECAAYFAlRTjfQACgkQJBX8W/xy/UW+TQCfZn81bkbmcrVEGjWY4rUA2sfy
+rJMAn2Ah/6X2M9Cf02hEMyb8JV+ZPaBa
+=xlUP
+-----END PGP SIGNATURE-----
+</pre></div>
+
+Signature for apache-wicket-7.0.0-M5.tar.gz:
+
+<div class="highlight"><pre>
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.22 (Darwin)
+Comment: GPGTools - https://gpgtools.org
+
+iEYEABECAAYFAlRTjfQACgkQJBX8W/xy/UVGggCdFyCZATMis/829BmasZKgx28m
+uDEAn2eZhOrh8//AIYnkRYFLtWJnyx0F
+=kWVF
+-----END PGP SIGNATURE-----
+</pre></div>
+
+#### CHANGELOG for 7.0.0-M5:
+
+Release Notes - Wicket - Version 7.0.0-M5
+
+#### Bugs
+
+* [WICKET-5584](https://issues.apache.org/jira/browse/WICKET-5584) - 
DiskDataStore error
+* [WICKET-5747](https://issues.apache.org/jira/browse/WICKET-5747) - Wicket 
Ajax Click handling gets requeued in OnDomReady so fire out of order
+* [WICKET-5748](https://issues.apache.org/jira/browse/WICKET-5748) - 
StackOverflowError while trying to get the Markup of WicketHeadContainer
+* [WICKET-5751](https://issues.apache.org/jira/browse/WICKET-5751) - 
NullPointerException in IntHashMap
+* [WICKET-5752](https://issues.apache.org/jira/browse/WICKET-5752) - 
ReplacementResourceBundleReference should return the dependencies for the 
replacing resource ref
+* [WICKET-5759](https://issues.apache.org/jira/browse/WICKET-5759) - 
AjaxRequestAttributes extra parameters aren&#39;t properly handled in 
getCallbackFunction()
+* [WICKET-5770](https://issues.apache.org/jira/browse/WICKET-5770) - 
PageParametersEncoder should not decode parameters with no name
+* [WICKET-5772](https://issues.apache.org/jira/browse/WICKET-5772) - 
LoadableDetachableModel caches null value if load() fails, bug in getObject() 
{attached = true;}
+* [WICKET-5777](https://issues.apache.org/jira/browse/WICKET-5777) - Reload of 
page leads to WicketRuntimeException
+* [WICKET-5782](https://issues.apache.org/jira/browse/WICKET-5782) - Missing 
escaping in MultiFileUploadField.js - sort of XSS
+* [WICKET-5783](https://issues.apache.org/jira/browse/WICKET-5783) - Multiple 
events in AjaxEventBehavior with prefix &#39;on&#39;
+* [WICKET-5784](https://issues.apache.org/jira/browse/WICKET-5784) - arraycopy 
with bad length in AbstractRequestLogger:172
+* [WICKET-5793](https://issues.apache.org/jira/browse/WICKET-5793) - Request 
for static resource creating a session in 6.13.0+
+* [WICKET-5800](https://issues.apache.org/jira/browse/WICKET-5800) - 
wicket:enclosure within FormComponentPanel causes exception related to 
dequeueing
+* [WICKET-5809](https://issues.apache.org/jira/browse/WICKET-5809) - URL IPv6 
parsing
+* [WICKET-5811](https://issues.apache.org/jira/browse/WICKET-5811) - Infinite 
loop issue in 
PropertyValidator#createUnresolvablePropertyMessage(FormComponent&lt;&gt;)
+* [WICKET-5812](https://issues.apache.org/jira/browse/WICKET-5812) - 
AtmosphereBehavior wrongly sets Ajax base url to &#39;.&#39;
+* [WICKET-5817](https://issues.apache.org/jira/browse/WICKET-5817) - 
Wicket-JMX should depend on asm-util
+
+#### Improvements
+
+* [WICKET-4703](https://issues.apache.org/jira/browse/WICKET-4703) - 
StringResourceModel should provide an overridable getString(Component) method
+* [WICKET-5746](https://issues.apache.org/jira/browse/WICKET-5746) - Fire an 
event once all JS event listeners are registered
+* [WICKET-5753](https://issues.apache.org/jira/browse/WICKET-5753) - It is 
impossible to determine the form submitting component&#39;s inputName when 
AjaxFormSubmitBehavior is used
+* [WICKET-5754](https://issues.apache.org/jira/browse/WICKET-5754) - 
(String)ResourceModel&#39;s defaultValue could be an IModel&lt;String&gt;
+* [WICKET-5756](https://issues.apache.org/jira/browse/WICKET-5756) - Allow to 
use custom ciphers when using SunJceCrypt class
+* [WICKET-5758](https://issues.apache.org/jira/browse/WICKET-5758) - 
Portuguese translation
+* [WICKET-5760](https://issues.apache.org/jira/browse/WICKET-5760) - Add 
constructor (String, Serializable, String) to AttributeAppender
+* [WICKET-5774](https://issues.apache.org/jira/browse/WICKET-5774) - 
UrlRenderer should render full and absolute urls in their canonical form
+* [WICKET-5775](https://issues.apache.org/jira/browse/WICKET-5775) - Replace 
the session upon successful signin for better support for Session Fixation
+* [WICKET-5776](https://issues.apache.org/jira/browse/WICKET-5776) - Add 
information about the component when it fail in detach phase
+* [WICKET-5778](https://issues.apache.org/jira/browse/WICKET-5778) - Pass the 
IModifiable to the IChangeListener in ModificationWatcher
+* [WICKET-5780](https://issues.apache.org/jira/browse/WICKET-5780) - Add a 
resource reference for ContextRelativeResource
+* [WICKET-5789](https://issues.apache.org/jira/browse/WICKET-5789) - Make 
org.apache.wicket.protocol.ws.javax.WicketServerEndpointConfig publicly visible
+* [WICKET-5794](https://issues.apache.org/jira/browse/WICKET-5794) - Make 
DefaultExceptionMapper extensible
+* [WICKET-5797](https://issues.apache.org/jira/browse/WICKET-5797) - 
Convenience method to call setResponsePage with forward option
+* [WICKET-5799](https://issues.apache.org/jira/browse/WICKET-5799) - Add 
rel=prev/next in PagingNavigator.html
+* [WICKET-5802](https://issues.apache.org/jira/browse/WICKET-5802) - HTML 
Import
+* [WICKET-5803](https://issues.apache.org/jira/browse/WICKET-5803) - Reduce 
log for &quot;o.a.w.r.PropertiesFactory | Loading properties files from 
...&quot;
+* [WICKET-5806](https://issues.apache.org/jira/browse/WICKET-5806) - 
Wicket.Log should log (at least errors) in the browser console even when Wicket 
Ajax Debug window is disabled
+* [WICKET-5808](https://issues.apache.org/jira/browse/WICKET-5808) - 
SpringBean, support generic beans
+* [WICKET-5818](https://issues.apache.org/jira/browse/WICKET-5818) - Add 
support for httpOnly cookies to CookieDefaults
+* [WICKET-5820](https://issues.apache.org/jira/browse/WICKET-5820) - improve 
StringResourceModel&#39;s resource key interpolation for null
+
+#### New Features
+
+* [WICKET-5771](https://issues.apache.org/jira/browse/WICKET-5771) - Ability 
to escape resource bundle messages added with wicket:message
+
+#### Tasks
+
+* [WICKET-5732](https://issues.apache.org/jira/browse/WICKET-5732) - Improve 
component queuing and auto component
+* [WICKET-5791](https://issues.apache.org/jira/browse/WICKET-5791) - Update 
JQuery to 1.11.2 and 2.1.3
+
+Have fun!
+
+— The Wicket team

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/8cc72bad/_posts/2015/2015-02-13-new-committer-Sebastien-Briquet.md
----------------------------------------------------------------------
diff --git a/_posts/2015/2015-02-13-new-committer-Sebastien-Briquet.md 
b/_posts/2015/2015-02-13-new-committer-Sebastien-Briquet.md
new file mode 100644
index 0000000..95b931d
--- /dev/null
+++ b/_posts/2015/2015-02-13-new-committer-Sebastien-Briquet.md
@@ -0,0 +1,16 @@
+---
+layout: post
+title: New committer - Sebastien Briquet
+---
+
+The Project Management Committee (PMC) for Apache Wicket 
+has asked Sebastien Briquet to become a committer and we are pleased 
+to announce that he has accepted. 
+
+Sebastien has been involved with Wicket for several years now by developing 
one of the most successful integrations with JavaScript libraries, namely 
Wicket jQuery UI, reporting bugs, contributing fixes and participating in 
discussions.
+
+Being a committer will enable him to help us even easier in the future.
+
+Please welcome Sebastien Briquet to our team! 
+
+Bienvenue Sebastien! 
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/8cc72bad/_posts/2015/2015-02-13-wicket-1.5.13-released.md
----------------------------------------------------------------------
diff --git a/_posts/2015/2015-02-13-wicket-1.5.13-released.md 
b/_posts/2015/2015-02-13-wicket-1.5.13-released.md
new file mode 100644
index 0000000..49ea7d2
--- /dev/null
+++ b/_posts/2015/2015-02-13-wicket-1.5.13-released.md
@@ -0,0 +1,18 @@
+---
+layout: post
+title: Wicket 1.5.13 released
+---
+
+This is the thirteenth maintenance release of the Wicket 1.5.x series. This 
release brings over 1 bug fix and 1 improvement.
+
+* [Git 
tag](https://git-wip-us.apache.org/repos/asf/wicket/repo?p=wicket.git;a=shortlog;h=refs/tags/wicket-1.5.13)
+* 
[Changelog](https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&version=12328347)
+* To use in Maven:
+{% highlight xml %}
+<dependency>
+    <groupId>org.apache.wicket</groupId>
+    <artifactId>wicket-core</artifactId>
+    <version>1.5.13</version>
+</dependency>
+{% endhighlight %}
+* Download the [full 
distribution](http://www.apache.org/dyn/closer.cgi/wicket/1.5.13) (including 
sources)

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/8cc72bad/_site/2009/07/30/wicket-1.3.7-released.html
----------------------------------------------------------------------
diff --git a/_site/2009/07/30/wicket-1.3.7-released.html 
b/_site/2009/07/30/wicket-1.3.7-released.html
new file mode 100644
index 0000000..5763df5
--- /dev/null
+++ b/_site/2009/07/30/wicket-1.3.7-released.html
@@ -0,0 +1,321 @@
+<!DOCTYPE html>
+<html>
+<head>
+    <title>Apache Wicket - Apache Wicket 1.3.7 marks end of life for Wicket 
1.3</title>
+
+       <link rel="stylesheet" href="/css/screen.css" type="text/css" 
media="screen" />
+
+    <!--[if lt ie 7]>
+       <link rel="stylesheet" href="/css/ie.css" type="text/css" 
media="screen" />
+    <![endif]-->
+    <link rel="shortcut icon" href="/favicon.ico" 
type="image/vnd.microsoft.icon" />
+       <link rel="alternate" type="application/atom+xml" href="/atom.xml" />
+       <meta http-equiv="content-type" content="text/html;charset=utf-8" />
+</head>
+<body>
+<div id="container">
+    <div id="content">
+        <div id="header"><a href="/"><h1 id="logo"><span>Apache 
Wicket</span></h1></a></div>
+               <div id="navigation">
+       <h5><a name="Navigation-Wicket"></a>Meet Wicket</h5>
+       <ul>
+               <li>
+                       <a href="/" title="Index">Home</a>
+               </li>
+               <li>
+                       <a href="/meet/introduction.html" 
title="Introduction">Introduction</a>
+               </li>
+               <li>
+                       <a href="/meet/features.html" 
title="Features">Features</a>
+               </li>
+               <li>
+                       <a href="/meet/buzz.html" title="Buzz">Buzz</a>
+               </li>
+               <li>
+                       <a href="/meet/vision.html" title="Vision">Vision</a>
+               </li>
+               <li>
+                       <a href="/meet/blogs.html" title="Blogs">Blogs</a>
+               </li>
+       </ul>
+       <h5>
+               <a name="Navigation-GettingStarted" 
id="Navigation-GettingStarted"></a>Get Started
+       </h5>
+       <ul>
+               <li>
+                       <a href="/start/download.html" title="Download 
Wicket">Download Wicket</a>
+               </li>
+               <li>
+                       <a href="/start/quickstart.html" title="Getting started 
via a Maven Archetype">Quickstart</a>
+               </li>
+               <li>
+                       <a href="http://www.jweekend.com/dev/LegUp"; 
rel="nofollow">More archetypes</a>
+               </li>
+               <li>
+                       <a href="/help" title="Get help">Get help</a>
+               </li>
+               <li>
+                       <a href="/help/email.html" title="Wicket Mailing 
Lists">Mailing Lists</a>
+               </li>
+       </ul>
+       <h5>
+               <a name="Navigation-Documentation" 
id="Navigation-Documentation"></a>Learn
+       </h5>
+       <ul>
+               <li>
+                       <a href="/start/userguide.html" title="User Guide">User 
Guide</a>
+               </li>
+               <li>
+                       <a href="/learn/examples" title="Examples">Examples</a>
+               </li>
+               <li>
+                       <a 
href="http://www.wicket-library.com/wicket-examples/compref/";>Components</a>
+               </li>
+               <li>
+                       <a href="/learn/projects/" title="Projects extending 
basic Wicket">Projects</a>
+               </li>
+               <li>
+                       <a 
href="https://cwiki.apache.org/confluence/display/WICKET";>Wiki</a>
+               </li>
+               <li>
+                       <a 
href="https://cwiki.apache.org/confluence/display/WICKET/Reference+library";>Reference
 guide</a>
+               </li>
+               <li>
+                       <a href="/learn/books" title="Books">Books</a>
+               </li>
+               <li>
+                       <a href="/learn/ides.html" title="IDEs">IDEs</a>
+               </li>
+       </ul>
+       <h5>
+               <a name="Navigation-Releases" 
id="Navigation-Releases"></a>Releases
+       </h5>
+       <ul>
+               <li>
+                       <a 
href="http://www.apache.org/dyn/closer.cgi/wicket/6.19.0";>Wicket 6.19</a>
+               </li>
+               <li>
+                       <a 
href="http://www.apache.org/dyn/closer.cgi/wicket/1.5.13";>Wicket 1.5</a>
+               </li>
+               <li>
+                       <a 
href="http://www.apache.org/dyn/closer.cgi/wicket/1.4.23";>Wicket 1.4</a>
+               </li>
+               <li>
+                       <a 
href="http://www.apache.org/dyn/closer.cgi/wicket/1.3.7";>Wicket 1.3</a>
+               </li>
+               <li>
+                       <a href="http://wicket.sf.net/wicket-1.2"; 
class="external-link" rel="nofollow">Wicket 1.2</a>
+               </li>
+               <li>
+                       <a href="http://wicket.sf.net/wicket-1.1"; 
class="external-link" rel="nofollow">Wicket 1.1</a>
+               </li>
+               <li>
+                       <a href="http://wicket.sf.net/wicket-1.0"; 
class="external-link" rel="nofollow">Wicket 1.0</a>
+               </li>
+       </ul>
+       <h5>
+               <a name="Navigation-Docs" id="Navigation-Docs"></a>API Docs
+       </h5>
+       <ul>
+               <li>
+                       <a 
href="http://ci.apache.org/projects/wicket/apidocs/6.x/"; title="JavaDocs of 
Apache Wicket 6.x">Wicket 6.x</a>
+               </li>
+               <li>
+                       <a 
href="http://ci.apache.org/projects/wicket/apidocs/1.5.x/"; title="JavaDocs of 
Apache Wicket 1.5.x">Wicket 1.5</a>
+               </li>
+               <li>
+                       <a 
href="http://ci.apache.org/projects/wicket/apidocs/1.4.x"; title="JavaDocs of 
Apache Wicket 1.4.x">Wicket 1.4</a>
+               </li>
+               <li>
+                       <a 
href="http://ci.apache.org/projects/wicket/apidocs/1.3.x"; title="JavaDocs of 
Apache Wicket 1.3.x">Wicket 1.3</a>
+               </li>
+       </ul>
+       <h5>Wicket 7.x</h5>
+       <ul>
+               <li>
+                       <a 
href="http://www.apache.org/dyn/closer.cgi/wicket/7.0.0-M5";>Download M5</a>
+               </li>
+               <li>
+                       <a 
href="https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+7.0";>Migration
 guide</a>
+               </li>
+               <li>
+                       <a 
href="http://ci.apache.org/projects/wicket/apidocs/7.x/"; title="JavaDocs of 
Apache Wicket 7.x">API Docs 7.x</a>
+               </li>
+       </ul>
+       <h5>
+               <a name="Navigation-Developers" 
id="Navigation-Developers"></a>Contribute
+       </h5>
+       <ul>
+               <li>
+                       <a href="/contribute/write.html" title="Writing 
documentation">Writing docs</a>
+               </li>
+               <li>
+                       <a href="/contribute/build.html" title="Building from 
SVN">Build Wicket</a>
+               </li>
+               <li>
+                       <a href="/contribute/patch.html" title="Provide a 
patch">Provide a patch</a>
+               </li>
+               <li>
+                       <a href="/contribute/release.html" title="Release 
Wicket">Release Wicket</a>
+               </li>
+               <li>
+                       <a 
href="https://fisheye6.atlassian.com/browse/wicket-git"; title="Git Overview" 
class="external-link" rel="nofollow">Fisheye</a>
+               </li>
+       </ul>
+       <h5>
+               <a name="Navigation-Apache" id="Navigation-Apache"></a>Apache
+       </h5>
+       <ul>
+               <li>
+                       <a href="http://www.apache.org/"; class="external-link" 
rel="nofollow">Apache</a>
+               </li>
+               <li>
+                       <a href="http://www.apache.org/licenses/"; 
class="external-link" rel="nofollow">License</a>
+               </li>
+               <li>
+                       <a 
href="http://www.apache.org/foundation/sponsorship.html"; class="external-link" 
rel="nofollow">Sponsorship</a>
+               </li>
+               <li>
+                       <a href="http://apache.org/foundation/thanks.html"; 
class="external-link" rel="nofollow">Thanks</a>
+               </li>
+               <li>
+                       <a href="/apache/friends.html" title="Apache projects 
using Wicket">Friends</a>
+               </li>
+       </ul>
+</div>
+
+               <div id="contentbody">
+                       <h1>Apache Wicket 1.3.7 marks end of life for Wicket 
1.3</h1>
+                       <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>
+
+<div class="highlight"><pre><code class="language-xml" data-lang="xml"><span 
class="nt">&lt;dependency&gt;</span>
+    <span class="nt">&lt;groupId&gt;</span>org.apache.wicket<span 
class="nt">&lt;/groupId&gt;</span>
+    <span class="nt">&lt;artifactId&gt;</span>wicket<span 
class="nt">&lt;/artifactId&gt;</span>
+    <span class="nt">&lt;version&gt;</span>1.3.7<span 
class="nt">&lt;/version&gt;</span>
+<span class="nt">&lt;/dependency&gt;</span></code></pre></div>
+
+<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>
+        <div id="clearer"></div>
+               <div id="footer"><span>
+Copyright &copy; 2015 &mdash; 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.
+</span></div>
+
+    </div>
+</div>
+</body>
+</html>

Reply via email to