Re: [Catalyst] how to confirm before deleting

2009-01-22 Thread Patrick Donelan
e records with no security checks has bigger issues. ^_^ Except, what if the crawler is inside the user's browser? Google's Web Accelerator supposedly caused a lot of grief in 2005 when it started pre-fetching non-idempotent GET requests for unsuspecting users.. Patrick Donel

Re: [Catalyst] Tool for rendering web pages consistently though time ?

2009-01-21 Thread Patrick Donelan
Can you be more specific about "time" and "consistent"? How far into the future are we talking? Does it have to remain pixel-perfect? Patrick http://patspam.com On Thu, Jan 22, 2009 at 11:29 AM, lanas wrote: > Hi, > > I'm looking for a tool/procedure that could render web pages in a > consis

Re: [Catalyst] [SOT] cat webmail app?

2008-08-15 Thread Patrick Donelan
Not sure if it's what you want but Jesse Vincent showed some cool stuff you can do with Net::IMAP::Server in his YAPC::Europe talk yesterday, might be worth checking out. Patrick On Thu, Aug 14, 2008 at 3:50 PM, Roderick A. Anderson <[EMAIL PROTECTED]>wrote: > Kenny Gatdula wrote: > >> >> On Aug

Re: [Catalyst] Catalyst::*::REST and Javascript

2008-08-15 Thread Patrick Donelan
Hi Robert, Whereas ExtJS seems to be of form: > >userResource = new Resource('http://example.com/users?id=001') > ExtJS can send any sort of HTTP request you like - it doesn't really care how RESTful your URLs are. Like all Ajax toolkits the connectivity portion of the library is just a g

Re: [Catalyst] Re: RFC: Catalyst::Controller::REST::DBIC

2008-05-05 Thread Patrick Donelan
ECTED]> wrote: > On Mon, May 05, 2008 at 10:46:56AM +0100, luke saunders wrote: > > On Mon, May 5, 2008 at 1:20 AM, Patrick Donelan <[EMAIL PROTECTED]> wrote: > > > > > > > No, but how you provide an alternative to full RESTness for clients > that > >

Re: [Catalyst] Re: RFC: Catalyst::Controller::REST::DBIC

2008-05-04 Thread Patrick Donelan
> > No, but how you provide an alternative to full RESTness for clients that > don't handle the full range of HTTP verbs -is- a matter for discussion. > Which clients are we talking about here? I did a quick google search and could only find an off-hand remark along the lines of "in 2006 safari ha

Re: [Catalyst] RFC: Catalyst::Controller::REST::DBIC

2008-05-03 Thread Patrick Donelan
> > And this gets you the following endpoints to fire requests at: >/api/rest/cd/create >/api/rest/cd/id/[cdid]/update >/api/rest/cd/id/[cdid]/delete >/api/rest/cd/id/[cdid]/add_to_rel/[relation] >/api/rest/cd/id/[cdid]/remove_from_rel/[relation] Those URLs don't strike me as

Re: [Catalyst] RIA on Catalyst

2008-04-10 Thread Patrick Donelan
I recently built a site with Catalyst + ExtJs using Controller::REST. Even though I didn't have plans to let third-parties access the API, doing it according to REST increases the chances that you'll end up with a clean, uniform and (mostly) self-documenting API. To that end you might find my arti

[Catalyst] Authorization header absent under mod_fcgi

2008-03-11 Thread Patrick Donelan
However this doesn't seem to work for me (Apache/2.2.3, mod_fastcgi-2.4.6). The end result is that under mod_fastcgi Catalyst::Plugin::Authentication::Credential::HTTP doesn't work (and presumably neither does any other code that tries to do HTTP Basic Authentication). Patrick Donelan ___

Re: [Catalyst] Push services with catalyst

2008-03-10 Thread Patrick Donelan
If you're looking for in-depth discussion of Comet techniques I'd suggest you have a look at cometdaily.com. Cheers, Patrick On 3/6/08, Moritz Onken <[EMAIL PROTECTED]> wrote: > > But I still need a lot of code which is run by catalyst, like > authentication and of course the whole dbic schema.