Re: [Catalyst] perldoc install on VM

2011-09-15 Thread Kamen Naydenov
On Thu, Sep 15, 2011 at 06:21, Chris Stinemetz chrisstinem...@gmail.com wrote: You may need to configure your sources list (/etc/apt/sources.list). What do I need to add? Below is what my sources.list looks like. As I see you don't need to add something. I don't know your knowledge about

Re: [Catalyst] perldoc install on VM

2011-09-15 Thread kimi
Am Tue, 13 Sep 2011 23:22:45 -0500 schrieb Chris Stinemetz chrisstinem...@gmail.com: I'm trying to install perldoc onto the VM as described in the tutorial. But I am not having any success. Bellow is the end result. Thanks in advance! root@catalyst:~# apt-get install perl-doc Reading

Re: [Catalyst] perldoc install on VM

2011-09-15 Thread Chris Stinemetz
Thank you Kamen and Kimi. Your suggestions worked perfectly. ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/ Dev site:

[Catalyst] RESTful example apps?

2011-09-15 Thread Gavin Henry
Hi, I was wondering if any one has any example code implement a REST API in Catalyst? Thanks. -- http://www.suretecsystems.com/services/openldap/ http://www.surevoip.co.uk ___ List: Catalyst@lists.scsys.co.uk Listinfo:

RE: [Catalyst] RESTful example apps?

2011-09-15 Thread Ian.Docherty
-Original Message- From: Gavin Henry [mailto:gavin.he...@gmail.com] Sent: 15 September 2011 13:21 To: The elegant MVC web framework Subject: [Catalyst] RESTful example apps? Hi, I was wondering if any one has any example code implement a REST API in Catalyst? Thanks. [Ian replied.]

Re: [Catalyst] RESTful example apps?

2011-09-15 Thread Benjamin Hitz
It seems odd to manually set the response to '200' like that. Is this just a feature of true REST protocol, or you are not assuming anything about the server... Ben On Sep 15, 2011, at 5:53 AM, ian.doche...@nomura.com ian.doche...@nomura.com wrote: -Original Message- From: Gavin

Re: [Catalyst] RESTful example apps?

2011-09-15 Thread Gabriel Andrade
On Sep 15, 2011, at 9:53 AM, ian.doche...@nomura.com ian.doche...@nomura.com wrote: package MyApp::Web::Controller::Rest; use Moose; use Readonly; BEGIN { extends 'Catalyst::Controller::REST'; } my $base_url = '/rest'; Readonly::Scalar our $HTTP__OK