Re: [Catalyst] how to authenticate using database users

2009-03-20 Thread Karl Forner
Actually, there is really no reason to rely on the database for this. I absolutely disagree. There's an authentication mechanism already implemented in SGBD so why on earth not use it. Moreover if you want to benefit for logging features of SGBD like Oracle, your users have to be logged

Re: [Catalyst] how to authenticate using database users

2009-03-20 Thread Tomas Doran
Karl Forner wrote: 2) write a custom Authentication plugin, the your specific code is in _authenticate_against_SGDB package Serono::Gecko::Business::CredentialVerifier; use Catalyst::Plugin::Authentication::User::Hash; sub authenticate { my ( $self, $c, $realm, $authinfo ) = @_; snip

[Catalyst] UTF8 Characters in Chained Arguments

2009-03-20 Thread Rod Taylor
I've found that URI parameters (?foo=bar) function fine but unicode characters in Chain() arguments do not survive from one page to the next. Specifically, this does not work for a chain involving captured unicode based arguments: $uri = $c-uri_for(

Re: [Catalyst] UTF8 Characters in Chained Arguments

2009-03-20 Thread Tomas Doran
On 21 Mar 2009, at 00:02, Rod Taylor wrote: I've found that URI parameters (?foo=bar) function fine but unicode characters in Chain() arguments do not survive from one page to the next. This is almost certainly a bug. Can you try and work up a test case, either against C::P::U, or against