[13905] in Perl-Users-Digest
No subject found in mail header
daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Wed Nov 10 17:44:59 1999
Date: Mon, 8 Nov 1999 11:52:56 -0800 (PST)
From: Perl-Users Digest <Perl-Users-Request@ruby.OCE.ORST.EDU>
To: Perl-Users@ruby.OCE.ORST.EDU (Perl-Users Digest)
Message-Id: <942090775-v9-i1301@ruby.oce.orst.edu>
Content-Type: text
Perl-Users Digest Mon, 8 Nov 1999 Volume: 9 Number: 1301
Today's topics:
How to debug a perl script? <claire@telix.com>
Re: How to debug a perl script? (Yanick Champoux)
Re: How to debug a perl script? (Kragen Sitaker)
Re: How to debug a perl script? <rootbeer@redcat.com>
Re: How to debug a perl script? <claire@telix.com>
Re: How to debug a perl script? lee.lindley@bigfoot.com
How to get a URL with timeout <marcel@ihug.co.nz>
Re: How to get a URL with timeout <gellyfish@gellyfish.com>
Re: How to get a URL with timeout (Kragen Sitaker)
Re: How to get both the input & output stream to extern (Clinton Pierce)
how to get the index of an array knowing the value <admin@calgary-online.com>
Re: how to get the index of an array knowing the value (Kragen Sitaker)
Re: how to get the index of an array knowing the value (Abigail)
how to make perl executable <mzh@cntw.com>
Re: how to make perl executable <wyzelli@yahoo.com>
Re: how to make perl executable (Abigail)
Re: how to make perl executable <mzh@cntw.com>
Re: how to make perl executable <wyzelli@yahoo.com>
Re: how to make perl executable (Abigail)
Re: how to make perl executable <gellyfish@gellyfish.com>
Re: howto download a GIF from a URI? (Randal L. Schwartz)
Digest Administrivia (Last modified: 16 Sep 99) (Perl-Users-Digest Admin)
----------------------------------------------------------------------
Date: Sat, 6 Nov 1999 19:35:05 -0500
From: "claire" <claire@telix.com>
Subject: How to debug a perl script?
Message-Id: <s29hu86qhpc38@corp.supernews.com>
Hi everyone,
It took me a while to even get this shareware script to run, I modified it
quite a bit. However it runs now but it pulls up a blank html document. I am
a newbie when it comes to perl programming. Is there some easy way to spot
how the program loops through the code and what could be causing it to never
reach my print statements or ignore them alltogether? Sort of like a step
through or something.
Claire
------------------------------
Date: Sun, 07 Nov 1999 01:45:43 GMT
From: yanick@sympatico.ca (Yanick Champoux)
Subject: Re: How to debug a perl script?
Message-Id: <bR4V3.40889$up3.66754@news21.bellglobal.com>
[Posted and mailed]
In article <s29hu86qhpc38@corp.supernews.com>,
"claire" <claire@telix.com> writes:
> Is there some easy way to spot
> how the program loops through the code [..].
Sure. You can use the perl debugger.
To run your script through the debugger:
$ perl -d myscript.pl
To know how to use the darn thing:
$ perldoc perldebug
Joy,
Yanick
--
#! /usr/bin/perl
############## Email: champoux@iro.umontreal.ca
############## Web: http://www.iro.umontreal.ca/~champoux
$_ = 'Oxsgnm0qtkdr0nudq0C`fna`g+0ats0nm0S`snhmd0sgd0B`ldk0hr'
.'0jhmf-';s,(.),!$1?' ':chr(ord($1)+1),eg;print;
------------------------------
Date: Sun, 07 Nov 1999 02:12:13 GMT
From: kragen@dnaco.net (Kragen Sitaker)
Subject: Re: How to debug a perl script?
Message-Id: <1e5V3.49835$23.1894748@typ11.nn.bcandid.com>
In article <bR4V3.40889$up3.66754@news21.bellglobal.com>,
Yanick Champoux <yanick@sympatico.ca> wrote:
>[Posted and mailed]
>
>In article <s29hu86qhpc38@corp.supernews.com>,
> "claire" <claire@telix.com> writes:
>> Is there some easy way to spot
>> how the program loops through the code [..].
>
>Sure. You can use the perl debugger.
>
>To run your script through the debugger:
>
> $ perl -d myscript.pl
Claire: in case you don't know, that $ represents the Unix command prompt.
If you're using CGI.pm, entering sample input (I assume this is a CGI
script) will be easy. If you're not, it may be a pain in the butt.
Oh, and on learning to use the debugger: the most important commands
are h, b, T, s, n, x, l, c, r, and q. d, t, and - are often useful as
well.
If you use Emacs, you can run the debugger under Emacs to see the code
you're debugging in your edit window, as well as some other handy
features. I can't remember the emacs command -- M-x perldb?
--
<kragen@pobox.com> Kragen Sitaker <http://www.pobox.com/~kragen/>
Tue Nov 02 1999
6 days until the Internet stock bubble bursts on Monday, 1999-11-08.
<URL:http://www.pobox.com/~kragen/bubble.html>
------------------------------
Date: Sat, 6 Nov 1999 18:12:12 -0800
From: Tom Phoenix <rootbeer@redcat.com>
Subject: Re: How to debug a perl script?
Message-Id: <Pine.GSO.4.10.9911061811360.15797-100000@user2.teleport.com>
On Sat, 6 Nov 1999, claire wrote:
> However it runs now but it pulls up a blank html document.
When you're having trouble with a CGI program in Perl, you should first
look at the please-don't-be-offended-by-the-name Idiot's Guide to solving
such problems. It's available on CPAN.
http://www.perl.com/CPAN/
http://www.cpan.org/
http://www.cpan.org/doc/FAQs/cgi/idiots-guide.html
http://www.cpan.org/doc/manual/html/pod/
Hope this helps!
--
Tom Phoenix Perl Training and Hacking Esperanto
Randal Schwartz Case: http://www.rahul.net/jeffrey/ovs/
------------------------------
Date: Sun, 7 Nov 1999 09:53:22 -0500
From: "claire" <claire@telix.com>
Subject: Re: How to debug a perl script?
Message-Id: <s2b47hb561@corp.supernews.com>
I guess I wasn't clear. I ran the script through the debugger. It runs, no
errors, and then pulls up a blank html document instead of the one I wrote.
How can I trace where the program fails without an error? Message boxes in
perl? Step through in perl? I'm trying to correlate this with how you'd
trace this sort of error in VB.
Claire
claire wrote in message ...
>Hi everyone,
>
> It took me a while to even get this shareware script to run, I modified
it
>quite a bit. However it runs now but it pulls up a blank html document. I
am
>a newbie when it comes to perl programming. Is there some easy way to spot
>how the program loops through the code and what could be causing it to
never
>reach my print statements or ignore them alltogether? Sort of like a step
>through or something.
>
>Claire
>
>
------------------------------
Date: 7 Nov 1999 16:30:40 GMT
From: lee.lindley@bigfoot.com
Subject: Re: How to debug a perl script?
Message-Id: <8049fg$b08$1@rguxd.viasystems.com>
claire <claire@telix.com> wrote:
:>I guess I wasn't clear. I ran the script through the debugger. It runs, no
:>errors, and then pulls up a blank html document instead of the one I wrote.
:>How can I trace where the program fails without an error? Message boxes in
:>perl? Step through in perl? I'm trying to correlate this with how you'd
:>trace this sort of error in VB.
The same way you would do it in any language. You already received
pointers to the documentation for the perl debugger which would allow
you to set breakpoints and step through the code and examine
variables and such. Or you can just add print statements to your
program at strategic places to figure out what is going on. Or you
can stare at it for a while and try to figure out what conditions
could be leading to the results you see. I use all 3 techniques.
--
// 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, 7 Nov 1999 22:17:02 +1300
From: "Marcel Dinger" <marcel@ihug.co.nz>
Subject: How to get a URL with timeout
Message-Id: <941966363.565104@ham.ihug.co.nz>
I'm trying to get pages (complete text), and search for particular details from
a fairly large list of URLs (about 1000). To make the process occur within a
reasonable space of time, I wanted to include a timeout process so that if a URL
is not fetched with in x number of seconds, it proceeds to the next one.
I gather I should use the LWP::Useragent module for this, however, I was unable
to figure out how to implement the timeout feature without an example. I tried
the following, but it seems to ignore the timeout. ie when searches take longer
than 10 seconds it does not proceed to the next item. If knows what I'm doing
wrong, or where I can a working solution to this problem, it would be greatly
appreciated.
#!/usr/bin/perl5.004
use CGI;
use CGI::Carp (fatalsToBrowser);
use LWP::UserAgent;
$q = new CGI;
print $q->header;
my @urls = (
'http://www.abo.fi/library/dbs/alma/wwls/',
'http://www.amu.edu.pl/welcome.html',
'http://www.adelphi.edu/discover/library'
);
my $ua = new LWP::UserAgent;
$ua->timeout(10);
my $begin_time = time;
foreach my $url (@urls) {
print "testing $url... ";
my $start = time;
my $request = new HTTP::Request GET => $url;
my $response = $ua->request($request);
my $elapsed = time() - $start;
if ($response->is_success) {
print "succeeded in $elapsed sec.\n";
@page = split(/\n/,$request);
} else {
print "failed in $elapsed sec.\n";
}
}
Marcel Dinger.
------------------------------
Date: 7 Nov 1999 11:12:24 -0000
From: Jonathan Stowe <gellyfish@gellyfish.com>
Subject: Re: How to get a URL with timeout
Message-Id: <803mqo$cta$1@gellyfish.btinternet.com>
On Sun, 7 Nov 1999 22:17:02 +1300 Marcel Dinger wrote:
> I'm trying to get pages (complete text), and search for particular details from
> a fairly large list of URLs (about 1000). To make the process occur within a
> reasonable space of time, I wanted to include a timeout process so that if a URL
> is not fetched with in x number of seconds, it proceeds to the next one.
>
> I gather I should use the LWP::Useragent module for this, however, I was unable
> to figure out how to implement the timeout feature without an example. I tried
> the following, but it seems to ignore the timeout. ie when searches take longer
> than 10 seconds it does not proceed to the next item. If knows what I'm doing
> wrong, or where I can a working solution to this problem, it would be greatly
> appreciated.
>
<snip>
The timeout is passed through from LWP::UserAgent object via the underlying
LWP::Protocol::http object to the IO::Socket object that does the work - if
the timeout is not working as you would expect you might try testing a
plain IO::Socket with a timeout to see if that behaves in the same way - if
this is the case then it might be down to the ability of your system to
Timeout socket requests.
/J\
--
Jonathan Stowe <jns@gellyfish.com>
<http://www.gellyfish.com>
Hastings: <URL:http://dmoz.org/Regional/UK/England/East_Sussex/Hastings>
------------------------------
Date: Sun, 07 Nov 1999 20:25:19 GMT
From: kragen@dnaco.net (Kragen Sitaker)
Subject: Re: How to get a URL with timeout
Message-Id: <PelV3.53996$23.2017900@typ11.nn.bcandid.com>
In article <941966363.565104@ham.ihug.co.nz>,
Marcel Dinger <marcel@ihug.co.nz> wrote:
>I'm trying to get pages (complete text), and search for particular details from
>a fairly large list of URLs (about 1000). To make the process occur within a
>reasonable space of time, I wanted to include a timeout process so that if a
>URL is not fetched with in x number of seconds, it proceeds to the next one.
In a similar vein, I'm writing a simple web robot I'd like to extend
into a caching proxy. I'd like to be able to fetch multiple files
simultaneously. Is there a standard select() loop, like Tk's, that
works with LWP? Is there a way to interface it to my own select()
loop?
I see there are Event and EventServer modules on CPAN, which sound
similar to what I want. Has anyone used these? Are they good?
>I gather I should use the LWP::Useragent module for this, however, I was unable
>to figure out how to implement the timeout feature without an example.
perldoc lwpcook -- but I don't know what, if anything, you're doing
wrong. I'm new to LWP.
--
<kragen@pobox.com> Kragen Sitaker <http://www.pobox.com/~kragen/>
Tue Nov 02 1999
6 days until the Internet stock bubble bursts on Monday, 1999-11-08.
<URL:http://www.pobox.com/~kragen/bubble.html>
------------------------------
Date: Fri, 05 Nov 1999 14:12:08 GMT
From: cpierce1@ford.com (Clinton Pierce)
Subject: Re: How to get both the input & output stream to external program?
Message-Id: <3823e565.2669595615@news.ford.com>
[poster cc'd in e-mail]
On Fri, 5 Nov 1999 19:32:43 +0800, " Jeff Lee" <kit@cintec.cuhk.edu.hk>
wrote:
>Hi,
>
>Do you know how to get both the input & output stream to external program in
>perl?
Did you check the FAQ? Hell, did you even check the subjects of the other
postings in comp.lang.perl.misc, as Tom C just re-posted the entire FAQ.
"How can I open a pipe both to and from a command?"
Section 8 of the FAQ.
--
Clinton A. Pierce "If you rush a Miracle Man, you
clintp@geeksalad.org get rotten Miracles." -- Miracle Max,
http://www.geeksalad.org The Princess Bride
------------------------------
Date: Sat, 06 Nov 1999 20:45:18 GMT
From: "Ibrahim Hamouda" <admin@calgary-online.com>
Subject: how to get the index of an array knowing the value
Message-Id: <yr0V3.8181$Q5.311589@news1.rdc1.ab.home.com>
Hi Guys
Assume that I have an array
@myarray=("a","b","c","d");
$myarray[$x]=""c";
print $x;
I need this to return 2
how can I do that???
------------------------------
Date: Sat, 06 Nov 1999 21:12:57 GMT
From: kragen@dnaco.net (Kragen Sitaker)
Subject: Re: how to get the index of an array knowing the value
Message-Id: <tR0V3.48819$23.1853890@typ11.nn.bcandid.com>
In article <yr0V3.8181$Q5.311589@news1.rdc1.ab.home.com>,
>Assume that I have an array
>@myarray=("a","b","c","d");
>$myarray[$x]=""c";
>print $x;
>
>I need this to return 2
>
>how can I do that???
You want the index of the first occurrence of "c" in the array?
See perlfaq4, "How can I tell whether a list or array contains a
certain element?" The code there can be modified to return the index.
--
<kragen@pobox.com> Kragen Sitaker <http://www.pobox.com/~kragen/>
Tue Nov 02 1999
6 days until the Internet stock bubble bursts on Monday, 1999-11-08.
<URL:http://www.pobox.com/~kragen/bubble.html>
------------------------------
Date: 6 Nov 1999 22:09:12 -0600
From: abigail@delanet.com (Abigail)
Subject: Re: how to get the index of an array knowing the value
Message-Id: <slrn829v26.2i1.abigail@alexandra.delanet.com>
Ibrahim Hamouda (admin@calgary-online.com) wrote on MMCCLVIII September
MCMXCIII in <URL:news:yr0V3.8181$Q5.311589@news1.rdc1.ab.home.com>:
|| Hi Guys
|| Assume that I have an array
|| @myarray=("a","b","c","d");
|| $myarray[$x]=""c";
|| print $x;
||
|| I need this to return 2
print 2;
Abigail
--
$" = "/"; split // => eval join "+" => 1 .. 7;
*{"@_"} = sub {foreach (sort keys %_) {print "$_ $_{$_} "}};
%_ = (Just => another => Perl => Hacker); &{%_};
-----------== Posted via Newsfeeds.Com, Uncensored Usenet News ==----------
http://www.newsfeeds.com The Largest Usenet Servers in the World!
------== Over 73,000 Newsgroups - Including Dedicated Binaries Servers ==-----
------------------------------
Date: Mon, 8 Nov 1999 13:42:01 +0100
From: "michael hagberg" <mzh@cntw.com>
Subject: how to make perl executable
Message-Id: <806du4$201$1@news3.global-ip.net>
I would like to run a perl program from a C++ application. At the moment I
must have perl installed. I would like to be able to run it without perl on
the computer. Is there any solution to this problem?? Im working with
windows.
Michael
------------------------------
Date: Mon, 8 Nov 1999 22:03:55 +0930
From: "Wyzelli" <wyzelli@yahoo.com>
Subject: Re: how to make perl executable
Message-Id: <VqzV3.51$QI3.962@vic.nntp.telstra.net>
michael hagberg <mzh@cntw.com> wrote in message
news:806du4$201$1@news3.global-ip.net...
> I would like to run a perl program from a C++ application. At the moment I
> must have perl installed. I would like to be able to run it without perl
on
> the computer. Is there any solution to this problem?? Im working with
> windows.
>
> Michael
>
Indeed there is,
Perl2exe from http://www.demobuilder.com/
Wyzelli
------------------------------
Date: 8 Nov 1999 07:14:06 -0600
From: abigail@delanet.com (Abigail)
Subject: Re: how to make perl executable
Message-Id: <slrn82djbp.rem.abigail@alexandra.delanet.com>
Wyzelli (wyzelli@yahoo.com) wrote on MMCCLX September MCMXCIII in
<URL:news:VqzV3.51$QI3.962@vic.nntp.telstra.net>:
"" michael hagberg <mzh@cntw.com> wrote in message
"" news:806du4$201$1@news3.global-ip.net...
"" > I would like to run a perl program from a C++ application. At the moment I
"" > must have perl installed. I would like to be able to run it without perl
"" on
"" > the computer. Is there any solution to this problem?? Im working with
"" > windows.
"" >
"" > Michael
"" >
"" Indeed there is,
""
"" Perl2exe from http://www.demobuilder.com/
Which just builds a wrapper that includes both perl and the Perl program.
That isn't buying you much.
Perhaps Michael can explain *why* he wants to run Perl without perl.
Is that like editing Word documents without Word?
Abigail
--
perl -e '* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
/ / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %;
BEGIN {% % = ($ _ = " " => print "Just Another Perl Hacker\n")}'
-----------== Posted via Newsfeeds.Com, Uncensored Usenet News ==----------
http://www.newsfeeds.com The Largest Usenet Servers in the World!
------== Over 73,000 Newsgroups - Including Dedicated Binaries Servers ==-----
------------------------------
Date: Mon, 8 Nov 1999 16:11:45 +0100
From: "michael hagberg" <mzh@cntw.com>
Subject: Re: how to make perl executable
Message-Id: <806k9l$57j$1@news3.global-ip.net>
I would like my programs that I write in perl to work on my friends
computers too. As they are not nerds they dont want to install perl. So tell
me Abigail, how do you show your stuff for your friends??? Now you know
*why*.
Michael
>Which just builds a wrapper that includes both perl and the Perl program.
>That isn't buying you much.
>
>Perhaps Michael can explain *why* he wants to run Perl without perl.
>Is that like editing Word documents without Word?
>
>
>
>Abigail
>--
>perl -e '* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /
> % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %;
> BEGIN {% % = ($ _ = " " => print "Just Another Perl Hacker\n")}'
>
>
> -----------== Posted via Newsfeeds.Com, Uncensored Usenet News
==----------
> http://www.newsfeeds.com The Largest Usenet Servers in the World!
>------== Over 73,000 Newsgroups - Including Dedicated Binaries Servers
==-----
------------------------------
Date: Mon, 8 Nov 1999 23:32:31 +0930
From: "Wyzelli" <wyzelli@yahoo.com>
Subject: Re: how to make perl executable
Message-Id: <5LAV3.53$QI3.1282@vic.nntp.telstra.net>
Abigail <abigail@delanet.com> wrote in message
news:slrn82djbp.rem.abigail@alexandra.delanet.com...
> Wyzelli (wyzelli@yahoo.com) wrote on MMCCLX September MCMXCIII in
>
> Which just builds a wrapper that includes both perl and the Perl program.
> That isn't buying you much.
>
> Perhaps Michael can explain *why* he wants to run Perl without perl.
> Is that like editing Word documents without Word?
>
> Abigail
> --
More like reading Word documents without Word I would think... somewhat like
Adobe Acrobat or some other 'viewer'.
I must admit to not actually having tried it myself, being quite content to
let anyone who wants to see my crappy coding. (Though it might cause Uri a
few more laughs....).
Wyzelli
------------------------------
Date: 8 Nov 1999 08:30:22 -0600
From: abigail@delanet.com (Abigail)
Subject: Re: how to make perl executable
Message-Id: <slrn82dnqp.rem.abigail@alexandra.delanet.com>
michael hagberg (mzh@cntw.com) wrote on MMCCLX September MCMXCIII in
<URL:news:806k9l$57j$1@news3.global-ip.net>:
^^
^^ I would like my programs that I write in perl to work on my friends
^^ computers too. As they are not nerds they dont want to install perl. So tell
^^ me Abigail, how do you show your stuff for your friends??? Now you know
^^ *why*.
They don't want to install perl, but they do want to install your programs?
Somehow, that doesn't quite make sense.
Anyhow, to run Perl programs, you need perl. Either by having perl,
or by building huge files which include perl out of every program you
write, using nonsense like perl2exe.
Your friends are better of with perl.
And don't post Jeopardy style.
Abigail
--
sub _'_{$_'_=~s/$a/$_/}map{$$_=$Z++}Y,a..z,A..X;*{($_::_=sprintf+q=%X==>"$A$Y".
"$b$r$T$u")=~s~0~O~g;map+_::_,U=>T=>L=>$Z;$_::_}=*_;sub _{print+/.*::(.*)/s}
*_'_=*{chr($b*$e)};*__=*{chr(1<<$e)};
_::_(r(e(k(c(a(H(__(l(r(e(P(__(r(e(h(t(o(n(a(__(t(us(J())))))))))))))))))))))))
-----------== Posted via Newsfeeds.Com, Uncensored Usenet News ==----------
http://www.newsfeeds.com The Largest Usenet Servers in the World!
------== Over 73,000 Newsgroups - Including Dedicated Binaries Servers ==-----
------------------------------
Date: 8 Nov 1999 14:31:02 GMT
From: Jonathan Stowe <gellyfish@gellyfish.com>
Subject: Re: how to make perl executable
Message-Id: <3826dea6_1@newsread3.dircon.co.uk>
michael hagberg <mzh@cntw.com> wrote:
>
> I would like my programs that I write in perl to work on my friends
> computers too. As they are not nerds they dont want to install perl. So tell
> me Abigail, how do you show your stuff for your friends??? Now you know
> *why*.
I dont know what being a nerd has got to do with wanting to install Perl -
if someone wants to run one of my Perl programs they get Perl installed
or they dont run it ...
/J\
--
"Over the years I've always had Max Factor in my box" - Tina Earnshaw,
Chief Make-Up Artist, Titanic
------------------------------
Date: 05 Nov 1999 06:14:31 -0800
From: merlyn@stonehenge.com (Randal L. Schwartz)
Subject: Re: howto download a GIF from a URI?
Message-Id: <m11za5rpo8.fsf@halfdome.holdit.com>
>>>>> "J" == J Z Brody <NOSPAMbubba@titan.ndhm.gtegsc.com> writes:
J> use LWP::Simple;
J> ($thingtoget,$name) = @ARGV;
J> getstore "$thingtoget", "$name";
J> usage:
J> foo.pl http://www.foo.com/some.gif myfile.gif
You don't even have to write foo.pl, if you installed LWP, since
it comes with this nifty "lwp-download" program:
lwp-download http://www.foo.com/some.gif
Help stamp out useless code hacking!
print "Just another Perl hacker,"
--
Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095
<merlyn@stonehenge.com> <URL:http://www.stonehenge.com/merlyn/>
Perl/Unix/security consulting, Technical writing, Comedy, etc. etc.
See PerlTraining.Stonehenge.com for onsite and open-enrollment Perl training!
------------------------------
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 1301
**************************************