Re: PERL IDE

2004-03-06 Thread Alex Avellaneda
I use jEdit www.jedit.org (based on java) in Linux Mandrake 9.0 and Win2K. I have used Vim, Crimsom Editor, optiPerl... but until the moment the best one for my jEdit, it works equal in any operating system. Alex. - Original Message - From: "Alexander Douglas" <[EMAIL PROTECTED]> To: <[E

Comparing text text::diff

2004-03-06 Thread Sara
I asked a question a couple of days back on perl beginners at Yahoo groups as well on other forums. to compare two text files/strings and to print the results if both are different and was advised to use Text::Diff. Actually, I am working on project of transcription, where typist types the $text

Re: PERL IDE

2004-03-06 Thread Teresa Raymond
I don't know about firebird database but a really good text editor for web and perl development for Mac is BBEdit offered by http://www.barebones.com The MacPerl integration with syntax check is awesome. Alo has incredible grep functionality. OptiPerl IDE is good for Windows again I don't know

Re: PERL IDE

2004-03-06 Thread MAC OS X
On 05 Mar 2004, at 20:36, Alexander Douglas wrote: Hello I am new to perl , is there any good IDE to develop simple perl forms with firebird database which is a no brainer. Please advice Mohammed Which OS ? For Linux and Mac OS X.. None that I can think of.. Perhaps some commercial ones but I

PERL IDE

2004-03-06 Thread Alexander Douglas
Hello I am new to perl , is there any good IDE to develop simple perl forms with firebird database which is a no brainer. Please advice Mohammed -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Problem using hidden variables

2004-03-06 Thread zsdc
Kasturirangan Rangaswamy wrote: I have a perl program that has an include directive calling another Perl program in it. The structure is somewhat as follows first.pl -- #!/usr/local/bin/perl require "second.pl" $q = new CGI; print $q->hidden(-name='first', value='1'); second($q); End of f