Setting Perl-stuff inside Perl section

2001-10-05 Thread raptor
hi, How can I set in perl section, say : PerlModule Blah.pm PerlSetVar XXX On PerlSetVar YYY Off and similar... $VirtualHost{address} = { PerlModule = 'Blah.pm', PerlSetVar = { XXX = 'On', YYY = 'Off' } }; !!?! Thanx = iVAN [EMAIL PROTECTED] =

Re: Setting Perl-stuff inside Perl section

2001-10-05 Thread Scott Lanning
On Fri, 5 Oct 2001, raptor wrote: How can I set in perl section, say : PerlModule Blah.pm PerlSetVar XXX On PerlSetVar YYY Off perl @PerlModule = qw(Blah); # add others to the list push @PerlSetVar, [ XXX = 'On' ]; push @PerlSetVar, [ YYY = 'Off' ]; /perl There's good examples in the eagle

Re: Setting Perl-stuff inside Perl section

2001-10-05 Thread Perrin Harkins
@PerlModule = qw(Blah); # add others to the list Might as well just say use Blah;, I think. - Perrin

RE: Setting Perl-stuff inside Perl section

2001-10-05 Thread Geoffrey Young
-Original Message- From: Perrin Harkins [mailto:[EMAIL PROTECTED]] Sent: Friday, October 05, 2001 2:26 PM To: Scott Lanning; [EMAIL PROTECTED] Subject: Re: Setting Perl-stuff inside Perl section @PerlModule = qw(Blah); # add others to the list Might as well just say use