Re: [Catalyst] OT: Recommendations for big-time hosting

2008-02-26 Thread Michele Beltrame
Hi! So what's you recommendation for absolutely bullet-proof hosting that let's you sleep at night? I think pair Networks would perfectly do: http://www.pair.com - look into the Dedicated section. Talk to you soon, Michele. -- Michele Beltrame http://www.cattlegrid.info/ ICQ 76660101 - MSN

Re: [Catalyst] FormBuilder - Can't locate object method form via package

2008-02-26 Thread Dermot
On 25/02/2008, Joshua McAdams [EMAIL PROTECTED] wrote: sub edit : Local Form { my ($self, $c) = @_; if ($c-form-submitted $c-form-validate) { $c-stash-{message} = 'Thanks for submitting the form'; } } Use $self-formbulder instead of $c-form. That chapter suffered from

[Catalyst] Needs some help with select and Controller::FormBuilder

2008-02-26 Thread Alex Povolotsky
Hello! I'm trying to make a form with select using Controller::FormBuilder. Code is quite straightforward === edit.fb === name: server_edit method: post fields: name: label: Server Name required: 1 type: text size: 60 descr:

Re: [Catalyst] Google Summer of Code

2008-02-26 Thread Paul Makepeace
Be sure to know about, http://code.google.com/apis/opensocial/ OpenSocial provides a common set of APIs for social applications across multiple websites. With standard JavaScript and HTML, developers can create apps that access a social network's friends and update feeds. On 2/26/08, Kieren

Re: [Catalyst] OT: Recommendations for big-time hosting

2008-02-26 Thread Brian Kirkbride
Michele Beltrame wrote: Hi! So what's you recommendation for absolutely bullet-proof hosting that let's you sleep at night? I think pair Networks would perfectly do: http://www.pair.com - look into the Dedicated section. Talk to you soon, Michele. Thanks Michele, I have heard many good

[Catalyst] Catalyst + Class::Workflow

2008-02-26 Thread Christopher H. Laco
Anyone done any integration with Class::Workflow and mapping object states to actions? I need to get back on the Mango wagon this week and I'm toying with making checkout nothing more than configurable states of an order. My first question is me wondering if checkout states are the same as

RE: [Catalyst] Catalyst + Class::Workflow

2008-02-26 Thread Matt Pitts
-Original Message- From: Christopher H. Laco [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 26, 2008 2:05 PM To: The elegant MVC web framework Subject: [Catalyst] Catalyst + Class::Workflow Anyone done any integration with Class::Workflow and mapping object states to actions? I

Re: [Catalyst] Google Summer of Code

2008-02-26 Thread Kieren Diment
On 27 Feb 2008, at 03:17, Paul Makepeace wrote: Be sure to know about, http://code.google.com/apis/opensocial/ OpenSocial provides a common set of APIs for social applications across multiple websites. With standard JavaScript and HTML, developers can create apps that access a social

Re: [Catalyst] Google Summer of Code

2008-02-26 Thread Kieren Diment
On 27 Feb 2008, at 01:15, Devin Austin wrote: Hi Kieren, I've always been interested in doing some sort of open source deal for social networks. So yes, I'd be interested in applying for this :-) -Devin Sounds good. I think that the deliverables for year one is to 'make it easier for

Re: [Catalyst] Google Summer of Code

2008-02-26 Thread Devin Austin
Sounds good. I think that the deliverables for year one is to 'make it easier for others to write social network applications' - cleaning up and documenting existing social network modules, providing specs for specific functions co. Year two would be about actually packaging it together,

RE: [Catalyst] Google Summer of Code

