> Using the fragment is probably a bad idea. It's not supported by all > servers so it can end up lost on the backend depending on your setup.
I have see fragments cause problems in server-side code that is naive about URL handling, like splitting the string on "?" and assuming all the stuff after the question mark is query params when it might in fact include a fragment. Since most (all?) of the URLs you see being passed around in Catalyst code are actual URI objects (http://search.cpan.org/perldoc?URI), just treat them as objects and use all the nice URI methods for manipulating them and you'll be fine. Larry _______________________________________________ List: [email protected] Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst Searchable archive: http://www.mail-archive.com/[email protected]/ Dev site: http://dev.catalyst.perl.org/
