Re: [Catalyst] REST and text/html not supported

2009-06-29 Thread Angel Kolev
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Thanks! Now it works. Alejandro Imass wrote: You can override the default serializers: __PACKAGE__-config( 'default' = 'application/json', 'stash_key' = 'rest', 'map' = { 'text/html' = [ 'View', 'TT', ], 'text/xml' = [

[Catalyst] new catalyst features

2008-11-26 Thread Angel Kolev
Hi all. I wrote last my cat app 5 months ago and i dont know if catalyst is changed. Where i can check for all new features/sites/etc about Cat? Is there any major changes or anythink i have to know to continue writing catapps? Best regards! ___ List:

[Catalyst] Debug with FCGI

2008-08-01 Thread Angel Kolev
Hi all. I run my cat app as standalone FCGI server+apache2: script/myapp_fastcgi.pl -l /tmp/myapp.socket -n 5 How can i run it in debug mode same as catalyst development server? ___ List: Catalyst@lists.scsys.co.uk Listinfo:

Re: [Catalyst] Debug with FCGI

2008-08-01 Thread Angel Kolev
Chris Dolan wrote: On Aug 1, 2008, at 6:28 AM, Moritz Onken wrote: Try CATALYST_DEBUG=1 script/myapp_fastcgi.pl -l /tmp/myapp.socket -n 5 Prefixing env CATALYST_DEBUG=1 will work in more shells than just CATALYST_DEBUG=1. Chris ___ List:

Re: [Catalyst] Catalyst and PayPal

2008-04-21 Thread Angel Kolev
Zbigniew Lukasiak wrote: On Mon, Apr 21, 2008 at 1:43 PM, Kieren Diment [EMAIL PROTECTED] wrote: On 21 Apr 2008, at 21:22, Angel Kolev wrote: Hi fellas. I plan to include PayPal payment possibility in my cat website. Is there any plugin/tool that works with the paypal

[Catalyst] Help with Cwd Error

2008-01-16 Thread Angel Kolev
after some upgrades of my perl modules: [EMAIL PROTECTED]:~/progs/MyApp$script/myapp_server.pl /usr/bin/perl: symbol lookup error: /usr/local/lib/perl/5.8.8/auto/Cwd/Cwd.so: undefined symbol: strlcpy Can you help me please ___ List:

Re: [Catalyst] Help with Cwd Error

2008-01-16 Thread Angel Kolev
Thanks, Dave. This helps PathTools-3.26_01http://search.cpan.org/%7Ekwilliams/PathTools-3.26_01/ 2008/1/16, Dave Rolsky [EMAIL PROTECTED]: On Wed, 16 Jan 2008, Jonathan Rockway wrote: On Wed, 2008-01-16 at 20:41 +0200, Angel Kolev wrote: after some upgrades of my perl modules: [EMAIL

[Catalyst] View plugin for excell/OO

2008-01-14 Thread Angel Kolev
Is there any catalyst 'View' plugin for excel/open office sheets? ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/ Dev

Re: [Catalyst] View plugin for excell/OO

2008-01-14 Thread Angel Kolev
Jens Gassmann wrote: Hi Angel, Is there any catalyst 'View' plugin for excel/open office sheets? http://search.cpan.org/~stevan/Catalyst-View-Excel-Template-Plus-0.01/lib/Catalyst/View/Excel/Template/Plus.pm jens I want to export SQL with DBIx::Class to excel sheet, but

[Catalyst] error handling

2007-12-10 Thread Angel Kolev
Hi,all. Can anyone eplain me a bit about error handling. Where i can catch it and when? I use this: MyApp::C::MyController sub auto : Private { my ($self, $c) = @_; if ($c-error) { $c-stash-{error} = Critical ERROR!! ; $c-forward('/error'); $c-error(0);

Re: [Catalyst] DBIx relationships

2007-12-08 Thread Angel Kolev
/DBIx-Class-0.07006/lib/DBIx/Class/Manual/DocMap.pod Regards, Peter http://perl.dragonstaff.co.uk From: Angel Kolev [mailto:[EMAIL PROTECTED] Sorry but im just badly stucked at this :( I want to iterate using the model my $rs = $c

Re: [Catalyst] DBIx relationships

2007-12-07 Thread Angel Kolev
2007/12/8, J. Shirley [EMAIL PROTECTED]: First, two things: #1. This is not the DBIC mailing list #2. It is called DBIx::Class or DBIC. DBIx is an entire namespace hosting many projects. DBIx::Class is just one of those projects. Thanks, -Jay Sorry but im just badly stucked at this :(

[Catalyst] utf8 in mysql

2007-11-28 Thread Angel Kolev
Hi all. I have problem when fetch data from mysql. All data is in utf8 and in my phpmyadmin i can see all chars correctly. I dont know how to tell to my model to fetch data in utf8. With standart DBI module i can do it with : $dbh-do(set character set utf8); $dbh-do(set names utf8); Can u

Re: [Catalyst] utf8 in mysql

2007-11-28 Thread Angel Kolev
Thank you very much! It works, but whitout mysql_enable_utf8 = 1, ([error] Caught exception in engine Wide character in syswrite at /usr/local/share/perl/5.8.8/Catalyst/Engine.pm line 626.) Tobias Kremer wrote: Quoting Angel Kolev [EMAIL PROTECTED]: Hi all. I have problem when fetch

Re: [Catalyst] utf8 in mysql

2007-11-28 Thread Angel Kolev
Jonathan Rockway wrote: It wasn't actually working, it just appeared to. The OP is getting a blank screen because he hasn't loaded Catalyst::Plugin::Unicode into his app yet. Regards, Jonathan Rockway Thank you very much. The page isnt blank now with: use Catalyst qw/-Debug