You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@wicket.apache.org by Ryan Crumley <cr...@gmail.com> on 2010/06/16 23:39:04 UTC

Updates to wicketstuff-annontations and wicketstuff-merged-resources

All,

I checked in an enhancement to wicketstuff-merged-resources that allows
super classes to be annotated instead of requiring annotations on all
subclasses. Additionally the order files are specified within an annotation
are preserved. For example:

@JsContribution(values = { 'file1.js', 'file2.js' } )

will be rendered as:

<script src="file1.js" ...>
<script src="file2.js" ...>

The previous implementation ordered the script tags alphabetically based on
filename.

If anyone notices anything funny going on with this code please let me know
I will be happy to take a look.



Ryan