How do I avoid the -ver-XXX version number from my resource reference in Wicket 1.5.0?
More details: I want to use Scriptaculous, and have a AbstractDefaultAjaxBehavior that does a renderHead(...) { response.renderJavaScriptReference(new JavaScriptResourceReference(this.getClass(), "scriptaculous.js"); } This adds the <script src ... > to the header section, however, the url to the scriptaculous includes the Wickek -ver-XXX rewrite. This in turn results in the scriptaculous auto include builder,effects,dragdrop etc not to load properly, due to how the script determines the base path. I can of course fix the way scriptaculous determines the path, but the best way would be to have wicket serve this up as "scriptaculous.js". What am I doing wrong? Can it be fixed? I've looked at the FilenameWithVersionResourceCachingStrategy, and I know I can change that for the application, but won't I then change it for all the resources? I would like only this to _not_ have the version information. Thanks in advance. A --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org