Re: [Catalyst] post processing filter in Catalyst apps

2017-02-22 Thread Rajesh Kumar Mallah
Hi , Certain caching proxies can be configured to ignore query params, that is why we feel altering the path to be more robust. The templates do not have anything in them that modify the paths, all is of course in the catalyst app (Controller) itself so I am not really understanding the issue

Re: [Catalyst] post processing filter in Catalyst apps

2017-02-22 Thread Hartmaier Alexander
Hi, if you want to do this for to use caching but still force the files to get downloaded on a new app version I'd suggest appending a query parameter, we use ?v=[% constants.version %] which is set in the view: __PACKAGE__->config( CONSTANTS => { version => $Our::App::VERSION },