Re: Where is editor that will Indent my perl code?

2003-11-04 Thread henq
"Richard Heintze" <[EMAIL PROTECTED]> schreef in bericht news:[EMAIL PROTECTED] > > Is there an editor out there that will properly indent > my perl code even if I use the stranger syntaxes for > literal strings? > > Thanks, > Siegfried > HTML-Kit has color highlighting and a perl-tidy

Re: config file: a) what Module ? b) conditionals in config (for multiple hosts)

2003-10-31 Thread henq
"Wiggins D Anconia" <[EMAIL PROTECTED]> schreef in bericht news:[EMAIL PROTECTED] > > Hi, > I have found in general the > module that is chosen is based more on the format of the config file, YAML is a rising star as formats go, I believe. > > where is hostname? is it's a system command (ba

Re: config file: a) what Module ? b) conditionals in config (for multiple hosts)

2003-10-31 Thread henq
"Jenda Krynicky" <[EMAIL PROTECTED]> schreef in bericht news:[EMAIL PROTECTED] > From: "Wiggins d Anconia" <[EMAIL PROTECTED]> > To simplify this you may consider using two configs. One "global" > that contains the settings that are the same everywhere (which will > probably be most of them) and

config file: a) what Module ? b) conditionals in config (for multiple hosts)

2003-10-30 Thread henq
v_box') { mysql_dsn = 'foobar'; } elsif ((`hostname` eq 'test_box'} mysql_dsn = 'abracadabra'; ... Any support for that in your module of choice? I know of the use-just-perl-code approach (with 'do') in the Perl Cookbook, but