Re: readering strategy of the 'head' section

2013-03-24 Thread Harrie Hazewinkel
Hi Dan, Thanks for the example. On Mar 24, 2013, at 7:26 PM, Dan Retzlaff wrote: > Re: duplicate/conflicting contributions, Wicket automatically de-dups > header contributions. See HeaderItem#getRenderTokens(). Since Wicket itself > pulls in JQuery, your app's use of it should be configured > th

Navigation to a plain URL within the same application in Wicket 6

2013-03-24 Thread Andrew Schetinin
Hi, I'm porting a Wicket application from 1.4 to 6.6, and there is one piece of code I cannot find how to port. In short, I have a Link descendant class that is supposed to navigate to a manually constructed URL within the Web application - something like "/context_path/view_path/view?viewId=2193

wicket-atmosphere issues

2013-03-24 Thread Leonid Bogdanov
Hello! I'm playing with the "wicket-atmosphere" module and, while generally it works fine, I stumbled upon a couple of issues: 1) Suppose I have a Page with a method marked with @Subscribe annotation, this subscribtion has a filter attached. Is it possible to get the Page instance insi

Re: readering strategy of the 'head' section

2013-03-24 Thread Dan Retzlaff
We add a site-wide IHeaderContributor in Application#init() using getHeaderContributorListenerCollection(). Our initial implementation used contributions as you do. This became difficult to maintain when we had multiple top-level pages. (Your site has only one top-level page?) We also require prog

Re: readering strategy of the 'head' section

2013-03-24 Thread Harrie Hazewinkel
Hallo, I understand that potentially things could be overridden at a lower child. Although, you can have the same in the opposite direction. Same counts for bugs, but the beauty would be the flexibility I would say. On top of that, I am wondering how others use it than in combination with jQu