getstore and comments

2005-08-19 Thread Adriano Allora
hi to all, Some questions: 1) how can I write multine comments? something like /** ... **/? 2) the following script doesn't find the page requested in getstore (baolian.local = 127.0.0.1). Why? 3) $homepage must be a real page/file or I can use it like a normal variable or a filehandle to read

Re: getstore and comments

2005-08-19 Thread David Dorward
On Fri, Aug 19, 2005 at 10:58:24AM +0200, Adriano Allora wrote: > Some questions: > 1) how can I write multine comments? something like /** ... **/? You can fake it with POD. I juse use a decent editor that lets me comment out a every line in a region. > 2) the following script doesn't find the

Re: getstore and comments

2005-08-19 Thread Chris Devers
On Fri, 19 Aug 2005, Adriano Allora wrote: > Some questions: > 1) how can I write multine comments? something like /** ... **/? Method one, simple comments: # Here is a comment # that spans across # several lines Method two, POD: =pod Here is a comment that spans ac

Re: getstore and comments

2005-08-19 Thread Ovid
Hi Adriano, The previous emails answered your questions, but may I strongly recommend that you use strict, warnings, and taint checking? These three things, though they seem annoying at first, will save you much grief in the long run. For example, in the script you provided, you had the followin

perl 5.6.1debug version 1.07

2005-08-19 Thread DBSMITH
All, I am having some weird system call return codes and I am hoping for some help. when I run in debug mode a system command I get this error: here is my debugger code perl -dT foo use strict; use warnings; $ENV{"PATH"} = qq (/blah blah/); system ("import -v H02046 900") or die $!; END DEBU

Re: getstore and comments

2005-08-19 Thread John W. Krahn
Adriano Allora wrote: > hi to all, Hello, > Some questions: > 1) how can I write multine comments? something like /** ... **/? Install this module: http://search.cpan.org/~kane/Acme-Comment-1.02/ > 2) the following script doesn't find the page requested in getstore > (baolian.local = 127.0.0.

Re: cascading menus in perl??

2005-08-19 Thread Robert
Cat wrote: Been using a cascading menu written in javascript but would like to convert this to perl so that on mouseover it drops down further options to click through. Anyway I am sure you guys know what I am referring to. Been looking into template toolkit and mason to do some other things