Re: [Catalyst] Chained, slashes, and escaping

2007-03-06 Thread Matt Lawrence
Jim Spath wrote: I'm implementing tagging under Catalyst and want to be as unrestrictive as possible on the tag text. As such, I allow slashes in the tag text. To view information on a given tag, you hit the following path: /tag/URI_ESCAPED_TAG Which uses the following action in the Tag

Re: [Catalyst] Chained, slashes, and escaping

2007-03-06 Thread Carl Johnstone
When I access the following URI: /tag/sl%2Fashes $tag gets set to sl instead of sl/ashes. Apparently back in the early days of the web, a URL like that caused problems I ran into this a couple of weeks ago. As far as I could the development myapp_server actually deals with everything

Re: [Catalyst] Chained, slashes, and escaping

2007-03-06 Thread Jim Spath
Hi Matt, I had considered that. I just wanted to check with the list before I went that route. Thanks! - Jim Matt Lawrence wrote: Jim Spath wrote: I'm implementing tagging under Catalyst and want to be as unrestrictive as possible on the tag text. As such, I allow slashes in the tag text.

Re: [Catalyst] Chained, slashes, and escaping

2007-03-06 Thread Jim Spath
Unfortunately I'm using lighttpd. Carl Johnstone wrote: When I access the following URI: /tag/sl%2Fashes $tag gets set to sl instead of sl/ashes. Apparently back in the early days of the web, a URL like that caused problems I ran into this a couple of weeks ago. As far as I could the

[Catalyst] Chained, slashes, and escaping

2007-03-05 Thread Jim Spath
I'm implementing tagging under Catalyst and want to be as unrestrictive as possible on the tag text. As such, I allow slashes in the tag text. To view information on a given tag, you hit the following path: /tag/URI_ESCAPED_TAG Which uses the following action in the Tag controller: sub view

Re: [Catalyst] Chained, slashes, and escaping

2007-03-05 Thread Chris
On 3/6/07, Jim Spath [EMAIL PROTECTED] wrote: I'm implementing tagging under Catalyst and want to be as unrestrictive as possible on the tag text. As such, I allow slashes in the tag text. To view information on a given tag, you hit the following path: /tag/URI_ESCAPED_TAG Which uses the

Re: [Catalyst] Chained, slashes, and escaping

2007-03-05 Thread Jonathan Rockway
On Monday 05 March 2007 14:33, Jim Spath wrote: When I access the following URI: /tag/sl%2Fashes $tag gets set to sl instead of sl/ashes. Apparently back in the early days of the web, a URL like that caused problems with poorly written CGI scripts that blindly opened the PATH_INFO variable.