Hi, If you add a script with an external url then script combining is disabled.
>From DocumentLinkerImpl : public void addScriptLink(String scriptURL) { ... // If a script with an external URL is added, we can't combine the scripts after all. if (combineScripts && !scriptURL.startsWith(fullAssetPrefix)) combineScripts = false; ... } Would it not be possible to have two buckets of scripts, one for internal scripts and the other for external? The internal scripts could then combined into a virtual asset and the external ones rendered as separate script tags. The script combining and virtual assets were working wonderfully until I added script link to Google Analytics on all my pages. renderSupport.addScriptLink("http://www.google-analytics.com/ga.js"); I don't want to loose this cool feature of T5 and I would imagine adding Google Analytics to sites (in the manner above) would be a rather common thing to do. Regards, Steve. --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org