[cgiapp] Re: Report generation...

2004-08-24 Thread Mark Stosberg
On 2004-08-24, franki [EMAIL PROTECTED] wrote: Any idea if that works with openoffice? I just checked it and it works perfectly and seamlessly on OpenOffice. I use OpenOffice on my own desktop as my primary office suite. It is ironic that we have rtf as an open standard for word documents,

RE: [cgiapp] Re: Report generation...

2004-08-24 Thread Kleindenst, Fred
I should mention that I use Text::CSV and Text::CSV_XS (the difference being pure perl vs. not AND that the XS version supports binary data in the fields). # Output use Text::CSV_XS; my $csv_out = Text::CSV_XS-new( {'binary' = 1}); while ( my @row = $sth-fetchrow_array ) {

[cgiapp] Re: RFC - C::A::Plugin - abstract base class for plugins

2004-08-24 Thread Mark Stosberg
Cees -- On 2004-07-27, Cees Hek [EMAIL PROTECTED] wrote: It's been fairly quiet on the development side of things with CGI::Application, so I thought I would try to stir things up again ;) A little while ago, I noticed some talk on the Class::DBI list about a plugin architecture for