Re: [Wicket-user] Wicket 2.0: You are in DEVELOPMENT mode

2006-09-02 Thread Johan Compagner
PROTECTED] [mailto:[EMAIL PROTECTED] ] Im Auftrag von Frank Bille Gesendet: Freitag, 1. September 2006 12:27 An: wicket-user@lists.sourceforge.net Betreff: Re: [Wicket-user] Wicket 2.0: You are in DEVELOPMENT mode Well it doesn't really matter, because your configure is the one that counts. It's only

Re: [Wicket-user] Wicket 2.0: You are in DEVELOPMENT mode

2006-09-01 Thread Korbinian Bachl
it has to be in the init() function of the Application Class - the thing you write is deprecated in 1.2 already, and not supported anymore in 2.0 e.g: class myapp extends WebApp{ init() { configure(foo.bar); } } regards Korbinian _ Von: [EMAIL PROTECTED] [mailto:[EMAIL

Re: [Wicket-user] Wicket 2.0: You are in DEVELOPMENT mode

2006-09-01 Thread Frank Bille
Well it doesn't really matter, because your configure is the one that counts. It's only because Application sets a default configure (DEVELOPMENT) before your init is called. Frank On 9/1/06, Korbinian Bachl [EMAIL PROTECTED] wrote: it has to be in the init() function of the Application Class -

Re: [Wicket-user] Wicket 2.0: You are in DEVELOPMENT mode

2006-09-01 Thread Juergen Donnerstag
This is the option described in the WIKI: http://www.wicket-wiki.org.uk/wiki/index.php/FAQs#My_application_says_.22DEVELOPMENT_MODE.22.2C_how_do_I_switch_to_production.3F From WebApplication.internalInit() javadoc * Internal intialization. First determine the deployment mode. First check

Re: [Wicket-user] Wicket 2.0: You are in DEVELOPMENT mode

2006-09-01 Thread Korbinian Bachl
Frank BilleGesendet: Freitag, 1. September 2006 12:27An: wicket-user@lists.sourceforge.netBetreff: Re: [Wicket-user] Wicket 2.0: You are in DEVELOPMENT mode Well it doesn't really matter, because your configure is the one that counts. It's only because Application sets a default configure

Re: [Wicket-user] Wicket 2.0: You are in DEVELOPMENT mode

2006-09-01 Thread Johan Compagner
:27An: wicket-user@lists.sourceforge.net Betreff: Re: [Wicket-user] Wicket 2.0: You are in DEVELOPMENT mode Well it doesn't really matter, because your configure is the one that counts. It's only because Application sets a default configure (DEVELOPMENT) before your init is called. Frank

Re: [Wicket-user] Wicket 2.0: You are in DEVELOPMENT mode

2006-09-01 Thread Frank Bille
will be regarded as error... Regards Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Im Auftrag von Frank BilleGesendet: Freitag, 1. September 2006 12:27An: wicket-user@lists.sourceforge.net Betreff: Re: [Wicket-user] Wicket 2.0: You are in DEVELOPMENT mode Well it doesn't really

Re: [Wicket-user] Wicket 2.0: You are in DEVELOPMENT mode

2006-09-01 Thread Stefan Lindner
Thank you all for your comments. Now I set the configuration in Application.init. I was jutst wondering about seeing the You are in DEVELOPMENT mode during deployment, what breaks our deployment checker wich reports an error if the deploy,ment ready application still reports You are in

Re: [Wicket-user] Wicket 2.0: You are in DEVELOPMENT mode

2006-09-01 Thread Eelco Hillenius
Frank Bille Gesendet: Freitag, 1. September 2006 12:27 An: wicket-user@lists.sourceforge.net Betreff: Re: [Wicket-user] Wicket 2.0: You are in DEVELOPMENT mode Well it doesn't really matter, because your configure is the one that counts. It's only because Application sets

Re: [Wicket-user] Wicket 2.0: You are in DEVELOPMENT mode

2006-09-01 Thread Justin Lee
:27 An: wicket-user@lists.sourceforge.net Betreff: Re: [Wicket-user] Wicket 2.0: You are in DEVELOPMENT mode Well it doesn't really matter, because your configure is the one that counts. It's only because Application sets a default configure (DEVELOPMENT) before your init is called. Frank