Re: Questions Concerning Large Web-Site

2001-06-11 Thread John Armstrong
I'd convert each 'module' into a real Perl module( YourPackage::Search.pm etc ) and then configure it at the directory level. Location /search SetHandler perl-script PerlHandler YourPackageSpace::Search /Location Or you can just take your script and throw it into a single module's

Re: Questions Concerning Large Web-Site

2001-06-11 Thread James G Smith
Purcell, Scott [EMAIL PROTECTED] wrote: I was hoping to hear some simple input from people who have architected good, sound sites, and was hoping for some good feedback, or some old sample code that I can study and find out how the other half live. Well, I can give some things I've tried to live

Re: Questions Concerning Large Web-Site

2001-06-11 Thread Ron Beck
Is there a good tutorial or book on the subject of constructing Perl modules? I too have done some of this and would like to create actual modules instead of required subroutines. Ron John Armstrong wrote: I'd convert each 'module' into a real Perl module( YourPackage::Search.pm etc ) and

Re: Questions Concerning Large Web-Site

2001-06-11 Thread John Armstrong
The Eagle book ( linked to from http://perl.apache.org/ ) is a good resource. Generally speaking though you can get what you need to start in the guide ( http://perl.apache.org/guide/ ), its pretty simple to get started. John- On 6/11/01 12:42 PM, Ron Beck [EMAIL PROTECTED] wrote: Is there

RE: Questions Concerning Large Web-Site

2001-06-11 Thread Joe Breeden
Cc: '[EMAIL PROTECTED]' Subject: Re: Questions Concerning Large Web-Site Is there a good tutorial or book on the subject of constructing Perl modules? I too have done some of this and would like to create actual modules instead of required subroutines. Ron John Armstrong wrote: I'd convert

Re: Questions Concerning Large Web-Site

2001-06-11 Thread Ken Williams
[EMAIL PROTECTED] (Ron Beck) wrote: Is there a good tutorial or book on the subject of constructing Perl modules? I too have done some of this and would like to create actual modules instead of required subroutines. I've written one, at http://www.mathforum.com/~ken/perl_modules.html It's

Re: Questions Concerning Large Web-Site

2001-06-11 Thread Matt Sergeant
On Mon, 11 Jun 2001, Ron Beck wrote: Is there a good tutorial or book on the subject of constructing Perl modules? I too have done some of this and would like to create actual modules instead of required subroutines. There's a good intro (though I'm biased) on http://take23.org/ --

Re: Questions Concerning Large Web-Site

2001-06-11 Thread Ron Savage
There is a tutorial here http://savage.net.au/Perl-tutorials.html#tut-1 on a Perl program which generates the source of a module, installs and tests it. Cheers Ron Savage [EMAIL PROTECTED] http://savage.net.au/index.html [snip] Is there a good tutorial or book on the subject of constructing