[Catalyst] Re: Launch of new (to Catalyst) site

2008-01-02 Thread Fayland Lam
Dave Rolsky wrote: I finally was able to launch my first major project using Catalyst yesterday, the latest version of my VegGuide.Org site. This version uses Catalyst with Mason and Alzabo. One of the great things about this project was that I could use my existing model code as-is with basica

[Catalyst] Re: "Rails is a Ghetto"

2008-01-02 Thread Aristotle Pagaltzis
http://globalnerdy.com/2008/01/02/%E2%80%9Cnow-while-rails-is-weak-we-must-strike%E2%80%9D/ Regards, -- Aristotle Pagaltzis // ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/ca

Re: [Catalyst] How Catalyst views files without extensions

2008-01-02 Thread J. Shirley
On Jan 2, 2008 4:24 PM, Emily Heureux <[EMAIL PROTECTED]> wrote: > Does Catalyst be default view files without extensions as something other > than just files, like methods? I am having trouble getting an applet to > run > that takes a filename as one of the parameters, and it works as long as >

[Catalyst] Re: Best Practices for wizards, steps?

2008-01-02 Thread Aristotle Pagaltzis
* Dennis Daupert <[EMAIL PROTECTED]> [2008-01-02 15:35]: > Hmmm, ok, so for example, I might set up widgets to steps thru > URL's like: > > /widget/35/photo/1, /widget/35/photo/2, etc., and use database > paging set to row => 1 > > Something like that? Possibly. Does the user submit data between

[Catalyst] How Catalyst views files without extensions

2008-01-02 Thread Emily Heureux
Does Catalyst be default view files without extensions as something other than just files, like methods? I am having trouble getting an applet to run that takes a filename as one of the parameters, and it works as long as the file has an extension. The app also works in a non-Catalyst application

Re: [Catalyst] Running Catalyst as 'nobody'

2008-01-02 Thread Jonathan Rockway
On Wed, 2008-01-02 at 15:46 -0800, Emily Heureux wrote: > Hi, I'd like to change the owner of the server startup to nobody, no matter > who starts it. My guess is that I put something like: chown nobody > somewhere in the myapp_server.pl file? chown changes file permissions; not process permissi

[Catalyst] Running Catalyst as 'nobody'

2008-01-02 Thread Emily Heureux
Hi, I'd like to change the owner of the server startup to nobody, no matter who starts it. My guess is that I put something like: chown nobody somewhere in the myapp_server.pl file? Emily ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.sc

Re: [Catalyst] Best Practices for wizards, steps?

2008-01-02 Thread eden
On Jan 1, 2008 1:34 PM, Dennis Daupert <[EMAIL PROTECTED]> wrote: > I'm curious what people consider best practices for developing widgets that > involve a series of steps, funtions that involve clicking thru a series of > pages. > > I want to make widgets to create slideshows, photo albums, a stru

[Catalyst] Launch of new (to Catalyst) site

2008-01-02 Thread Dave Rolsky
I finally was able to launch my first major project using Catalyst yesterday, the latest version of my VegGuide.Org site. This version uses Catalyst with Mason and Alzabo. One of the great things about this project was that I could use my existing model code as-is with basically no changes, whi

Best practice for relative URIs (was: [Catalyst] Does uri_for() respect https?)

2008-01-02 Thread Ashley Pond V
Turns out this is probably being caused by a proxy/SSL-config issue. But it leads to another question. What's the best practice for relative URIs so that this sort of problem becomes irrelevant? This seems like the right choice: [% c.uri_for("/my/path").path_query %] Any say otherwise? -Ash

Re: [Catalyst] Re: Best Practices for wizards, steps?

2008-01-02 Thread Ashley Pond V
On Jan 2, 2008, at 6:25 AM, Dennis Daupert wrote: Hmmm, ok, so for example, I might set up widgets to steps thru URL's like: /widget/35/photo/1, /widget/35/photo/2, etc., and use database paging set to row => 1 Something like that? Sure. Ash, when you mention roles, what kind of roles are y

[Catalyst] Re: Best Practices for wizards, steps?

2008-01-02 Thread Dennis Daupert
Aristotle: > make sure each step has its own URI, as opposed > to using the session to store the user's position. Ashley: > With roles, chaining, captures, and flash messages > you can make an extremely convoluted logic tree > pretty straightforward to code. Hmmm, ok, so for example, I might s