2008-02-26 Thread Matt Pitts
-Original Message- From: Kieren Diment [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 26, 2008 8:00 AM To: The elegant MVC web framework Subject: [Catalyst] Google Summer of Code So, it's that time again. I had a thought about this. I quite like some things about facebook.

[Catalyst] Re: Needs some help with select and Controller::FormBuilder

2008-02-26 Thread Stephen Sykes
Alex Povolotsky wrote: Hello! I'm trying to make a form with select using Controller::FormBuilder. Code is quite straightforward === edit.fb === name: server_edit method: post fields: name: label: Server Name required: 1 type: text size: 60

Re: [Catalyst] Testing Catalyst::Controller::REST based controllers

2008-02-26 Thread Damon Snyder
Hi Ash, Everyone, Thanks, that seemed to move me along further. I'm still unable to get the content part of the POST. I'm able to send the username and password through, but for some reason my controller gets empty content. Here is the request I've formed: # with mech object my $t1 =

Re: [Catalyst] Testing Catalyst::Controller::REST based controllers

2008-02-26 Thread Ash Berlin
On 26 Feb 2008, at 21:43, Damon Snyder wrote: Hi Ash, Everyone, Thanks, that seemed to move me along further. I'm still unable to get the content part of the POST. I'm able to send the username and password through, but for some reason my controller gets empty content. Here is the

Re: [Catalyst] Testing Catalyst::Controller::REST based controllers

2008-02-26 Thread Damon Snyder
Hi Ash, Tried that, but no luck. I'm starting to wonder if Test::WWW::Mechanize::Catalyst or Test::WWW::Mechanize is clobbering the content portion of the request... What versions of Test::WWW::Mechanize::Catalyst and Test::WWW::Mechanize are you using? I have 0.41 and 1.18 respectively.

[Catalyst] multiple database model support

2008-02-26 Thread Tyler Bird
hi I just developed a catalyst application and I was wondering how I could get it to support multiple databases. Instead of just one per application. Tyler ___ List: Catalyst@lists.scsys.co.uk Listinfo:

Re: [Catalyst] Google Summer of Code

2008-02-26 Thread Kieren Diment
On Wed, Feb 27, 2008 at 8:07 AM, Matt Pitts [EMAIL PROTECTED] wrote: I'm far from being a student, so I couldn't participate via SOC, but I did start to write an all-encompassing library to access Google's GData API a while back for a social networking site that I wanted to launch. I

Re: [Catalyst] Testing Catalyst::Controller::REST based controllers

2008-02-26 Thread Damon Snyder
Hi Ash, Ah!!! Ok, here is what ended up working: $req = POST( http://localhost/rest/something;, 'X-Username' = 'x', 'X-Password' = 'x', 'Content_Type' = 'text/json', 'Content' =

Re: [Catalyst] Google Summer of Code

2008-02-26 Thread Stefan Petrea
erm,I would like to ask the following: Are you reffering to building a framework used to create social networking sites ? Or to create something that analyses the social network site which already exists ? On Tue, Feb 26, 2008 at 3:09 PM, Kieren Diment [EMAIL PROTECTED] wrote: On Wed, Feb 27,

[Catalyst] Re: Dumb question again: nowCatalyst::Controller::FormBuilder

2008-02-26 Thread Stephen A Sykes
Peter Sørensen wrote: Maybe FormBuilder don't like: .. fields: name: name: Location name .. You use name as both field and object name. Just a guess. Regards Peter Sorensen/University of Southern Denmark/mail: [EMAIL PROTECTED]

Re: [Catalyst] Re: Needs some help with select and Controller::FormBuilder

2008-02-26 Thread Kieren Diment
On 27 Feb 2008, at 08:21, Stephen Sykes wrote: Alex Povolotsky wrote: Hello! I'm trying to make a form with select using Controller::FormBuilder. Code is quite straightforward === edit.fb === name: server_edit method: post [snip spaghetti] Why not map directly from your model...

Re: [Catalyst] Catalyst::Authentication::Store::LDAP confusion

2008-02-26 Thread Kieren Diment
On 27 Feb 2008, at 17:30, Richardson, Matthew wrote: Hello, I am trying to following the documentation from CPAN on this, but I am confused. In MyApp.pm I have the following: use Catalyst qw/-Debug ConfigLoader Static::Simple Session

Re: [Catalyst] Catalyst + Class::Workflow

2008-02-26 Thread Kieren Diment
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 27 Feb 2008, at 06:05, Christopher H. Laco wrote: Anyone done any integration with Class::Workflow and mapping object states to actions? I need to get back on the Mango wagon this week and I'm toying with making checkout nothing more than