[jira] [Commented] (WICKET-6287) Switch from json.org to open-json

2016-12-12 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/WICKET-6287?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15744377#comment-15744377
 ] 

ASF GitHub Bot commented on WICKET-6287:


Github user klopfdreh commented on the issue:

https://github.com/apache/wicket/pull/193
  
Hi @tdunning - thanks for keeping us up to date with the changes!  

I am going to set the version to 1.6 so that we get the latest version.


> Switch from json.org to open-json
> -
>
> Key: WICKET-6287
> URL: https://issues.apache.org/jira/browse/WICKET-6287
> Project: Wicket
>  Issue Type: Task
>  Components: wicket, wicket-atmosphere, wicket-extensions
>Affects Versions: 8.0.0-M2, 6.25.0, 7.5.0
>Reporter: Tobias Soloschenko
>Assignee: Tobias Soloschenko
>Priority: Minor
>  Labels: license
> Fix For: 6.26, 7.6.0, 8.0.0-M3
>
>
> Because of license issues it is required to switch from json.org:
> https://github.com/stleary/JSON-java
> to open-json:
> https://github.com/tdunning/open-json
> For more information see:
> http://apache-wicket.1842946.n4.nabble.com/Fwd-JSON-License-and-Apache-Projects-td4676261.html



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


buildbot success in on wicket-branch-6.x

2016-12-12 Thread buildbot
The Buildbot has detected a restored build on builder wicket-branch-6.x while 
building wicket. Full details are available at:
https://ci.apache.org/builders/wicket-branch-6.x/builds/197

Buildbot URL: https://ci.apache.org/

Buildslave for this Build: bb_slave1_ubuntu

Build Reason: The SingleBranchScheduler scheduler named 
'on-wicket-branch-6.x-commit' triggered this build
Build Source Stamp: [branch wicket-6.x] 0519f72b4d57e6443b8a8d5805955fd0a516135c
Blamelist: Sven Meier 

Build succeeded!

Sincerely,
 -The Buildbot





[jira] [Resolved] (WICKET-6295) Clicking Link in BrowserInfoPage results in infinite request loop

2016-12-12 Thread Sven Meier (JIRA)

 [ 
https://issues.apache.org/jira/browse/WICKET-6295?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sven Meier resolved WICKET-6295.

Resolution: Fixed

I've backported parts of the changes from Wicket 7.x:
No redirect-loop should occur any longer

Note that if you click the continue link while the meta refresh is still 
loading, you'll end on the application's home page instead of the original 
destination.

This is inherent to the current implementation using an intercept page (on all 
branches): the meta refresh consumes the original destination :/.

> Clicking Link in BrowserInfoPage results in infinite request loop
> -
>
> Key: WICKET-6295
> URL: https://issues.apache.org/jira/browse/WICKET-6295
> Project: Wicket
>  Issue Type: Bug
>  Components: wicket
>Affects Versions: 6.25.0
>Reporter: Daniel Radünz
>Assignee: Sven Meier
> Fix For: 6.26
>
>
> Clicking on the link in the BrowserInfoPage used to gather extended browser 
> information results in an infinite loop in which the browser is alternating 
> between sending several GET and POST request per second for the 
> BrowserInfoPage.
> Based on QuickStart with Wicket 6.25:
> {code:Java|title=WicketApplication.java}
> ...
>   @Override
>   public void init()
>   {
>   super.init();
>   getRequestCycleSettings().setGatherExtendedBrowserInfo(true);
>   }
> ...
> {code}
> {code:Java|title=Homapage.java}
> public class HomePage extends WebPage {
>   private static final long serialVersionUID = 1L;
>   public HomePage(final PageParameters parameters) {
>   super(parameters);
>   // Get ClientInfo for example to conditionally add components
>   // further down in the code
>   ClientInfo clientInfo = Session.get().getClientInfo();
>   // Run code that takes a few seconds, just long enough to allow
>   // an impatient user to click the link in the BrowserInfoPage
>   try {
>   Thread.sleep(3000);
>   } catch (InterruptedException e) {
>   }
>   add(new Label("version", 
> getApplication().getFrameworkSettings().getVersion()));
> }
> }
> {code}
> Wicket 7 does not exhibit this behavior. 



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (WICKET-6295) Clicking Link in BrowserInfoPage results in infinite request loop

2016-12-12 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/WICKET-6295?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15743208#comment-15743208
 ] 

ASF subversion and git services commented on WICKET-6295:
-

