Re: i18n for html header elements

2011-08-07 Thread Martin Grigorov
see IMarkupSettings.setStripWicketTags(true) On Sat, Aug 6, 2011 at 7:13 PM, heikki tropic...@gmail.com wrote: hi Dan, you're right ! The translation as such is working fine, it's just the preserved wicket:message.. element that is also displayed in the page's title. Am I right that in

Re: URLs without counter parameter

2011-08-07 Thread Martin Grigorov
The counter is there only for stateful pages. setStatelessHint(true) is just a hint. The statelessness is calculated at render time - if all components in the page are stateless then the page is stateless too. To find which component makes it stateful use wicket-devutils's StatelessChecker +

Re: i18n for more than attribute

2011-08-07 Thread Martin Grigorov
No offense taken. Just was curious what radical has changed and it is not described in the migration page and the table at the bottom of this page. But you didn't say anything specific... Btw the migration page is editable by everyone who have an account in WIKI. Please don't hesitate to improve

Re: URLs without counter parameter

2011-08-07 Thread heikki
OK, it turned out that a form in my base page with links to change the language was the stateful component. I've now changed things so it is a stateless form and it works like a charm. Thanks for hinting at StatelessChecker ! Kind regards Heikki Doeleman -- View this message in context:

Re: URLs without counter parameter

2011-08-07 Thread Martin Grigorov
Welcome ;-) Another hint: there is 1.5-RC5.1. No need to use older version like 1.5-M3. On Sun, Aug 7, 2011 at 4:03 PM, heikki tropic...@gmail.com wrote: OK, it turned out that a form in my base page with links to change the language was the stateful component. I've now changed things so it

Re: CSS, JS resource file handle issues?

2011-08-07 Thread Peter Ertl
in Connection#getLastModified(String url), line 69 there's an URLConnection jarFileConnection = jarFileUrl.openConnection(); without a close() statement... could that be the reason? Am 06.08.2011 um 00:21 schrieb rush66: As per your suggestion I grabbed the

1.5 - wicket module build question

2011-08-07 Thread Kaz C
I checked out Wicket (all modules) from trunk and executed mvn install. Build was successful. So, if I check my local maven repository and look under .m2/repository/org/apache/wicket/wicket/1.5-SNAPSHOT shouldn't I see a wicket-1.5-SNAPSHOT.jar ? Currently this is what I see: $ ls

Re: 1.5 - wicket module build question

2011-08-07 Thread Pedro Santos
wicket module under trunk is there just to be an agregator of the main dependencies needed to run Wicket for maven users. On Sun, Aug 7, 2011 at 5:53 PM, Kaz C kaz@gmail.com wrote: I checked out Wicket (all modules) from trunk and executed mvn install. Build was successful. So, if I check

Re: dynamic DataTable

2011-08-07 Thread Clint Checketts
Sorry for taking 2 weeks. Here is a quick and dirty implementation: https://github.com/checketts/wicket-datasource-table It needs a bit of cleanup. 2 points that I like to note is 1) the use of a datasource instead of a java.sql.Connection will allow automatically opening and closing connections

Downloader for files outside Web Context

2011-08-07 Thread Arjun Dhar
Hi, do we have a pre written Downloader that can allow links on a web page to download files which are saved outside the Web Context? - Software documentation is like sex: when it is good, it is very, very good; and when it is bad, it is still better than nothing! -- View this message in

Re: Downloader for files outside Web Context

2011-08-07 Thread Arjun Dhar
Liek a DownloadServlet that is given some params and knows where to pick it from the local FS and streams it down. So the link ends up getting the streamed resource. - Software documentation is like sex: when it is good, it is very, very good; and when it is bad, it is still better than

Form in a form for ModalWindows

2011-08-07 Thread Chris Colman
Having problems trying to get DateTimeField working inside a ModalWindow in IE* (same code works fine on all other browsers). I believe it is because, for some reason, every ModalWindow containing a form must be enclosed within an outer form. I've tried: form div wicket:id=modalWindow_0/div