Re: Help w/Modules

2005-09-27 Thread Bill Stephenson
On Sep 25, 2005, at 2:01 PM, Randal L. Schwartz wrote: That's why I created CGI::Prototype::Hidden... to lazy-load the code for the particular step of the application. Randal, this really piqued my interest and after a little poking around I found this link; http://www.stonehenge.co

Re: Help w/Modules

2005-09-25 Thread Randal L. Schwartz
> "Bill" == Bill Stephenson <[EMAIL PROTECTED]> writes: Bill> Wouldn't it be more efficient for the server to run a small script Bill> that contains only the set-up and sub-routines needed to process a Bill> single "run-mode" instead of loading all the data needed to process Bill> all the "run

Help w/Modules

2005-09-25 Thread Bill Stephenson
I'm trying to understand how to convert my CGI scripts to use modules. My first step is to create a "SetUp" module where I can store common stuff. I put together a module and script to test it with but it doesn't work. It doesn't display the first (default) and last options correctly and I can'

Re: Help w/Modules

2005-09-25 Thread Bill Stephenson
On Sep 24, 2005, at 10:59 AM, Bill Stephenson wrote: I'm trying to understand how to convert my CGI scripts to use modules. I worked this problem out. Reading the docs and this page (http://www.perl.com/pub/a/2001/06/05/cgi.html) for CGI::Application has helped me better understand how to us