Re: [Catalyst] Plugin::Authentication overrides $c-req-user

2009-02-11 Thread Rodrigo
On Tue, Feb 10, 2009 at 9:46 PM, Daniel Westermann-Clark d...@pobox.comwrote: Hi, At work we use, among other things, the value of REMOTE_USER in the request environment to authenticate users using our single-sign on system. We access this via $c-req-user, which the various engines set

[Catalyst] Re: loading data types from Oracle DB with DBIx::Class::Schema::Loader

2009-02-11 Thread Karl Forner
I believe I fixed the problem (cf my post bug found in and tentatively fixed in DBIx::Class::Schema::Loader::DBI::Oracle::_tables_list in the dbix mailing list). Here's a copy : We had a problem because DBIx::Class::Schema::Loader did not get the column_info for our Oracle database : no

[Catalyst] [OT]? Extends TheSchwartz

2009-02-11 Thread Lindolfo Lorn Rodrigues
Hi, sorry for the off-topic but i'm search at google and the uniq list that i found ( http://groups.google.com/group/theschwartz ) dont have nothing. I need a something like TheSchwartz::Scheduler, i was thinking in change TheSchwartz-work method, they will look the time to run a job and execute

Re: [Catalyst] Plugin::Authentication overrides $c-req-user

2009-02-11 Thread Daniel Westermann-Clark
On 2009-02-11 10:06:42 +0100, Rodrigo wrote: I'm not familiar with $c-req-user, but isn't REMOTE_USER a header you can read with $c-req-header('remote_user'), or whatever header name is being passed around? Some authentication schemes might provide headers containing the username, but

Re: [Catalyst] Plugin::Authentication overrides $c-req-user

2009-02-11 Thread Peter Karman
Daniel Westermann-Clark wrote on 02/11/2009 02:53 PM: On 2009-02-11 10:06:42 +0100, Rodrigo wrote: I'm not familiar with $c-req-user, but isn't REMOTE_USER a header you can read with $c-req-header('remote_user'), or whatever header name is being passed around? Some authentication schemes

Re: [Catalyst] Plugin::Authentication overrides $c-req-user

2009-02-11 Thread Tomas Doran
On 11 Feb 2009, at 21:37, Peter Karman wrote: Daniel Westermann-Clark wrote on 02/11/2009 02:53 PM: If no one is using this behavior, I'd be happy to provide patches to deprecate or remove it. Why not just add a remote_user() method on $c-req instead? It's a little more typing, but is more

[Catalyst] HTML::FormFu form elements

2009-02-11 Thread Greg Coates
I've run into a scenario where I need to be able to build an HTML::FormFu form and then only display portions of it in my template. (So, the typical [% form %] in the template will be replaced by something else, at least in my ideal world.) I tried doing this in the template: [%

Re: [Catalyst] HTML::FormFu form elements

2009-02-11 Thread Octavian Rasnita
From: Greg Coates gcoa...@csuchico.edu I've run into a scenario where I need to be able to build an HTML::FormFu form and then only display portions of it in my template. (So, the typical [% form %] in the template will be replaced by something else, at least in my ideal world.) I tried