Re: [Catalyst] BBC's Perl on Rails nuttiness

2007-12-03 Thread Dave Howorth
You have to remember that Siemens are responsible for ensuring the stability of the public facing infrastructure. This makes it important not to introduce new modules, or upgrade existing modules, without an extensive testing period to make sure it works with all existing

[Catalyst] Stacked bar graphs

2007-12-03 Thread Terence Monteiro
Hi, I'm looking for a Perl library that I can use to show multiple values in a stacked bar graph in my Catalyst application. I tried SVG::TT::Graph and like it's style. However, it does not look so nice for stacked values as the colours of the bars for the second, third.. sets of data merge

Re: [Catalyst] Stacked bar graphs

2007-12-03 Thread Allen S. Rout
On Mon, 3 Dec 2007 18:40:02 +0530, Terence Monteiro [EMAIL PROTECTED] said: I'm looking for a Perl library that I can use to show multiple values in a stacked bar graph in my Catalyst application. I tried SVG::TT::Graph and like it's style. However, it does not look so nice for stacked

Re: [Catalyst] Stacked bar graphs

2007-12-03 Thread Cory Watson
On Dec 3, 2007 9:33 AM, Matthias Zeichmann [EMAIL PROTECTED] wrote: never used it, looks nice tho (and AFAIR was advertised here on the list) http://search.cpan.org/~gphat/Chart-Clicker-1.4.1/ http://www.onemogin.com/clicker/examples And it quite happily handles stacked bar charts. Outputs

Re: [Catalyst] BBC's Perl on Rails nuttiness

2007-12-03 Thread Wade . Stuart
Dave Howorth [EMAIL PROTECTED] wrote on 12/03/2007 05:44:06 AM: You have to remember that Siemens are responsible for ensuring the stability of the public facing infrastructure. This makes it important not to introduce new modules, or upgrade existing modules, without an

[Catalyst] Re: BBC's Perl on Rails nuttiness

2007-12-03 Thread A. Pagaltzis
http://iamseb.com/seb/2007/12/perl-on-rails-why-the-bbc-fails-at-the-internet/ ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst Searchable archive: http://www.mail-archive.com/[EMAIL PROTECTED]/

Re: [Catalyst] Catalyst::View::JSON parameters

2007-12-03 Thread Kevin Old
Hi Ian, I've run into this using the XMLSimple module in Catalyst::Action::REST and overwrote that module local to my application. I'd recommend overriding the C::V::JSON in your application (create a Catalyst directory beside the 'lib' directory in your project, make a View directory, then copy

[Catalyst] Catalyst::View::JSON parameters

2007-12-03 Thread Ian Docherty
I am trying to set the 'autoconv' flag for JSON so that numbers are quoted (it seems that Ext JS API requires it) I can't see any way to pass options to JSON through Catalyst::View::JSON On looking at the code for C::V::JSON it creates a new JSON::Any object but does not pass on any

RE: [Catalyst] Re: BBC's Perl on Rails nuttiness

2007-12-03 Thread Peter Edwards
From: A. Pagaltzis [mailto:[EMAIL PROTECTED] http://iamseb.com/seb/2007/12/perl-on-rails-why-the-bbc-fails-at-the-intern et/ OMG. Solaris and Perl 5.6? Dust off and nuke it from orbit. It's the only way to be sure. -Peter ___ List:

[Catalyst] Help needed on DBIx::Class::Schema::RestrictWithObject

2007-12-03 Thread Mario Minati
Hi, I'm trying to realize a resultset filtering with DBIx::Class::Schema::RestrictWithObject but have troubles in understanding how to set things up correctly. What I would like to achieve: Filter resultsets based on data in the Catalyst Session storage. Currently I have: package glueDB;

Re: [Catalyst] Catalyst::View::JSON parameters

2007-12-03 Thread Tatsuhiko Miyagawa
On 12/3/07, Ian Docherty [EMAIL PROTECTED] wrote: I did not fully understand this but I think you are suggesting using this to create a new JSON encoder. This is not what I want to do, I just want to pass parameters to an existing encoder. I didn't mean you want to build an entire new JSON

Re: [Catalyst] utf8 in mysql

2007-12-03 Thread Micah Jaffe
Having suffered too many wasted hours on encoding detection, I can sum up the best practice in a few sentences: 1) Know your encoding input 2) Know your encoding output requirements 3) If you're guessing (detecting), you're going to have some pretty (un)funny results, especially if you can

Re: [Catalyst] utf8 in mysql

2007-12-03 Thread Toby Corkindale
On Sun, 2007-12-02 at 16:41 +0200, Angel Kolev wrote: Hi again :) I found a solution i think. With Encode::Detect i can do: use Encode; require Encode::Detect; my $utf8 = decode(Detect, $data); Looks like this module uses Mozilla's encoding detector, which does a pretty good job in