[GitHub] [wicket] svenmeier commented on a change in pull request #449: WICKET-6824 Replace slow `String.format` with concatenation

2020-08-31 Thread GitBox
svenmeier commented on a change in pull request #449: URL: https://github.com/apache/wicket/pull/449#discussion_r479950373 ## File path: wicket-core/src/main/java/org/apache/wicket/ajax/AbstractDefaultAjaxBehavior.java ## @@ -61,16 +61,16 @@ public static final

[GitHub] [wicket] solomax commented on a change in pull request #449: WICKET-6824 Replace slow `String.format` with concatenation

2020-08-31 Thread GitBox
solomax commented on a change in pull request #449: URL: https://github.com/apache/wicket/pull/449#discussion_r480152693 ## File path: wicket-core/src/main/java/org/apache/wicket/ajax/AbstractDefaultAjaxBehavior.java ## @@ -61,16 +61,16 @@ public static final

[GitHub] [wicket] svenmeier closed pull request #448: WICKET-6821 disabled CSP

2020-08-31 Thread GitBox
svenmeier closed pull request #448: URL: https://github.com/apache/wicket/pull/448 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to

Re: How to support multiple AbstractTransformerBehavior per component, if at all?

2020-08-31 Thread Sven Meier
Hi Thorsten, changed implementation is simply reversing the order of how behaviours are called per component the solution I was able to came up with: reverse the order of #afterRender() only! This way callbacks to behaviors are 'nested', i.e. the first behavior has the first *and* last