[jira] [Commented] (WICKET-6075) Error page redirection for Autocomplete field response

2016-04-24 Thread Martin Grigorov (JIRA)
[ https://issues.apache.org/jira/browse/WICKET-6075?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15255923#comment-15255923 ] Martin Grigorov commented on WICKET-6075: - It broke some JavaScript tests. > Err

[jira] [Commented] (WICKET-6075) Error page redirection for Autocomplete field response

2016-04-24 Thread Rakesh A (JIRA)
[ https://issues.apache.org/jira/browse/WICKET-6075?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15255815#comment-15255815 ] Rakesh A commented on WICKET-6075: -- reverted ? any observations on this change? > Error

wicket git commit: Remove #apply()

2016-04-24 Thread mgrigorov
Repository: wicket Updated Branches: refs/heads/master 445965f1f -> e8e479396 Remove #apply() http://markmail.org/message/44tfilwff2xdzw2q Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/e8e47939 Tree: http://git-wip-us

[1/2] wicket git commit: Disallow null arguments to IModel methods

2016-04-24 Thread mgrigorov
Repository: wicket Updated Branches: refs/heads/master e0d962bd5 -> 445965f1f Disallow null arguments to IModel methods Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/406daf1f Tree: http://git-wip-us.apache.org/repos/as

[2/2] wicket git commit: Add a test for IModel#flatMap

2016-04-24 Thread mgrigorov
Add a test for IModel#flatMap Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/445965f1 Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/445965f1 Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/445965f1 Bran

[2/2] wicket git commit: Give a better name for the variable used as a second parameter for #mapWith() tests

2016-04-24 Thread mgrigorov
Give a better name for the variable used as a second parameter for #mapWith() tests Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/e0d962bd Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/e0d962bd Diff: http://git

[1/2] wicket git commit: Add tests for IModel#orElse() and #orElseGet()

2016-04-24 Thread mgrigorov
Repository: wicket Updated Branches: refs/heads/master 506ada457 -> e0d962bd5 Add tests for IModel#orElse() and #orElseGet() Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/e83d6b69 Tree: http://git-wip-us.apache.org/rep

wicket git commit: Add test for IModel#apply()

2016-04-24 Thread mgrigorov
Repository: wicket Updated Branches: refs/heads/master 268bce97f -> 506ada457 Add test for IModel#apply() Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/506ada45 Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/

wicket git commit: Add a test for #flatMap()

2016-04-24 Thread mgrigorov
Repository: wicket Updated Branches: refs/heads/master 4d087571b -> 268bce97f Add a test for #flatMap() Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/268bce97 Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/26

buildbot success in on wicket-master

2016-04-24 Thread buildbot
The Buildbot has detected a restored build on builder wicket-master while building wicket. Full details are available at: https://ci.apache.org/builders/wicket-master/builds/361 Buildbot URL: https://ci.apache.org/ Buildslave for this Build: hemera_ubuntu Build Reason: The SingleBranchSched

wicket git commit: Add tests for IModel#mapWith()

2016-04-24 Thread mgrigorov
Repository: wicket Updated Branches: refs/heads/master 568375463 -> 4d087571b Add tests for IModel#mapWith() Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/4d087571 Tree: http://git-wip-us.apache.org/repos/asf/wicket/tr

wicket git commit: Add ASL2 to the new classes

2016-04-24 Thread mgrigorov
Repository: wicket Updated Branches: refs/heads/master bbe1ab607 -> 568375463 Add ASL2 to the new classes Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/56837546 Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/

buildbot failure in on wicket-master

2016-04-24 Thread buildbot
The Buildbot has detected a new failure on builder wicket-master while building wicket. Full details are available at: https://ci.apache.org/builders/wicket-master/builds/360 Buildbot URL: https://ci.apache.org/ Buildslave for this Build: hemera_ubuntu Build Reason: The SingleBranchSchedule

[04/10] wicket git commit: implement idea for lazy flatMap in IModel

2016-04-24 Thread mgrigorov
implement idea for lazy flatMap in IModel This approach has two problems though: 1. For every call of getObject, setObject and detach the whole model chain will be evaluated again. 2. It's the same problem like with the implementation before. When the setObject is called and any value in th

[02/10] wicket git commit: Use better bounds for the parameter types.

2016-04-24 Thread mgrigorov
Use better bounds for the parameter types. Rework #flatMap() to actually return the new model, so the developer can return writeable model. The drawback is that now it is not lazy. It would be lazy if the signature is: #flatMap(WicketFunction, IModel> mapper) Project: http://git-wip-us.apache.

[08/10] wicket git commit: Merge branch 'monad-model'

2016-04-24 Thread mgrigorov
Merge branch 'monad-model' Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/4cbaccde Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/4cbaccde Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/4cbaccde Branch:

[05/10] wicket git commit: fix wrong formatting

2016-04-24 Thread mgrigorov
fix wrong formatting Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/3719da91 Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/3719da91 Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/3719da91 Branch: refs/

[09/10] wicket git commit: Add tests for IModel#filter()

2016-04-24 Thread mgrigorov
Add tests for IModel#filter() Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/a1af5f9a Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/a1af5f9a Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/a1af5f9a Bran

[03/10] wicket git commit: fix formatting in IModel

2016-04-24 Thread mgrigorov
fix formatting in IModel Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/095cb327 Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/095cb327 Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/095cb327 Branch: r

[10/10] wicket git commit: Add tests for IModel's default methods

2016-04-24 Thread mgrigorov
Add tests for IModel's default methods Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/bbe1ab60 Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/bbe1ab60 Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/bbe1a

[07/10] wicket git commit: Remove some unneeded factory methods

2016-04-24 Thread mgrigorov
Remove some unneeded factory methods Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/274a3160 Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/274a3160 Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/274a316

[06/10] wicket git commit: check mapper result in #flatMap in get- and setObject

2016-04-24 Thread mgrigorov
check mapper result in #flatMap in get- and setObject Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/a68dc57a Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/a68dc57a Diff: http://git-wip-us.apache.org/repos/asf/wi

[01/10] wicket git commit: Add filter/map/flatMap/orElse/orElseGet methods to IModel

2016-04-24 Thread mgrigorov
Repository: wicket Updated Branches: refs/heads/master eaa3bfa0f -> bbe1ab607 Add filter/map/flatMap/orElse/orElseGet methods to IModel discussion-at: http://markmail.org/message/i34iulxttjc7umij Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org

[1/4] wicket git commit: fix formatting in IModel

2016-04-24 Thread mgrigorov
Repository: wicket Updated Branches: refs/heads/monad-model 70fa0136a -> a68dc57a8 fix formatting in IModel Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/095cb327 Tree: http://git-wip-us.apache.org/repos/asf/wicket/tre

[4/4] wicket git commit: check mapper result in #flatMap in get- and setObject

2016-04-24 Thread mgrigorov
check mapper result in #flatMap in get- and setObject Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/a68dc57a Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/a68dc57a Diff: http://git-wip-us.apache.org/repos/asf/wi

[3/4] wicket git commit: fix wrong formatting

2016-04-24 Thread mgrigorov
fix wrong formatting Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/3719da91 Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/3719da91 Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/3719da91 Branch: refs/

[2/4] wicket git commit: implement idea for lazy flatMap in IModel

2016-04-24 Thread mgrigorov
implement idea for lazy flatMap in IModel This approach has two problems though: 1. For every call of getObject, setObject and detach the whole model chain will be evaluated again. 2. It's the same problem like with the implementation before. When the setObject is called and any value in th

[jira] [Resolved] (WICKET-6129) IRequestCycleListener not notified of all executed handlers

2016-04-24 Thread Sven Meier (JIRA)
[ https://issues.apache.org/jira/browse/WICKET-6129?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sven Meier resolved WICKET-6129. Resolution: Fixed Fix Version/s: 8.0.0-M1 RequestCycleListeners are now notified as you'd ex

[jira] [Commented] (WICKET-6129) IRequestCycleListener not notified of all executed handlers

2016-04-24 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/WICKET-6129?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15255683#comment-15255683 ] ASF subversion and git services commented on WICKET-6129: - Commit

[jira] [Commented] (WICKET-6129) IRequestCycleListener not notified of all executed handlers

2016-04-24 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/WICKET-6129?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15255679#comment-15255679 ] ASF subversion and git services commented on WICKET-6129: - Commit

[jira] [Commented] (WICKET-6129) IRequestCycleListener not notified of all executed handlers

2016-04-24 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/WICKET-6129?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15255680#comment-15255680 ] ASF subversion and git services commented on WICKET-6129: - Commit

[jira] [Commented] (WICKET-6129) IRequestCycleListener not notified of all executed handlers

2016-04-24 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/WICKET-6129?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15255676#comment-15255676 ] ASF subversion and git services commented on WICKET-6129: - Commit

[jira] [Commented] (WICKET-6129) IRequestCycleListener not notified of all executed handlers

2016-04-24 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/WICKET-6129?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15255675#comment-15255675 ] ASF subversion and git services commented on WICKET-6129: - Commit

[jira] [Commented] (WICKET-6129) IRequestCycleListener not notified of all executed handlers

2016-04-24 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/WICKET-6129?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15255682#comment-15255682 ] ASF subversion and git services commented on WICKET-6129: - Commit

[jira] [Commented] (WICKET-6129) IRequestCycleListener not notified of all executed handlers

2016-04-24 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/WICKET-6129?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15255681#comment-15255681 ] ASF subversion and git services commented on WICKET-6129: - Commit

[jira] [Commented] (WICKET-6129) IRequestCycleListener not notified of all executed handlers

2016-04-24 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/WICKET-6129?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15255684#comment-15255684 ] ASF subversion and git services commented on WICKET-6129: - Commit

[jira] [Commented] (WICKET-6129) IRequestCycleListener not notified of all executed handlers

2016-04-24 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/WICKET-6129?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15255678#comment-15255678 ] ASF subversion and git services commented on WICKET-6129: - Commit

[jira] [Commented] (WICKET-6129) IRequestCycleListener not notified of all executed handlers

2016-04-24 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/WICKET-6129?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15255677#comment-15255677 ] ASF subversion and git services commented on WICKET-6129: - Commit

[03/12] wicket git commit: WICKET-6129 ordered methods to follow invocation order

2016-04-24 Thread svenmeier
WICKET-6129 ordered methods to follow invocation order Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/9c0c37e6 Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/9c0c37e6 Diff: http://git-wip-us.apache.org/repos/asf/w

[07/12] wicket git commit: WICKET-6129 handlers were never executed nested actually, so no need to keep a stack of handlers

2016-04-24 Thread svenmeier
WICKET-6129 handlers were never executed nested actually, so no need to keep a stack of handlers Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/88db7274 Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/88db7274 Dif

[05/12] wicket git commit: WICKET-6129 moved test from RequestHandlerStackTest to RequestCycleListenerTest

2016-04-24 Thread svenmeier
WICKET-6129 moved test from RequestHandlerStackTest to RequestCycleListenerTest Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/d668a003 Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/d668a003 Diff: http://git-wip-

[06/12] wicket git commit: WICKET-6129 further simplification: catch ReplaceHandlerException in RequestCycle only

2016-04-24 Thread svenmeier
WICKET-6129 further simplification: catch ReplaceHandlerException in RequestCycle only Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/e02bdd8e Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/e02bdd8e Diff: http://

[10/12] wicket git commit: WICKET-6129 move duplicated code into #executeExceptionRequestHandler

2016-04-24 Thread svenmeier
WICKET-6129 move duplicated code into #executeExceptionRequestHandler Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/71f22026 Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/71f22026 Diff: http://git-wip-us.apache.

[11/12] wicket git commit: WICKET-6129 javadoc and deprecated: removeAll is removeScheduled now

2016-04-24 Thread svenmeier
WICKET-6129 javadoc and deprecated: removeAll is removeScheduled now Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/b3f4fa0b Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/b3f4fa0b Diff: http://git-wip-us.apache.o

[04/12] wicket git commit: WICKET-6129 let requestcycle execute scheduled and replaced handlers

2016-04-24 Thread svenmeier
WICKET-6129 let requestcycle execute scheduled and replaced handlers Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/c21edea3 Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/c21edea3 Diff: http://git-wip-us.apache.o

[01/12] wicket git commit: WICKET-6129 javadoc; cleanup and corrected spelling

2016-04-24 Thread svenmeier
Repository: wicket Updated Branches: refs/heads/master f2f0ba067 -> eaa3bfa0f WICKET-6129 javadoc; cleanup and corrected spelling Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/eaa3bfa0 Tree: http://git-wip-us.apache.o

[12/12] wicket git commit: WICKET-6129 listeners are notified of all executed handlers now, so it is sufficient to listen for #onRequestHandlerResolved() only

2016-04-24 Thread svenmeier
WICKET-6129 listeners are notified of all executed handlers now, so it is sufficient to listen for #onRequestHandlerResolved() only Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/0e55e547 Tree: http://git-wip-us.apache.org

[08/12] wicket git commit: WICKET-6129 reordered if-statements

2016-04-24 Thread svenmeier
WICKET-6129 reordered if-statements Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/80562f9b Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/80562f9b Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/80562f9b

[09/12] wicket git commit: WICKET-6129 use execute() for exception execution too

2016-04-24 Thread svenmeier
WICKET-6129 use execute() for exception execution too Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/8c1fb9b3 Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/8c1fb9b3 Diff: http://git-wip-us.apache.org/repos/asf/wi

[02/12] wicket git commit: WICKET-6129 RequestHandlerStack is not a stack, thus it is better be named RequestHandlerExecutor

2016-04-24 Thread svenmeier
WICKET-6129 RequestHandlerStack is not a stack, thus it is better be named RequestHandlerExecutor Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/dc356b95 Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/dc356b95 Di

wicket git commit: Use better bounds for the parameter types.

2016-04-24 Thread mgrigorov
Repository: wicket Updated Branches: refs/heads/monad-model 484132a85 -> 70fa0136a Use better bounds for the parameter types. Rework #flatMap() to actually return the new model, so the developer can return writeable model. The drawback is that now it is not lazy. It would be lazy if the sign

wicket git commit: Add filter/map/flatMap/orElse/orElseGet methods to IModel

2016-04-24 Thread mgrigorov
Repository: wicket Updated Branches: refs/heads/monad-model [created] 484132a85 Add filter/map/flatMap/orElse/orElseGet methods to IModel discussion-at: http://markmail.org/message/i34iulxttjc7umij Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.o

[3/4] wicket git commit: Simplify and use non-deprecated contructor of org.junit.rules.Timeout rule

2016-04-24 Thread mgrigorov
Simplify and use non-deprecated contructor of org.junit.rules.Timeout rule Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/48f663d2 Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/48f663d2 Diff: http://git-wip-us.ap

[2/4] wicket git commit: Fix javadoc error

2016-04-24 Thread mgrigorov
Fix javadoc error Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/1df79c4d Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/1df79c4d Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/1df79c4d Branch: refs/hea

[1/4] wicket git commit: Add serializable BiFunction

2016-04-24 Thread mgrigorov
Repository: wicket Updated Branches: refs/heads/master 69f2d0ad9 -> f2f0ba067 Add serializable BiFunction Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/fbb00607 Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/

[4/4] wicket git commit: Fix generics related warnings

2016-04-24 Thread mgrigorov
Fix generics related warnings Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/f2f0ba06 Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/f2f0ba06 Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/f2f0ba06 Bran