Hi,
currently the timestamp is appended to filenames if caching is enabled,
like <filename>-ts<epoch>.<extension>
During the process of migrating wicketstuff-tinymce to Wicket 1.5 it
occured to me, that tinymce recognizes it's baseurl based on it's filename:
https://github.com/wicketstuff/core/blob/master/jdk-1.5-parent/tinymce-parent/tinymce/src/main/java/wicket/contrib/tinymce/tiny_mce/tiny_mce_src.js#L53
So if I want to make tinymce to work, I have to modify the regexp's in
that if, so tinymce will be able to find it's baseurl and load
additional resources from there.
Is there a way to use a different caching naming, like
<filename>.<extension>?<epoch> (like Rails does)?
Thanks,
Peter