Re: [Perl-unix-users] CGI

2004-08-02 Thread Byrd Harrison
mario sanchez wrote: > i would like to call http://www.whatever.com/xyz.html where >AUTOMATICALLY xyz.html runs a perl script. > i have asked this question in the past and the best answer afforded was to > call xyz.cgi where the script first reads and "displays" xyz.html then > goes off and does w

Re: [Perl-unix-users] CGI

2004-08-02 Thread rgoulding
Add the onload command to the body tag of the HTML and spawn a new window (javascript) with the target Perl script. Example: http://target.pl');"> Regards, Ross mario sanchez

Re: [Perl-unix-users] CGI

2004-08-02 Thread $Bill Luebkert
mario sanchez wrote: > i would like to call http://www.whatever.com/xyz.html where AUTOMATICALLY > xyz.html runs a perl script. > > i have asked this question in the past and the best answer afforded was to > call xyz.cgi where the script first reads and "displays" xyz.html then > goes off and

Re: [Perl-unix-users] record locking question

2004-08-02 Thread $Bill Luebkert
Charles Greene wrote: > Question, > I am having a problem with some perl programs skipping records, it appears > to be a record locking issue. In other words program A locking a record > and > program B skipping the locked record. > > I found the following code several layers deep in a cal

[Perl-unix-users] CGI

2004-08-02 Thread mario sanchez
i would like to call http://www.whatever.com/xyz.html where AUTOMATICALLY xyz.html runs a perl script. i have asked this question in the past and the best answer afforded was to call xyz.cgi where the script first reads and "displays" xyz.html then goes off and does whatever else i needed. i ca

[Perl-unix-users] record locking question

2004-08-02 Thread Charles Greene
Question, I am having a problem with some perl programs skipping records, it appears to be a record locking issue. In other words program A locking a record and program B skipping the locked record. I found the following code several layers deep in a call stack: seek($file,$HDRSIZE+($bl

RE: [Perl-unix-users] RTF to text

2004-08-02 Thread Peter Eisengrein
Title: RE: [Perl-unix-users] RTF to text There are quite a few modules that match RTF+Text: http://search.cpan.org/search?query=RTF+Text&mode=module I'd think at least one or two will do what you want. > -Original Message- > From: Sandeep Deshpande [mailto:[EMAIL PROTECTED]] > Sen

[Perl-unix-users] argument from File or Command line ; LDAP

2004-08-02 Thread ystolerov
I read from file   $line= ; chop($line);   and split :   ($uid,$fname,$sname) = split(/\s+/,$line);   After call function of LDAP  and receive ERROR.     If I get variable $uid as argument from command line :   Prompt>>: Program.pl uid   Then LDAP works OK !   Why ?

[Perl-unix-users] RTF to text

2004-08-02 Thread Sandeep Deshpande
Dear All, For some reason, I need to scan few documents, using perl. These documents are in the RTF form. I am working on Ultra10 machine (Perl version 5.005_03). I need to convert these documents in Text (keeping it's bold and italic modes intact), before I start scanning them through my script.