I am having trouble mounting shared resources

2011-08-05 Thread Alec Swan
Hello, I am having troubles figuring out how to organize my static resources. I would like to map a static URL alias, e.g. /js/fancybox, to a file such as /js/fancybox/version123/fancybox-123.js. I also want to be able to update the file version and after that have it served under the same

Re: I am having trouble mounting shared resources

2011-08-05 Thread Alec Swan
We are using Wicket 1.4.17 but we would like to do something like this mountResource(/mount/path, new SomeResourceReference()) as described in http://wicketinaction.com/ for Wicket 1.5. On Fri, Aug 5, 2011 at 12:41 AM, Alec Swan alecs...@gmail.com wrote: Hello, I am having troubles figuring

Re: I am having trouble mounting shared resources

2011-08-05 Thread Martin Grigorov
Quick solution: Resource res = new JavaScriptResourceReference().getResource(); mountSharedResource(somePath, res); On Fri, Aug 5, 2011 at 10:01 AM, Alec Swan alecs...@gmail.com wrote: We are using Wicket 1.4.17 but we would like to do something like this mountResource(/mount/path, new

RE: I am having trouble mounting shared resources

2011-08-05 Thread Miroslav F.
[mailto:alecs...@gmail.com] Sent: Friday, 05. August 2011 08:42 To: users@wicket.apache.org Subject: I am having trouble mounting shared resources Hello, I am having troubles figuring out how to organize my static resources. I would like to map a static URL alias, e.g. /js/fancybox

Re: I am having trouble mounting shared resources

2011-08-05 Thread Alec Swan
helps, Miro -Original Message- From: Alec Swan [mailto:alecs...@gmail.com] Sent: Friday, 05. August 2011 08:42 To: users@wicket.apache.org Subject: I am having trouble mounting shared resources Hello, I am having troubles figuring out how to organize my static resources. I

RE: I am having trouble mounting shared resources

2011-08-05 Thread Miroslav F.
Same way as is mounted .js and .css mount images and then in .css you can just use this path. -Original Message- From: Alec Swan [mailto:alecs...@gmail.com] Sent: Friday, 05. August 2011 19:30 To: users@wicket.apache.org Subject: Re: I am having trouble mounting shared resources

Re: I am having trouble mounting shared resources

2011-08-05 Thread Alec Swan
: Alec Swan [mailto:alecs...@gmail.com] Sent: Friday, 05. August 2011 19:30 To: users@wicket.apache.org Subject: Re: I am having trouble mounting shared resources Thanks, mounting JS worked perfectly. However, mounting CSS was problematic because it references quite a few images