Re: [Wicket-user] Wicket changes relative urls to static ones - and messes up my deployment.

2006-10-27 Thread Christian Hvid
eratedlinks > > Frank > > > On 10/27/06, Christian Hvid <[EMAIL PROTECTED]> wrote: > > > > Hi there. > > > > Thanks for a great framework. > > > > Is it possible to control this behaviour or work around it? > > > > When I have this in m

[Wicket-user] Wicket changes relative urls to static ones - and messes up my deployment

2006-10-27 Thread Christian Hvid
I am resending this one as there seem to be some problems with sourceforge's mailing lists and gmail: Hi there. Thanks for a great framework. Is it possible to control this behaviour or work around it? When I have this in my html template: And I deploy it in my servlet container (which is to

[Wicket-user] Wicket changes relative urls to static ones - and messes up my deployment.

2006-10-27 Thread Christian Hvid
Hi there. Thanks for a great framework. Is it possible to control this behaviour or work around it? When I have this in my html template: And I deploy it in my servlet container (which is tomcat 5.5) it is changed to: That is: Wicket changes my relative URL into an absolute URL based on th

Re: [Wicket-user] Wicket requires my model to be serializable???

2006-09-14 Thread Christian Hvid
It helped. Thank you. On 14 Sep 2006, at 15:00, Dirk Markert wrote: > Maybe this helps: > > http://www.wicket-wiki.org.uk/wiki/index.php/FAQs#I_get_. > 27Internal_error_cloning_object.27_errors > > 2006/9/14, Christian Hvid <[EMAIL PROTECTED]>: Hi. > > I k

[Wicket-user] Wicket requires my model to be serializable???

2006-09-14 Thread Christian Hvid
Hi. I keep getting: WicketMessage: Internal error cloning object. Make sure all dependent objects implement Serializable. Class: ... ... I am using wicket 1.2.2 - when I roll back to an earlier version of 1.2 (checked out from main trunk in february) - the problem is gone and everything wo

Re: Results so far (was Re: [Wicket-user] VOTE)

2006-02-20 Thread Christian Hvid
I am one for a move to Java 5 as fast as possible. From my perspective Wicket is a young framework and if we are adventurously enough to choose Wicket, we are adventurously enough to be on Java 5. On 21 Feb 2006, at 00:27, Al Maw wrote: Alexandru Popescu wrote: I know that this might be

Re: [Wicket-user] Wicket reload broken?

2006-02-19 Thread Christian Hvid
is sure a nice framework. Congrats :-D On 19 Feb 2006, at 23:23, Juergen Donnerstag wrote: well, it works on my side though (as mentioned with 1.2 HEAD). It'll not work with 1.1.1 and we are (most likely) not going to backport the reloading strategy to 1.1.1 Juergen On 2/19/06, Christi

[Wicket-user] Re: Changing a div tag to a p tag breaks wicket?!

2006-02-19 Thread Christian Hvid
The problem is not present in 1.2 HEAD. On 19 Feb 2006, at 16:43, Christian Hvid wrote: Hi. Is there any sensible explanation for the following: I am writing a comments component with the following view / controller: Comments

Re: [Wicket-user] Wicket reload broken?

2006-02-19 Thread Christian Hvid
resource is requested. Juergen On 2/19/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote: head 1.1 branch? -Igor On 2/19/06, Juergen Donnerstag <[EMAIL PROTECTED]> wrote: its fixed in HEAD Juergen On 2/19/06, Christian Hvid < [EMAIL PROTECTED]> wrote: I have set up my wicket app

[Wicket-user] Wicket reload broken?

2006-02-19 Thread Christian Hvid
I have set up my wicket application to reload constantly my templates: public class MyWebApplication extends WebApplication {    public MyWebApplication() {    getSettings().setResourcePollFrequency(Duration.ONE_SECOND);    getPages().setHomePage(Index.class);    }     protected void init()

[Wicket-user] Changing a div tag to a p tag breaks wicket?!

2006-02-19 Thread Christian Hvid
Hi. Is there any sensible explanation for the following: I am writing a comments component with the following view / controller: Comments -- public class Comments extends Panel { static class Comment { String text;

Re: [Wicket-user] Setting the style class of a component?

2006-02-19 Thread Christian Hvid
ass"; } }); Martijn On 2/19/06, Christian Hvid <[EMAIL PROTECTED]> wrote: Hi wicket list. I am trying to set the class attribute of a wicket component: ... public class MyPage extends WebPage { private Label label1; public MyPage() { add(label1 = new Label("

[Wicket-user] Setting the style class of a component?

2006-02-19 Thread Christian Hvid
Hi wicket list. I am trying to set the class attribute of a wicket component: ... public class MyPage extends WebPage { private Label label1; public MyPage() { add(label1 = new Label("label1", "some text")); // How do I do this v ? if (Math.random() > 0.5) label1.setSt