Commit 0519f72b4d57e6443b8a8d5805955fd0a516135c in wicket's branch 
refs/heads/wicket-6.x from [~svenmeier]
[ https://git-wip-us.apache.org/repos/asf?p=wicket.git;h=0519f72 ]

WICKET-6295 fallback to home page
a previous request might have consumed the original destination - this could 
happen if the meta refresh fires but the user is still able to link on the link


> Clicking Link in BrowserInfoPage results in infinite request loop
> -
>
> Key: WICKET-6295
> URL: https://issues.apache.org/jira/browse/WICKET-6295
> Project: Wicket
>  Issue Type: Bug
>  Components: wicket
>Affects Versions: 6.25.0
>Reporter: Daniel Radünz
>Assignee: Sven Meier
> Fix For: 6.26
>
>
> Clicking on the link in the BrowserInfoPage used to gather extended browser 
> information results in an infinite loop in which the browser is alternating 
> between sending several GET and POST request per second for the 
> BrowserInfoPage.
> Based on QuickStart with Wicket 6.25:
> {code:Java|title=WicketApplication.java}
> ...
>   @Override
>   public void init()
>   {
>   super.init();
>   getRequestCycleSettings().setGatherExtendedBrowserInfo(true);
>   }
> ...
> {code}
> {code:Java|title=Homapage.java}
> public class HomePage extends WebPage {
>   private static final long serialVersionUID = 1L;
>   public HomePage(final PageParameters parameters) {
>   super(parameters);
>   // Get ClientInfo for example to conditionally add components
>   // further down in the code
>   ClientInfo clientInfo = Session.get().getClientInfo();
>   // Run code that takes a few seconds, just long enough to allow
>   // an impatient user to click the link in the BrowserInfoPage
>   try {
>   Thread.sleep(3000);
>   } catch (InterruptedException e) {
>   }
>   add(new Label("version", 
> getApplication().getFrameworkSettings().getVersion()));
> }
> }
> {code}
> Wicket 7 does not exhibit this behavior. 



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


wicket git commit: WICKET-6295 fallback to home page a previous request might have consumed the original destination - this could happen if the meta refresh fires but the user is still able to link on

2016-12-12 Thread svenmeier
Repository: wicket
Updated Branches:
  refs/heads/wicket-6.x ae7a0f8b9 -> 0519f72b4


WICKET-6295 fallback to home page
a previous request might have consumed the original destination - this could 
happen if the meta refresh fires but the user is still able to link on the link


Project: http://git-wip-us.apache.org/repos/asf/wicket/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/0519f72b
Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/0519f72b
Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/0519f72b

Branch: refs/heads/wicket-6.x
Commit: 0519f72b4d57e6443b8a8d5805955fd0a516135c
Parents: ae7a0f8
Author: Sven Meier 
Authored: Mon Dec 12 22:31:11 2016 +0100
Committer: Sven Meier 
Committed: Mon Dec 12 22:31:11 2016 +0100

--
 .../markup/html/pages/BrowserInfoPage.java  | 72 ++--
 1 file changed, 37 insertions(+), 35 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/wicket/blob/0519f72b/wicket-core/src/main/java/org/apache/wicket/markup/html/pages/BrowserInfoPage.java
--
diff --git 
a/wicket-core/src/main/java/org/apache/wicket/markup/html/pages/BrowserInfoPage.java
 
b/wicket-core/src/main/java/org/apache/wicket/markup/html/pages/BrowserInfoPage.java
index 373cbb5..3f82bf0 100644
--- 
a/wicket-core/src/main/java/org/apache/wicket/markup/html/pages/BrowserInfoPage.java
+++ 
b/wicket-core/src/main/java/org/apache/wicket/markup/html/pages/BrowserInfoPage.java
@@ -20,15 +20,13 @@ import org.apache.wicket.AttributeModifier;
 import org.apache.wicket.markup.head.IHeaderResponse;
 import org.apache.wicket.markup.head.OnLoadHeaderItem;
 import org.apache.wicket.markup.html.WebComponent;
-import org.apache.wicket.markup.html.WebMarkupContainer;
 import org.apache.wicket.markup.html.WebPage;
+import org.apache.wicket.markup.html.link.Link;
 import org.apache.wicket.model.AbstractReadOnlyModel;
 import org.apache.wicket.model.IModel;
 import org.apache.wicket.model.LoadableDetachableModel;
-import org.apache.wicket.protocol.http.ClientProperties;
 import org.apache.wicket.protocol.http.WebSession;
 import org.apache.wicket.protocol.http.request.WebClientInfo;
-import org.apache.wicket.request.cycle.RequestCycle;
 import org.apache.wicket.settings.IRequestCycleSettings;
 
 /**
@@ -53,28 +51,11 @@ public class BrowserInfoPage extends WebPage
private BrowserInfoForm browserInfoForm;
 
/**
-* Bookmarkable constructor. This is not for normal framework client 
use. It will be called
-* whenever JavaScript is not supported, and the browser info page's 
meta refresh fires to this
-* page. Prior to this, the other constructor should already have been 
called.
+* Bookmarkable constructor.
 */
public BrowserInfoPage()
{
initComps();
-   RequestCycle requestCycle = getRequestCycle();
-   WebSession session = (WebSession)getSession();
-   WebClientInfo clientInfo = session.getClientInfo();
-   if (clientInfo == null)
-   {
-   clientInfo = new WebClientInfo(requestCycle);
-   getSession().setClientInfo(clientInfo);
-   }
-   else
-   {
-   ClientProperties properties = 
clientInfo.getProperties();
-   properties.setJavaEnabled(false);
-   }
-
-   continueToOriginalDestination();
}
 
@Override
@@ -97,20 +78,18 @@ public class BrowserInfoPage extends WebPage
 */
private void initComps()
{
-   WebComponent meta = new WebComponent("meta");
-
-   final IModel urlModel = new 
LoadableDetachableModel()
-   {
-   private static final long serialVersionUID = 1L;
-
+   final IModel info = new 
LoadableDetachableModel() {
@Override
-   protected String load()
+   protected WebClientInfo load()
{
-   CharSequence url = 
urlFor(BrowserInfoPage.class, null);
-   return url.toString();
+   return new WebClientInfo(getRequestCycle());
}
};
 
+   final ContinueLink link = new ContinueLink("link", info);
+   add(link);
+
+   WebComponent meta = new WebComponent("meta");
meta.add(AttributeModifier.replace("content", new 
AbstractReadOnlyModel()
{
private static final long serialVersionUID = 1L;
@@ -118,14 +97,11 @@ public class BrowserInfoPage extends 

[03/15] wicket-site git commit: Added CVE-2016-6806 announcement

2016-12-12 Thread mgrigorov
http://git-wip-us.apache.org/repos/asf/wicket-site/blob/808021f1/content/learn/examples/guestbook.html
--
diff --git a/content/learn/examples/guestbook.html 
b/content/learn/examples/guestbook.html
index eb0ead4..b28250b 100644
--- a/content/learn/examples/guestbook.html
+++ b/content/learn/examples/guestbook.html
@@ -66,25 +66,25 @@ of this example.
 public class Comment implements IClusterable {
 private String text;
 private Date date = new Date();
-public Comment() {
+public Comment() {
 }
-public Comment(final Comment 
comment) {
+public Comment(final Comment 
comment) {
 this.text = comment.text;
 this.date = comment.date;
 }
-public String getText() {
+public String getText() {
 return text;
 }
-public void setText(String 
text) {
+public void setText(String 
text) {
 this.text = text;
 }
-public Date getDate() {
+public Date getDate() {
 return date;
 }
-public void setDate(Date 
date) {
+public void setDate(Date 
date) {
 this.date = date;
 }
-public String toString() {
+public String toString() {
 return "[Comment date = 
" + date + ", text = " + 
text + "]";
 }
 }
@@ -123,13 +123,13 @@ accomplished in just a few lines of code.
 /**
  * Constructor that is invoked when page is invoked without a session.
  */
-public GuestBook() {
+public GuestBook() {
 // Add comment form
 add(new CommentForm("commentForm"));
 // Add commentListView of existing comments
 add(new PropertyListViewComment("comments", 
commentList) {
 @Override
-public void populateItem(final ListItemComment 
listItem) {
+public void populateItem(final ListItemComment 
listItem) {
 listItem.add(new Label("date"));
 listItem.add(new MultiLineLabel("text"));
 }
@@ -139,7 +139,7 @@ accomplished in just a few lines of code.
  * A form that allows a user to add a comment.
  */
 public final class CommentForm extends FormValueMap 
{
-public CommentForm(final String 
id) {
+public CommentForm(final String id) {
 // Construct form with no validation 
listener
 super(id, new CompoundPropertyModelValueMap(new 
ValueMap()));
 // this is just to make the unit test happy
@@ -153,7 +153,7 @@ accomplished in just a few lines of code.
  * Show the resulting valid edit
  */
 @Override
-public final void onSubmit() 
{
+public final void onSubmit() {
 ValueMap values 
= getModelObject();
 // check if the honey pot is filled
 if (StringUtils.isNotBlank((String)values.get("comment"))) 
{
@@ -173,7 +173,7 @@ accomplished in just a few lines of code.
 /**
  * Clears the comments.
  */
-public static void clear() 
{
+public static void clear() 
{
 commentList.clear();
 }
 }
@@ -236,10 +236,10 @@ final treat the modifications to the web.xmlimport org.apache.wicket.Page;
 import org.apache.wicket.examples.WicketExampleApplication;
 public class GuestBookApplication extends WicketExampleApplication {
-public GuestBookApplication() {
+public GuestBookApplication() {
 }
 @Override
-public Class ? extends 
Page getHomePage() {
+public Class ? extends 
Page getHomePage() {
 return GuestBook.class;
 }
 }

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/808021f1/content/learn/examples/helloworld.html
--
diff --git a/content/learn/examples/helloworld.html 
b/content/learn/examples/helloworld.html
index 3a25549..8676bab 100644
--- a/content/learn/examples/helloworld.html
+++ b/content/learn/examples/helloworld.html
@@ -68,13 +68,13 @@ without having to go through the whole build-deploy 
cycle.
 defines what the home page is, and allows for some configuration.
 import org.apache.wicket.protocol.http.WebApplication;
 public class HelloWorldApplication extends WebApplication {
-public HelloWorldApplication() {
+public HelloWorldApplication() {
 }
 /**
  * @see org.apache.wicket.Application#getHomePage()
  */
 @Override
-public Class getHomePage() {
+public Class getHomePage() {
 return HelloWorld.class;
 }
 }
@@ -85,7 +85,7 @@ rendered by the HelloWorld page is returned.
 import org.apache.wicket.markup.html.WebPage;
 import org.apache.wicket.markup.html.basic.Label;
 public class HelloWorld extends WebPage {
-public HelloWorld() {
+public HelloWorld() {
 add(new Label("message", "Hello 
World!"));
 }
 }

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/808021f1/content/learn/examples/markupinheritance.html
--

[13/15] wicket-site git commit: Fixed link for new Wicket 8 guide

2016-12-12 Thread mgrigorov
Fixed link for new Wicket 8 guide


Project: http://git-wip-us.apache.org/repos/asf/wicket-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket-site/commit/45d19380
Tree: http://git-wip-us.apache.org/repos/asf/wicket-site/tree/45d19380
Diff: http://git-wip-us.apache.org/repos/asf/wicket-site/diff/45d19380

Branch: refs/heads/asf-site
Commit: 45d19380096ed50eb1905642072a0c9f7dadb56e
Parents: 60f0765
Author: Andrea Del Bene 
Authored: Sun Nov 20 16:19:40 2016 +0100
Committer: Martin Tzvetanov Grigorov 
Committed: Mon Dec 12 17:05:20 2016 +0100

--
 content/atom.xml|  2 +-
 content/contribute/index.html   |  2 +-
 content/contribute/patch.html   |  4 ++--
 content/contribute/release.html | 22 +++--
 content/doap.rdf|  2 +-
 content/help/email.html | 24 +--
 content/help/reportabug.html| 25 ++--
 content/learn/index.html|  5 ++--
 .../news/2010/08/11/wicket-1.4.10-released.html |  8 +++
 content/news/2010/08/index.html |  2 +-
 .../2011/01/22/wicket-1.5-RC1-released.html | 24 ---
 content/news/2011/01/index.html |  5 +---
 .../2011/02/25/wicket-1.5-rc2-released.html | 10 
 .../2011/04/02/wicket-1.5-RC3-released.html | 10 
 .../2011/05/11/wicket-1.5-RC4.2-released.html   | 10 
 .../2011/06/25/wicket-1.5-RC5.1-released.html   | 10 
 content/news/2011/08/28/1.5-RC7-released.html   | 12 --
 content/news/2011/index.html|  6 ++---
 content/news/2014/02/06/cve-2013-2055.html  | 10 
 content/news/2014/02/21/cve-2014-0043.html  |  8 +++
 content/news/2014/09/22/cve-2014-3526.html  | 10 
 content/news/2015/11/15/wicket-1.4.x-eol.html   | 14 +--
 content/news/2015/11/index.html |  7 +-
 content/news/index.html | 16 ++---
 learn/index.md  |  5 ++--
 25 files changed, 112 insertions(+), 141 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/wicket-site/blob/45d19380/content/atom.xml
--
diff --git a/content/atom.xml b/content/atom.xml
index 1cff1dc..dbbd3dd 100644
--- a/content/atom.xml
+++ b/content/atom.xml
@@ -3,7 +3,7 @@
 Apache Wicket
 http://wicket.apache.org/atom.xml; rel="self"/>
 http://wicket.apache.org/"/>
-2016-11-08T14:13:22+01:00
+2016-11-20T16:22:24+01:00
 http://wicket.apache.org/
 
 Apache Wicket

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/45d19380/content/contribute/index.html
--
diff --git a/content/contribute/index.html b/content/contribute/index.html
index 52540c5..c9988ae 100644
--- a/content/contribute/index.html
+++ b/content/contribute/index.html
@@ -169,7 +169,7 @@ changes and to integrate it into Wicket by creating a Pull 
Request.
 Create a Pull Request
 Make sure you have pushed your changes to your Github repository. To
 create a pull request on GitHub follow the instructions you can find https://help.github.com/articles/creating-a-pull-request/; 
rel="nofollow">here. Once you have finished to work on you pull
-request, send us an email using mailto:d...@wicket.apache.org;>devs
+request, send us an email using devs
 mailing list.
 The Github–Apache integration will automatically send a message to the
 Wicket project that a new pull request is waiting for us.

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/45d19380/content/contribute/patch.html
--
diff --git a/content/contribute/patch.html b/content/contribute/patch.html
index 6911b85..cae9406 100644
--- a/content/contribute/patch.html
+++ b/content/contribute/patch.html
@@ -66,7 +66,7 @@ fixed
 mailing list to see if it’s already been discussed
   
   
-Simply ask to the mailto:d...@wicket.apache.org;>devs 
mailing list
+Simply ask to the devs
 mailing list
 if you are unsure.
   
 
@@ -109,7 +109,7 @@ the format rules.
 To create a pull request on GitHub follow the instructions you can find
 https://help.github.com/articles/creating-a-pull-request/;>here. 
Once
 you have finished to work on you pull request, send us an email using
-mailto:d...@wicket.apache.org;>devs mailing list.
+devs
 mailing list.
 Create a patch
 If you prefer to work on our main repository, clone it 
with
 Git

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/45d19380/content/contribute/release.html

[04/15] wicket-site git commit: Added CVE-2016-6806 announcement

2016-12-12 Thread mgrigorov
Added CVE-2016-6806 announcement


Project: http://git-wip-us.apache.org/repos/asf/wicket-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket-site/commit/808021f1
Tree: http://git-wip-us.apache.org/repos/asf/wicket-site/tree/808021f1
Diff: http://git-wip-us.apache.org/repos/asf/wicket-site/diff/808021f1

Branch: refs/heads/asf-site
Commit: 808021f15692df24dca218897dabe637028aef49
Parents: 8324a68
Author: Martijn Dashorst 
Authored: Tue Nov 8 14:14:15 2016 +0100
Committer: Martin Tzvetanov Grigorov 
Committed: Mon Dec 12 17:05:20 2016 +0100

--
 2016/_posts/2016-11-08-cve-2016-6806.md |  33 
 content/atom.xml| 158 +
 content/contribute/build.html   |  22 +--
 content/contribute/ides.html|   6 +-
 content/contribute/index.html   |   2 +-
 content/contribute/patch.html   |   6 +-
 content/contribute/release.html |  74 
 content/contribute/write.html   |   4 +-
 content/help/email.html |  24 +--
 content/help/reportabug.html|  25 +--
 content/index.html  |  66 
 content/learn/examples/ajaxcounter.html |  18 +-
 content/learn/examples/dropdownchoice.html  |   8 +-
 content/learn/examples/guestbook.html   |  28 +--
 content/learn/examples/helloworld.html  |   6 +-
 content/learn/examples/markupinheritance.html   |   6 +-
 content/learn/examples/navomatic.html   |  10 +-
 content/learn/examples/usingfragments.html  |  10 +-
 content/learn/index.html|   6 +-
 ...-1.4-takes-typesafety-to-the-next-level.html |   8 +-
 content/news/2009/07/index.html |   1 +
 content/news/2009/08/index.html |   1 +
 content/news/2009/10/index.html |   1 +
 content/news/2009/12/index.html |   1 +
 content/news/2009/index.html|   1 +
 content/news/2010/02/index.html |   1 +
 content/news/2010/03/index.html |   1 +
 content/news/2010/05/index.html |   1 +
 .../news/2010/08/11/wicket-1.4.10-released.html |  12 +-
 content/news/2010/08/index.html |   3 +-
 content/news/2010/09/index.html |   1 +
 content/news/2010/11/index.html |   1 +
 content/news/2010/12/index.html |   1 +
 content/news/2010/index.html|   1 +
 .../2011/01/22/wicket-1.5-RC1-released.html |  24 +--
 content/news/2011/01/index.html |   6 +-
 .../2011/02/25/wicket-1.5-rc2-released.html |  10 +-
 content/news/2011/02/index.html |   1 +
 content/news/2011/03/index.html |   1 +
 .../2011/04/02/wicket-1.5-RC3-released.html |  10 +-
 content/news/2011/04/index.html |   1 +
 .../2011/05/11/wicket-1.5-RC4.2-released.html   |  10 +-
 content/news/2011/05/index.html |   1 +
 .../2011/06/25/wicket-1.5-RC5.1-released.html   |  10 +-
 content/news/2011/06/index.html |   1 +
 content/news/2011/08/23/cve-2011-2712.html  |   2 +-
 content/news/2011/08/28/1.5-RC7-released.html   |  12 +-
 content/news/2011/08/index.html |   1 +
 .../news/2011/09/07/wicket-1.5-released.html|   8 +-
 content/news/2011/09/index.html |   1 +
 content/news/2011/10/index.html |   1 +
 content/news/2011/11/index.html |   1 +
 content/news/2011/index.html|   3 +-
 content/news/2012/01/index.html |   1 +
 .../news/2012/03/22/wicket-cve-2012-1089.html   |   2 +-
 content/news/2012/03/index.html |   1 +
 .../2012/05/29/wicket-6.0.0-beta2-released.html |   4 +-
 content/news/2012/05/index.html |   1 +
 content/news/2012/06/index.html |   1 +
 content/news/2012/07/index.html |   1 +
 content/news/2012/08/index.html |   1 +
 content/news/2012/09/index.html |   1 +
 content/news/2012/10/index.html |   1 +
 content/news/2012/11/index.html |   1 +
 content/news/2012/12/index.html |   1 +
 content/news/2012/index.html|   1 +
 .../news/2013/01/23/wicket-6.5.0-released.html  |   2 +-
 content/news/2013/01/index.html |   1 +
 content/news/2013/02/index.html |   1 +
 content/news/2013/03/index.html |   1 +
 content/news/2013/04/index.html |   1 +
 content/news/2013/05/index.html |   1 +
 .../news/2013/06/27/wicket-6.9.0-released.html  |   2 +-
 content/news/2013/06/index.html |   1 +
 

[10/15] wicket-site git commit: Site updated with the new release wave

2016-12-12 Thread mgrigorov
Site updated with the new release wave


Project: http://git-wip-us.apache.org/repos/asf/wicket-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket-site/commit/b6aff8f8
Tree: http://git-wip-us.apache.org/repos/asf/wicket-site/tree/b6aff8f8
Diff: http://git-wip-us.apache.org/repos/asf/wicket-site/diff/b6aff8f8

Branch: refs/heads/asf-site
Commit: b6aff8f878366eb3623134d426644d6b66e14d7a
Parents: 0830261
Author: Andrea Del Bene 
Authored: Wed Oct 26 21:48:38 2016 +0200
Committer: Martin Tzvetanov Grigorov 
Committed: Mon Dec 12 17:05:20 2016 +0100

--
 .../_posts/2016-10-26-wicket-6.25.0-released.md | 111 
 2016/_posts/2016-10-26-wicket-7.5.0-released.md | 134 +
 .../2016-10-26-wicket-8.0.0-M2-released.md  | 147 +
 _config.yml |  12 +-
 content/archetype-catalog.xml   |  27 +-
 content/atom.xml| 599 +--
 content/doap.rdf|   4 +-
 content/help/index.html |  12 +-
 content/index.html  | 121 ++--
 content/learn/index.html|   6 +-
 content/news/2009/07/index.html |   1 +
 content/news/2009/08/index.html |   1 +
 content/news/2009/10/index.html |   1 +
 content/news/2009/12/index.html |   1 +
 content/news/2009/index.html|   1 +
 content/news/2010/02/index.html |   1 +
 content/news/2010/03/index.html |   1 +
 content/news/2010/05/index.html |   1 +
 content/news/2010/08/index.html |   1 +
 content/news/2010/09/index.html |   1 +
 content/news/2010/11/index.html |   1 +
 content/news/2010/12/index.html |   1 +
 content/news/2010/index.html|   1 +
 content/news/2011/01/index.html |   1 +
 content/news/2011/02/index.html |   1 +
 content/news/2011/03/index.html |   1 +
 content/news/2011/04/index.html |   1 +
 content/news/2011/05/index.html |   1 +
 content/news/2011/06/index.html |   1 +
 content/news/2011/08/index.html |   1 +
 content/news/2011/09/index.html |   1 +
 content/news/2011/10/index.html |   1 +
 content/news/2011/11/index.html |   1 +
 content/news/2011/index.html|   1 +
 content/news/2012/01/index.html |   1 +
 content/news/2012/03/index.html |   1 +
 content/news/2012/05/index.html |   1 +
 content/news/2012/06/index.html |   1 +
 content/news/2012/07/index.html |   1 +
 content/news/2012/08/index.html |   1 +
 content/news/2012/09/index.html |   1 +
 content/news/2012/10/index.html |   1 +
 content/news/2012/11/index.html |   1 +
 content/news/2012/12/index.html |   1 +
 content/news/2012/index.html|   1 +
 content/news/2013/01/index.html |   1 +
 content/news/2013/02/index.html |   1 +
 content/news/2013/03/index.html |   1 +
 content/news/2013/04/index.html |   1 +
 content/news/2013/05/index.html |   1 +
 content/news/2013/06/index.html |   1 +
 content/news/2013/07/index.html |   1 +
 content/news/2013/08/index.html |   1 +
 content/news/2013/09/index.html |   1 +
 content/news/2013/11/index.html |   1 +
 content/news/2013/index.html|   1 +
 content/news/2014/01/index.html |   1 +
 content/news/2014/02/index.html |   1 +
 content/news/2014/04/index.html |   1 +
 content/news/2014/06/index.html |   1 +
 content/news/2014/08/index.html |   1 +
 content/news/2014/09/index.html |   1 +
 content/news/2014/11/index.html |   1 +
 content/news/2014/index.html|   1 +
 content/news/2015/02/index.html |   1 +
 content/news/2015/06/index.html |   1 +
 content/news/2015/07/index.html |   1 +
 content/news/2015/10/index.html |   1 +
 content/news/2015/11/index.html |   1 +
 content/news/2015/index.html|   1 +
 content/news/2016/01/index.html |   1 +
 content/news/2016/02/index.html |   1 +
 content/news/2016/03/index.html |   1 +
 content/news/2016/05/index.html |   1 +
 content/news/2016/07/index.html |   1 +
 

[01/15] wicket-site git commit: Updated URL for Wicket Source & added Wicket Source NetBeans plugin

2016-12-12 Thread mgrigorov
Repository: wicket-site
Updated Branches:
  refs/heads/asf-site 1f99e17a7 -> 43935ae59


Updated URL for Wicket Source & added Wicket Source NetBeans plugin


Project: http://git-wip-us.apache.org/repos/asf/wicket-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket-site/commit/08302613
Tree: http://git-wip-us.apache.org/repos/asf/wicket-site/tree/08302613
Diff: http://git-wip-us.apache.org/repos/asf/wicket-site/diff/08302613

Branch: refs/heads/asf-site
Commit: 083026130ecc21e2ff326f2eeffbc3c57ad00581
Parents: fdbde68
Author: jrohde 
Authored: Tue Oct 11 11:28:10 2016 +0200
Committer: jrohde 
Committed: Tue Oct 11 11:28:10 2016 +0200

--
 contribute/ides.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/wicket-site/blob/08302613/contribute/ides.md
--
diff --git a/contribute/ides.md b/contribute/ides.md
index 46a8100..a833f7e 100644
--- a/contribute/ides.md
+++ b/contribute/ides.md
@@ -8,8 +8,8 @@ title: IDE Support for Wicket development
 For all leading IDE's support is under development. Here's a list of efforts
 for the major IDE's.
 
-* Eclipse: [Qwickie](http://code.google.com/p/qwickie), [Wicket 
Source](https://github.com/42Lines/wicket-source/wiki)
-* Netbeans: [NB Wicket 
Support](http://plugins.netbeans.org/plugin/3586/wicket-1-4-support)
+* Eclipse: [Qwickie](http://code.google.com/p/qwickie), [Wicket 
Source](https://github.com/jennybrown8/wicket-source)
+* Netbeans: [NB Wicket 
Support](http://plugins.netbeans.org/plugin/3586/wicket-1-4-support), [Wicket 
Source](https://github.com/JoachimRohde/NBWicketSourcePlugin)
 * IntelliJ IDEA: [Wicket Forge](http://wicketforge.googlecode.com/), [Wicket 
Source](https://github.com/armhold/wicket-source-intellij)
 
 These projects are not maintained or supported by the core Wicket team, but



[12/15] wicket-site git commit: Updated description in the DOAP.

2016-12-12 Thread mgrigorov
Updated description in the DOAP.


Project: http://git-wip-us.apache.org/repos/asf/wicket-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket-site/commit/60f07653
Tree: http://git-wip-us.apache.org/repos/asf/wicket-site/tree/60f07653
Diff: http://git-wip-us.apache.org/repos/asf/wicket-site/diff/60f07653

Branch: refs/heads/asf-site
Commit: 60f076530b9ca5079b006731804574819d8a740f
Parents: 808021f
Author: Martijn Dashorst 
Authored: Fri Nov 18 11:28:48 2016 +0100
Committer: Martin Tzvetanov Grigorov 
Committed: Mon Dec 12 17:05:20 2016 +0100

--
 doap.rdf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/wicket-site/blob/60f07653/doap.rdf
--
diff --git a/doap.rdf b/doap.rdf
index b8c6d90..1c6bb17 100644
--- a/doap.rdf
+++ b/doap.rdf
@@ -19,7 +19,7 @@ layout: null
http://wicket.apache.org"/>
http://wicket.apache.org/"/>
Apache Wicket is an open source Java component 
oriented 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.
+   Write maintainable, secure and scalable web 
applications using just Java and HTML. Invented in 2004, Wicket is one of the 
few survivors of the Java serverside web framework wars of the mid 2000's, and 
a proud member of the Apache Software Foundation.
http://issues.apache.org/jira/browse/WICKET"/>
http://wicket.apache.org"/>
http://wicket.apache.org"/>



[14/15] wicket-site git commit: Updated URL for Wicket Source & added Wicket Source NetBeans plugin

2016-12-12 Thread mgrigorov
Updated URL for Wicket Source & added Wicket Source NetBeans plugin

Fixes #8


Project: http://git-wip-us.apache.org/repos/asf/wicket-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket-site/commit/7a88a5ea
Tree: http://git-wip-us.apache.org/repos/asf/wicket-site/tree/7a88a5ea
Diff: http://git-wip-us.apache.org/repos/asf/wicket-site/diff/7a88a5ea

Branch: refs/heads/asf-site
Commit: 7a88a5ea2b30322fd608e566132cc8bc3e4cd319
Parents: 7417452
Author: Martin Tzvetanov Grigorov 
Authored: Mon Dec 12 17:07:22 2016 +0100
Committer: Martin Tzvetanov Grigorov 
Committed: Mon Dec 12 17:07:22 2016 +0100

--
 content/atom.xml|  3 +--
 content/contribute/ides.html|  4 ++--
 content/index.html  |  4 ++--
 content/learn/examples/dropdownchoice.html  |  2 +-
 .../2011/01/22/wicket-1.5-RC1-released.html |  2 +-
 .../2011/02/25/wicket-1.5-rc2-released.html |  2 +-
 .../2011/04/02/wicket-1.5-RC3-released.html |  2 +-
 .../2011/05/11/wicket-1.5-RC4.2-released.html   |  2 +-
 .../2011/06/25/wicket-1.5-RC5.1-released.html   |  2 +-
 content/news/2011/08/28/1.5-RC7-released.html   |  2 +-
 content/news/2011/index.html|  6 ++---
 content/news/2014/02/06/cve-2013-2055.html  |  2 +-
 content/news/2014/02/21/cve-2014-0043.html  |  2 +-
 content/news/2014/09/22/cve-2014-3526.html  |  2 +-
 .../news/2016/10/26/wicket-6.25.0-released.html | 16 ++---
 .../news/2016/10/26/wicket-7.5.0-released.html  | 16 ++---
 .../2016/10/26/wicket-8.0.0-M2-released.html| 16 ++---
 content/news/2016/10/index.html | 16 ++---
 content/news/2016/11/08/cve-2016-6806.html  | 16 ++---
 content/news/2016/11/index.html | 16 ++---
 content/news/2016/index.html| 24 ++--
 content/start/wicket-7.x.html   |  2 +-
 content/start/wicket-8.x.html   |  2 +-
 23 files changed, 80 insertions(+), 81 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/wicket-site/blob/7a88a5ea/content/atom.xml
--
diff --git a/content/atom.xml b/content/atom.xml
index 3c3aa71..6a21a98 100644
--- a/content/atom.xml
+++ b/content/atom.xml
@@ -3,7 +3,7 @@
 Apache Wicket
 http://wicket.apache.org/atom.xml; rel="self"/>
 http://wicket.apache.org/"/>
-2016-11-27T23:15:58+01:00
+2016-12-12T17:05:46+01:00
 http://wicket.apache.org/
 
 Apache Wicket
@@ -352,7 +352,6 @@ NVYAn0VNdt96cd5VmIW7nIFSb0PidYbH
 ul
   li[WICKET-5623] - Custom Getters and Setters for 
PropertyResolver/li
 /ul
-
 
 
 

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/7a88a5ea/content/contribute/ides.html
--
diff --git a/content/contribute/ides.html b/content/contribute/ides.html
index 2888501..a8f5d26 100644
--- a/content/contribute/ides.html
+++ b/content/contribute/ides.html
@@ -53,8 +53,8 @@
 For all leading IDE’s support is under development. Here’s a list of 
efforts
 for the major IDE’s.
 
-  Eclipse: http://code.google.com/p/qwickie;>Qwickie, https://github.com/42Lines/wicket-source/wiki;>Wicket Source
-  Netbeans: http://plugins.netbeans.org/plugin/3586/wicket-1-4-support;>NB Wicket 
Support
+  Eclipse: http://code.google.com/p/qwickie;>Qwickie, https://github.com/jennybrown8/wicket-source;>Wicket Source
+  Netbeans: http://plugins.netbeans.org/plugin/3586/wicket-1-4-support;>NB Wicket 
Support, https://github.com/JoachimRohde/NBWicketSourcePlugin;>Wicket 
Source
   IntelliJ IDEA: http://wicketforge.googlecode.com/;>Wicket 
Forge, https://github.com/armhold/wicket-source-intellij;>Wicket 
Source
 
 These projects are not maintained or supported by the core Wicket team, but

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/7a88a5ea/content/index.html
--
diff --git a/content/index.html b/content/index.html
index 4956967..7386eb8 100644
--- a/content/index.html
+++ b/content/index.html
@@ -248,7 +248,7 @@ side targets were subjected to the CSRF check. This was 
also fixed.
 
 Users of Wicket verions prior to 6.20 are not affected because the 
particular
 component was introduced in 6.20.0.
-Read more...
+Read more... 
 
 
 Apache Wicket 8.0.0-M2 released
@@ -276,7 +276,7 @@ convenience binary package
   Source: http://www.apache.org/dyn/closer.cgi/wicket/8.0.0-M2;>8.0.0-M2 source 
download
   Binary: http://www.apache.org/dyn/closer.cgi/wicket/8.0.0-M2/binaries;>8.0.0-M2 
binary download
 
-Read 
more...
+Read 
more... 
 
 
 


[06/15] wicket-site git commit: Unified download links for wicket 6.x, 7.x, 8.x

2016-12-12 Thread mgrigorov
http://git-wip-us.apache.org/repos/asf/wicket-site/blob/8324a683/content/contribute/release.html
--
diff --git a/content/contribute/release.html b/content/contribute/release.html
index e5eca0f..404f83b 100644
--- a/content/contribute/release.html
+++ b/content/contribute/release.html
@@ -75,24 +75,24 @@
 
   Start gpg-agent as a daemon (OS X, using homebrew installation of gpg, 
gpg-agent, pinentry):
 
-eval `gpg-agent --daemon 
--pinentry-program /usr/local/bin/pinentry`
+eval `gpg-agent --daemon --pinentry-program 
/usr/local/bin/pinentry`
 
   Create an environment variable such that you can copy/paste several of 
the following commands (substitute 6.0.0 with the number you’re actually 
going to release):
 
-export 
NEWVERSION=6.0.0
+export NEWVERSION=6.0.0
 
   Sign pom.xml such that gpg-agent has enabled your key (and remove the 
.asc file). This triggers the pinentry program and sets the stage for 
gpg-agent:
 
 gpg --armor --detach-sign --use-agent --sign pom.xml
-rm pom.xml.asc
+rm pom.xml.asc
 
   Create release branch:
 
-mvn release:branch 
-DbranchName=build/wicket-$NEWVERSION
+mvn release:branch 
-DbranchName=build/wicket-$NEWVERSION
 
   Checkout the release branch:
 
-git checkout 
build/wicket-$NEWVERSION
+git checkout build/wicket-$NEWVERSION
 
   
 Update archetypes/quickstart/src/main/archetype-resources/pom.xml to 
use NEWVERSION of Wicket and commit
@@ -106,16 +106,16 @@
 
   
 
-mvn 
release:prepare
+mvn release:prepare
 
   Remove last commit such that HEAD points to the NEWVERSION release, not 
the new development version
 
-git reset HEAD^ 
--hard
+git reset HEAD^ --hard
 
   Create source archive:
 
 git archive --format=tar.gz 
--prefix=apache-wicket-$NEWVERSION/ -o apache-wicket-$NEWVERSION.tar.gz 
wicket-$NEWVERSION
-git archive --format=zip --prefix=apache-wicket-$NEWVERSION/ 
-o apache-wicket-$NEWVERSION.zip wicket-$NEWVERSION
+git archive --format=zip --prefix=apache-wicket-$NEWVERSION/ -o 
apache-wicket-$NEWVERSION.zip wicket-$NEWVERSION
 
   NOTE 1 the trailing ‘/’ after –prefix=NEWVERSION 
is vital for the tarball
   NOTE 2 you can ignore the gpg generated messages 
telling ‘You need a passphrase to unlock the secret key for’, unless an 
error occurred—these messages are not error messages
@@ -126,21 +126,21 @@ gpg --armor --detach-sign --use-agent --sign 
apache-wicket-$NEWVERSION.zip
 gpg --print-md SHA1 apache-wicket-$NEWVERSION.tar.gz  
apache-wicket-$NEWVERSION.tar.gz.sha
 gpg --print-md MD5  apache-wicket-$NEWVERSION.tar.gz  
apache-wicket-$NEWVERSION.tar.gz.md5
 gpg --print-md SHA1 apache-wicket-$NEWVERSION.zip  
apache-wicket-$NEWVERSION.zip.sha
-gpg --print-md MD5  apache-wicket-$NEWVERSION.zip  
apache-wicket-$NEWVERSION.zip.md5
+gpg --print-md MD5  apache-wicket-$NEWVERSION.zip  
apache-wicket-$NEWVERSION.zip.md5
 To sign the tag (overwrites the maven generated tag), execute:
-git tag -s --force 
wicket-$NEWVERSION
+git tag -s --force wicket-$NEWVERSION
 Staging the build
 ssh apache...@people.apache.org mkdir 
public_html/wicket-$NEWVERSION
-scp apache-wicket-* 
apache...@people.apache.org:public_html/wicket-$NEWVERSION
+scp apache-wicket-* 
apache...@people.apache.org:public_html/wicket-$NEWVERSION
 TODO figure out how to let release:perform work from a local checkout, 
such that we can actually stage the build instead of having to push 
the tag to our git repo.
 The following steps are ONLY necessary as long as the above TODO has not 
been resolved.
 git push origin 
build/wicket-$NEWVERSION:refs/heads/build/wicket-$NEWVERSION
-git push -tags origin
+git push -tags origin
 The step below uploads the artifacts to a staging area for Maven.
 * assumes you have an Apache nexus account
 * will checkout a fresh copy and build it (ask Maven for why)
 * artifacts will have different signature than in previous release:prepare 
build (due to times changing)
-mvn 
release:perform
+mvn release:perform
 This will upload artifacts and signatures to Apache nexus in a staging 
repository.
 Create a binary release
 As we don’t vote on binary packages, but do want to cater to developers 
not using Maven, it is very convenient to create a download for non-Maven 
users.
@@ -163,14 +163,14 @@ gpg --print-md MD5  apache-wicket-$NEWVERSION-bin.tar.gz 
 apache-wicket-$NEW
 gpg --print-md SHA1 apache-wicket-$NEWVERSION-bin.zip  
apache-wicket-$NEWVERSION.-binzip.sha
 gpg --print-md MD5  apache-wicket-$NEWVERSION-bin.zip  
apache-wicket-$NEWVERSION-bin.zip.md5
 ssh apache...@people.apache.org mkdir public_html/wicket-$NEWVERSION/bin
-scp apache-wicket-*bin.* 
apache...@people.apache.org:public_html/wicket-$NEWVERSION/bin
+scp apache-wicket-*bin.* 
apache...@people.apache.org:public_html/wicket-$NEWVERSION/bin
 This binary release contains all required files to comply with the release 
policy, and the binary artefacts generated by our Maven release build, 
including the experimental 

[09/15] wicket-site git commit: Site updated with the new release wave

2016-12-12 Thread mgrigorov
http://git-wip-us.apache.org/repos/asf/wicket-site/blob/b6aff8f8/content/news/2011/05/index.html
--
diff --git a/content/news/2011/05/index.html b/content/news/2011/05/index.html
index 378e85f..7b463c8 100644
--- a/content/news/2011/05/index.html
+++ b/content/news/2011/05/index.html
@@ -66,6 +66,7 @@ give away a free copy of the ebook version of http://link.packtpub.com/
 2016
 
 All of 2016
+October
 August
 July
 May

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/b6aff8f8/content/news/2011/06/index.html
--
diff --git a/content/news/2011/06/index.html b/content/news/2011/06/index.html
index 76eac54..2ac03b7 100644
--- a/content/news/2011/06/index.html
+++ b/content/news/2011/06/index.html
@@ -58,6 +58,7 @@
 2016
 
 All of 2016
+October
 August
 July
 May

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/b6aff8f8/content/news/2011/08/index.html
--
diff --git a/content/news/2011/08/index.html b/content/news/2011/08/index.html
index 7fc71bb..ab8913c 100644
--- a/content/news/2011/08/index.html
+++ b/content/news/2011/08/index.html
@@ -84,6 +84,7 @@ With multi window support application configuration and 
special query parameters
 2016
 
 All of 2016
+October
 August
 July
 May

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/b6aff8f8/content/news/2011/09/index.html
--
diff --git a/content/news/2011/09/index.html b/content/news/2011/09/index.html
index e313d9b..391de8e 100644
--- a/content/news/2011/09/index.html
+++ b/content/news/2011/09/index.html
@@ -70,6 +70,7 @@
 2016
 
 All of 2016
+October
 August
 July
 May

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/b6aff8f8/content/news/2011/10/index.html
--
diff --git a/content/news/2011/10/index.html b/content/news/2011/10/index.html
index 0c8e62b..3fe6c38 100644
--- a/content/news/2011/10/index.html
+++ b/content/news/2011/10/index.html
@@ -77,6 +77,7 @@
 2016
 
 All of 2016
+October
 August
 July
 May

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/b6aff8f8/content/news/2011/11/index.html
--
diff --git a/content/news/2011/11/index.html b/content/news/2011/11/index.html
index f06aab2..dd8fc9b 100644
--- a/content/news/2011/11/index.html
+++ b/content/news/2011/11/index.html
@@ -64,6 +64,7 @@
 2016
 
 All of 2016
+October
 August
 July
 May

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/b6aff8f8/content/news/2011/index.html
--
diff --git a/content/news/2011/index.html b/content/news/2011/index.html
index 5c52f03..95b42fc 100644
--- a/content/news/2011/index.html
+++ b/content/news/2011/index.html
@@ -215,6 +215,7 @@
 2016
 
 All of 2016
+October
 August
 July
 May

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/b6aff8f8/content/news/2012/01/index.html
--
diff --git a/content/news/2012/01/index.html b/content/news/2012/01/index.html
index 8fec7d4..75a2aa3 100644
--- a/content/news/2012/01/index.html
+++ b/content/news/2012/01/index.html
@@ -64,6 +64,7 @@
 2016
 
 All of 2016
+October
 August
 July
 May

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/b6aff8f8/content/news/2012/03/index.html
--
diff --git a/content/news/2012/03/index.html b/content/news/2012/03/index.html
index b9a04b1..7fb0315 100644
--- a/content/news/2012/03/index.html
+++ b/content/news/2012/03/index.html
@@ -112,6 +112,7 @@ This release brings over many improvements over the 1.5.x 
series.
 2016
 
 All of 2016
+October
 August
 July
 May

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/b6aff8f8/content/news/2012/05/index.html
--
diff --git a/content/news/2012/05/index.html 

[07/15] wicket-site git commit: Unified download links for wicket 6.x, 7.x, 8.x

2016-12-12 Thread mgrigorov
Unified download links for wicket 6.x, 7.x, 8.x

Project: http://git-wip-us.apache.org/repos/asf/wicket-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket-site/commit/8324a683
Tree: http://git-wip-us.apache.org/repos/asf/wicket-site/tree/8324a683
Diff: http://git-wip-us.apache.org/repos/asf/wicket-site/diff/8324a683

Branch: refs/heads/asf-site
Commit: 8324a68353ef71564415e9c05239f75f69c80937
Parents: b6aff8f
Author: Tobias Soloschenko 
Authored: Sun Oct 30 12:15:09 2016 +0100
Committer: Martin Tzvetanov Grigorov 
Committed: Mon Dec 12 17:05:20 2016 +0100

--
 2012/_posts/2012-10-04-wicket-6.1.0-released.md |   4 +-
 2012/_posts/2012-10-08-wicket-6.1.1-released.md |   4 +-
 2012/_posts/2012-10-23-wicket-6.2.0-released.md |   4 +-
 2012/_posts/2012-11-16-wicket-6.3.0-released.md |   4 +-
 2012/_posts/2012-12-14-wicket-6.4.0-released.md |   4 +-
 2013/_posts/2013-01-23-wicket-6.5.0-released.md |   4 +-
 2013/_posts/2013-02-15-wicket-6.6.0-released.md |   4 +-
 2013/_posts/2013-04-12-wicket-6.7.0-released.md |   4 +-
 2013/_posts/2013-05-17-wicket-6.8.0-released.md |   4 +-
 2013/_posts/2013-06-27-wicket-6.9.0-released.md |   4 +-
 2013/_posts/2013-07-10-wicket-6.9.1-released.md |   4 +-
 .../_posts/2013-08-18-wicket-6.10.0-released.md |   4 +-
 .../_posts/2013-09-20-wicket-6.11.0-released.md |   4 +-
 .../_posts/2013-11-01-wicket-6.12.0-released.md |   4 +-
 .../_posts/2014-01-05-wicket-6.13.0-released.md |   4 +-
 .../_posts/2014-02-20-wicket-6.14.0-released.md |   4 +-
 .../_posts/2014-04-23-wicket-6.15.0-released.md |   4 +-
 .../2014-04-30-wicket-7.0.0-M1-released.md  |   4 +-
 .../2014-06-20-wicket-7.0.0-M2-released.md  |   4 +-
 .../_posts/2014-06-21-wicket-6.16.0-released.md |   4 +-
 .../2014-08-23-wicket-7.0.0-M3-released.md  |   4 +-
 .../_posts/2014-08-24-wicket-6.17.0-released.md |   4 +-
 .../_posts/2014-11-05-wicket-6.18.0-released.md |   4 +-
 .../2014-11-05-wicket-7.0.0-M4-released.md  |   4 +-
 .../_posts/2015-02-02-wicket-6.19.0-released.md |   4 +-
 .../2015-02-02-wicket-7.0.0-M5-released.md  |   4 +-
 .../_posts/2015-06-14-wicket-6.20.0-released.md |   4 +-
 .../2015-06-21-wicket-7.0.0-M6-released.md  |   4 +-
 2015/_posts/2015-10-25-wicket-7.1.0-released.md |   6 +-
 .../_posts/2015-11-16-wicket-6.21.0-released.md |   6 +-
 2016/_posts/2016-01-20-wicket-7.2.0-released.md |   6 +-
 .../_posts/2016-02-19-wicket-6.22.0-released.md |   4 +-
 .../_posts/2016-05-05-wicket-6.23.0-released.md |   4 +-
 2016/_posts/2016-05-05-wicket-7.3.0-released.md |   4 +-
 .../_posts/2016-07-21-wicket-6.24.0-released.md |   4 +-
 2016/_posts/2016-07-21-wicket-7.4.0-released.md |   4 +-
 .../2016-07-25-wicket-8.0.0-M1-released.md  |   4 +-
 .../_posts/2016-10-26-wicket-6.25.0-released.md |  15 ++-
 2016/_posts/2016-10-26-wicket-7.5.0-released.md |  16 ++-
 .../2016-10-26-wicket-8.0.0-M2-released.md  |  15 ++-
 content/atom.xml| 115 ++-
 content/contribute/build.html   |  22 ++--
 content/contribute/ides.html|   6 +-
 content/contribute/patch.html   |   2 +-
 content/contribute/release.html |  52 -
 content/contribute/write.html   |   4 +-
 content/index.html  |   8 +-
 content/learn/examples/ajaxcounter.html |  18 +--
 content/learn/examples/dropdownchoice.html  |   8 +-
 content/learn/examples/guestbook.html   |  28 ++---
 content/learn/examples/helloworld.html  |   6 +-
 content/learn/examples/markupinheritance.html   |   6 +-
 content/learn/examples/navomatic.html   |  10 +-
 content/learn/examples/usingfragments.html  |  10 +-
 ...-1.4-takes-typesafety-to-the-next-level.html |   8 +-
 .../news/2010/08/11/wicket-1.4.10-released.html |   4 +-
 content/news/2011/08/23/cve-2011-2712.html  |   2 +-
 .../news/2011/09/07/wicket-1.5-released.html|   8 +-
 .../news/2012/03/22/wicket-cve-2012-1089.html   |   2 +-
 .../2012/05/29/wicket-6.0.0-beta2-released.html |   4 +-
 .../news/2012/10/04/wicket-6.1.0-released.html  |   4 +-
 .../news/2012/10/08/wicket-6.1.1-released.html  |   4 +-
 .../news/2012/10/23/wicket-6.2.0-released.html  |   4 +-
 .../news/2012/11/16/wicket-6.3.0-released.html  |   4 +-
 .../news/2012/12/14/wicket-6.4.0-released.html  |   4 +-
 .../news/2013/01/23/wicket-6.5.0-released.html  |   6 +-
 .../news/2013/02/15/wicket-6.6.0-released.html  |   4 +-
 .../news/2013/04/12/wicket-6.7.0-released.html  |   4 +-
 .../news/2013/05/17/wicket-6.8.0-released.html  |   4 +-
 .../news/2013/06/27/wicket-6.9.0-released.html  |   6 +-
 .../news/2013/07/10/wicket-6.9.1-released.html  |   6 +-
 .../news/2013/08/18/wicket-6.10.0-released.html |   6 +-
 .../news/2013/09/20/wicket-6.11.0-released.html |   6 +-
 

[05/15] wicket-site git commit: Unified download links for wicket 6.x, 7.x, 8.x

2016-12-12 Thread mgrigorov
http://git-wip-us.apache.org/repos/asf/wicket-site/blob/8324a683/content/news/2013/01/23/wicket-6.5.0-released.html
--
diff --git a/content/news/2013/01/23/wicket-6.5.0-released.html 
b/content/news/2013/01/23/wicket-6.5.0-released.html
index 5fa0775..9e14151 100644
--- a/content/news/2013/01/23/wicket-6.5.0-released.html
+++ b/content/news/2013/01/23/wicket-6.5.0-released.html
@@ -66,7 +66,7 @@ the attributes for all Ajax requests.
 application.getAjaxRequestTargetListeners().add(new AjaxRequestTarget.AbstractListener()
 {
@Override
-   public void updateAjaxAttributes(AjaxRequestAttributes attributes)
+   public void updateAjaxAttributes(AjaxRequestAttributes attributes)
{
super.updateAjaxAttributes(attributes);
attributes.setChannel(new 
AjaxChannel("globalAjaxChannel", AjaxChannel.Type.ACTIVE));
@@ -84,8 +84,8 @@ update any other dependencies on Wicket projects to the same 
version):
 Or download and build the distribution yourself, or use our
 convenience binary package
 
-  Source: http://www.apache.org/dyn/closer.cgi/wicket/6.5.0;>http://www.apache.org/dyn/closer.cgi/wicket/6.5.0
-  Binary: http://www.apache.org/dyn/closer.cgi/wicket/6.5.0/binaries;>http://www.apache.org/dyn/closer.cgi/wicket/6.5.0/binaries
+  Source: http://www.apache.org/dyn/closer.cgi/wicket/6.5.0;>6.5.0 source 
download
+  Binary: http://www.apache.org/dyn/closer.cgi/wicket/6.5.0/binaries;>6.5.0 binary 
download
 
 Upgrading from earlier versions
 If you upgrade from 6.y.z this release is a drop in

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/8324a683/content/news/2013/02/15/wicket-6.6.0-released.html
--
diff --git a/content/news/2013/02/15/wicket-6.6.0-released.html 
b/content/news/2013/02/15/wicket-6.6.0-released.html
index 61d5102..0f8b143 100644
--- a/content/news/2013/02/15/wicket-6.6.0-released.html
+++ b/content/news/2013/02/15/wicket-6.6.0-released.html
@@ -88,8 +88,8 @@ update any other dependencies on Wicket projects to the same 
version):
 Or download and build the distribution yourself, or use our
 convenience binary package
 
-  Source: http://www.apache.org/dyn/closer.cgi/wicket/6.6.0;>http://www.apache.org/dyn/closer.cgi/wicket/6.6.0
-  Binary: http://www.apache.org/dyn/closer.cgi/wicket/6.6.0/binaries;>http://www.apache.org/dyn/closer.cgi/wicket/6.6.0/binaries
+  Source: http://www.apache.org/dyn/closer.cgi/wicket/6.6.0;>6.6.0 source 
download
+  Binary: http://www.apache.org/dyn/closer.cgi/wicket/6.6.0/binaries;>6.6.0 binary 
download
 
 Upgrading from earlier versions
 If you upgrade from 6.y.z this release is a drop in replacement. If

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/8324a683/content/news/2013/04/12/wicket-6.7.0-released.html
--
diff --git a/content/news/2013/04/12/wicket-6.7.0-released.html 
b/content/news/2013/04/12/wicket-6.7.0-released.html
index 1be942e..0ed9c74 100644
--- a/content/news/2013/04/12/wicket-6.7.0-released.html
+++ b/content/news/2013/04/12/wicket-6.7.0-released.html
@@ -83,8 +83,8 @@ update any other dependencies on Wicket projects to the same 
version):
 Or download and build the distribution yourself, or use our
 convenience binary package
 
-  Source: http://www.apache.org/dyn/closer.cgi/wicket/6.7.0;>http://www.apache.org/dyn/closer.cgi/wicket/6.7.0
-  Binary: http://www.apache.org/dyn/closer.cgi/wicket/6.7.0/binaries;>http://www.apache.org/dyn/closer.cgi/wicket/6.7.0/binaries
+  Source: http://www.apache.org/dyn/closer.cgi/wicket/6.7.0;>6.7.0 source 
download
+  Binary: http://www.apache.org/dyn/closer.cgi/wicket/6.7.0/binaries;>6.7.0 binary 
download
 
 Upgrading from earlier versions
 If you upgrade from 6.y.z this release is a drop in replacement. If

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/8324a683/content/news/2013/05/17/wicket-6.8.0-released.html
--
diff --git a/content/news/2013/05/17/wicket-6.8.0-released.html 
b/content/news/2013/05/17/wicket-6.8.0-released.html
index 6d09814..11d3cd2 100644
--- a/content/news/2013/05/17/wicket-6.8.0-released.html
+++ b/content/news/2013/05/17/wicket-6.8.0-released.html
@@ -66,8 +66,8 @@ update any other dependencies on Wicket projects to the same 
version):
 Or download and build the distribution yourself, or use our
 convenience binary package
 
-  Source: http://www.apache.org/dyn/closer.cgi/wicket/6.8.0;>http://www.apache.org/dyn/closer.cgi/wicket/6.8.0
-  Binary: http://www.apache.org/dyn/closer.cgi/wicket/6.8.0/binaries;>http://www.apache.org/dyn/closer.cgi/wicket/6.8.0/binaries
+  Source: http://www.apache.org/dyn/closer.cgi/wicket/6.8.0;>6.8.0 source 
download
+  Binary: http://www.apache.org/dyn/closer.cgi/wicket/6.8.0/binaries;>6.8.0 binary 
download
 
 

[11/15] wicket-site git commit: Added Apache AsterixDB to friends page

2016-12-12 Thread mgrigorov
Added Apache AsterixDB to friends page


Project: http://git-wip-us.apache.org/repos/asf/wicket-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket-site/commit/74174525
Tree: http://git-wip-us.apache.org/repos/asf/wicket-site/tree/74174525
Diff: http://git-wip-us.apache.org/repos/asf/wicket-site/diff/74174525

Branch: refs/heads/asf-site
Commit: 741745258452134bc483b565b4bace0d47bfef70
Parents: 45d1938
Author: Andrea Del Bene 
Authored: Sun Nov 27 23:16:26 2016 +0100
Committer: Martin Tzvetanov Grigorov 
Committed: Mon Dec 12 17:05:20 2016 +0100

--
 apache/friends.md   | 8 
 content/apache/friends.html | 4 
 content/apache/index.html   | 6 +-
 content/atom.xml| 2 +-
 4 files changed, 18 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/wicket-site/blob/74174525/apache/friends.md
--
diff --git a/apache/friends.md b/apache/friends.md
index 1699449..0f1f4af 100644
--- a/apache/friends.md
+++ b/apache/friends.md
@@ -46,6 +46,13 @@ Identity Access Management Java SDK for LDAP v3 compliant 
systems.
 Fortress is 100% compliant with RBAC, ARBAC02 and IETF's password
 policy draft. It uses Apache Wicket for its [RBAC Web Management 
UI][fortress-2].
 
+### Apache AsterixDB
+
+[Apache AsterixDB][asterixdb-1]  is a BDMS (Big Data Management System) with a 
rich
+feature set that sets it apart from other Big Data platforms. Its submodule 
Hyracks
+uses Apache Wicket for its administration console.
+
+
 [isis-1]: http://isis.apache.org
 [isis-2]: http://isis.apache.org/documentation.html#wicket-viewer
 [oodt-1]: http://oodt.apache.org
@@ -58,3 +65,4 @@ policy draft. It uses Apache Wicket for its [RBAC Web 
Management UI][fortress-2]
 [nutch-2]: 
https://nutch.apache.org/#22-september-2014-wicket-webapp-now-part-of-nutch-2x-codebase
 [fortress-1]: https://directory.apache.org/fortress/
 [fortress-2]: https://directory.apache.org/fortress/overview.html
+[asterixdb-1]: https://asterixdb.apache.org/

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/74174525/content/apache/friends.html
--
diff --git a/content/apache/friends.html b/content/apache/friends.html
index 262015e..cff78a0 100644
--- a/content/apache/friends.html
+++ b/content/apache/friends.html
@@ -79,6 +79,10 @@ management console.
 Identity Access Management Java SDK for LDAP v3 compliant systems.
 Fortress is 100% compliant with RBAC, ARBAC02 and IETF’s password
 policy draft. It uses Apache Wicket for its https://directory.apache.org/fortress/overview.html;>RBAC Web Management 
UI.
+Apache AsterixDB
+https://asterixdb.apache.org/;>Apache AsterixDB  is a BDMS 
(Big Data Management System) with a rich
+feature set that sets it apart from other Big Data platforms. Its submodule 
Hyracks
+uses Apache Wicket for its administration console.
 
 
 

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/74174525/content/apache/index.html
--
diff --git a/content/apache/index.html b/content/apache/index.html
index 3a91efc..ff60713 100644
--- a/content/apache/index.html
+++ b/content/apache/index.html
@@ -49,7 +49,7 @@
 
 
 
-Table of 
Contents1 Friends1.1 
Apache Isis1.2 
Apache OODT1.3 Apache 
Openmeetings1.4 Apache Syncope1.5 
Apache Nutch<
 /li>1.6 Apache 
Fortress2 License3 Thanks
+Table of 
Contents1 Friends1.1 
Apache Isis1.2 
Apache OODT1.3 Apache 
Openmeetings1.4 Apache Syncope1.5 
Apache Nutch<
 /li>1.6 Apache 
Fortress1.7 Apache AsterixDB2 License3 Thanks
 
 
 Friends
@@ -83,6 +83,10 @@ management console.
 Identity Access Management Java SDK for LDAP v3 compliant systems.
 Fortress is 100% compliant with RBAC, ARBAC02 and IETF’s password
 policy draft. It uses Apache Wicket for its https://directory.apache.org/fortress/overview.html;>RBAC Web Management 
UI.
+Apache AsterixDB
+https://asterixdb.apache.org/;>Apache AsterixDB  is a BDMS 
(Big Data Management System) with a rich
+feature set that sets it apart from other Big Data platforms. Its submodule 
Hyracks
+uses Apache Wicket for its administration console.
 License
 All projects of the Apache Wicket project are licensed using the
 http://www.apache.org/licenses/LICENSE-2.0;>Apache License, version 
2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt;>TXT or

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/74174525/content/atom.xml
--
diff --git a/content/atom.xml b/content/atom.xml
index dbbd3dd..3c3aa71 100644
--- a/content/atom.xml
+++ b/content/atom.xml
@@ -3,7 +3,7 @@
 Apache Wicket

[15/15] wicket-site git commit: Merge branch 'pr-8-asf-site' into asf-site

2016-12-12 Thread mgrigorov
Merge branch 'pr-8-asf-site' into asf-site


Project: http://git-wip-us.apache.org/repos/asf/wicket-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket-site/commit/43935ae5
Tree: http://git-wip-us.apache.org/repos/asf/wicket-site/tree/43935ae5
Diff: http://git-wip-us.apache.org/repos/asf/wicket-site/diff/43935ae5

Branch: refs/heads/asf-site
Commit: 43935ae590d1aab8eb54dc9d5875d0153d347d26
Parents: 1f99e17 7a88a5e
Author: Martin Tzvetanov Grigorov 
Authored: Mon Dec 12 17:10:19 2016 +0100
Committer: Martin Tzvetanov Grigorov 
Committed: Mon Dec 12 17:10:19 2016 +0100

--
 content/contribute/ides.html | 4 ++--
 contribute/ides.md   | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)
--




[02/15] wicket-site git commit: Added CVE-2016-6806 announcement

2016-12-12 Thread mgrigorov
http://git-wip-us.apache.org/repos/asf/wicket-site/blob/808021f1/content/news/2012/08/index.html
--
diff --git a/content/news/2012/08/index.html b/content/news/2012/08/index.html
index cb685c5..bae3841 100644
--- a/content/news/2012/08/index.html
+++ b/content/news/2012/08/index.html
@@ -64,6 +64,7 @@
 2016
 
 All of 2016
+November
 October
 August
 July

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/808021f1/content/news/2012/09/index.html
--
diff --git a/content/news/2012/09/index.html b/content/news/2012/09/index.html
index 5123e50..7a9184b 100644
--- a/content/news/2012/09/index.html
+++ b/content/news/2012/09/index.html
@@ -86,6 +86,7 @@ encoded null byte to a URL pointing to a Wicket app. This 
could be done by...2016
 
 All of 2016
+November
 October
 August
 July

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/808021f1/content/news/2012/10/index.html
--
diff --git a/content/news/2012/10/index.html b/content/news/2012/10/index.html
index 2d7b610..e0a57f4 100644
--- a/content/news/2012/10/index.html
+++ b/content/news/2012/10/index.html
@@ -74,6 +74,7 @@ with Wicket 6 we u...
 2016
 
 All of 2016
+November
 October
 August
 July

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/808021f1/content/news/2012/11/index.html
--
diff --git a/content/news/2012/11/index.html b/content/news/2012/11/index.html
index f2053bd..87750dc 100644
--- a/content/news/2012/11/index.html
+++ b/content/news/2012/11/index.html
@@ -72,6 +72,7 @@ with Wicket 6 we u...
 2016
 
 All of 2016
+November
 October
 August
 July

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/808021f1/content/news/2012/12/index.html
--
diff --git a/content/news/2012/12/index.html b/content/news/2012/12/index.html
index 7175350..197e15b 100644
--- a/content/news/2012/12/index.html
+++ b/content/news/2012/12/index.html
@@ -59,6 +59,7 @@ with Wicket 6 we u...
 2016
 
 All of 2016
+November
 October
 August
 July

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/808021f1/content/news/2012/index.html
--
diff --git a/content/news/2012/index.html b/content/news/2012/index.html
index 8720f1b..9374350 100644
--- a/content/news/2012/index.html
+++ b/content/news/2012/index.html
@@ -239,6 +239,7 @@
 2016
 
 All of 2016
+November
 October
 August
 July

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/808021f1/content/news/2013/01/23/wicket-6.5.0-released.html
--
diff --git a/content/news/2013/01/23/wicket-6.5.0-released.html 
b/content/news/2013/01/23/wicket-6.5.0-released.html
index 9e14151..0d8555c 100644
--- a/content/news/2013/01/23/wicket-6.5.0-released.html
+++ b/content/news/2013/01/23/wicket-6.5.0-released.html
@@ -66,7 +66,7 @@ the attributes for all Ajax requests.
 application.getAjaxRequestTargetListeners().add(new AjaxRequestTarget.AbstractListener()
 {
@Override
-   public void updateAjaxAttributes(AjaxRequestAttributes attributes)
+   public void updateAjaxAttributes(AjaxRequestAttributes attributes)
{
super.updateAjaxAttributes(attributes);
attributes.setChannel(new 
AjaxChannel("globalAjaxChannel", AjaxChannel.Type.ACTIVE));

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/808021f1/content/news/2013/01/index.html
--
diff --git a/content/news/2013/01/index.html b/content/news/2013/01/index.html
index 1283a6e..d50f5e9 100644
--- a/content/news/2013/01/index.html
+++ b/content/news/2013/01/index.html
@@ -59,6 +59,7 @@ with Wicket 6 we u...
 2016
 
 All of 2016
+November
 October
 August
 July

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/808021f1/content/news/2013/02/index.html
--
diff --git a/content/news/2013/02/index.html b/content/news/2013/02/index.html
index 4b42941..42e6252 100644
--- a/content/news/2013/02/index.html
+++ b/content/news/2013/02/index.html

[08/15] wicket-site git commit: Site updated with the new release wave

2016-12-12 Thread mgrigorov
http://git-wip-us.apache.org/repos/asf/wicket-site/blob/b6aff8f8/content/start/wicket-7.x.html
--
diff --git a/content/start/wicket-7.x.html b/content/start/wicket-7.x.html
index da467f8..5be681a 100644
--- a/content/start/wicket-7.x.html
+++ b/content/start/wicket-7.x.html
@@ -67,16 +67,16 @@ projects intended for production use should use this 
version.
 releases will not break compatibility.
 Change log
 To see what changed in these releases you can read the
-http://archive.apache.org/dist/wicket/7.4.0/CHANGELOG-7.x;>change 
log.
+http://archive.apache.org/dist/wicket/7.5.0/CHANGELOG-7.x;>change 
log.
 Download
-The most recent release in this branch is: 7.4.0. 
+The most recent release in this branch is: 7.5.0.
 You can get the release using Maven or download it manually.
 Using Apache Maven
 Use the following Maven dependency to use Wicket in your project:
 dependency
 groupIdorg.apache.wicket/groupId
 artifactIdwicket-core/artifactId
-version7.4.0/version
+version7.5.0/version
 /dependency
 Add the snippet above to your project’s POM in the dependency
 (management) section.
@@ -88,28 +88,28 @@ accordingly).
 Use the following links to download Wicket manually to build Wicket
 from source:
 
-  Download source http://www.apache.org/dyn/closer.cgi/wicket/7.4.0/apache-wicket-7.4.0.tar.gz;>apache-wicket-7.4.0.tar.gz
-(http://archive.apache.org/dist/wicket/7.4.0/apache-wicket-7.4.0.tar.gz.asc;>PGP,
-http://archive.apache.org/dist/wicket/7.4.0/apache-wicket-7.4.0.tar.gz.md5;>MD5,
-http://archive.apache.org/dist/wicket/7.4.0/apache-wicket-7.4.0.tar.gz.sha;>SHA
+  Download source http://www.apache.org/dyn/closer.cgi/wicket/7.5.0/apache-wicket-7.5.0.tar.gz;>apache-wicket-7.5.0.tar.gz
+(http://archive.apache.org/dist/wicket/7.5.0/apache-wicket-7.5.0.tar.gz.asc;>PGP,
+http://archive.apache.org/dist/wicket/7.5.0/apache-wicket-7.5.0.tar.gz.md5;>MD5,
+http://archive.apache.org/dist/wicket/7.5.0/apache-wicket-7.5.0.tar.gz.sha;>SHA
 )
-  Download source http://www.apache.org/dyn/closer.cgi/wicket/7.4.0/apache-wicket-7.4.0.zip;>apache-wicket-7.4.0.zip
-(http://archive.apache.org/dist/wicket/7.4.0/apache-wicket-7.4.0.zip.asc;>PGP,
-http://archive.apache.org/dist/wicket/7.4.0/apache-wicket-7.4.0.zip.md5;>MD5,
-http://archive.apache.org/dist/wicket/7.4.0/apache-wicket-7.4.0.zip.sha;>SHA
+  Download source http://www.apache.org/dyn/closer.cgi/wicket/7.5.0/apache-wicket-7.5.0.zip;>apache-wicket-7.5.0.zip
+(http://archive.apache.org/dist/wicket/7.5.0/apache-wicket-7.5.0.zip.asc;>PGP,
+http://archive.apache.org/dist/wicket/7.5.0/apache-wicket-7.5.0.zip.md5;>MD5,
+http://archive.apache.org/dist/wicket/7.5.0/apache-wicket-7.5.0.zip.sha;>SHA
 )
 
 Or use the following links to get the pre-packaged binaries instead:
 
-  Download binaries http://www.apache.org/dyn/closer.cgi/wicket/7.4.0/binaries/apache-wicket-7.4.0-bin.tar.gz;>apache-wicket-7.4.0-bin.tar.gz
-(http://archive.apache.org/dist/wicket/7.4.0/binaries/apache-wicket-7.4.0-bin.tar.gz.asc;>PGP,
-http://archive.apache.org/dist/wicket/7.4.0/binaries/apache-wicket-7.4.0-bin.tar.gz.md5;>MD5,
-http://archive.apache.org/dist/wicket/7.4.0/binaries/apache-wicket-7.4.0-bin.tar.gz.sha;>SHA
+  Download binaries http://www.apache.org/dyn/closer.cgi/wicket/7.5.0/binaries/apache-wicket-7.5.0-bin.tar.gz;>apache-wicket-7.5.0-bin.tar.gz
+(http://archive.apache.org/dist/wicket/7.5.0/binaries/apache-wicket-7.5.0-bin.tar.gz.asc;>PGP,
+http://archive.apache.org/dist/wicket/7.5.0/binaries/apache-wicket-7.5.0-bin.tar.gz.md5;>MD5,
+http://archive.apache.org/dist/wicket/7.5.0/binaries/apache-wicket-7.5.0-bin.tar.gz.sha;>SHA
 )
-  Download binaries http://www.apache.org/dyn/closer.cgi/wicket/7.4.0/binaries/apache-wicket-7.4.0-bin.zip;>apache-wicket-7.4.0-bin.zip
-(http://archive.apache.org/dist/wicket/7.4.0/binaries/apache-wicket-7.4.0-bin.zip.asc;>PGP,
-http://archive.apache.org/dist/wicket/7.4.0/binaries/apache-wicket-7.4.0-bin.zip.md5;>MD5,
-http://archive.apache.org/dist/wicket/7.4.0/binaries/apache-wicket-7.4.0-bin.zip.sha;>SHA
+  Download binaries http://www.apache.org/dyn/closer.cgi/wicket/7.5.0/binaries/apache-wicket-7.5.0-bin.zip;>apache-wicket-7.5.0-bin.zip
+(http://archive.apache.org/dist/wicket/7.5.0/binaries/apache-wicket-7.5.0-bin.zip.asc;>PGP,
+http://archive.apache.org/dist/wicket/7.5.0/binaries/apache-wicket-7.5.0-bin.zip.md5;>MD5,
+http://archive.apache.org/dist/wicket/7.5.0/binaries/apache-wicket-7.5.0-bin.zip.sha;>SHA
 )
 
 Note that the binary packages and the source packages don’t contain any

http://git-wip-us.apache.org/repos/asf/wicket-site/blob/b6aff8f8/content/start/wicket-8.x.html
--
diff --git a/content/start/wicket-8.x.html b/content/start/wicket-8.x.html
index 7c900e5..75f7681 100644
--- a/content/start/wicket-8.x.html
+++ b/content/start/wicket-8.x.html
@@ -65,14 +65,14 @@ releases will not break 

[jira] [Commented] (WICKET-6287) Switch from json.org to open-json

2016-12-12 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/WICKET-6287?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15741962#comment-15741962
 ] 

ASF GitHub Bot commented on WICKET-6287:


Github user tdunning commented on the issue:

https://github.com/apache/wicket/pull/193
  
I have pushed a few additional versions of open-json that might help (or
hinder) wicket.

The basic issue was that in the bean constructor, objects were not
converted all the way down. This led to really bad behavior because the
native to-string was used on things like lists that led to ugly and
non-functional results.

This was resolved in open-json 1.6 in a way that I don't think would hurt
wicket, but it might be good for you guys to let me know if it does and if
there is a middle ground that does not.



On Mon, Dec 12, 2016 at 7:35 PM, Andrea Del Bene 
wrote:

> +1 to merge. I've tested with WicketStuff and with @sebfz1
>  wicket-jquery-ui. Two PR have been created
> for this two project but everything seems to work fine with them.
>
> —
> You are receiving this because you were mentioned.
> Reply to this email directly, view it on GitHub
> , or 
mute
> the thread
> 

> .
>



> Switch from json.org to open-json
> -
>
> Key: WICKET-6287
> URL: https://issues.apache.org/jira/browse/WICKET-6287
> Project: Wicket
>  Issue Type: Task
>  Components: wicket, wicket-atmosphere, wicket-extensions
>Affects Versions: 8.0.0-M2, 6.25.0, 7.5.0
>Reporter: Tobias Soloschenko
>Assignee: Tobias Soloschenko
>Priority: Minor
>  Labels: license
> Fix For: 6.26, 7.6.0, 8.0.0-M3
>
>
> Because of license issues it is required to switch from json.org:
> https://github.com/stleary/JSON-java
> to open-json:
> https://github.com/tdunning/open-json
> For more information see:
> http://apache-wicket.1842946.n4.nabble.com/Fwd-JSON-License-and-Apache-Projects-td4676261.html



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (WICKET-6287) Switch from json.org to open-json

2016-12-12 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/WICKET-6287?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15741580#comment-15741580
 ] 

ASF GitHub Bot commented on WICKET-6287:


Github user bitstorm commented on the issue:

https://github.com/apache/wicket/pull/193
  
+1 to merge. I've tested with WicketStuff and with @sebfz1  
wicket-jquery-ui. Two PR have been created for this two project but everything 
seems to work fine with them.


> Switch from json.org to open-json
> -
>
> Key: WICKET-6287
> URL: https://issues.apache.org/jira/browse/WICKET-6287
> Project: Wicket
>  Issue Type: Task
>  Components: wicket, wicket-atmosphere, wicket-extensions
>Affects Versions: 8.0.0-M2, 6.25.0, 7.5.0
>Reporter: Tobias Soloschenko
>Assignee: Tobias Soloschenko
>Priority: Minor
>  Labels: license
> Fix For: 6.26, 7.6.0, 8.0.0-M3
>
>
> Because of license issues it is required to switch from json.org:
> https://github.com/stleary/JSON-java
> to open-json:
> https://github.com/tdunning/open-json
> For more information see:
> http://apache-wicket.1842946.n4.nabble.com/Fwd-JSON-License-and-Apache-Projects-td4676261.html



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)