RE: [cgiapp] new competition: CGI::Prototype

2004-12-02 Thread Jason A. Crome
In working on the PHP port, I've had a number of people respond asking for more/better usage examples -- and I'm really beginning to think that this may be the key to gaining more 'street cred' among perl developers (though there's certainly plenty already). . . (snip) In short, I think

Re: [cgiapp] App instance not accessible from child module: Code or design flaw?

2004-12-02 Thread Michael Peters
Kasturirangan Rangaswamy wrote: Hi, I am building a web-based system and am trying to use CGI::Application and HTML::Template to achieve both a modular structure and design/code separation. My design goal can be summarized as: -- Base.pl is instance script for base module Base.pm -- Base.pm throws

[cgiapp] Using the submit button as the runmode holder

2004-12-02 Thread Rob Kinyon
In http://www.perlmonks.org/?node_id=411937, madhatter suggested using the submit button to hold the runmode name. What do people think of that? - Web Archive: http://www.mail-archive.com/cgiapp@lists.erlbaum.net/

Re: [cgiapp] Using the submit button as the runmode holder

2004-12-02 Thread Michael Peters
Rob Kinyon wrote: In http://www.perlmonks.org/?node_id=411937, madhatter suggested using the submit button to hold the runmode name. What do people think of that? It's not completely bad since you can have the same form submit to different run modes with the same data without having to do some

Re: [cgiapp] Re: new competition: CGI::Prototype (and ::Callbacks)

2004-12-02 Thread Michael Peters
Mark Stosberg wrote: On 2004-12-02, Jason A. Crome [EMAIL PROTECTED] wrote: In working on the PHP port, I've had a number of people respond asking for more/better usage examples -- and I'm really beginning to think that this may be the key to gaining more 'street cred' among perl developers

Re: [cgiapp] File Streaming

2004-12-02 Thread Tobias Henoeckl
Hi, thanks to all, the header_type('none') is a much better workaround on the customer's machines at the moment because it uses the lib as it is. For the future I'd be glad though a to have more integrated solution. On Thu, Dec 02, 2004 at 10:55:10AM -0500, Jason Purdy wrote: I do some

Re: [cgiapp] File Streaming

2004-12-02 Thread Tobias Henoeckl
On Thu, Dec 02, 2004 at 10:53:59AM -0500, Michael Peters wrote: +if (ref($body) ne 'GLOB') { +# Support scalar-ref for body return +$bodyref = (ref($body) eq 'SCALAR') ? $body : \$body; One question: if you are just checking for a GLOB, will that catch class

[cgiapp] RFC: CAP::Stream

2004-12-02 Thread Jason Purdy
I hope I'm not stepping on anyone's toes, but I've always wanted to contribute to the cgiapp space! If someone's interested in taking over or helping, let me know. I took a first crack at how the CAP::Stream module would work, doc-wise and I put the pod doc up on my site for review:

Re: [cgiapp] Re: new competition: CGI::Prototype (and ::Callbacks)

2004-12-02 Thread Jeff MacDonald
Um, maybe I'm way out of the loop, but would it be useful at all if CGI::Application had a... website ;) You know, easy to navigate, tutorials, resources, examples all that great stuff. .. maybe even a wiki ? Jeff. On Thu, 02 Dec 2004 16:13:39 -0500, Michael Peters [EMAIL PROTECTED] wrote:

RE: [cgiapp] Re: new competition: CGI::Prototype (and ::Callbacks)

2004-12-02 Thread Jason A. Crome
We do have a wiki! http://twiki.med.yale.edu/twiki2/bin/view/CGIapp/WebHome -- Jason A. Crome Senior Software Engineer, DEVNET, Inc. E-Mail: [EMAIL PROTECTED] http://www.devnetinc.com -Original Message- From: Jeff MacDonald

Re: [cgiapp] Re: new competition: CGI::Prototype (and ::Callbacks)

2004-12-02 Thread Jeff MacDonald
Try to take this without offense... how about one with a url that doesn't suck, and actually comes up in google results. ? :) Let me know what kind of traffic it generates, and I might consider hosting it for free... Jeff. On Thu, 2 Dec 2004 17:27:52 -0600, Jason A. Crome [EMAIL PROTECTED]

[cgiapp] CGI::App website (was: Re: new competition: CGI::Prototype (and ::Callbacks))

2004-12-02 Thread Mark Stosberg
On 2004-12-02, Jeff MacDonald [EMAIL PROTECTED] wrote: Try to take this without offense... how about one with a url that doesn't suck We have that, too: http://www.cgi-app.org/ I registered that myself, and have it redirected to the wiki now. My intent is to continue to use it for

Re: [cgiapp] CGI::App website (was: Re: new competition: CGI::Prototype (and ::Callbacks))

2004-12-02 Thread Jeff MacDonald
Aye, I admin a MoinMoin wiki, and i really love it. It's pretty much changed the way our company stores information, in about one week.. and people actually use it. Jeff. On Fri, 3 Dec 2004 00:53:28 + (UTC), Mark Stosberg [EMAIL PROTECTED] wrote: On 2004-12-02, Jeff MacDonald [EMAIL

Re: [cgiapp] Re: RFC: CAP::Stream

2004-12-02 Thread Jason Purdy
I updated the documentation from Mark's feedback: http://www.purdy.info/useperl/Stream.html I also took a first crack at the code for the Plugin - it wasn't actually that bad: http://www.purdy.info/useperl/Stream.pm.html So now I just need to test it out! Jason