Re: [Catalyst] XML RPC Server and RenderView

2007-08-24 Thread Matthieu Codron
, but it works. The contents of the response body are overwritten by the plugin. -- Matthieu Codron [EMAIL PROTECTED] ___ List: Catalyst@lists.rawmode.org Listinfo: http://lists.rawmode.org/mailman/listinfo/catalyst Searchable archive: http

Re: [Catalyst] Use Undo on A List Apart

2007-07-28 Thread Matthieu Codron
. Could be in the plugin too, I guess. -- Matthieu Codron [EMAIL PROTECTED] ___ List: Catalyst@lists.rawmode.org Listinfo: http://lists.rawmode.org/mailman/listinfo/catalyst Searchable archive: http://www.mail-archive.com/catalyst@lists.rawmode.org/ Dev

Re: [Catalyst] Use Undo on A List Apart

2007-07-28 Thread Matthieu Codron
not know of that, thanks for the info! -- Matthieu Codron [EMAIL PROTECTED] ___ List: Catalyst@lists.rawmode.org Listinfo: http://lists.rawmode.org/mailman/listinfo/catalyst Searchable archive: http://www.mail-archive.com/catalyst@lists.rawmode.org/ Dev

Re: [Catalyst] Use Undo on A List Apart

2007-07-28 Thread Matthieu Codron
for years, yet it is not too common in web applications. -- Matthieu Codron [EMAIL PROTECTED] ___ List: Catalyst@lists.rawmode.org Listinfo: http://lists.rawmode.org/mailman/listinfo/catalyst Searchable archive: http://www.mail-archive.com/catalyst

[Catalyst] Catalyst and SOAP?

2007-03-18 Thread Matthieu Codron
-and-click operation, it was a no-brainer ... until I saw the serverside problems, that is :) Any ideas? -- Matthieu Codron [EMAIL PROTECTED] ___ List: Catalyst@lists.rawmode.org Listinfo: http://lists.rawmode.org/mailman/listinfo/catalyst Searchable

Re: [Catalyst] IMPORTANT: Catalyst::Plugin::FormBuilder obsoleted by ::Controller::FormBuilder

2007-01-03 Thread Matthieu Codron
On 1/2/07, Joe Landman [EMAIL PROTECTED] wrote: Daniel McBrearty wrote: is there any way that this info can somehow find its way onto the perldoc ? in big letters at the top ... ? Might be a good thing to have an MODULES_CURRENT/MODULES_OBSOLETE list, or ask the module authors to simply

Re: [Catalyst] RFC and first draft for page regions

2006-10-16 Thread Matthieu Codron
Hi, John Napiorkowski a écrit : Hi, [..] package myapp::Controller::pages sub page :Local :Regions(toc,content,ad) {} sub toc :Local {} sub content :Local {} sub ad :Local {} The plugin override the dispatch phase to create a bunch of hash refs in the stash, with each stash item

Re: [Catalyst] Configuring Catalyst::Model::DBIC::Schema from YAML

2006-10-01 Thread Matthieu Codron
Hi, Ash Berlin a écrit : Jon Warbrick wrote: Can a Catalyst::Model::DBIC::Schema model be configured from a YAML file via Catalyst::Plugin::Config::YAML? If so, how? Apologies if it's in the documentation somewhere, but if so I've yet to find it... Jon. The answer is yes. Strip off

Re: [Catalyst] Spending time with Catalyst (slightly OT)

2006-09-10 Thread Matthieu Codron
as well. Mailing list gets 100-200 message a day. B10m wrote: * Matthieu Codron [EMAIL PROTECTED] [2006-09-09 14:27:45+0200] I routinely develop Catalyst stuff for my own purposes and I find out that I am spending much more time actually working on the client side stuff ( HTML, CSS

[Catalyst] Spending time with Catalyst (slightly OT)

2006-09-09 Thread Matthieu Codron
Hi everyone, I routinely develop Catalyst stuff for my own purposes and I find out that I am spending much more time actually working on the client side stuff ( HTML, CSS and Javascript ) than on the server side. Have some of you the same feeling? Ever since playing with Ajax stuff, I have the

[Catalyst] Advice needed: Action for authentication check

2006-08-03 Thread Matthieu Codron
Hi everyone, I have been playing with some recent features of Catalyst like Actions and forward chains. I was wondering if an action could be used to provide encaspulated authentication check like in: sub dostuff : ActionClass('Secured') { ... } The Secured action would check if a user is

Re: [Catalyst] Advice needed: Action for authentication check

2006-08-03 Thread Matthieu Codron
Hi, Yuval Kogman a écrit : Did you see the ACL plugin? http://search.cpan.org/perldoc?Catalyst::Plugin::Authorization::ACL Yes, I had a quick look. Seems to do the trick (and much more), although I liked more the idea of attaching access control to actions via

Re: [Catalyst] Program the logic

2006-06-29 Thread Matthieu Codron
Brandon Black a écrit : [...] Controller(s) - This is the glue that binds Models and Views together. It accepts user input, possibly makes modifications to Model data, possibly retreives some Model data, and then displays a View at the user who gave the input. This is where the business