Re: [Wicket-user] 'Virtual' folders in url structure

2006-12-28 Thread Ryan
I could make '/folder-name1/mount/path' the complete mount however I would need to do this for about 100 different folder names. Perhaps it would be helpful to know what my end goal is... I would like /context-name/folder-name1/something to end up in a render where component.getVariation() return

Re: [Wicket-user] 'Virtual' folders in url structure

2006-12-17 Thread Erik van Oosten
Ryan, Perhaps the encoder described in http://issues.apache.org/jira/browse/WICKET-138 is something for you. Regards, Erik. > On 12/15/06, *Ryan* <[EMAIL PROTECTED] > wrote: > > I am trying to implement an IRequestCodingStrategy that creates a > "virtual"

Re: [Wicket-user] 'Virtual' folders in url structure

2006-12-17 Thread Johan Compagner
why aren't you making "/folder-name1/mount/path" not the complete mount? and add it twice for the HomePage.class ?(folder 2 and 1) through the WebApplication.mount() method. We can generate such urls now: (+/-) /contextName/folder-name1/listener/wicket-id-of-listener/[...] But these are currently

[Wicket-user] 'Virtual' folders in url structure

2006-12-15 Thread Ryan
I am trying to implement an IRequestCodingStrategy that creates a "virtual" directory in the url path for all generated links. An example url would be: /contextName/folder-name1/mount/path/Home /contextName/folder-name2/mount/path/Home I would like both urls to go to Home.class which is mounted