Re: [Catalyst] Empty pdf file/ using Catalyst::View::PDF::Reuse

2010-03-10 Thread Lupin Deterd
On Wed, Mar 10, 2010 at 1:36 PM, Charlie Garrison garri...@zeta.org.au wrote: Good afternoon, On 6/03/10 at 4:51 PM +0800, Lupin Deterd lupindet...@gmail.com wrote: I'm using View::PDF::Reuse to create/generate pdf, and though it successfully create one but it's empty, following is

[Catalyst] strange generated DBIC accessor name

2010-03-10 Thread th
Hello catal[yi]sters, I'm going to be crazzy about one generated accessor name: __PACKAGE__-has_many( company_people, # I expected to be company_persons Jf::Schema::Result::CompanyPerson, { foreign.role = self.id }, ); Other names seems to be predictable: __PACKAGE__-has_many(

Re: [Catalyst] strange generated DBIC accessor name

2010-03-10 Thread Frazer Irving
The plural forms of autogenerated relationships are handle by Lingua::EN::Inflect (I think), and that module will give the plural of 'person' as 'people' Overriding the defaults is documented here:

Re: [Catalyst] strange generated DBIC accessor name

2010-03-10 Thread Denny
On Wed, 2010-03-10 at 14:15 +0100, t...@dix.cz wrote: Hello catal[yi]sters, I'm going to be crazzy about one generated accessor name: __PACKAGE__-has_many( company_people, # I expected to be company_persons Jf::Schema::Result::CompanyPerson, { foreign.role = self.id },

Re: [Catalyst] strange generated DBIC accessor name

2010-03-10 Thread th
I'm going to be crazzy about one generated accessor name: __PACKAGE__-has_many( company_people, # I expected to be company_persons Jf::Schema::Result::CompanyPerson, { foreign.role = self.id }, ); I have no people pattern in my database. Did I miss something? People is the

Re: [Catalyst] strange generated DBIC accessor name

2010-03-10 Thread J. Shirley
On Wed, Mar 10, 2010 at 7:29 AM, t...@dix.cz wrote: I'm going to be crazzy about one generated accessor name: __PACKAGE__-has_many(   company_people,         # I expected to be company_persons   Jf::Schema::Result::CompanyPerson,   { foreign.role = self.id }, ); I have no people pattern

[Catalyst] FastCGI error

2010-03-10 Thread Steve Rippl
Hi, I wonder if anyone with FastCGI experience recognizes what these are about? (error log for my apps VirtualHost) [Wed Mar 10 08:14:35 2010] [error] [client 10.22.0.85] FastCGI: comm with server /srv/WsdSis/script/wsdsis_fastcgi.pl aborted: idle timeout (30 sec), referer:

Re: [Catalyst] FastCGI error

2010-03-10 Thread J. Shirley
On Wed, Mar 10, 2010 at 9:04 AM, Steve Rippl rip...@woodlandschools.org wrote: Hi, I wonder if anyone with FastCGI experience recognizes what these are about? (error log for my apps VirtualHost) [Wed Mar 10 08:14:35 2010] [error] [client 10.22.0.85] FastCGI: comm with server

Re: [Catalyst] mod_fcgid on win32

2010-03-10 Thread Alan Hicks
fREW Schmidt wrote: Ok, so I may be getting somewhere with this, but I can't tell. I installed the .dll found here: http://www.fastcgi.com/dist/ and now my config looks like the following: VirtualHost *:8080 DocumentRoot C:/aircraft_ducting/root/ Alias /static

Re: [Catalyst] Empty pdf file/ using Catalyst::View::PDF::Reuse

2010-03-10 Thread Tomas Doran
Lupin Deterd wrote: hobbs suggest that it can be file as bug but I don't have idea how(I newbie on both Perl/Cat). Every CPAN distribution has a bug tracker linked: http://search.cpan.org/~jonallen/Catalyst-View-PDF-Reuse-0.03/ Just follow 'View/Report Bugs' Cheers t0m

[Catalyst] Google Summer of Code 2010

2010-03-10 Thread Devin Austin
Hey all, It's that time of the year again. Google Summer of Code is underway and Catalyst is looking for students. This is just a short blurb, but there's $4500 in it for students that participate and pass, and $500 goes to the Perl Foundation ($5000 in total). Check out

Re: [Catalyst] strange generated DBIC accessor name

2010-03-10 Thread Ben van Staveren
DBIx::Class tends to pluralize relationships, so if you have a one to many relationship with a table company_person, it will name it company_people. Generally speaking this is also predictable :) t...@dix.cz wrote: Hello catal[yi]sters, I'm going to be crazzy about one generated accessor

[Catalyst] Updated Catalyst::Authentication::Store::DBI

2010-03-10 Thread Evan Carroll
I created a fork on gitpan of Catalyst::Authentication::Store::DBI (C:A:S:DBI). http://github.com/EvanCarroll/Catalyst-Authentication-Store-DBI C:A:S:DBI is now Moosified á la C:A:S:DBIC it has subclassable User classes works with composite keys has updated docs and internals notes has tests for