Re: [Catalyst] XML RPC Server and RenderView

2007-08-24 Thread Matthieu Codron
1); Looks like a hack, 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 Searchab

Re: [Catalyst] Use Undo on A List Apart

2007-07-28 Thread Matthieu Codron
kind of functionality 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.

Re: [Catalyst] Use Undo on A List Apart

2007-07-28 Thread Matthieu Codron
g at all to make the undo happen. Did 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-arc

Re: [Catalyst] Use Undo on A List Apart

2007-07-28 Thread Matthieu Codron
vent it showing up if using the back button. 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.

Re: [Catalyst] Re: forwarding to chained actions

2007-04-24 Thread Matthieu Codron
patch, if I remember correctly. You can thus use full URLs, i.e. chains. You'll have to manually retrieve the response and submit it to the browser. -- Matthieu Codron [EMAIL PROTECTED] ___ List: Catalyst@lists.rawmode.org List

[Catalyst] Catalyst and SOAP?

2007-03-18 Thread Matthieu Codron
in .Net is a point-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/lis

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 s

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

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

2006-09-10 Thread Matthieu Codron
a stable version 1. Strong > community 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 >>

[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

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 ActionCl

[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 log

Re: [Catalyst] Program the logic

2006-07-01 Thread Matthieu Codron
Nilson Santos Figueiredo Junior a écrit : > On 6/29/06, Matthieu Codron <[EMAIL PROTECTED]> wrote: >> This does not matter much in most cases except big projects where >> business logic elements are reused in various situations around the >> application. > > Th

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