Re: [Perl-unix-users] whether I can design a whole system only with perl

2004-11-30 Thread Martin Moss
> Yes... CGI.pm would be a good place to start: > http://search.cpan.org/~lds/CGI.pm-3.05/CGI.pm I disagree. IMHO If you have C++ skills, you should bypass CGI and head straight on to mod_perl using "method handlers". These are Object oriented classes that handle web requests. Marty

[Perl-unix-users] Method name is keyword

2004-11-30 Thread Antoine HUE
Hello, is it possible to tell PERL to avoid interpreting method names as a key word? Example: $ref->scalar() PERL will see scalar as a key word and is thus not able to compile. Antoine ___ Perl-Unix-Users mailing list [EMAIL PROTECTED] To unsubscribe: h

Re: [Perl-unix-users] Method name is keyword

2004-11-30 Thread $Bill Luebkert
Antoine HUE wrote: > Hello, > is it possible to tell PERL to avoid interpreting method names as a key > word? > Example: > $ref->scalar() > PERL will see scalar as a key word and is thus not able to compile. Don't follow - can you put that in context with a small complete test case and indicate

Re: [Perl-unix-users] Method name is keyword

2004-11-30 Thread Antoine HUE
$Bill Luebkert wrote: Antoine HUE wrote: Hello, is it possible to tell PERL to avoid interpreting method names as a key word? Example: $ref->scalar() PERL will see scalar as a key word and is thus not able to compile. Don't follow - can you put that in context with a small complete test ca

Re: [Perl-unix-users] Method name is keyword

2004-11-30 Thread Gisle Aas
Antoine HUE <[EMAIL PROTECTED]> writes: > >Don't follow - can you put that in context with a small complete test case > >and indicate what error you are getting. > > > > > Actually, I am using XML::Generator to produce some XML. This module > is using the AUTOLOAD to create any kind of XML element

Re: [Perl-unix-users] whether I can design a whole system only with perl

2004-11-30 Thread Jesse Thompson
Martin Moss wrote: Yes... CGI.pm would be a good place to start: http://search.cpan.org/~lds/CGI.pm-3.05/CGI.pm I disagree. IMHO If you have C++ skills, you should bypass CGI and head straight on to mod_perl using "method handlers". These are Object oriented classes that handle web requests. I