Re: [Catalyst] Announce: Website In A Box

2007-03-20 Thread Kieren Diment
On 20/03/07, Jon [EMAIL PROTECTED] wrote: After that all started OK, but on the home page it came up with the warning: read_file '/users/jon/public_html/WIAB/trunk/WIAB/t/content/index.pod' - sysopen: No such file or directory at

[Catalyst] Help needed with Unicode

2007-03-20 Thread Mario Minati
Hello @all, now it's my time to make my Catalyst app Unicode aware and I (like some others) ran into a Unicode problem. I read the article from the calender 2006 and read the unicode chapter in Daminas Advanced Perl Programming hence I don't manage to get it working. What I have: - Catalyst,

Re: [Catalyst] Help needed with Unicode

2007-03-20 Thread Carl Franks
On 20/03/07, Mario Minati [EMAIL PROTECTED] wrote: - text with german umlauts from lexicon style pm files is currupted, it is Does your .pm file have use utf8; ? It's necessary for when you have UTF-8 in perl source files. Cheers, Carl ___ List:

[Catalyst] RFC: Would this be useful to anyone?

2007-03-20 Thread John Napiorkowski
I have a version of Catalyst::Model::DBIC::Schema where I hacked in some code to automatically look at the query string and perform some limits and sorting. Basically if it sees a something like: ...?[table].page=1[table].max-results=10[table].order-by=[column].[direction] It will

Re: [Catalyst] Help needed with Unicode

2007-03-20 Thread Mario Minati
Am Dienstag 20 März 2007 16:52 schrieb Carl Franks: On 20/03/07, Mario Minati [EMAIL PROTECTED] wrote: - text with german umlauts from lexicon style pm files is currupted, it is Does your .pm file have use utf8; ? It's necessary for when you have UTF-8 in perl source files. Waow that did

[Catalyst] Changing the request-user_agent

2007-03-20 Thread Adeola Awoyemi
Hi all, Is it possible to change the request-user_agent? I am writing some tests where I want to set the user_agent before making the request and have my app behave differently depending on the user agent. Thanks, Adeola. ___ List:

Re: [Catalyst] Changing the request-user_agent

2007-03-20 Thread Simon Wilcox
On Tue, 20 Mar 2007, Adeola Awoyemi wrote: Is it possible to change the request-user_agent? I am writing some tests where I want to set the user_agent before making the request and have my app behave differently depending on the user agent. You mean in Catalyst::Test ? Looks to me as though

Re: [Catalyst] Help needed with Unicode

2007-03-20 Thread Mario Minati
Am Dienstag 20 März 2007 17:07 schrieb Renaud Drousies: (The formdata is submitted through ajax/xmlhttprequest, is that a possible source for that problem?) That was for me. Which request headers are you sending when doing the ajax call? If you are not doing so yet, try using

Re: [Catalyst] Help needed with Unicode

2007-03-20 Thread Mario Minati
Am Dienstag 20 März 2007 17:16 schrieb Dave Rolsky: On Tue, 20 Mar 2007, Mario Minati wrote: Am Dienstag 20 März 2007 16:52 schrieb Carl Franks: On 20/03/07, Mario Minati [EMAIL PROTECTED] wrote: - text with german umlauts from lexicon style pm files is currupted, it is Does your .pm

Re: [Catalyst] Help needed with Unicode

2007-03-20 Thread Renaud Drousies
Am Dienstag 20 März 2007 17:07 schrieb Renaud Drousies: (The formdata is submitted through ajax/xmlhttprequest, is that a possible source for that problem?) That was for me. Which request headers are you sending when doing the ajax call? If you are not doing so yet, try using

Re: [Catalyst] YAML config embedded path_to mysql_read_default_file

2007-03-20 Thread apv
Worked perfectly, thanks. Sorry I didn't extrapolate from the docs to just try it. Once you showed it, it seemed obvious. -Ashley On Monday, Mar 19, 2007, at 05:51 US/Pacific, Jason Kohles wrote: On Mar 18, 2007, at 7:26 PM, apv wrote: So, I would like to use a mysql connection file

