Re: Remove CSS & JS stacks in v5.3

2011-07-13 Thread stephanos2k
Actually I do! I have my own implementation based on https://github.com/got5/tapestry5-jquery tapestry5-jquery . And it works, too :-) So the question still stands, *how to get rid of it*? -- View this message in context: http://tapestry.1045711.n5.nabble.com/Remove-CSS-JS-stacks-in-v5-3-tp457

Re: Remove CSS & JS stacks in v5.3

2011-07-12 Thread Martin Strand
On Tue, 12 Jul 2011 17:13:52 +0200, stephanos2k wrote: It seems AssetStack was removed in v5.3. But I modified it to this (using Scala): def contributeJavaScriptStackSource(configuration: MappedConfiguration[String, JavaScriptStack]) { configuration.`override`("core", new Java

Re: Remove CSS & JS stacks in v5.3

2011-07-12 Thread Thiago H. de Paula Figueiredo
On Tue, 12 Jul 2011 12:13:52 -0300, stephanos2k wrote: This removes almost everything except for: /ProgressiveDisplay.js/ (which I guess is not actually a part of the stack). This is included (and needed) by the ProgressiveDisplay component, so I don't think you really want to remove it

Re: Remove CSS & JS stacks in v5.3

2011-07-12 Thread stephanos2k
Thanks for the suggestion! It seems AssetStack was removed in v5.3. But I modified it to this (using Scala): def contributeJavaScriptStackSource(configuration: MappedConfiguration[String, JavaScriptStack]) { configuration.`override`("core", new JavaScriptStack { def getInit

Re: Remove CSS & JS stacks in v5.3

2011-07-12 Thread Martin Strand
I'm doing something like this in 5.2, I suppose it ought to work in 5.3 too: public void contributeJavaScriptStackSource(MappedConfigurationJavaScriptStack> configuration) { List scripts = Collections.emptyList(); List stylesheets = Collections.emptyList(); configuratio