[Catalyst] Mistake in documentation

2011-04-08 Thread John M. Dlugosz
I would suppose that the maintainers follow this mailing list? Near the beginning of Catalyst::Manual::Intro, it reads: Note that actions with the |:Global | attribute are equivalent to using a |:Path('action_name') | attribute, so our action could be equivalently: However, the preceding

[Catalyst] help with :Path and config

2011-04-08 Thread John M. Dlugosz
I want to make an admin page available on a URL that's not called admin, but is something less obvious that people might guess. Even though it will have a password, it will stop people from just trying to find it. I thought to configure it using the normal config features: use 5.10.1;

RE: [Catalyst] Fatal errors in chained actions

2011-04-08 Thread Dami Laurent (PJ)
-Message d'origine- De : Ronald J Kimball [mailto:rkimb...@pangeamedia.com] Envoyé : jeudi, 7. avril 2011 20:11 À : The elegant MVC web framework Objet : [Catalyst] Fatal errors in chained actions I was surprised to discover that when a chained action throws a fatal error, Catalyst

[Catalyst] Typo in documentation

2011-04-08 Thread John M. Dlugosz
In Catalyst/Manual/Intro.pod, The URL (for example http://localhost.3000/foo/bar) consists of two parts The dot should be a colon. --John ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst

Re: [Catalyst] help with :Path and config

2011-04-08 Thread John M. Dlugosz
To achieve what you want, change the config: __PACKAGE__-config-{path} = '/secret_path'; method index($c) :Path {} Charlie Thanks. I found that mentioned in the COntroller docs, once you mentioned it. However, it also refers to :PathPrefix as well as :Local, :Path, etc, which I've

Re: [Catalyst] help with :Path and config

2011-04-08 Thread Charlie Garrison
Good evening, On 8/04/11 at 6:22 AM -0500, John M. Dlugosz wxju46g...@snkmail.com wrote: Thanks. I found that mentioned in the COntroller docs, once you mentioned it. However, it also refers to :PathPrefix as well as :Local, :Path, etc, which I've not seen documented elsewhere. What's

Re: [Catalyst] Typo in documentation

2011-04-08 Thread Matthias Dietrich
Hi John, Am 08.04.2011 um 11:39 schrieb John M. Dlugosz: In Catalyst/Manual/Intro.pod, The URL (for example http://localhost.3000/foo/bar) consists of two parts The dot should be a colon. it's already fixed in the repo and will be seen at the next CPAN released. Matthias -- rainboxx

Re: [Catalyst] Fatal errors in chained actions

2011-04-08 Thread Ashley Pond V
On Fri, Apr 8, 2011 at 2:39 AM, Dami Laurent (PJ) laurent.d...@justice.ge.ch wrote: -Message d'origine- De : Ronald J Kimball [mailto:rkimb...@pangeamedia.com] Envoyé : jeudi, 7. avril 2011 20:11 À : The elegant MVC web framework Objet : [Catalyst] Fatal errors in chained actions I was

[Catalyst] Static GET of an ogg audio file

2011-04-08 Thread jeff robinson
Hi I have created a directory called media in the path /root/static/media and put some audio files in there (happen to be ogg-vorbis). I am using the HTML5 tag audio in the Firefox 4 browser to play the file in an app. It mostly works but there is a problem in that the browser cannot determine the

Re: [Catalyst] Static GET of an ogg audio file

2011-04-08 Thread Larry Leszczynski
Hi Jeff - I have created a directory called media in the path /root/static/media and put some audio files in there (happen to be ogg-vorbis). I am using the HTML5 tag audio in the Firefox 4 browser to play the file in an app. It mostly works but there is a problem in that the browser cannot

Re: [Catalyst] Static GET of an ogg audio file

2011-04-08 Thread jeff robinson
Larry, Thanks for the quick response. Here are the headers - similar but not the same: Catalyst Content-Length: 238400 Content-Type: audio/ogg Last-Modified: Fri, 08 Apr 2011 15:20:31 GMT Status: 20 0 X-Catalyst: 5.80029 Apache --- Accept-Ranges: bytes Content-Length: 238400

Re: [Catalyst] Mistake in documentation

2011-04-08 Thread Mark A. Stratman
I fixed it in a branch: /people/mstratman/intro_attribute So when a core contributor gets around to it, can you please review and put in master (there's another /people/mstratman/* branch too, btw). On Apr 8, 2011, at 3:51 AM, John M. Dlugosz wrote: I would suppose that the maintainers follow