Re: [Catalyst] Help needed with Unicode

2007-03-20 Thread Mario Minati
Am Dienstag 20 März 2007 19:12 schrieb Renaud Drousies: Am Dienstag 20 März 2007 17:07 schrieb Renaud Drousies: (The formdata is submitted through ajax/xmlhttprequest, is that a possible source for that problem?) That was for me. Which request headers are you sending when doing the

Re: [Catalyst] RFC: Would this be useful to anyone?

2007-03-20 Thread Mario Minati
Am Dienstag 20 März 2007 16:50 schrieb John Napiorkowski: I have a version of Catalyst::Model::DBIC::Schema where I hacked in some code to automatically look at the query string and perform some limits and sorting. Basically if it sees a something like:

[Catalyst] creating action classes for chained actions, trouble with overriding -match

2007-03-20 Thread John Napiorkowski
Hi, I've been working on some action classes that are primarily used by chained actions (although they could be used otherwise) and running into some confusion about overriding the -match method. It seems like if you have an action chain with several actions that have action classes, the

Re: [Catalyst] creating action classes for chained actions, trouble with overriding -match

2007-03-20 Thread John Napiorkowski
- Original Message From: John Napiorkowski [EMAIL PROTECTED] To: catalyst@lists.rawmode.org Sent: Tuesday, March 20, 2007 4:07:29 PM Subject: [Catalyst] creating action classes for chained actions, trouble with overriding -match Hi, I've been working on some action classes that are

[Catalyst] Re: Announce: Website In A Box

2007-03-20 Thread Kieren Diment
OK, some people pointed out problems with the Makefile.PL and the structure of the tarball, so there's already a 0.011 release at http://websiteinabox.googlecode.com/files/WIAB-0.011.tar.gz Thanks for the feedback to date. On 20/03/07, Kieren Diment [EMAIL PROTECTED] wrote: I'm pleased to

Re: [Catalyst] Re: Announce: Website In A Box

2007-03-20 Thread Christopher H. Laco
Where's the shopping cart? :-) signature.asc Description: OpenPGP digital signature ___ List: Catalyst@lists.rawmode.org Listinfo: http://lists.rawmode.org/mailman/listinfo/catalyst Searchable archive:

Re: [Catalyst] Help needed with Unicode

2007-03-20 Thread Mario Minati
Am Dienstag 20 März 2007 17:35 schrieb Bill Moseley: On Tue, Mar 20, 2007 at 04:40:57PM +0100, Mario Minati wrote: now it's my time to make my Catalyst app Unicode aware and I (like some others) ran into a Unicode problem. - Postgres database with UTF8 enabled (ENCODING = 'UTF8'). By

Re: [Catalyst] Help needed with Unicode

2007-03-20 Thread Mario Minati
Am Dienstag 20 März 2007 20:03 schrieben Sie: Am Dienstag 20 März 2007 19:12 schrieb Renaud Drousies: Am Dienstag 20 März 2007 17:07 schrieb Renaud Drousies: (The formdata is submitted through ajax/xmlhttprequest, is that a possible source for that problem?) That was for me.

Re: [Catalyst] Re: Announce: Website In A Box

2007-03-20 Thread Nigel Metheringham
On 20 Mar 2007, at 21:43, Christopher H. Laco wrote: Where's the shopping cart? :-) In the canal? Actually I thought you had it at present. -- [ Nigel Metheringham [EMAIL PROTECTED] ] [ - Comments in this message are my own and not ITO opinion/policy - ]

Re: [Catalyst] Changing the request-user_agent

2007-03-20 Thread Bogdan Lucaciu
On Tuesday 20 March 2007 18:48, Adeola Awoyemi wrote: s it possible to change the request-user_agent? I am writing some   tests where I want to set the user_agent before making the request   and have my app behave differently depending on the user agent.