[Catalyst] Can't start Apache when using Catalyst

2007-09-23 Thread Octavian Rasnita
Hello, I am using Windows XP SP2, Apache 2.2.4, Active perl 5.8.8 build 822, mod_perl 2.03, and Catalyst 5.7010. If I want to start apache and if I have a virtualhost that uses Catalyst, most of the times it gives the following errors and doesn't want to start: [Sun Sep 23 00:35:36 2007]

Re: [Catalyst] MojoMojo-0.999005 and mysql

2007-09-23 Thread Marcus Ramberg
Applied a fix for mysql now, and released MojoMojo-0.999006.tar.gz to CPAN. Please test it and give me feedback. (Note,still dont have a working solution for Pg) Marcus On 9/22/07, Marcus Ramberg [EMAIL PROTECTED] wrote: Thanks for the report. I've been able to reproduce it on Postgresql as

Re: [Catalyst] Catalyst and chrome url (xul)

2007-09-23 Thread Jonathan Rockway
Javier E. Perez P. wrote: Hi all, I'm trying to display xul elements in a page in my proyect in catalyst, i already change the http header content_type to text/xml, but comparing the result with the same file published with apache (no-catalyst) and making use of firebug, i realize that the

[Catalyst] Catalyst::Controller::Rose::Simple = CatalystX::RoseIntegrator

2007-09-23 Thread Alexandre Jousset
Hello list, Following the preceding discussion, I scheduled Catalyst::Controller::Rose::Simple for deletion on CPAN and uploaded the same module under the name CatalystX::RoseIntegrator. Please wait the time required for it to show up. I gave it version 0.02 because of this and a

Re: [Catalyst] Catalyst::Controller::Rose::Simple

2007-09-23 Thread Matt S Trout
On Fri, Sep 21, 2007 at 08:29:26AM +0200, Alexandre Jousset wrote: Peter Karman a écrit : Alexandre Jousset wrote on 9/20/07 11:41 AM: I'm sure I haven't your experience but for me (and also for Peter Karman, C::C::Rose author), the suffix ::Simple (suggested by him) means Take all that

Re: [Catalyst] Catalyst::Model::Search

2007-09-23 Thread Matt S Trout
On Fri, Sep 21, 2007 at 10:00:14AM -0500, Peter Karman wrote: On 09/21/2007 09:39 AM, Jonathan Rockway wrote: Peter Karman wrote: I see Catalyst::Model::Search on CPAN now. As the maintainer of Catalyst::Model::SWISH, I'd love to get in on that namespace action. Is

Re: [Catalyst] CatalystX::CRUD

2007-09-23 Thread Matt S Trout
On Fri, Sep 21, 2007 at 08:57:35AM -0500, Peter Karman wrote: I've been thinking the last couple days about ways to expand Catalyst::Controller::Rose to play more nicely with other models besides C::M::RDBO. This is per mst's request to open up the RHTMLO goodness to non-RDBO users, and

Re: [Catalyst] Catalyst::Model::Search

2007-09-23 Thread Marcus Ramberg
Catalyst::Model::Search is a quite old module which have been living in Catalyst trunk for quite a while. It's being used by MojoMojo, and it just happened to work, so I pushed it to CPAN so that MojoMojo could depend on it. If anyone want to clean it up or document the Search base class, patches

Re: [Catalyst] MojoMojo-0.999005 and mysql

2007-09-23 Thread Josef Chladek
Am 23.09.2007 um 13:17 schrieb Marcus Ramberg: Applied a fix for mysql now, and released MojoMojo-0.999006.tar.gz to CPAN. Please test it and give me feedback. (Note,still dont have a working solution for Pg) Marcus hello marcus, sorry, but does not work on this end... josef mysql

Re: [Catalyst] CatalystX::CRUD

2007-09-23 Thread Perrin Harkins
On 9/23/07, Matt S Trout [EMAIL PROTECTED] wrote: Do you have any thoughts on how to paper over DBIC's ability to chain searches vs. the lack of that feature in RDBO? Isn't it primarily a way to build up your search criteria with multiple small method calls instead of one big one? It doesn't

Re: [Catalyst] Catalyst::Controller::Rose::Simple

2007-09-23 Thread Alexandre Jousset
Matt S Trout a écrit : I think you should just rewrite the damn thing to use Controller::Rose. That seems like a much better idea to me since Peter Karman's code is already pretty stable and provides most of the things you need. Like what? Just provide a different interface on top.

Re: [Catalyst] Catalyst and chrome url (xul)

2007-09-23 Thread Javier E. Perez P.
Sorry, I was getting a problem becose i try this code: http://mcy.velug.org.ve/jperez/catalyst-xul/menu-xul.xul ?xml version=1.0? html xmlns=http://www.w3.org/1999/xhtml; xmlns:xul=http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul; body xul:menubar id=sample-menubar

Re: [Catalyst] CatalystX::CRUD

2007-09-23 Thread Matt S Trout
On Sun, Sep 23, 2007 at 01:42:00PM -0400, Perrin Harkins wrote: On 9/23/07, Matt S Trout [EMAIL PROTECTED] wrote: Do you have any thoughts on how to paper over DBIC's ability to chain searches vs. the lack of that feature in RDBO? Isn't it primarily a way to build up your search

Re: [Catalyst] MojoMojo-0.999005 and mysql

2007-09-23 Thread Marcus Ramberg
On 9/23/07, Josef Chladek [EMAIL PROTECTED] wrote: Am 23.09.2007 um 13:17 schrieb Marcus Ramberg: Applied a fix for mysql now, and released MojoMojo-0.999006.tar.gz to CPAN. Please test it and give me feedback. (Note,still dont have a working solution for Pg) sorry, but does not work on

Re: [Catalyst] CatalystX::CRUD

2007-09-23 Thread Perrin Harkins
On 9/23/07, Matt S Trout [EMAIL PROTECTED] wrote: You've never implemented a saved search function that allows you to 'search within' a saved search? That's usually not a difficult problem, since you already have a way to turn criteria from a web form into a search, and you're just adding one

Re: [Catalyst] CatalystX::CRUD

2007-09-23 Thread Matt S Trout
On Sun, Sep 23, 2007 at 09:31:35PM -0400, Perrin Harkins wrote: On 9/23/07, Matt S Trout [EMAIL PROTECTED] wrote: You've never done a view all posts owned by the selected set of users link? This sort of thing in DBIC just becomes $posts_rs = $users_rs-search_related('posts');