[13568] in Perl-Users-Digest

home help back first fref pref prev next nref lref last post

Perl-Users Digest, Issue: 978 Volume: 9

daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Sun Oct 3 15:07:08 1999

Date: Sun, 3 Oct 1999 12:05:07 -0700 (PDT)
From: Perl-Users Digest <Perl-Users-Request@ruby.OCE.ORST.EDU>
To: Perl-Users@ruby.OCE.ORST.EDU (Perl-Users Digest)
Message-Id: <938977507-v9-i978@ruby.oce.orst.edu>
Content-Type: text

Perl-Users Digest           Sun, 3 Oct 1999     Volume: 9 Number: 978

Today's topics:
    Re: [Q] Memory Problems with Win32::Eventlog? (Jan Dubois)
    Re: ActivePerl (Matthew Bloch)
    Re: ActivePerl <ehpoole@ingress.com>
    Re: ActivePerl <ehpoole@ingress.com>
    Re: Comspec probs, shelling on Win32 (Jan Dubois)
    Re: DU in perl <crdevilb@mtu.edu>
        Help! Print immediately to file (not staying in the buf (Jim)
    Re: Help! Print immediately to file (not staying in the <rootbeer@redcat.com>
    Re: HELP!!!!!!! <jeffp@crusoe.net>
    Re: HELP!!!!!!! <rootbeer@redcat.com>
    Re: How to start up Netscape or Internet Explorer from  (Nim Chu)
    Re: How to start up Netscape or Internet Explorer from  (Nim Chu)
    Re: Install CPAN module in ActiveState Windows version  (Jan Dubois)
    Re: interrupt handler routine not being called <ltl@rgsun40.viasystems.com>
    Re: LWP::UserAgent timeout and eval/die problem <rootbeer@redcat.com>
    Re: Passing arguments to PERL script via URL <gellyfish@gellyfish.com>
    Re: Passing arguments to PERL script via URL <flavell@mail.cern.ch>
    Re: Passing arguments to PERL script via URL <bacjc@worldnet.att.net>
    Re: Perl vs. PHP3 <gellyfish@gellyfish.com>
    Re: Where to find doc of Perl? <rootbeer@redcat.com>
    Re: Where to find doc of Perl? <ltl@rgsun40.viasystems.com>
    Re: Where to find doc of Perl? <gellyfish@gellyfish.com>
    Re: Wow! cgi.pm is great! (Matthew Bafford)
        Digest Administrivia (Last modified: 16 Sep 99) (Perl-Users-Digest Admin)

----------------------------------------------------------------------

Date: Sun, 03 Oct 1999 20:14:17 +0200
From: jand@activestate.com (Jan Dubois)
Subject: Re: [Q] Memory Problems with Win32::Eventlog?
Message-Id: <38169a8e.130041429@news3.ibm.net>

"Sasithorn Rattanawiwatpong" <yui@usa.net> wrote:

>I am writing a script trying to query NT eventlogs and post them into an SQL
>database.  I am using the latest version of ActivePerl and the
>Win32::Eventlog, Win32::ODBC modules that come with it.
>
>When I run my script, the memory usage for perl.exe keeps growing until I
>close it down.  I have a sleep routine running after each read and write of
>the eventlog.  The memory usage goes up every time the Win32::Eventlog
>routine gets called.  The same problem also occurs every time the
>Win32::ODBC routine gets called.
>
>Any clues as to what I am doing wrong?

The Win32::Eventlog module doesn't have a DESTROY method, so you have to
explicitly call $eventlog->Close() to close the handle.

This has been "fixed" in ActivePerl 520 / libwin32-0.151 so that DESTROY
will do the close for you.  Unfortunately it contains a bug:  If you
explicitly close the eventlog handle you'll get an access violation in the
DESTROY method. :-(  So if you now insert the call to the Close() method
then you should make sure that you don't upgrade to the *current* version
of Win32::Eventlog. Sorry about the confusion.

-Jan


------------------------------

Date: Sun, 03 Oct 1999 16:05:09 GMT
From: mattbee@eh.org (Matthew Bloch)
Subject: Re: ActivePerl
Message-Id: <slrn7ves65.6ns.mattbee@soup-kitchen.demon.co.uk>

In article <7t6kf3$j0m$1@nntp1.atl.mindspring.net>, 
                            joeyandsherry@mindspring.com wrote:
>Hello,
>
>Thanks in advance.
>
>I've just installed ActivePerl on my Win98 laptop. I've tried to execute the
>script below:
>
>print "Content-type: test/html\n\n";

                        ^ text, shurely?

>print "<HTML><HEAD><TITLE>Test</TITLE></HEAD>\n";
>print "<BODY>\n";
>print "Hello World!\n";
>print "</BODY></HTML>\n";
>
>I expected my Web Browser to open up and display Hello World!
>Have I really missed something, What gives?

What the more sarcastic responses to your post are trying to tell you is:

  * your web /browser/ doesn't know what to do with a Perl script; if
      it opens files on your hard drive, it'll just display them, not
      execute them;
  * if you want something to execute your scripts, you'll need to install
      a local web server (e.g. Apache, see http://www.apache.org/),
      configure that to execute your scripts using your shiny new
      ActivePerl installation, then go to http://localhost/yourscript.pl
      to see the results of its execution;
  * your problem is not directly related to points of programming using
      the Perl language, and not directly relevant to this group's
      unprogressive charter.

It's hard to give much more help than this without knowing what your
objective is.  But in general, beware of asking questions not related to
Perl programming in this group (though in this case I presume you thought 
it might be a problem with your Perl installation).  Also you might like
to read a more general book on how HTTP and web protocols work; I'm sure
O'Reilly do something suitable.

-- 
Matthew       ( http://www.soup-kitchen.demon.co.uk/ )




------------------------------

Date: Sun, 03 Oct 1999 13:56:26 -0400
From: "Ethan H. Poole" <ehpoole@ingress.com>
Subject: Re: ActivePerl
Message-Id: <37F798CA.DFF6470A@ingress.com>

joeyandsherry@mindspring.com wrote:
> 
> Hello,
> 
> Thanks in advance.
> 
> I've just installed ActivePerl on my Win98 laptop. I've tried to execute the
> script below:
> 
> print "Content-type: test/html\n\n";
> print "<HTML><HEAD><TITLE>Test</TITLE></HEAD>\n";
> print "<BODY>\n";
> print "Hello World!\n";
> print "</BODY></HTML>\n";
> 
> I expected my Web Browser to open up and display Hello World!
> Have I really missed something, What gives?

Issue 1: Browsers don't execute scripts, servers do.

Issue 2: Even if you ran this on a server you would likely recieve a
prompt to download the output rather than display it.  The proper
"Content-type:" is  "text/html".  For IE users, just about anything might
happen since IE often ignores Content-type headers, including those it
does not recognize -- it will depend on how your browser and machine have
been configured -- it could try to display the results, it could pop-up
your editor or other application (if defined), or it could prompt you for
a download.

Issue 3: Although you can get away with it on most NT servers with Win32
Perl, it is still good practice to include the shebang line so that it
will be available for any options you may wish to specify (e.g. -w -T,
etc).

Sample: #!/usr/bin/perl [-w] [-T]
where the parameters enclosed within [] are optional. The option '-w' is
very useful for debugging your script, '-T' forces taint-checking before
parameters can be used in ways that commonly leave scripts open to
security faults (e.g. passing parameter to a command line.  Other options
are also available (refer to the documentation that you should have
installed during the Perl installation).

-- 
Ethan H. Poole           ****   BUSINESS   ****
ehpoole@ingress.com      ==Interact2Day, Inc.==
(personal)               http://www.interact2day.com/


------------------------------

Date: Sun, 03 Oct 1999 13:56:56 -0400
From: "Ethan H. Poole" <ehpoole@ingress.com>
Subject: Re: ActivePerl
Message-Id: <37F798E8.7622FDD7@ingress.com>

joeyandsherry@mindspring.com wrote:
> 
> Hello,
> 
> Thanks in advance.
> 
> I've just installed ActivePerl on my Win98 laptop. I've tried to execute the
> script below:
> 
> print "Content-type: test/html\n\n";
> print "<HTML><HEAD><TITLE>Test</TITLE></HEAD>\n";
> print "<BODY>\n";
> print "Hello World!\n";
> print "</BODY></HTML>\n";
> 
> I expected my Web Browser to open up and display Hello World!
> Have I really missed something, What gives?

Issue 1: Browsers don't execute scripts, servers do.

Issue 2: Even if you ran this on a server you would likely recieve a
prompt to download the output rather than display it.  The proper
"Content-type:" is  "text/html".  For IE users, just about anything might
happen since IE often ignores Content-type headers, including those it
does not recognize -- it will depend on how your browser and machine have
been configured -- it could try to display the results, it could pop-up
your editor or other application (if defined), or it could prompt you for
a download.

Issue 3: Although you can get away with it on most NT servers with Win32
Perl, it is still good practice to include the shebang line so that it
will be available for any options you may wish to specify (e.g. -w -T,
etc).

Sample: #!/usr/bin/perl [-w] [-T]
where the parameters enclosed within [] are optional. The option '-w' is
very useful for debugging your script, '-T' forces taint-checking before
parameters can be used in ways that commonly leave scripts open to
security faults (e.g. passing parameter to a command line.  Other options
are also available (refer to the documentation that you should have
installed during the Perl installation).

-- 
Ethan H. Poole           ****   BUSINESS   ****
ehpoole@ingress.com      ==Interact2Day, Inc.==
(personal)               http://www.interact2day.com/


------------------------------

Date: Sun, 03 Oct 1999 20:14:09 +0200
From: jand@activestate.com (Jan Dubois)
Subject: Re: Comspec probs, shelling on Win32
Message-Id: <3812941b.128390455@news3.ibm.net>

"Sam Wormleighton" <news@wormzone.u-net.com> wrote:

>I've just upgraded to 5.005_03 for Win32 from ActiveState and
>a whole stack of scripts have stopped dead.
>
>I make heavy use of 4DOS enviromental variables so I like perl
>to shell to 4DOS.COM, not anything else, when evaluating
>backticks.
>
>I've got my comspec variable set correctly, I've added
>the COMSPEC value to the ActiveState/Perl5 reg keys
>but with no luck.
>
>I've exhausted all the docs I can find and theres too much
>not working to think clearly... any ideas?

Perl doesn't use COMSPEC on Win32 (just as it is not using SHELL on UNIX).
You can override the default shell for Perl by setting the PERL5SHELL
environment variable.  The default values are "cmd.exe /x/c" for WinNT and
"command.com /c" for Win0.9x.

BTW, this is all documented in perlrun.pod.

-Jan



------------------------------

Date: 3 Oct 1999 15:29:38 GMT
From: Colin R. DeVilbiss <crdevilb@mtu.edu>
Subject: Re: DU in perl
Message-Id: <7t7sp2$37s$1@campus3.mtu.edu>

renez@lightcon.xs4all.nl wrote:
> I'm looking for a module which will do the same thing as the Unix
> command du -ks. I have looked on CPAN but there seems to be no such
> module.

> Before writing my own version I would like to make sure I'm
> not duplicating work!

good thing you asked--see

http://language.perl.com/ppt/src/du/index.html

where the wheel has already been invnted. :)

crdevilb@mtu.edu


------------------------------

Date: Sun, 3 Oct 1999 10:58:13 -0700
From: "Chih-Wei(Jim) Chang" <cwchang@flute.ece.ucsb.edu>
Subject: Help! Print immediately to file (not staying in the buffer)???
Message-Id: <Pine.GSO.4.10.9910031053060.26339-100000@flute.ece.ucsb.edu>

Hi, 

	I use 'print' to output some information to a file during the 	
	execution of my script. I also want to monitor this information
	using "tail -f log_file_name" during the execution. However,
	those information are stored in the buffer and only dumped 
	when the buffer size is full. Is there a way to force 'print'
	to dump to file immediately? 

	Thanks very much for your help.

Jim



------------------------------

Date: Sun, 3 Oct 1999 11:18:54 -0700
From: Tom Phoenix <rootbeer@redcat.com>
Subject: Re: Help! Print immediately to file (not staying in the buffer)???
Message-Id: <Pine.GSO.4.10.9910031117240.19155-100000@user2.teleport.com>

On Sun, 3 Oct 1999, Chih-Wei(Jim) Chang wrote:

> Subject: Help! Print immediately to file (not staying in the buffer)???

Search for the word "buffer" in the docs and FAQ. Hint: Start with
the perltoc manpage - the table of contents. Cheers!

-- 
Tom Phoenix       Perl Training and Hacking       Esperanto
Randal Schwartz Case:     http://www.rahul.net/jeffrey/ovs/



------------------------------

Date: Sun, 3 Oct 1999 12:40:07 -0400
From: Jeff Pinyan <jeffp@crusoe.net>
Subject: Re: HELP!!!!!!!
Message-Id: <Pine.GSO.4.10.9910031239350.14462-100000@crusoe.crusoe.net>

On Oct 3, inanna@acronet.net blah blah blah:

> Can't find string terminator "END" anywhere before EOF at

>   20: END

That is the last line of your program, eh?  You need a newline after it.
Then everything will work.

-- 
jeff pinyan    japhy@pobox.com
perl stuff     japhy+perl@pobox.com
CPAN ID: PINYAN            http://www.perl.com/CPAN/authors/id/P/PI/PINYAN



------------------------------

Date: Sun, 3 Oct 1999 09:45:04 -0700
From: Tom Phoenix <rootbeer@redcat.com>
Subject: Re: HELP!!!!!!!
Message-Id: <Pine.GSO.4.10.9910030943420.19155-100000@user2.teleport.com>

On Sun, 3 Oct 1999 inanna@acronet.net wrote:

> Subject: HELP!!!!!!!

Please check out this helpful information on choosing good subject
lines. It will be a big help to you in making it more likely that your
requests will be answered.

    http://www.perl.com/CPAN/authors/Dean_Roehrich/subjects.post

> Can't find string terminator "END" anywhere before EOF at
> /usr/home/kenobiz.com/htdocs/cgi-bin/cancer.pl line 7.

Check what the perldiag manpage has to say about this, then make sure that
your string terminator appears on a line by itself, with no characters
before it and nothing but a newline after it. Cheers!

-- 
Tom Phoenix       Perl Training and Hacking       Esperanto
Randal Schwartz Case:     http://www.rahul.net/jeffrey/ovs/



------------------------------

Date: Sun, 03 Oct 1999 18:32:42 GMT
From: nimchu@hal-pc.org (Nim Chu)
Subject: Re: How to start up Netscape or Internet Explorer from a Perl script
Message-Id: <7t7sup$2ki6$1@news.hal-pc.org>

Jonathan Stowe <gellyfish@gellyfish.com> wrote:

>On Sun, 03 Oct 1999 12:48:51 GMT Nim Chu wrote:
>> I have a need to start up a Netscape or Internet Explorer browser
>> session from a Perl script and give it the an URL and goes to a web
>> page. The script later will send another URL and ask the browser to
>> display the page. I appreciate any help.
>> 

>You could use the module Win32::OLE if of course you are on windows ...


Where to get info about using Win32::OLE?



------------------------------

Date: Sun, 03 Oct 1999 19:21:30 GMT
From: nimchu@hal-pc.org (Nim Chu)
Subject: Re: How to start up Netscape or Internet Explorer from a Perl script
Message-Id: <7t7vq6$2mk3$1@news.hal-pc.org>

Tom Kralidis <tom.kralidis@ccrs.nrcanDOTgc.ca> wrote:

>Nim Chu wrote:
>> 
>> I have a need to start up a Netscape or Internet Explorer browser
>> session from a Perl script and give it the an URL and goes to a web
>> page. The script later will send another URL and ask the browser to
>> display the page. I appreciate any help.

>This should work on UNIX.

>$url = "http://www.perl.com";

>`netscape $url`;

Thanks for the reply. I want to have more control over the browser
session (by the way, I want to do this in Windows 95 or 98), e.g.
(1) Close out the browser session,
(2) Repeat send another URL over to the same browser window,
     but `netscape $url` will not return control back the perl until
the user closes the session,
(3) Detect if the user click on the "window close" button
(4) If the user opened several browser sessions before, my perl script
know which session it actually opened in the beginning to avoid
mistakely sending the URL to a wrong session



------------------------------

Date: Sun, 03 Oct 1999 20:14:09 +0200
From: jand@activestate.com (Jan Dubois)
Subject: Re: Install CPAN module in ActiveState Windows version of Perl?
Message-Id: <381395b4.128799263@news3.ibm.net>

"Fred Reimer" <fwr@ga.prestige.net> wrote:


>Because some of us are not really "developing" on a platform, simply writing
>simple utilities for use in-house.  We are not necessarily "commited to the
>Win32 platform" but more like forced to use it in certain circumstaces.
>Using cygwin for compiling perl does not always work -- at least it did not
>the last time I checked.

Yes, the cygwin port has a number of problems, but you can use mingw32 to
build Perl5.005_03 without problems.  I've done so with EGCS 1.1, 1.1.2
and with GCC 2.95.  Both threading and non-threading builds work fine.
The PERL_OBJECT build won't run for some reason, but you won't want that
one anyways.

>This could all be fixed, by the way, if ActiveState released a version of
>their ActivePerl that used cygwin and/or ming32.  Requiring people to
>purchase a proprietary tool in order to effectively use a free tool reduces
>the "freeness" of the free tool, does it not?

I believe that it will be possible to build extensions for ActivePerl 600
using the mingw32 environment.  ActivePerl 6xx will be based on Perl 5.6
whenever it becomes available.

-Jan



------------------------------

Date: 3 Oct 1999 16:22:45 GMT
From: lt lindley <ltl@rgsun40.viasystems.com>
Subject: Re: interrupt handler routine not being called
Message-Id: <7t7vsl$ms8$1@rguxd.viasystems.com>

Shubha Gargya <shubha@hindustan.vnet.net> wrote:
:>Why is the following routine not being called when control+c is
:>pressed:
:>    $SIG{'INT'} = 'handler';
:>    print "In main...";
:>    sleep(10);

:>sub handler {
:>     print "Process Interrupted\n";
:>     $SIG{'INT'} = 'DEFAULT';
:>     exit(0);
:>}

Maybe because <ctrl>c is not generating an interupt signal.
Type "stty -a" at the shell prompt and see what keysym the
tty handler associates with "intr".

Does it enter the handler if you do a "kill -INT ####" from
another shell?  You aren't invoking the program in the
background or anything silly like that are you?

If that doesn't help, reduce the program to the smallest
complete subset that demonstrates the problem and post the
whole thing.

BTW, You may want to write that as

$SIG{INT} = \&handler


-- 
// Lee.Lindley   /// I used to think that being right was everything.
// @bigfoot.com  ///  Then I matured into the realization that getting
////////////////////   along was more important.  Except on usenet.


------------------------------

Date: Sun, 3 Oct 1999 09:38:50 -0700
From: Tom Phoenix <rootbeer@redcat.com>
Subject: Re: LWP::UserAgent timeout and eval/die problem
Message-Id: <Pine.GSO.4.10.9910030928200.19155-100000@user2.teleport.com>

On 3 Oct 1999, John Callender wrote:

> I'm having some weird (to me) problems getting LWP::UserAgent's
> timeout method to work properly on a Red Hat Linux 6.0 system when
> doing a HEAD request on certain URLs.

If I'm not mistaken, the timeout starts counting when the underlying
socket connection is first made. The timeout for making the socket
connection is something you generally cannot (and should not) change.
Could this be what you're seeing? (Of course, I could be mistaken...)

> my @urls = (
> 	'http://204.245.187.59/',
> 	'http://www.health.gov.au/',
> );

Nothing wrong with this code, but may I point out how cool it is to use
qw{} for lists of URLs?

As to using alarm during LWP, it looks as if LWP wasn't written to be
(externally) alarm-interruptable. But again, I could be mistaken.

Have you tried asking on the LWP discussion list? To quote from the LWP
manpage:

  $req = HTTP::Request->new(POST =>
	 'mailto:libwww-perl-request@ics.uci.edu');
  $req->header(Subject => "subscribe");
  $req->content("Please subscribe me to the libwww-perl mailing list!\n");

Cheers!

-- 
Tom Phoenix       Perl Training and Hacking       Esperanto
Randal Schwartz Case:     http://www.rahul.net/jeffrey/ovs/



------------------------------

Date: 3 Oct 1999 16:31:44 -0000
From: Jonathan Stowe <gellyfish@gellyfish.com>
Subject: Re: Passing arguments to PERL script via URL
Message-Id: <7t80dg$97t$1@gellyfish.btinternet.com>

On 3 Oct 1999 15:14:36 GMT Charles Cuccaro wrote:
> Hello, I'm trying to pass arguments into a PERL script via a URL.
> 
> First off, is it even possible for a PERL script to receive arguments from
> a URL?
> example: http://www.thedomainname.com/test.cgi?name="Bob"&id="1234"
> 
> If it is, then what is the syntax for the URL and how do I get the values
> in the PERL script?
> 
> What I would like to do is to be able to redirect user to various pages
> based on the id passed into the script.
> 

Please see :

<http://hoohoo.ncsa.uiuc.edu/cgi>

<http://www.webthing.com/tutorials/cgifaq.html>

<http://stein.cshl.org>


If you have any further questions you might want to consider addressing
them to the group comp.infosystems.www.authoring.cgi if they are purely
CGI rather than Perl specific ...

/J\
-- 
Jonathan Stowe <jns@gellyfish.com>
<http://www.gellyfish.com>
Hastings: <URL:http://dmoz.org/Regional/UK/England/East_Sussex/Hastings>


------------------------------

Date: Sun, 3 Oct 1999 18:09:11 +0200
From: "Alan J. Flavell" <flavell@mail.cern.ch>
Subject: Re: Passing arguments to PERL script via URL
Message-Id: <Pine.HPP.3.95a.991003175650.21765G-100000@hpplus01.cern.ch>

On 3 Oct 1999, Charles Cuccaro wrote:

> First off, is it even possible for a PERL script to receive arguments from
> a URL?

Of course.  Consult any elementary tutorial on the Common Gateway
Interface, specifically the one for the GET method, to understand where
you can expect to find your "arguments".  The classic one is
http://hoohoo.ncsa.uiuc.edu/cgi/

Perl supports this, just as any other CGI-capable programming language
would do.  This is not a Perl language question, it would belong on
comp.infosystems.www.authoring.cgi (after checking its FAQs of course).

> example: http://www.thedomainname.com/test.cgi?name="Bob"&id="1234"

Something like that.  But the quotes are probably out of place, and when
you turn that URL into an HREF, the HTML rules call for turning that "&"
into "&amp;". 

> If it is, then what is the syntax for the URL and how do I get the values
> in the PERL script?

Erm, about the only conclusion that readers can draw from what you have
written is that your present level of knowledge of all the relevant
parts is rather small.  That's OK - we all have to start somewhere - but
if you really aim to get any value out of this group, you're going to
need to put in the necessary effort yourself, to read the elementary
tutorials and FAQs for yourself, instead of giving the impression that
you're asking us to read them for you. 

There are some excellent FAQs that come as part of every complete Perl
installation.  Look at their table of contents, follow up the ones that
are clearly relevant, and take it from there.



------------------------------

Date: 3 Oct 1999 17:12:57 GMT
From: "Charles Cuccaro" <bacjc@worldnet.att.net>
Subject: Re: Passing arguments to PERL script via URL
Message-Id: <01bf0dc3$7d633260$13644e0c@bacjc>

Thank you everyone.

I apologize for the miss placed question. I am a newbie to this and am
learning. I greatly appreciate your replies with the information that will
allow me to track down the answers to my questions.

Once again, Thank you.

cj




------------------------------

Date: 3 Oct 1999 15:50:09 -0000
From: Jonathan Stowe <gellyfish@gellyfish.com>
Subject: Re: Perl vs. PHP3
Message-Id: <7t7tvh$92g$1@gellyfish.btinternet.com>

On 3 Oct 1999 06:45:24 -0500 Abigail wrote:
> Moritz Mertinkat (bluebit@gmx.net) wrote on MMCCXXIV September MCMXCIII
> in <URL:news:37F70F5D.92203002@gmx.net>:
> \\ 
> \\   I have to write an Advertising Script (Banner rotation),
> \\   but I still don't know what language I should use.
> 
> I wouldn't write it at all. Banner ads are the work of the devil.
> 

Nah, I dont think Old Nick could be arsed with this, he'd get some lesser
demon to do it, after all he has all his time taken up making Windows
applications.

> \\   What do you think is the better language (speed!) for
> \\   this task?
> 
> Forth.
> 

Oh purleeze - eny fule kno that BCPL is the only language for the job.

/J\
-- 
Jonathan Stowe <jns@gellyfish.com>
<http://www.gellyfish.com>
Hastings: <URL:http://dmoz.org/Regional/UK/England/East_Sussex/Hastings>


------------------------------

Date: Sun, 3 Oct 1999 09:40:04 -0700
From: Tom Phoenix <rootbeer@redcat.com>
Subject: Re: Where to find doc of Perl?
Message-Id: <Pine.GSO.4.10.9910030939140.19155-100000@user2.teleport.com>

On Sun, 3 Oct 1999, Evgen Pribaten wrote:

> Subject: Where to find doc of Perl?

It should have come with your perl binary. But see the frequent posting in
comp.lang.perl.announce about finding the FAQ and other docs. Cheers!

-- 
Tom Phoenix       Perl Training and Hacking       Esperanto
Randal Schwartz Case:     http://www.rahul.net/jeffrey/ovs/



------------------------------

Date: 3 Oct 1999 16:59:06 GMT
From: lt lindley <ltl@rgsun40.viasystems.com>
Subject: Re: Where to find doc of Perl?
Message-Id: <7t820q$nc8$1@rguxd.viasystems.com>

Tom Phoenix <rootbeer@redcat.com> wrote:
:>On Sun, 3 Oct 1999, Evgen Pribaten wrote:

:>> Subject: Where to find doc of Perl?

:>It should have come with your perl binary. But see the frequent posting in
:>comp.lang.perl.announce about finding the FAQ and other docs. Cheers!

Uhh...  He did ask where to find it in Russian if possible.  
There may well be a better answer, but the only thing I could find
when I looked was the following link from searching on
www.perl.com:

http://kulichki.rambler.ru/moshkow/PERL/russperl5/

I have no idea whether or not it is good.


-- 
// Lee.Lindley   /// I used to think that being right was everything.
// @bigfoot.com  ///  Then I matured into the realization that getting
////////////////////   along was more important.  Except on usenet.


------------------------------

Date: 3 Oct 1999 18:29:28 -0000
From: Jonathan Stowe <gellyfish@gellyfish.com>
Subject: Re: Where to find doc of Perl?
Message-Id: <7t87a8$9j3$1@gellyfish.btinternet.com>

On 3 Oct 1999 16:59:06 GMT lt lindley wrote:
> Tom Phoenix <rootbeer@redcat.com> wrote:
> :>On Sun, 3 Oct 1999, Evgen Pribaten wrote:
> 
> :>> Subject: Where to find doc of Perl?
> 
> :>It should have come with your perl binary. But see the frequent posting in
> :>comp.lang.perl.announce about finding the FAQ and other docs. Cheers!
> 
> Uhh...  He did ask where to find it in Russian if possible.  
> There may well be a better answer, but the only thing I could find
> when I looked was the following link from searching on
> www.perl.com:
> 
> http://kulichki.rambler.ru/moshkow/PERL/russperl5/
> 
> I have no idea whether or not it is good.
> 

A word of warning here - I have seen some Russian language sites that have
cited some examples of, how do I say this delicately, ahem uncertain
provenance ...  I dont know whether this site is one of them though.

/J\
-- 
Jonathan Stowe <jns@gellyfish.com>
<http://www.gellyfish.com>
Hastings: <URL:http://dmoz.org/Regional/UK/England/East_Sussex/Hastings>


------------------------------

Date: Sun, 03 Oct 1999 00:11:29 GMT
From: *@dragons.duesouth.net (Matthew Bafford)
Subject: Re: Wow! cgi.pm is great!
Message-Id: <slrn7vd709.uo.*@dragons.duesouth.net>

And so it happened, on Sat, 02 Oct 1999 16:32:29 -0500, James Moore
<bokler_1@hiwaay.net> typed random characters into perl, and ended up
with the following posted to comp.lang.perl.misc: 
: On Wed, 29 Sep 1999 06:19:23 -0500, "Campos" <rcampos@mapson.net>
: wrote:
: >Still have a few formatting issues, though.  Is Stein's book any good?
: 
: The book is good. If you need/want to learn cgi.pm in a hurry, it's
: the best way to get there. Ignore the nitpickers.

That's CGI.pm

--Matthew


------------------------------

Date: 16 Sep 99 21:33:47 GMT (Last modified)
From: Perl-Users-Request@ruby.oce.orst.edu (Perl-Users-Digest Admin) 
Subject: Digest Administrivia (Last modified: 16 Sep 99)
Message-Id: <null>


Administrivia:

The Perl-Users Digest is a retransmission of the USENET newsgroup
comp.lang.perl.misc.  For subscription or unsubscription requests, send
the single line:

	subscribe perl-users
or:
	unsubscribe perl-users

to almanac@ruby.oce.orst.edu.  

| NOTE: The mail to news gateway, and thus the ability to submit articles
| through this service to the newsgroup, has been removed. I do not have
| time to individually vet each article to make sure that someone isn't
| abusing the service, and I no longer have any desire to waste my time
| dealing with the campus admins when some fool complains to them about an
| article that has come through the gateway instead of complaining
| to the source.

To submit articles to comp.lang.perl.announce, send your article to
clpa@perl.com.

To request back copies (available for a week or so), send your request
to almanac@ruby.oce.orst.edu with the command "send perl-users x.y",
where x is the volume number and y is the issue number.

For other requests pertaining to the digest, send mail to
perl-users-request@ruby.oce.orst.edu. Do not waste your time or mine
sending perl questions to the -request address, I don't have time to
answer them even if I did know the answer.


------------------------------
End of Perl-Users Digest V9 Issue 978
*************************************


home help back first fref pref prev next nref lref last post