On Sat, Feb 7, 2009 at 5:07 AM, Marc Sebastian Pelzer <[email protected]> wrote: > (I need this kind of URL2template matching for different reasons) and > then started the build in web-server (./script/my_app_server.pl -d -p > 8080). > > When I call the template for the first time with some 'test' GET > parameter, it will be shown correctly in the output. When I then > modify this GET parameter to another value and do the request, it does > not change and still is showing me the first value I set.
Sounds like Catalyst's test server is incompatible with CGI.pm. CGI.pm has hooks to work with mod_perl and FastCGI, so I'd suggest you use one of those instead. If you're determined to use the Catalyst server, there's a sub you can call in CGI.pm that resets its globals. Just look at the source and you'll see it. - Perrin _______________________________________________ templates mailing list [email protected] http://mail.template-toolkit.org/mailman/listinfo/templates
