i forget who asked the question about mapping resources to other names and folders, but it should now be possible to write your own resource locator that does whatever you want and then just plug that into wicket.
to implement your own resource location scheme, in your Application subclass, override getResourceLocator() and return a subclass of ResourceLocator() that is similar to DefaultResourceLocator(), but which adds your own resource location logic. part of that logic will probably be your own implementation of IResourceLocator, which you should do by subclassing AbstractResourceLocator. really the only method you have to write in this subclass is locate(final String path), so it's actually pretty easy to write a resource locator, and you can see an example of one by just looking at PathResourceLocator. have fun!
jon
------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click _______________________________________________ Wicket-develop mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/wicket-develop
