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

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 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 ge

RE: Questions Concerning Large Web-Site

2001-06-11 Thread Joe Breeden
:42 PM To: John Armstrong 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

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: > > I

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 ) a

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

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. SetHandler perl-script PerlHandler YourPackageSpace::Search Or you can just take your script and throw it into a single module's handler() routine : SetHa

Questions Concerning Large Web-Site

2001-06-11 Thread Purcell, Scott
Hello, I have a large asset-management system that is web-based. In the past I have always used cgi and perl. I need to rewrite it so that it works with mod-perl or PerlEx Anyway, I used to tie my site together with a main, and a ton of requires (which required pages of subroutines). I would u