There is one that compresses javascript that I would like to test.
Please let me know.
Thanks
supa
--

Caribbean News
Online Shopping from USA, Canada, UK, France, Germany
On Facebook
Show your support for Zikula! Sign up at Github account and watch the Core project!

The standard filters are enabled via checkboxes in the Xanthia admin panel. There's not a simple way of using your own filters. One possible solution is to edit theme.php supplied with your theme to load your filter.
For example.. to register a new outputfilter use
Code
// initialise the engine
$engine = pnModAPIFunc('Xanthia','user','init');
// load a custom filter
$engine->DTS->load_filter('<type>', '<filter_name>');
See http://smarty.php.ne…api.load.filter.php for more details.
In this thread:
http://community.postnuke.com/module-Forum-viewtopic-topic-49584-start-0.htm#pid210182
Mark West wroted:
markwest
The standard filters are enabled via checkboxes in the Xanthia admin panel. There's not a simple way of using your own filters. One possible solution is to edit theme.php supplied with your theme to load your filter.
For example.. to register a new outputfilter use
Code
// initialise the engine
$engine = pnModAPIFunc('Xanthia','user','init');
// load a custom filter
$engine->DTS->load_filter('<type>', '<filter_name>');
See http://smarty.php.ne…api.load.filter.php for more details.

