You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by mg...@apache.org on 2015/07/08 08:52:49 UTC

[1/2] wicket git commit: Fix the url to wicket-library.com.

Repository: wicket
Updated Branches:
  refs/heads/wicket-6.x 0f9cdd670 -> 6fa8616f4


Fix the url to wicket-library.com.

Should trigger a build at BuildBot with JDK 7.x (yes 7.x)


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

Branch: refs/heads/wicket-6.x
Commit: 0ae9e1b77878dc5fea5d142260b8b6d18dbc5485
Parents: 0f9cdd6
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
Authored: Wed Jul 8 09:42:34 2015 +0300
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
Committed: Wed Jul 8 09:42:34 2015 +0300

----------------------------------------------------------------------
 README | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/0ae9e1b7/README
----------------------------------------------------------------------
diff --git a/README b/README
index 923baf9..d82e91b 100644
--- a/README
+++ b/README
@@ -139,7 +139,7 @@ from, and get started quickly:
  - wicket-examples:
 
     shows all components in short usage examples, also available live on:
-    http://www.wicket-library.com/wicket-examples
+    http://wicket-library.com/wicket-examples-6.0.x/
 
  - wicket-quickstart archetype:
 


[2/2] wicket git commit: WICKET-5933 Avoid serialization of untouched page after ajax request

Posted by mg...@apache.org.
WICKET-5933 Avoid serialization of untouched page after ajax request

untouchPage() should untouch()

spotted-by: adelbene
(cherry picked from commit b2e5e3e0d3f49fa3b0588a190f611b254ebd9c09)


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

Branch: refs/heads/wicket-6.x
Commit: 6fa8616f48843242094c9ea7653f6adb8fec2d82
Parents: 0ae9e1b
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
Authored: Wed Jul 8 09:41:54 2015 +0300
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
Committed: Wed Jul 8 09:43:11 2015 +0300

----------------------------------------------------------------------
 .../src/main/java/org/apache/wicket/page/AbstractPageManager.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/6fa8616f/wicket-core/src/main/java/org/apache/wicket/page/AbstractPageManager.java
----------------------------------------------------------------------
diff --git a/wicket-core/src/main/java/org/apache/wicket/page/AbstractPageManager.java b/wicket-core/src/main/java/org/apache/wicket/page/AbstractPageManager.java
index 297556e..4a459b9 100644
--- a/wicket-core/src/main/java/org/apache/wicket/page/AbstractPageManager.java
+++ b/wicket-core/src/main/java/org/apache/wicket/page/AbstractPageManager.java
@@ -132,6 +132,6 @@ public abstract class AbstractPageManager implements IPageManager
 
 	public void untouchPage(IManageablePage page)
 	{
-		getRequestAdapter().touch(page);
+		getRequestAdapter().untouch(page);
 	}
 }