Re [Catalyst] How to update data of already logged-in user?

2012-07-12 Thread Sergey Dmitriev
Thank you Lu. BTW, set_authenticated is marked as internal method in documentation, so it could be changed some day. 2012/7/12 鲁国庆(Jack Lu) luguoq...@gmail.com my $user = $c-find_user({ user_id = $c-user-user_id }); $c-set_authenticated($user); $user-email will be the new email.

[Catalyst] Catalyst Wiki attachment

2012-07-12 Thread Tobias Kremer
Does anyone know where all the attachments went? http://wiki.catalystframework.org/wiki/sitesrunningcatalyst Cheers Toby ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst Searchable archive:

[Catalyst] prepare_body_chunk in Catalyst 5.9

2012-07-12 Thread Eric Wright
Has something changed in Catalyst 5.9 with regards to prepare_body_chunk? I had some dependent Plugin code that is no longer working. None of the following method modifiers are triggered: around 'prepare_body_chunk' = sub { my ( $orig, $c, $chunk ) = @_; print STDERR AROUND

[Catalyst] Re: prepare_body_chunk in Catalyst 5.9

2012-07-12 Thread Eric Wright
Looking into this further - in the the source for Catalyst I see that the prepare_body statement has been moved to the Request object removing the ability to hook into this event via the Plugin architecture. I was using this hook to monitor the number of chunks transmitted to the server for

Re: Re [Catalyst] How to update data of already logged-in user?

2012-07-12 Thread Tomas Doran
On 12 Jul 2012, at 07:18, Sergey Dmitriev wrote: Thank you Lu. BTW, set_authenticated is marked as internal method in documentation, so it could be changed some day. Well volunteered? Cheers t0m ___ List: Catalyst@lists.scsys.co.uk Listinfo:

[Catalyst] Client Disconnect Behavior and Detection

2012-07-12 Thread neil
Having a problem with trying to stop further execution of actions in a controller when the client has disconnected from the server. I am using XML::Writer in a controller to write directly to the response object, treating as a file handle. The basic setup is as follows: my $writer =