[18018] in Perl-Users-Digest
Perl-Users Digest, Issue: 178 Volume: 10
daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Tue Jan 30 18:11:15 2001
Date: Tue, 30 Jan 2001 15:10:19 -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: <980896219-v10-i178@ruby.oce.orst.edu>
Content-Type: text
Perl-Users Digest Tue, 30 Jan 2001 Volume: 10 Number: 178
Today's topics:
Newbie question asparak@my-deja.com
Re: Newbie question <mpsteel@bellatlantic.net>
Re: Perl programmer wanted (David H. Adler)
Re: PerlCGI writing to STDIN of another prog (David H. Adler)
Re: printf and leading zeros <russ_jones@rac.ray.com>
pushing hash onto an array <motivusNO@SPAMhotmail.com>
Re: pushing hash onto an array (Gwyn Judd)
Re: pushing hash onto an array <gopalan@cs.sc.edu>
Re: pushing hash onto an array <hmerrill@my-deja.com>
Re: pushing hash onto an array <motivusNO@SPAMhotmail.com>
reg exp <mpsteel@bellatlantic.net>
Re: reg exp <mpsteel@bellatlantic.net>
Re: reg exp <peter.sundstrom@eds.com>
Re: Seeking timezone conversion advice <ddunham@redwood.taos.com>
Re: Shared temporary error array in object hierarchy twolfmaier@acm.org
SOAP-Lite problem - How do I send a hash from a client <henrik.martensson@swipnet.se>
testing defined() under strict <gopalan@cs.sc.edu>
to shift, or not to shift <russ_jones@rac.ray.com>
undef and dbmopen <SiStie@nuclear-network.com>
Re: undef and dbmopen <krahnj@acm.org>
Re: Windows NT Version <mischief@velma.motion.net>
Digest Administrivia (Last modified: 16 Sep 99) (Perl-Users-Digest Admin)
----------------------------------------------------------------------
Date: Tue, 30 Jan 2001 18:55:18 GMT
From: asparak@my-deja.com
Subject: Newbie question
Message-Id: <9572mh$hn4$1@nnrp1.deja.com>
I am trying to generate an HTML Select list using cgi.pm from a csv
file. I have all the info in a 2 dimensional array, but now I need to
sort the data from the column I am using to create the OPTION values,
because many of the entries appear multiple times in the column. What is
the simplest method or sorting/mapping the column of data, so that each
entry only appears once, when I generate the OPTION values.
Sent via Deja.com
http://www.deja.com/
------------------------------
Date: Tue, 30 Jan 2001 19:27:13 GMT
From: "Marc P. Steel" <mpsteel@bellatlantic.net>
Subject: Re: Newbie question
Message-Id: <lAEd6.878$%F.404849@typhoon2.ba-dsg.net>
Try:
sub unique_array {
foreach $current (@_){ #get just the course titles
@curPair = split(/\,/, $current);
push (@allarrayOne, $curPair[0]); #build an array of course titles
push (@arrayTwo, $curPair[1]);
}
$theLength = @arrayTwo; #get the amount of course titles
@arrayTwo = sort (@arrayTwo); #alphebetize the course titles
for ($n=0; $n < $theLength; $n++){
if ($arrayTwo[$n+1] ne $arrayTwo[$n]){
push (@arrayOne, $allarrayOne[$n]); #create an array of unique titles
push (@courseTitles, $arrayTwo[$n]);
}
}
$allArrays = "@arrayOne";
$allArrays = "@courseTitles";
return @allArrays;
}#end sub unique_array
&unique_array(@myArray);
----------
In article <9572mh$hn4$1@nnrp1.deja.com>, asparak@my-deja.com wrote:
> I am trying to generate an HTML Select list using cgi.pm from a csv
> file. I have all the info in a 2 dimensional array, but now I need to
> sort the data from the column I am using to create the OPTION values,
> because many of the entries appear multiple times in the column. What is
> the simplest method or sorting/mapping the column of data, so that each
> entry only appears once, when I generate the OPTION values.
>
>
> Sent via Deja.com
> http://www.deja.com/
------------------------------
Date: 30 Jan 2001 21:35:16 GMT
From: dha@panix2.panix.com (David H. Adler)
Subject: Re: Perl programmer wanted
Message-Id: <slrn97ecsk.56.dha@panix2.panix.com>
On Sat, 27 Jan 2001 12:29:29 -0700, WmSon Family wrote:
>One simple task, $30 or less. Possible admin or mod allowances at a
>UBB, the Poketavern as a reward also.
You have posted a job posting or a resume in a technical group.
Longstanding Usenet tradition dictates that such postings go into
groups with names that contain "jobs", like "misc.jobs.offered", not
technical discussion groups like the ones to which you posted.
Had you read and understood the Usenet user manual posted frequently
to "news.announce.newusers", you might have already known this. :) (If
n.a.n is quieter than it should be, the relevent FAQs are available at
http://www.faqs.org/faqs/by-newsgroup/news/news.announce.newusers.html)
Please do not explain your posting by saying "but I saw other job
postings here". Just because one person jumps off a bridge, doesn't
mean everyone does. Those postings are also in error, and I've
probably already notified them as well.
If you have questions about this policy, take it up with the news
administrators in the newsgroup news.admin.misc.
There is a Perl Jobs Announce list that may be more helpful to you. See
<http://www.pm.org/mailing_lists.shtml> for details.
Yours for a better usenet,
dha
--
David H. Adler - <dha@panix.com> - http://www.panix.com/~dha/
When I was a little man/Play-Doh came in a little can/
I was Star Wars' biggest fan/Now I'm stuck without a plan/
G. I. Joe was an Action Man/Shaggy drove the Mystery Van/
Devo was my favorite band/So take me back to my happy land
- The Aquabats
------------------------------
Date: 30 Jan 2001 21:30:58 GMT
From: dha@panix2.panix.com (David H. Adler)
Subject: Re: PerlCGI writing to STDIN of another prog
Message-Id: <slrn97ecki.56.dha@panix2.panix.com>
On Thu, 25 Jan 2001 16:34:39 GMT, speedpk@my-deja.com
<speedpk@my-deja.com> wrote:
>> Maybe because you write $daten instead of $data into Writer ? Or is it
>> just a typo in your post ?
>Just an error in my post ... and $daten is definitely not empty.
Hence the common admonition to copy and paste your code in these
situations, rather than retyping it.
dha
--
David H. Adler - <dha@panix.com> - http://www.panix.com/~dha/
"You're quite free to convert your strings to byte arrays and do the
entire pattern tree by hand in pure logic code if you'd like. By the
time you finish most of the rest of us will be doing contract work on
Mars." - Zenin on comp.lang.perl.misc
------------------------------
Date: Tue, 30 Jan 2001 16:15:40 -0600
From: Russ Jones <russ_jones@rac.ray.com>
Subject: Re: printf and leading zeros
Message-Id: <3A773D0C.84B54AD4@rac.ray.com>
Russ Jones wrote:
>
> I have a number that looks like this:
>
> $num = 0.33;
>
Never mind, I think I've found an answer.
--
Russ Jones - HP OpenView IT/Operatons support
Raytheon Aircraft Company, Wichita KS
russ_jones@rac.ray.com 316-676-0747
Cacatne ursus in sylvis? - Ovid
------------------------------
Date: Tue, 30 Jan 2001 13:37:34 -0800
From: "B McDonald" <motivusNO@SPAMhotmail.com>
Subject: pushing hash onto an array
Message-Id: <HvGd6.78382$Wq1.33682216@nnrp5-w.sbc.net>
Hi. I get the following error
"Can't use string ("title") as a HASH ref while "strict refs" in use at
txt2xml.pl..."
as related to the following code snippets...
%long_titles = ( line_num => $line_cnt,
doc_id => $doc_id,
begin_num => $control_ids{begin_num},
end_num => $control_ids{end_num},
title => $csv_record{title},
);
push @AoH, %long_titles;
...and later...
# Print out the long titles along with their identifying information
if ($long_titles) {
for my $href ( @AoH ) {
print "{ ";
for my $datum ( keys %$href ) { # error occurs here!!!
print "$datum=$href->{$datum}\n";
}
print "}\n";
}
}
Some of you will recognize that this second snippet comes out of the camel
book for accessing/printing arrays of hashes.
I guess I don't understand this error... primarily because it craps out on
string "title" and not on the other hash keys -- e.g. line_num, doc_id, etc.
Would someone please shed some light?
Brian
------------------------------
Date: Tue, 30 Jan 2001 22:12:49 GMT
From: tjla@guvfybir.qlaqaf.bet (Gwyn Judd)
Subject: Re: pushing hash onto an array
Message-Id: <slrn97ef31.49v.tjla@thislove.dyndns.org>
I was shocked! How could B McDonald <motivusNO@SPAMhotmail.com>
say such a terrible thing:
>
>Hi. I get the following error
>
>"Can't use string ("title") as a HASH ref while "strict refs" in use at
>txt2xml.pl..."
>
>as related to the following code snippets...
>
> %long_titles = ( line_num => $line_cnt,
> doc_id => $doc_id,
> begin_num => $control_ids{begin_num},
> end_num => $control_ids{end_num},
> title => $csv_record{title},
> );
> push @AoH, %long_titles;
When you are making a multi-dimensional structure such as an
array-of-hashes above, you need to remember that arrays and hashes can
only hold scalars. A hash (such as %long_titles above) is not a scalar
so when you do the push operation Perl flattens the hash out into a
list. What you probably want to do is push a reference to the hash
instead (which is a scalar). You do that like this:
push @AoH, \%long_titles;
For an explanation of the error message you get read the perldiag and
perlref manual pages.
--
Gwyn Judd (print `echo 'tjla@guvfybir.qlaqaf.bet' | rot13`)
"Just don't give away the homeworld."
-- G'Kar (to Ko'Dath), "Born to the Purple"
------------------------------
Date: Tue, 30 Jan 2001 16:43:42 -0500
From: Gopi Sundaram <gopalan@cs.sc.edu>
Subject: Re: pushing hash onto an array
Message-Id: <Pine.GSO.4.31.0101301642560.3288-100000@mum.cs.sc.edu>
On Tue, 30 Jan 2001, B McDonald wrote:
> for my $datum ( keys %$href ) { # error occurs here!!!
I've used %{$href} with success in the past.
--
Gopi Sundaram
gopi@cse.sc.edu
------------------------------
Date: Tue, 30 Jan 2001 22:15:53 GMT
From: Hardy Merrill <hmerrill@my-deja.com>
Subject: Re: pushing hash onto an array
Message-Id: <957eef$t5d$1@nnrp1.deja.com>
In article <HvGd6.78382$Wq1.33682216@nnrp5-w.sbc.net>,
"B McDonald" <motivusNO@SPAMhotmail.com> wrote:
>
> Hi. I get the following error
>
> "Can't use string ("title") as a HASH ref while "strict refs" in use
at
> txt2xml.pl..."
>
> as related to the following code snippets...
>
> %long_titles = ( line_num => $line_cnt,
> doc_id => $doc_id,
> begin_num => $control_ids{begin_num},
> end_num => $control_ids{end_num},
> title => $csv_record{title},
The only thing I can see is that "title" is both a string key into the
%csv_record hash, and a key to the %long_titles hash. Try naming it
something else so the two don't collide - just a guess.
HTH.
--
Hardy Merrill
Mission Critical Linux, Inc.
http://www.missioncriticallinux.com
> );
> push @AoH, %long_titles;
>
> ...and later...
>
> # Print out the long titles along with their identifying
information
> if ($long_titles) {
> for my $href ( @AoH ) {
> print "{ ";
> for my $datum ( keys %$href ) { # error occurs here!!!
> print "$datum=$href->{$datum}\n";
> }
> print "}\n";
> }
> }
>
> Some of you will recognize that this second snippet comes out of the
camel
> book for accessing/printing arrays of hashes.
>
> I guess I don't understand this error... primarily because it craps
out on
> string "title" and not on the other hash keys -- e.g. line_num,
doc_id, etc.
> Would someone please shed some light?
>
> Brian
>
>
Sent via Deja.com
http://www.deja.com/
------------------------------
Date: Tue, 30 Jan 2001 14:46:14 -0800
From: "B McDonald" <motivusNO@SPAMhotmail.com>
Subject: Re: pushing hash onto an array
Message-Id: <wwHd6.78392$Wq1.33696418@nnrp5-w.sbc.net>
"Gwyn Judd" wrote in message news:slrn97ef31.49v.tjla@thislove.dyndns.org...
> >Hi. I get the following error
> >
> >"Can't use string ("title") as a HASH ref while "strict refs" in use at
> >txt2xml.pl..."
> >
> >as related to the following code snippets...
> >
> > %long_titles = ( line_num => $line_cnt,
> > doc_id => $doc_id,
> > begin_num => $control_ids{begin_num},
> > end_num => $control_ids{end_num},
> > title => $csv_record{title},
> > );
> > push @AoH, %long_titles;
>
> When you are making a multi-dimensional structure such as an
> array-of-hashes above, you need to remember that arrays and hashes can
> only hold scalars. A hash (such as %long_titles above) is not a scalar
> so when you do the push operation Perl flattens the hash out into a
> list. What you probably want to do is push a reference to the hash
> instead (which is a scalar). You do that like this:
>
> push @AoH, \%long_titles;
>
> For an explanation of the error message you get read the perldiag and
> perlref manual pages.
>
right, and right. thanks. i had actually tried to push the ref to the
hash... but then misinterpreted my program's output.
thanks again.
brian
------------------------------
Date: Tue, 30 Jan 2001 19:09:05 GMT
From: "Marc P. Steel" <mpsteel@bellatlantic.net>
Subject: reg exp
Message-Id: <ljEd6.2466$Lt.372224@typhoon2.ba-dsg.net>
I am trying to strip all links in an HTML doc. I have tried:
$curline =~ s/<a([^>]|\n)*>(.|\s)*<\/a>//g ;
And believe it should work, but it's not.
Help???
------------------------------
Date: Tue, 30 Jan 2001 19:19:03 GMT
From: "Marc P. Steel" <mpsteel@bellatlantic.net>
Subject: Re: reg exp
Message-Id: <HsEd6.2482$Lt.375289@typhoon2.ba-dsg.net>
One more note:
it works on all links except ones with line returns.
Argh!
----------
In article <ljEd6.2466$Lt.372224@typhoon2.ba-dsg.net>, "Marc P. Steel"
<mpsteel@bellatlantic.net> wrote:
> I am trying to strip all links in an HTML doc. I have tried:
> $curline =~ s/<a([^>]|\n)*>(.|\s)*<\/a>//g ;
> And believe it should work, but it's not.
>
> Help???
------------------------------
Date: Wed, 31 Jan 2001 10:07:36 +1300
From: "Peter Sundstrom" <peter.sundstrom@eds.com>
Subject: Re: reg exp
Message-Id: <957aep$h24$1@hermes.nz.eds.com>
"Marc P. Steel" <mpsteel@bellatlantic.net> wrote in message
news:ljEd6.2466$Lt.372224@typhoon2.ba-dsg.net...
> I am trying to strip all links in an HTML doc. I have tried:
> $curline =~ s/<a([^>]|\n)*>(.|\s)*<\/a>//g ;
> And believe it should work, but it's not.
You read the FAQ?
perldoc -q HTML
------------------------------
Date: Tue, 30 Jan 2001 19:35:21 GMT
From: Darren Dunham <ddunham@redwood.taos.com>
Subject: Re: Seeking timezone conversion advice
Message-Id: <ZHEd6.22$qc3.50960@news.pacbell.net>
James Weisberg <chadbour@wwa.com> wrote:
> Hello,
> This isn't strictly a perl question, per se, and I apologize in
> advance for the length, but I'm looking for some advice using perl
> to calculate a timezone offset. Let me start by describing the idea.
> Imagine you have a file with configuration info for four sites in
> different timezones:
> [site:1100] # Chicago
> timezone = CST
> daylightsavings = 1
> [site:1200] # New York
> timezone = EST
> daylightsavings = 1
> [site:1300] # Parts of Indiana
> timezone = EST
> daylightsavings = 0
> [site:1400] # Parts of Arizona
> timezone = MST
> daylightsavings = 0
What OS are you using? Most unix variants already have definitions for
these places. In Solaris...
US/Central
US/Eastern
US/East-Indiana
US/Arizona
...
Set your ENV{TZ} to the right thing and use localtime conversions.
Convert everything to UTC, convert back.
--
Darren Dunham ddunham@taos.com
Unix System Administrator Taos - The SysAdmin Company
Got some Dr Pepper? San Francisco, CA bay area
< Please move on, ...nothing to see here, please disperse >
------------------------------
Date: Tue, 30 Jan 2001 20:00:19 GMT
From: twolfmaier@acm.org
Subject: Re: Shared temporary error array in object hierarchy
Message-Id: <9576gc$ldp$1@nnrp1.deja.com>
> One solution would be to separate the save and validate methods.
>
> sub save {
> @errors = ();
> my $self = shift;
> $self->validate;
> return if @errors;
> # Save the object
> return 1;
> }
Thanks for your response. I like it. A lot. Another alternative I just
thought of is to pass the error array as an argument.
In the derived classes:
sub save {
my $self = shift;
my @error = @_;
# Perform some validation
push @errors, 'There was an error in the derived class';
return $self->SUPER::save(@errors);
}
In the base class:
my @errors;
sub save {
my $self = shift;
my @errors = @_;
return if @errors;
# Save the object
return 1;
}
However, I do prefer your suggestion. It seems a good idea to separate
the validate from the save function. It may come useful at other times.
Thanks again,
Thomas
-----------------------------------------------------
Thomas Wolfmaier
Human-Computer Interaction Resource Network (HCIRN)
25 Bucks Green Road, Thornhill, ON, Canada, L3T 4G1
Tel: +1-905-881-7095
Email: twolfmaier@acm.org
Web: www.hcirn.com
-----------------------------------------------------
Sent via Deja.com
http://www.deja.com/
------------------------------
Date: Tue, 30 Jan 2001 20:46:53 +0100
From: "Henrik Martensson" <henrik.martensson@swipnet.se>
Subject: SOAP-Lite problem - How do I send a hash from a client to a server?
Message-Id: <hREd6.114$u7.173@nntpserver.swip.net>
Hi,
I am writing two applications in ActiveState Perl that need to communicate
with each other. Basically, all I need to do is to transfer the contents of
a hash variable from one application to another.
My client has requested that I use SOAP for all data transport between the
two programs. Herein lies the problem. I can't make heads or tails of the
SOAP-Lite documentation.
I have two questions:
1. Given a hash %MyData and a URL pointing to the receiving script,
say "http://myserver/SOAPserver.cgi", what would the SOAP call
look like?
2. What would the code to receive the data and reconstruct %MyData
look like on the server end?
I'd be very grateful for a bit of help. I do understand the underlying SOAP
XML representation of the data, and I have at least a basic grasp of socket
communications. It is the SOAP-Lite API itself that has me flummoxed.
/Henrik Martensson
------------------------------
Date: Tue, 30 Jan 2001 16:35:53 -0500
From: Gopi Sundaram <gopalan@cs.sc.edu>
Subject: testing defined() under strict
Message-Id: <Pine.GSO.4.31.0101301613380.3288-100000@mum.cs.sc.edu>
Hello all,
I am doing some conditional text processing. If a given variable is
defined and contains a filename, the file is opened and processed. For
example,
use strict;
$hitlist_name = "hitlist.txt"
...
if (defined $hitlist_name)
{
open .. or die
blah blah blah
}
Now if I don't want to process that file, I comment out the definition
of $hitlist_name
If I remove the strict pragma, everything works as intended. If I
leave it in, it doesn't compile because it requires an explicit
definition for $hitlist_name in the test statement.
Is it possible to leave strict in and yet do the above test?
--
Gopi Sundaram
gopi@cse.sc.edu
------------------------------
Date: Tue, 30 Jan 2001 16:23:25 -0600
From: Russ Jones <russ_jones@rac.ray.com>
Subject: to shift, or not to shift
Message-Id: <3A773EDD.494A84E9@rac.ray.com>
In Christiansen & Torkington's Perl Cookbook, (in the parse_csv()
segment on page 31), they show two ways to get a scalar into a
subroutine. In the first one, they use
my $text = shift;
which seems pretty straight-forward to me. But in the second example,
they don't use "shift" at all, instead they just reference $_[0]
which also is relatively straight-forward. So can anyone tell me, is
this just an example of "there's more than one way to do it" or is
there some advantage to one way over the other?
(Benchmarking didn't seem to give any significant differences.)
Thanks
--
Russ Jones - HP OpenView IT/Operatons support
Raytheon Aircraft Company, Wichita KS
russ_jones@rac.ray.com 316-676-0747
Cacatne ursus in sylvis? - Ovid
------------------------------
Date: Tue, 30 Jan 2001 22:28:35 +0100
From: Simon Stiefel <SiStie@nuclear-network.com>
Subject: undef and dbmopen
Message-Id: <Pine.LNX.4.31.0101302219360.2725-100000@server.stiefel.priv>
Hi,
I want to open a DBM-Hash with "dbmopen()", but I don't want to
create a new one, if the user enters a filename which doesn't exist.
I've read in an O'Reilly-book, that if I don't want to create a new
DBM-File with dbmopen, I have to use "undef" as the third parameter in
dbmopen.
But that doesn't work. It creates two files like this:
12 ---------- 2 sistie users 12288 Jan 30 22:25 file.dir
12 ---------- 2 sistie users 12288 Jan 30 22:25 file.pag
^^^^^^^^^^
Very interesting... ;-)
How can I open a DBM-Hash _without_ creating a new one, if the entered
filename doesn't exist??
Any hints?
Mit freundlichen Gr=FC=DFen, .~. Open Minds.
with best regards /V\ Open Sources.
// \\ Open Future!
Simon Stiefel /( )\_ I N U X
^ ~ ^
--=20
|Simon Stiefel | Zwerbachstrasse 17 | 72555 Metzingen-Glems | Germany |
|SimonStiefel@nuclear-network.com | http://www.nuclear-network.com |
|ICQ#: 20196644 | phone: +49(0)7123/379070 | fax: +49(0)179/335990106 |
|Tux#: 114751 | PingoS - Linux-User helfen Schulen | Powered by LiNUX |
------------------------------
Date: Tue, 30 Jan 2001 22:41:48 GMT
From: "John W. Krahn" <krahnj@acm.org>
Subject: Re: undef and dbmopen
Message-Id: <3A77442A.88F428C6@acm.org>
Simon Stiefel wrote:
>
> Hi,
>
> I want to open a DBM-Hash with "dbmopen()", but I don't want to
> create a new one, if the user enters a filename which doesn't exist.
dbmopen HASH,DBNAME,MODE
[This function has been largely superseded by the
tie() function.]
> I've read in an O'Reilly-book, that if I don't want to create a new
> DBM-File with dbmopen, I have to use "undef" as the third parameter in
> dbmopen.
> But that doesn't work. It creates two files like this:
>
> 12 ---------- 2 sistie users 12288 Jan 30 22:25 file.dir
> 12 ---------- 2 sistie users 12288 Jan 30 22:25 file.pag
> ^^^^^^^^^^
> Very interesting... ;-)
>
> How can I open a DBM-Hash _without_ creating a new one, if the entered
> filename doesn't exist??
perldoc -f -X
if ( -e $file.dir && -e $file.pag ) {
tie %DBM_hash, $file, ...
John
------------------------------
Date: Tue, 30 Jan 2001 19:15:02 -0000
From: Chris Stith <mischief@velma.motion.net>
Subject: Re: Windows NT Version
Message-Id: <t7e4lmrof3t10c@corp.supernews.com>
BobS <sturdevr@yahoo.com> wrote:
> Hi,
> Does anyone know of a Perl way to identify NT Server vs NT Workstation?
> Environment variables only identify Windows_NT in both platforms. I've come
> up with a kludge using winmsd.exe but it's bad ;-( Thanks.
There are the registry-based approaches. On CPAN you can find modules
for working with the Windows registry. It might be nice to use these only
from an install script instead of in your main program. You could then
set a constant at install and check that within the main program, or install
alternative versions of the affected files/packages based on the specific OS.
Another possibility I can think of, although I'm not sure about it, is
the old DOS 'ver' command. This prints a string including the build of the
OS. If Server and Workstation return a different build number (this is the
part I'm not sure about) or any other different info, you could use backticks
to capture this output and figure out on which you're running.
This is probably not an exhaustive discussion of what could work.
Chris
--
Christopher E. Stith
Disclaimer: Actual product may not resemble picture in ad in any way.
------------------------------
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 V10 Issue 178
**************************************