Author: dashorst
Date: Tue Jul 17 08:59:56 2012
New Revision: 1362415
URL: http://svn.apache.org/viewvc?rev=1362415&view=rev
Log:
Release 6.0.0-beta3, part one
Added:
wicket/common/site/trunk/_posts/2012-07-16-wicket-6.0.0-beta3-released.md
wicket/common/site/trunk/_site/2012/07/
wicket/common/site/trunk/_site/2012/07/16/
wicket/common/site/trunk/_site/2012/07/16/wicket-6.0.0-beta3-released.html
Modified:
wicket/common/site/trunk/_config.yml
wicket/common/site/trunk/_site/atom.xml
wicket/common/site/trunk/_site/index.html
wicket/common/site/trunk/_site/start/quickstart.html
Modified: wicket/common/site/trunk/_config.yml
URL:
http://svn.apache.org/viewvc/wicket/common/site/trunk/_config.yml?rev=1362415&r1=1362414&r2=1362415&view=diff
==============================================================================
--- wicket/common/site/trunk/_config.yml (original)
+++ wicket/common/site/trunk/_config.yml Tue Jul 17 08:59:56 2012
@@ -15,4 +15,4 @@ exclude: readme.md
wicket:
version: 1.5.7
released: 2012-06-04
- versions: [6.0.0-beta2, 1.5.7, 1.4.20, 1.4-SNAPSHOT, 1.5-SNAPSHOT,
6.0-SNAPSHOT]
+ versions: [6.0.0-beta3, 1.5.7, 1.4.20, 1.4-SNAPSHOT, 1.5-SNAPSHOT,
6.0-SNAPSHOT]
Added: wicket/common/site/trunk/_posts/2012-07-16-wicket-6.0.0-beta3-released.md
URL:
http://svn.apache.org/viewvc/wicket/common/site/trunk/_posts/2012-07-16-wicket-6.0.0-beta3-released.md?rev=1362415&view=auto
==============================================================================
--- wicket/common/site/trunk/_posts/2012-07-16-wicket-6.0.0-beta3-released.md
(added)
+++ wicket/common/site/trunk/_posts/2012-07-16-wicket-6.0.0-beta3-released.md
Tue Jul 17 08:59:56 2012
@@ -0,0 +1,132 @@
+---
+layout: post
+title: Wicket 6.0.0-beta3 released
+---
+
+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 give you 6.0.0 final.
+
+There are no more planned API breaks but if you find something
+that can be made better now it the time to discuss it! The
+next planned release is 6.0.0 final, so speak now or forever
+be silenced (or learn to live with it until 7.0.0 comes out).
+
+Any feedback about the new features, their implementation and
+their documentation is very welcome!
+
+New and Noteworthy in 6.0.0-beta3
+=================================
+
+**NOTA BENE:** the use of modules that are marked experimental,
+by being part of the sub module 'wicket-experimental', are really
+that: experimental. These modules can change, disappear or blow up
+your computer without notice and you really use/depend on them at
+your own risk.
+
+Wicket Native Websockets
+------------------------
+
+A new **experimental** module has been added to Wicket 6 - Wicket
+Native WebSocket. This module adds support for using HTML5
+WebSockets as you may use Ajax in your Wicket applications.
+
+All you have to do is to add a WebSocketBehavior to your page and from
+there on you can receive messages from the clients and push messages
+back to them.
+
+At [our wiki](https://cwiki.apache.org/confluence/x/0vSoAQ) you may
+find the documentation and a link to a demo application.
+
+If something is not clear feel free to ask your question in the
+mailing lists and we will improve the documentation.
+
+Wicket Bootstrap
+----------------
+
+The **experimental** modules now contain a new module for integration
+with Twitter's Bootstrap. Currently this module only provides a
+central way of using the Bootstrap resources. In the future we
+will provide proper components and behaviors for the Bootstrap
+concepts.
+
+To use this new **experimental** module, add this to your pom:
+
+ <dependency>
+ <groupId>org.apache.wicket</groupId>
+ <artifactId>wicket-bootstrap</artifactId>
+ <version>0.1</version>
+ </dependency>
+
+To add Bootstrap support to your pages, add this in the `renderHead`
+method:
+
+ @Override
+ public void renderHead(IHeaderResponse response) {
+ super.renderHead(response);
+
+ Bootstrap.renderHead(response);
+ }
+
+This will render a dependency to the Twitter bootstrap CSS and JS files,
+including the required dependency to JQuery.
+
+New Wicket Examples
+-------------------
+We have started an effort to revamp the tried and tested Wicket Examples
+and bring them into 2012. The new examples are located in the
+**experimental** module.
+
+It is currently a copy of Twitter Bootstrap's design but with Wicket
+specific filling.
+
+You can test the examples by running the
+
+ wicket-examples-jar/src/test/java/Start.java
+
+class in the default package.
+
+The examples will feature a component reference with typical use
+cases, full examples such as Hello, World, and descriptions of the
+code in play.
+
+Wicket Atmosphere
+-----------------
+
+Wicket Atmosphere in the experimental modules has seen an upgrade of
+the Atmosphere dependency to 1.0.0-beta3. This has caused an
+incompatibility with Jetty 7.6.3 (used with Wicket and the examples). To
+mitigate this, you need to override either:
+
+ - the dependency on Jetty to 8.1.3 or newer, or
+ - the dependency on Atmosphere to 0.9.5 (0.9.6 and 0.9.7 are broken as
+ well)
+
+See [WICKET-4656](https://issues.apache.org/jira/browse/WICKET-4656) for
+more information regarding this issue.
+
+This release
+============
+
+ - Check the roadmap with a list of the major
+ goals: [6.0 roadmap](https://cwiki.apache.org/WICKET/wicket-60-roadmap.html)
+ - And the migration guide with all major and some minor changes
+ between 1.5.x and 6.x series: [migration
guide](http://s.apache.org/wicket-6.0-migration)
+ - The Jira changelog of all closed ticket at
+ Jira: [changelog](http://s.apache.org/wicket-6.0.0-beta3-changelog)
+
+To use it in Maven:
+
+ <dependency>
+ <groupId>org.apache.wicket</groupId>
+ <artifactId>wicket-core</artifactId>
+ <version>6.0.0-beta3</version>
+ </dependency>
+
+If you donât use a dependencies management build tool then you
+can download the full distribution (including source) and build from
+source yourself.
+
+Have fun,
+
+The Wicket team!
Added:
wicket/common/site/trunk/_site/2012/07/16/wicket-6.0.0-beta3-released.html
URL:
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/2012/07/16/wicket-6.0.0-beta3-released.html?rev=1362415&view=auto
==============================================================================
--- wicket/common/site/trunk/_site/2012/07/16/wicket-6.0.0-beta3-released.html
(added)
+++ wicket/common/site/trunk/_site/2012/07/16/wicket-6.0.0-beta3-released.html
Tue Jul 17 08:59:56 2012
@@ -0,0 +1,264 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <title>Apache Wicket - Wicket 6.0.0-beta3 released</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="/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="http://cwiki.apache.org/WICKET">Wiki</a>
+ </li>
+ <li>
+ <a
href="http://cwiki.apache.org/WICKET/reference-library.html">Reference guide</a>
+ </li>
+ <li>
+ <a href="/learn/books" title="Books">Books</a>
+ </li>
+ <li>
+ <a href="/learn/ides.html" title="IDEs">IDE plugins</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/1.5.7">Wicket 1.5</a>
+ (<a
href="http://ci.apache.org/projects/wicket/apidocs/1.5.x/" title="JavaDocs of
the latest stable release - 1.5.x">docs</a>)
+ </li>
+ <li>
+ <a
href="http://www.apache.org/dyn/closer.cgi/wicket/1.4.20">Wicket 1.4</a>
+ (<a
href="http://ci.apache.org/projects/wicket/apidocs/1.4.x" title="JavaDocs of
Apache Wicket 1.4.x">docs</a>)
+ </li>
+ <li>
+ <a
href="http://www.apache.org/dyn/closer.cgi/wicket/1.3.7">Wicket 1.3</a>
+ (<a
href="http://ci.apache.org/projects/wicket/apidocs/1.3.x" title="JavaDocs of
Apache Wicket 1.3.x">docs</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-Developers"
id="Navigation-Developers"></a>Contribute
+ </h5>
+ <ul>
+ <li>
+ <a
href="http://www.apache.org/dyn/closer.cgi/wicket/6.0.0-beta2">Wicket 6.x
BETA</a>
+ </li>
+ <li>
+ <a
href="http://ci.apache.org/projects/wicket/apidocs/6.0.x/" title="JavaDocs of
the latest beta release - 6.0.x">Wicket 6.x docs</a>
+ </li>
+ <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="http://fisheye6.atlassian.com/browse/wicket"
title="SVN 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>
+ </ul>
+</div>
+
+ <div id="contentbody">
+ <h1>Wicket 6.0.0-beta3 released</h1>
+ <p>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 give you 6.0.0 final.</p>
+
+<p>There are no more planned API breaks but if you find something that can be
made better now it the time to discuss it! The next planned release is 6.0.0
final, so speak now or forever be silenced (or learn to live with it until
7.0.0 comes out).</p>
+
+<p>Any feedback about the new features, their implementation and their
documentation is very welcome!</p>
+
+<h1 id='new_and_noteworthy_in_600beta3'>New and Noteworthy in 6.0.0-beta3</h1>
+
+<p><strong>NOTA BENE:</strong> the use of modules that are marked
experimental, by being part of the sub module
‘wicket-experimental’, are really that: experimental. These modules
can change, disappear or blow up your computer without notice and you really
use/depend on them at your own risk.</p>
+
+<h2 id='wicket_native_websockets'>Wicket Native Websockets</h2>
+
+<p>A new <strong>experimental</strong> module has been added to Wicket 6 -
Wicket Native WebSocket. This module adds support for using HTML5 WebSockets as
you may use Ajax in your Wicket applications.</p>
+
+<p>All you have to do is to add a WebSocketBehavior to your page and from
there on you can receive messages from the clients and push messages back to
them.</p>
+
+<p>At <a href='https://cwiki.apache.org/confluence/x/0vSoAQ'>our wiki</a> you
may find the documentation and a link to a demo application.</p>
+
+<p>If something is not clear feel free to ask your question in the mailing
lists and we will improve the documentation.</p>
+
+<h2 id='wicket_bootstrap'>Wicket Bootstrap</h2>
+
+<p>The <strong>experimental</strong> modules now contain a new module for
integration with Twitter’s Bootstrap. Currently this module only provides
a central way of using the Bootstrap resources. In the future we will provide
proper components and behaviors for the Bootstrap concepts.</p>
+
+<p>To use this new <strong>experimental</strong> module, add this to your
pom:</p>
+
+<pre><code><dependency>
+ <groupId>org.apache.wicket</groupId>
+ <artifactId>wicket-bootstrap</artifactId>
+ <version>0.1</version>
+</dependency></code></pre>
+
+<p>To add Bootstrap support to your pages, add this in the
<code>renderHead</code> method:</p>
+
+<pre><code>@Override
+public void renderHead(IHeaderResponse response) {
+ super.renderHead(response);
+
+ Bootstrap.renderHead(response);
+}</code></pre>
+
+<p>This will render a dependency to the Twitter bootstrap CSS and JS files,
including the required dependency to JQuery.</p>
+
+<h2 id='new_wicket_examples'>New Wicket Examples</h2>
+
+<p>We have started an effort to revamp the tried and tested Wicket Examples
and bring them into 2012. The new examples are located in the
<strong>experimental</strong> module.</p>
+
+<p>It is currently a copy of Twitter Bootstrap’s design but with Wicket
specific filling.</p>
+
+<p>You can test the examples by running the</p>
+
+<pre><code>wicket-examples-jar/src/test/java/Start.java</code></pre>
+
+<p>class in the default package.</p>
+
+<p>The examples will feature a component reference with typical use cases,
full examples such as Hello, World, and descriptions of the code in play.</p>
+
+<h2 id='wicket_atmosphere'>Wicket Atmosphere</h2>
+
+<p>Wicket Atmosphere in the experimental modules has seen an upgrade of the
Atmosphere dependency to 1.0.0-beta3. This has caused an incompatibility with
Jetty 7.6.3 (used with Wicket and the examples). To mitigate this, you need to
override either:</p>
+
+<ul>
+<li>the dependency on Jetty to 8.1.3 or newer, or</li>
+
+<li>the dependency on Atmosphere to 0.9.5 (0.9.6 and 0.9.7 are broken as
well)</li>
+</ul>
+
+<p>See <a
href='https://issues.apache.org/jira/browse/WICKET-4656'>WICKET-4656</a> for
more information regarding this issue.</p>
+
+<h1 id='this_release'>This release</h1>
+
+<ul>
+<li>Check the roadmap with a list of the major goals: <a
href='https://cwiki.apache.org/WICKET/wicket-60-roadmap.html'>6.0
roadmap</a></li>
+
+<li>And the migration guide with all major and some minor changes between
1.5.x and 6.x series: <a
href='http://s.apache.org/wicket-6.0-migration'>migration guide</a></li>
+
+<li>The Jira changelog of all closed ticket at Jira: <a
href='http://s.apache.org/wicket-6.0.0-beta3-changelog'>changelog</a></li>
+</ul>
+
+<p>To use it in Maven:</p>
+
+<pre><code><dependency>
+ <groupId>org.apache.wicket</groupId>
+ <artifactId>wicket-core</artifactId>
+ <version>6.0.0-beta3</version>
+</dependency></code></pre>
+
+<p>If you donât use a dependencies management build tool then you can
download the full distribution (including source) and build from source
yourself.</p>
+
+<p>Have fun,</p>
+
+<p>The Wicket team!</p>
+ </div>
+ <div id="clearer"></div>
+ <div id="footer"><span>
+Copyright © 2012 — 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>
Modified: wicket/common/site/trunk/_site/atom.xml
URL:
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/atom.xml?rev=1362415&r1=1362414&r2=1362415&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/atom.xml (original)
+++ wicket/common/site/trunk/_site/atom.xml Tue Jul 17 08:59:56 2012
@@ -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>2012-06-20T12:27:34+03:00</updated>
+ <updated>2012-07-17T10:58:14+02:00</updated>
<id>http://wicket.apache.org/</id>
<author>
<name>Apache Wicket</name>
@@ -13,9 +13,108 @@
<entry>
+ <title>Wicket 6.0.0-beta3 released</title>
+ <link
href="http://wicket.apache.org/2012/07/16/wicket-6.0.0-beta3-released.html"/>
+ <updated>2012-07-16T00:00:00+02:00</updated>
+ <id>http://wicket.apache.org/2012/07/16/wicket-6.0.0-beta3-released</id>
+ <content type="html"><p>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 give you 6.0.0 final.</p>
+
+<p>There are no more planned API breaks but if you find something that
can be made better now it the time to discuss it! The next planned release is
6.0.0 final, so speak now or forever be silenced (or learn to live with it
until 7.0.0 comes out).</p>
+
+<p>Any feedback about the new features, their implementation and their
documentation is very welcome!</p>
+
+<h1 id='new_and_noteworthy_in_600beta3'>New and Noteworthy in
6.0.0-beta3</h1>
+
+<p><strong>NOTA BENE:</strong> the use of modules that are
marked experimental, by being part of the sub module
&#8216;wicket-experimental&#8217;, are really that: experimental. These
modules can change, disappear or blow up your computer without notice and you
really use/depend on them at your own risk.</p>
+
+<h2 id='wicket_native_websockets'>Wicket Native Websockets</h2>
+
+<p>A new <strong>experimental</strong> module has been added
to Wicket 6 - Wicket Native WebSocket. This module adds support for using HTML5
WebSockets as you may use Ajax in your Wicket applications.</p>
+
+<p>All you have to do is to add a WebSocketBehavior to your page and
from there on you can receive messages from the clients and push messages back
to them.</p>
+
+<p>At <a href='https://cwiki.apache.org/confluence/x/0vSoAQ'>our
wiki</a> you may find the documentation and a link to a demo
application.</p>
+
+<p>If something is not clear feel free to ask your question in the
mailing lists and we will improve the documentation.</p>
+
+<h2 id='wicket_bootstrap'>Wicket Bootstrap</h2>
+
+<p>The <strong>experimental</strong> modules now contain a
new module for integration with Twitter&#8217;s Bootstrap. Currently this
module only provides a central way of using the Bootstrap resources. In the
future we will provide proper components and behaviors for the Bootstrap
concepts.</p>
+
+<p>To use this new <strong>experimental</strong> module, add
this to your pom:</p>
+
+<pre><code>&lt;dependency&gt;
+ &lt;groupId&gt;org.apache.wicket&lt;/groupId&gt;
+ &lt;artifactId&gt;wicket-bootstrap&lt;/artifactId&gt;
+ &lt;version&gt;0.1&lt;/version&gt;
+&lt;/dependency&gt;</code></pre>
+
+<p>To add Bootstrap support to your pages, add this in the
<code>renderHead</code> method:</p>
+
+<pre><code>@Override
+public void renderHead(IHeaderResponse response) {
+ super.renderHead(response);
+
+ Bootstrap.renderHead(response);
+}</code></pre>
+
+<p>This will render a dependency to the Twitter bootstrap CSS and JS
files, including the required dependency to JQuery.</p>
+
+<h2 id='new_wicket_examples'>New Wicket Examples</h2>
+
+<p>We have started an effort to revamp the tried and tested Wicket
Examples and bring them into 2012. The new examples are located in the
<strong>experimental</strong> module.</p>
+
+<p>It is currently a copy of Twitter Bootstrap&#8217;s design but
with Wicket specific filling.</p>
+
+<p>You can test the examples by running the</p>
+
+<pre><code>wicket-examples-jar/src/test/java/Start.java</code></pre>
+
+<p>class in the default package.</p>
+
+<p>The examples will feature a component reference with typical use
cases, full examples such as Hello, World, and descriptions of the code in
play.</p>
+
+<h2 id='wicket_atmosphere'>Wicket Atmosphere</h2>
+
+<p>Wicket Atmosphere in the experimental modules has seen an upgrade of
the Atmosphere dependency to 1.0.0-beta3. This has caused an incompatibility
with Jetty 7.6.3 (used with Wicket and the examples). To mitigate this, you
need to override either:</p>
+
+<ul>
+<li>the dependency on Jetty to 8.1.3 or newer, or</li>
+
+<li>the dependency on Atmosphere to 0.9.5 (0.9.6 and 0.9.7 are broken as
well)</li>
+</ul>
+
+<p>See <a
href='https://issues.apache.org/jira/browse/WICKET-4656'>WICKET-4656</a>
for more information regarding this issue.</p>
+
+<h1 id='this_release'>This release</h1>
+
+<ul>
+<li>Check the roadmap with a list of the major goals: <a
href='https://cwiki.apache.org/WICKET/wicket-60-roadmap.html'>6.0
roadmap</a></li>
+
+<li>And the migration guide with all major and some minor changes
between 1.5.x and 6.x series: <a
href='http://s.apache.org/wicket-6.0-migration'>migration
guide</a></li>
+
+<li>The Jira changelog of all closed ticket at Jira: <a
href='http://s.apache.org/wicket-6.0.0-beta3-changelog'>changelog</a></li>
+</ul>
+
+<p>To use it in Maven:</p>
+
+<pre><code>&lt;dependency&gt;
+ &lt;groupId&gt;org.apache.wicket&lt;/groupId&gt;
+ &lt;artifactId&gt;wicket-core&lt;/artifactId&gt;
+ &lt;version&gt;6.0.0-beta3&lt;/version&gt;
+&lt;/dependency&gt;</code></pre>
+
+<p>If you donât use a dependencies management build tool then you can
download the full distribution (including source) and build from source
yourself.</p>
+
+<p>Have fun,</p>
+
+<p>The Wicket team!</p></content>
+ </entry>
+
+ <entry>
<title>Wicket Native WebSockets support</title>
<link
href="http://wicket.apache.org/2012/06/20/wicket-native-websockets.html"/>
- <updated>2012-06-20T00:00:00+03:00</updated>
+ <updated>2012-06-20T00:00:00+02:00</updated>
<id>http://wicket.apache.org/2012/06/20/wicket-native-websockets</id>
<content type="html"><p>A new experimental module just landed in
Wicket&#8217;s Git repository - Wicket Native WebSocket. It provides the
support for HTML5 WebSockets in Wicket as the one for Ajax that you may already
use in your applications.</p>
@@ -29,7 +128,7 @@
<entry>
<title>Wicket 1.5.7 released</title>
<link
href="http://wicket.apache.org/2012/06/04/wicket-1.5.7-released.html"/>
- <updated>2012-06-04T00:00:00+03:00</updated>
+ <updated>2012-06-04T00:00:00+02:00</updated>
<id>http://wicket.apache.org/2012/06/04/wicket-1.5.7-released</id>
<content type="html"><p>This is the seventh maintenance release of
the Wicket 1.5.x series. This release brings over 26 bug fixes and
improvements.</p>
@@ -55,7 +154,7 @@
<entry>
<title>Wicket 6.0.0-beta2 released</title>
<link
href="http://wicket.apache.org/2012/05/29/wicket-6.0.0-beta2-released.html"/>
- <updated>2012-05-29T00:00:00+03:00</updated>
+ <updated>2012-05-29T00:00:00+02:00</updated>
<id>http://wicket.apache.org/2012/05/29/wicket-6.0.0-beta2-released</id>
<content type="html"><p>The Wicket team is proud to announce the
second beta release of the Wicket 6.x series. This release brings over many
improvements over the 1.5.x series.</p>
@@ -119,7 +218,7 @@
<entry>
<title>Wicket 1.5.6 released</title>
<link
href="http://wicket.apache.org/2012/05/07/wicket-1.5.6-released.html"/>
- <updated>2012-05-07T00:00:00+03:00</updated>
+ <updated>2012-05-07T00:00:00+02:00</updated>
<id>http://wicket.apache.org/2012/05/07/wicket-1.5.6-released</id>
<content type="html"><p>This is the sixth maintenance release of the
Wicket 1.5.x series. This release brings over 40 bug fixes and
improvements.</p>
@@ -145,7 +244,7 @@
<entry>
<title>Wicket 6.0.0-beta1 released</title>
<link
href="http://wicket.apache.org/2012/03/26/wicket-6.0.0-beta1-released.html"/>
- <updated>2012-03-26T00:00:00+03:00</updated>
+ <updated>2012-03-26T00:00:00+02:00</updated>
<id>http://wicket.apache.org/2012/03/26/wicket-6.0.0-beta1-released</id>
<content type="html"><p>The Wicket team is proud to announce the
first beta release of the Wicket 6.x series. This release brings over many
improvements over the 1.5.x series.</p>
@@ -173,7 +272,7 @@
<entry>
<title>CVE-2012-1089 - Apache Wicket serving of hidden files
vulnerability</title>
<link href="http://wicket.apache.org/2012/03/22/wicket-cve-2012-1089.html"/>
- <updated>2012-03-22T00:00:00+02:00</updated>
+ <updated>2012-03-22T00:00:00+01:00</updated>
<id>http://wicket.apache.org/2012/03/22/wicket-cve-2012-1089</id>
<content type="html"><p>Vendor: The Apache Software
Foundation</p>
@@ -201,7 +300,7 @@
<entry>
<title>CVE-2012-0047 - Apache Wicket XSS vulnerability via pageMapName
request parameter</title>
<link href="http://wicket.apache.org/2012/03/22/wicket-cve-2012-0047.html"/>
- <updated>2012-03-22T00:00:00+02:00</updated>
+ <updated>2012-03-22T00:00:00+01:00</updated>
<id>http://wicket.apache.org/2012/03/22/wicket-cve-2012-0047</id>
<content type="html"><p>Vendor: The Apache Software
Foundation</p>
@@ -219,7 +318,7 @@
<entry>
<title>Wicket 1.5.5 released</title>
<link
href="http://wicket.apache.org/2012/03/12/wicket-1.5.5-released.html"/>
- <updated>2012-03-12T00:00:00+02:00</updated>
+ <updated>2012-03-12T00:00:00+01:00</updated>
<id>http://wicket.apache.org/2012/03/12/wicket-1.5.5-released</id>
<content type="html"><p>This is the fifth maintenance release of the
Wicket 1.5.x series. This release brings over 50 bug fixes and
improvements.</p>
@@ -245,7 +344,7 @@
<entry>
<title>Wicket 1.4.20 released</title>
<link
href="http://wicket.apache.org/2012/03/12/wicket-1.4.20-released.html"/>
- <updated>2012-03-12T00:00:00+02:00</updated>
+ <updated>2012-03-12T00:00:00+01:00</updated>
<id>http://wicket.apache.org/2012/03/12/wicket-1.4.20-released</id>
<content type="html"><p>This is twentieth release of the Wicket 1.4.x
series. This is primarily a minor bugfix release on the 1.4.x (stable)
branch.</p>
@@ -268,30 +367,4 @@
</ul></content>
</entry>
- <entry>
- <title>Wicket 1.5.4 released</title>
- <link
href="http://wicket.apache.org/2012/01/23/wicket-1.5.4-released.html"/>
- <updated>2012-01-23T00:00:00+02:00</updated>
- <id>http://wicket.apache.org/2012/01/23/wicket-1.5.4-released</id>
- <content type="html"><p>This is the fourth maintenance release of the
Wicket 1.5.x series. This release brings over 68 bug fixes and
improvements.</p>
-
-<ul>
-<li><a
href='http://git-wip-us.apache.org/repos/asf/wicket/repo?p=wicket.git;a=shortlog;h=refs/tags/release/wicket-1.5.4'>Git
tag</a></li>
-
-<li><a
href='https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&amp;version=12319051'>Changelog</a></li>
-
-<li>To use in Maven:</li>
-</ul>
-<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>1.5.4<span
class='nt'>&lt;/version&gt;</span>
-<span class='nt'>&lt;/dependency&gt;</span>
-</code></pre>
-</div>
-<ul>
-<li>Download the <a
href='http://www.apache.org/dyn/closer.cgi/wicket/1.5.4'>full
distribution</a> (including source)</li>
-</ul></content>
- </entry>
-
</feed>
Modified: wicket/common/site/trunk/_site/index.html
URL:
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/index.html?rev=1362415&r1=1362414&r2=1362415&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/index.html (original)
+++ wicket/common/site/trunk/_site/index.html Tue Jul 17 08:59:56 2012
@@ -179,24 +179,39 @@
<h1>Security announcement: CVE-2011-2712</h1>
<p>A XSS vulnerability has been found in Apache Wicket version 1.4. This is
solved in Apache Wicket 1.4.18. Please upgrade your applications to this
release. Wicket versions 1.3.x and 1.5.x are not affected by this
vulnerability. <a href='2011/08/23/cve-2011-2712.html'>More information</a></p>
+<h1 id='wicket_600beta3_released'><a
href='/2012/07/16/wicket-6.0.0-beta3-released.html'>Wicket 6.0.0-beta3
released</a></h1>
+<p>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 give you
6.0.0 final.</p><p>There are no more planned API breaks but if you find
something that can be made better now it the time to discuss it! The next
planned release is 6.0.0 final, so speak now or forever be silenced (or learn
to live with it until 7.0.0 comes out).</p><p>Any feedback about the new
features, their implementation and their documentation is very welcome!</p><h1
id='new_and_noteworthy_in_600beta3'>New and Noteworthy in
6.0.0-beta3</h1><p><strong>NOTA BENE:</strong> the use of modules that are
marked experimental, by being part of the sub module
‘wicket-experimental’, are really that: experimental. These modules
can change, disappear or blow up your computer without notice and you really
use/depend on them at your own risk.</p><h2
id='wicket_native_websockets'>Wicket Native Websockets</h2><p>A new <stro
ng>experimental</strong> module has been added to Wicket 6 - Wicket Native
WebSocket. This module adds support for using HTML5 WebSockets as you may use
Ajax in your Wicket applications.</p><p>All you have to do is to add a
WebSocketBehavior to your page and from there on you can receive messages from
the clients and push messages back to them.</p><p>At <a
href='https://cwiki.apache.org/confluence/x/0vSoAQ'>our wiki</a> you may find
the documentation and a link to a demo application.</p><p>If something is not
clear feel free to ask your question in the mailing lists and we will improve
the documentation.</p><h2 id='wicket_bootstrap'>Wicket Bootstrap</h2><p>The
<strong>experimental</strong> modules now contain a new module for integration
with Twitter’s Bootstrap. Currently this module only provides a central
way of using the Bootstrap resources. In the future we will provide proper
components and behaviors for the Bootstrap concepts.</p><p>To use this new
<strong>exper
imental</strong> module, add this to your pom:</p><pre><code><dependency>
+ <groupId>org.apache.wicket</groupId>
+ <artifactId>wicket-bootstrap</artifactId>
+ <version>0.1</version>
+</dependency></code></pre><p>To add Bootstrap support to your pages, add
this in the <code>renderHead</code> method:</p><pre><code>@Override
+public void renderHead(IHeaderResponse response) {
+ super.renderHead(response);
+
+ Bootstrap.renderHead(response);
+}</code></pre><p>This will render a dependency to the Twitter bootstrap CSS
and JS files, including the required dependency to JQuery.</p><h2
id='new_wicket_examples'>New Wicket Examples</h2><p>We have started an effort
to revamp the tried and tested Wicket Examples and bring them into 2012. The
new examples are located in the <strong>experimental</strong> module.</p><p>It
is currently a copy of Twitter Bootstrap’s design but with Wicket
specific filling.</p><p>You can test the examples by running
the</p><pre><code>wicket-examples-jar/src/test/java/Start.java</code></pre><p>class
in the default package.</p><p>The examples will feature a component reference
with typical use cases, full examples such as Hello, World, and descriptions of
the code in play.</p><h2 id='wicket_atmosphere'>Wicket Atmosphere</h2><p>Wicket
Atmosphere in the experimental modules has seen an upgrade of the Atmosphere
dependency to 1.0.0-beta3. This has caused an incompatibility with Jetty 7.6.3
(u
sed with Wicket and the examples). To mitigate this, you need to override
either:</p><ul>
+<li>the dependency on Jetty to 8.1.3 or newer, or</li>
+
+<li>the dependency on Atmosphere to 0.9.5 (0.9.6 and 0.9.7 are broken as
well)</li>
+</ul><p>See <a
href='https://issues.apache.org/jira/browse/WICKET-4656'>WICKET-4656</a> for
more information regarding this issue.</p><h1 id='this_release'>This
release</h1><ul>
+<li>Check the roadmap with a list of the major goals: <a
href='https://cwiki.apache.org/WICKET/wicket-60-roadmap.html'>6.0
roadmap</a></li>
+
+<li>And the migration guide with all major and some minor changes between
1.5.x and 6.x series: <a
href='http://s.apache.org/wicket-6.0-migration'>migration guide</a></li>
+
+<li>The Jira changelog of all closed ticket at Jira: <a
href='http://s.apache.org/wicket-6.0.0-beta3-changelog'>changelog</a></li>
+</ul><p>To use it in Maven:</p><pre><code><dependency>
+ <groupId>org.apache.wicket</groupId>
+ <artifactId>wicket-core</artifactId>
+ <version>6.0.0-beta3</version>
+</dependency></code></pre><p>If you donât use a dependencies
management build tool then you can download the full distribution (including
source) and build from source yourself.</p><p>Have fun,</p><p>The Wicket
team!</p>
<h1 id='wicket_native_websockets_support'><a
href='/2012/06/20/wicket-native-websockets.html'>Wicket Native WebSockets
support</a></h1>
-<p>A new experimental module just landed in Wicket’s Git repository -
Wicket Native WebSocket. It provides the support for HTML5 WebSockets in Wicket
as the one for Ajax that you may already use in your applications.</p><p>The
full documentation is available at <a
href='https://cwiki.apache.org/confluence/x/0vSoAQ'>Native WebSocket Wiki</a> A
demo application is available at <a
href='https://github.com/martin-g/wicket-native-websocket-example'>Martin
Grigorov’s GitHub</a></p><p>Any feedback about the new module, its
implementation and its documentation is very welcome! Just ask your question in
Wicket’s mailing lists or IRC channel.</p><p>The Wicket team!</p>
-<h1 id='wicket_157_released'><a
href='/2012/06/04/wicket-1.5.7-released.html'>Wicket 1.5.7 released</a></h1>
-<p>This is the seventh maintenance release of the Wicket 1.5.x series. This
release brings over 26 bug fixes and improvements.</p><ul>
-<li><a
href='http://git-wip-us.apache.org/repos/asf/wicket/repo?p=wicket.git;a=shortlog;h=refs/tags/wicket-1.5.7'>Git
tag</a></li>
-
-<li><a
href='https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&version=12321241'>Changelog</a></li>
-
-<li>To use in Maven:</li>
-</ul><div class='highlight'><pre><code class='xml'><span
class='nt'><dependency></span>
- <span class='nt'><groupId></span>org.apache.wicket<span
class='nt'></groupId></span>
- <span class='nt'><artifactId></span>wicket-core<span
class='nt'></artifactId></span>
- <span class='nt'><version></span>1.5.7<span
class='nt'></version></span>
-<span class='nt'></dependency></span>
-</code></pre>
-</div><ul>
-<li>Download the <a
href='http://www.apache.org/dyn/closer.cgi/wicket/1.5.7'>full distribution</a>
(including source)</li>
-</ul><h1>Older news items</h1><ul>
+<p>A new experimental module just landed in Wicket’s Git repository -
Wicket Native WebSocket. It provides the support for HTML5 WebSockets in Wicket
as the one for Ajax that you may already use in your applications.</p><p>The
full documentation is available at <a
href='https://cwiki.apache.org/confluence/x/0vSoAQ'>Native WebSocket Wiki</a> A
demo application is available at <a
href='https://github.com/martin-g/wicket-native-websocket-example'>Martin
Grigorov’s GitHub</a></p><p>Any feedback about the new module, its
implementation and its documentation is very welcome! Just ask your question in
Wicket’s mailing lists or IRC channel.</p><p>The Wicket
team!</p><h1>Older news items</h1><ul>
+
+
+<li>
+ <a href='/2012/06/04/wicket-1.5.7-released.html'>Wicket 1.5.7
released</a> - <span>04 Jun 2012</span><br />
+ This is the seventh maintenance release of the Wicket 1.5.x series.
This release brings over 26 bug fixes and improvements. Git tag Changelog To
use...
+ <a href='/2012/06/04/wicket-1.5.7-released.html'>more</a></li>
<li>
@@ -252,17 +267,11 @@
This is the third maintenance release of the Wicket 1.5.x series. This
release brings over 40 bug fixes and improvements. Subversion tag Changelog To
use...
<a href='/2011/11/14/wicket-1.5.3-released.html'>more</a></li>
-
-<li>
- <a href='/2011/10/24/wicket-1.5.2-released.html'>Wicket 1.5.2
released</a> - <span>24 Oct 2011</span><br />
- This is the second maintenance release of the Wicket 1.5.x series.
This release brings over 25 bug fixes and 5 improvements. Subversion tag
Changelog To...
- <a href='/2011/10/24/wicket-1.5.2-released.html'>more</a></li>
-
</ul>
<h1 id='books_about_wicket'>Books about Wicket</h1>
<p>The following books are published regarding Apache Wicket (click a cover to
learn more about the book):</p>
-<a href='/learn/books/awc.html'><img src='/learn/books/awc.png' height='200px'
/></a><a href='/learn/books/wia.html'><img src='/learn/books/wia.png'
height='200px' /></a><a href='/learn/books/ewdww.html'><img
src='/learn/books/ewdww.png' height='200px' /></a><a
href='/learn/books/prowicket.html'><img src='/learn/books/prowicket.png'
height='200px' /></a><a href='/learn/books/kwij.html'><img
src='/learn/books/kwij.png' height='200px' /></a><a
href='/learn/books/praxisbuchwicket.html'><img
src='/learn/books/praxisbuchwicket.png' height='200px' /></a><a
href='/learn/books/wicket-jp.html'><img src='/learn/books/wicket-jp.png'
height='200px' /></a><a href='/learn/books/koda.html'><img
src='/learn/books/koda.jpg' height='200px' /></a>
+<a href='/learn/books/awc.html'><img height='200px' src='/learn/books/awc.png'
/></a><a href='/learn/books/wia.html'><img height='200px'
src='/learn/books/wia.png' /></a><a href='/learn/books/ewdww.html'><img
height='200px' src='/learn/books/ewdww.png' /></a><a
href='/learn/books/prowicket.html'><img height='200px'
src='/learn/books/prowicket.png' /></a><a href='/learn/books/kwij.html'><img
height='200px' src='/learn/books/kwij.png' /></a><a
href='/learn/books/praxisbuchwicket.html'><img height='200px'
src='/learn/books/praxisbuchwicket.png' /></a><a
href='/learn/books/wicket-jp.html'><img height='200px'
src='/learn/books/wicket-jp.png' /></a><a href='/learn/books/koda.html'><img
height='200px' src='/learn/books/koda.jpg' /></a>
</div>
<div id="clearer"></div>
<div id="footer"><span>
Modified: wicket/common/site/trunk/_site/start/quickstart.html
URL:
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/start/quickstart.html?rev=1362415&r1=1362414&r2=1362415&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/start/quickstart.html (original)
+++ wicket/common/site/trunk/_site/start/quickstart.html Tue Jul 17 08:59:56
2012
@@ -200,11 +200,11 @@
</script><div id='mvncmd'>
<div>
<label for='groupId' title='Base Package'>GroupId:</label>
- <input type='text' onkeyup='changeIt();' value='com.mycompany'
id='groupId' /><span title='Base Package'> (?)</span><br />
+ <input id='groupId' onkeyup='changeIt();' type='text'
value='com.mycompany' /><span title='Base Package'> (?)</span><br />
<label for='artifactId' title='Project
Name'>ArtifactId:</label>
- <input type='text' onkeyup='changeIt();' value='myproject'
id='artifactId' /><span title='Project Name'> (?)</span><br />
+ <input id='artifactId' onkeyup='changeIt();' type='text'
value='myproject' /><span title='Project Name'> (?)</span><br />
<label for='version' title='Wicket Version'>Version:</label>
- <select onchange='changeIt();' id='version'>
+ <select id='version' onchange='changeIt();'>
<option value='6.0-SNAPSHOT'>6.0-SNAPSHOT</option>
@@ -227,7 +227,7 @@
- <option value='6.0.0-beta2'>6.0.0-beta2</option>
+ <option value='6.0.0-beta3'>6.0.0-beta3</option>
</select><span title='Wicket Version'> (?)</span>