[23490] in Perl-Users-Digest
Perl-Users Digest, Issue: 5703 Volume: 10
daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Thu Oct 23 14:08:52 2003
Date: Thu, 23 Oct 2003 11:05:21 -0700 (PDT)
From: Perl-Users Digest <Perl-Users-Request@ruby.OCE.ORST.EDU>
To: Perl-Users@ruby.OCE.ORST.EDU (Perl-Users Digest)
Perl-Users Digest Thu, 23 Oct 2003 Volume: 10 Number: 5703
Today's topics:
Re: c programmer in need of perl advise (Tad McClellan)
Re: character mapping functions and UNICODE : remove ac <avlula@hotmail.com>
Re: file redirect within back ticks not working <tony_curtis32@_SPAMTRAP_yahoo.com>
Re: file redirect within back ticks not working <abc@nowhere.com>
Re: How to catch runtime error? (Tad McClellan)
Re: How to use a web broser as GUI <jwillmore@remove.adelphia.net>
Re: How to use a web broser as GUI <barbr-en@online.no>
Re: How to use a web broser as GUI <miriam.born@operamail.com>
Re: How to use a web broser as GUI <grazz@pobox.com>
Re: How to use a web broser as GUI <jwillmore@remove.adelphia.net>
Re: How to use a web broser as GUI (Malcolm Dew-Jones)
Re: IMAP administrative tasks with Perl <devdas@users.sourceforge.net>
Re: Increment a string and write it to a file after eac <glex_nospam@qwest.net>
Re: Is there a better way than using $+ ? <nobull@mail.com>
On selecting pseudonyms (was Re: file redirect within b (Randal L. Schwartz)
Re: On selecting pseudonyms (was Re: file redirect with <nobull@mail.com>
Re: On selecting pseudonyms (was Re: file redirect with <abc@nowhere.com>
Re: On selecting pseudonyms (was Re: file redirect with <abc@nospam.nowhere>
Re: Pattern match over mutiple files is slow - Help Nee <ddunham@redwood.taos.com>
Re: Pattern match over mutiple files is slow - Help Nee <ddunham@redwood.taos.com>
Digest Administrivia (Last modified: 6 Apr 01) (Perl-Users-Digest Admin)
----------------------------------------------------------------------
Date: Thu, 23 Oct 2003 10:14:54 -0500
From: tadmc@augustmail.com (Tad McClellan)
Subject: Re: c programmer in need of perl advise
Message-Id: <slrnbpfs3e.79c.tadmc@magna.augustmail.com>
Mike Deskevich <mikedeskevich@yahoo.com> wrote:
> are there built
> in functions to help in profiling?
perldoc -q profile
--
Tad McClellan SGML consulting
tadmc@augustmail.com Perl programming
Fort Worth, Texas
------------------------------
Date: Thu, 23 Oct 2003 17:42:10 GMT
From: "An. Valula" <avlula@hotmail.com>
Subject: Re: character mapping functions and UNICODE : remove accents, case, etc
Message-Id: <SpUlb.351923$lh.88988921@amsnews02.chello.com>
Hi,
thank you for your answer, but, no, I do not want to remove bold or
paragraph marks.
I want to convert "rich" text to "poor" text.
What I call "rich" text is for example with accents, miscelaneous cases etc.
For example: "Hêtre chétif".
Whereas "poor" text is withous accents, no casing (casing is easy to solve
with uc/lc). For example: "hetre chetif".
There must be someone else who wants to compare strings without diacritical
signs ?!
regards
"James Willmore" <jwillmore@remove.adelphia.net> wrote in message
news:20031019113448.2b3d3e91.jwillmore@remove.adelphia.net...
On Sun, 19 Oct 2003 09:45:57 GMT
"An. Valula" <avlula@hotmail.com> wrote:
>
> does anyone out there know about perl capabilities to convert rich
> text, such as "étrangères" to "etrangere" (remove accents)?
> Of course, tr/éè/ee/ would do, but I look for sth better: you do not
> tr/a-z/A-Z/ for uc(), do you?
I realize this doesn't answer the question directly, but have you
checked out RTF::Parse
(http://search.cpan.org/~pverd/RTF-Parser-1.07/)? Thay _may_ aid you
in what you want to accomplish.
HTH
--
Jim
Copyright notice: all code written by the author in this post is
released under the GPL. http://www.gnu.org/licenses/gpl.txt
for more information.
a fortune quote ...
Celebrate Hannibal Day this year. Take an elephant to lunch.
------------------------------
Date: Thu, 23 Oct 2003 10:12:37 -0500
From: Tony Curtis <tony_curtis32@_SPAMTRAP_yahoo.com>
Subject: Re: file redirect within back ticks not working
Message-Id: <87d6cokmxm.fsf@limey.hpcc.uh.edu>
>> On Thu, 23 Oct 2003 15:01:42 GMT,
>> ktom <abc@nowhere.com> said:
> copy the sed line to the command line, replace $file
> with proper file name it works.
Is this a "stealth" CGI question?
------------------------------
Date: Thu, 23 Oct 2003 15:19:59 GMT
From: ktom <abc@nowhere.com>
Subject: Re: file redirect within back ticks not working
Message-Id: <zkSlb.1827$rH6.800@twister.austin.rr.com>
Tony Curtis wrote:
>>>On Thu, 23 Oct 2003 15:01:42 GMT,
>>>ktom <abc@nowhere.com> said:
>
>
>>copy the sed line to the command line, replace $file
>>with proper file name it works.
>
>
nope, nothing stealth about it..
just plain old, where's the magic type question.
> Is this a "stealth" CGI question?
------------------------------
Date: Thu, 23 Oct 2003 10:21:16 -0500
From: tadmc@augustmail.com (Tad McClellan)
Subject: Re: How to catch runtime error?
Message-Id: <slrnbpfsfc.79c.tadmc@magna.augustmail.com>
laszlo <GlgAs@Netscape.net> wrote:
> If I run it from command mode with -W parameter I get
>
> "Use of unitialized value in concatenation (.) or string in a.txt line
> 9.
>
> error message for every execution of the sub
That is not an error message.
That is a warning message.
> However if I use in IIS (WIN2000 Service pack 4; Active State Perl
> 5.8 806) inside a larger program as part of an
>
> eval({$program})
> if ($@) {report the error; die}
>
> statement, the program does not report any error just dies and the
> browser (IE 6.0) shows an irrelevant "the page cannot be displayed"
> error message.
Does it put the message in the web server's log?
> Any help appreciated
Warnings are not trapped the same way as errors, see
perldoc -f eval
for how to use $SIG{__WARN__}.
--
Tad McClellan SGML consulting
tadmc@augustmail.com Perl programming
Fort Worth, Texas
------------------------------
Date: Thu, 23 Oct 2003 15:44:09 GMT
From: James Willmore <jwillmore@remove.adelphia.net>
Subject: Re: How to use a web broser as GUI
Message-Id: <20031023114411.6975117a.jwillmore@remove.adelphia.net>
On Thu, 23 Oct 2003 16:26:01 +0200
Roland M=F6sl <founder@pege.org> wrote:
> > It involves an easy and a difficult step.
> >
> > The easy step in writing a browser that understands inline Perl.
> > The difficult step is to convince people to use your browser
> > instead of IE, Netscape or whatever they use now.
>=20
> It's not for web sites,
> it's do develop programs to be installed at the clients.
>=20
> The idea is to use a browser as the GUI
> and writing all in Perl
>=20
> So what browsers have an direct Perl interface
Huh? Perl and CGI are not the same thing. You can use _any_ browser
to interface with the web _server_ on which the Perl script resides.
CGI (Common Gateway Interface) is, as the name implies, an interface
to the web _server_. You can use many languages to communicate
through CGI. For example, you could also use Java Server Pages to
work through the CGI. What browser is prefered in this case, hmm?=20
You could use C++. Again, what browser would you use, hmm?
As you can see (I hope), Perl is browser agnostic. The real issue is
why you need to use one browser over the other. That's a business
issue, not a Perl issue. Sorry :-(
--=20
Jim
Copyright notice: all code written by the author in this post is
released under the GPL. http://www.gnu.org/licenses/gpl.txt=20
for more information.
a fortune quote ...
"But I don't like Spam!!!!"=20
------------------------------
Date: Thu, 23 Oct 2003 17:48:55 +0200
From: Kåre Olai Lindbach <barbr-en@online.no>
Subject: Re: How to use a web broser as GUI
Message-Id: <rotfpv42q4mrpboatirn92t6n7ed82hp12@4ax.com>
On Thu, 23 Oct 2003 16:26:01 +0200, Roland Mösl <founder@pege.org>
wrote:
>> It involves an easy and a difficult step.
>>
>> The easy step in writing a browser that understands inline Perl.
>> The difficult step is to convince people to use your browser
>> instead of IE, Netscape or whatever they use now.
>
>It's not for web sites,
>it's do develop programs to be installed at the clients.
>
>The idea is to use a browser as the GUI
>and writing all in Perl
>
>So what browsers have an direct Perl interface
Perlscript does this. Download Activestate Perl.
It will probably only work for MS-IE, and is thereby locked to MS-OS,
and one need to install AS Perl on all PCs one like to use.
I have played around with it some years back.
--
mvh/Regards
Kåre Olai Lindbach
------------------------------
Date: Thu, 23 Oct 2003 17:55:12 +0200
From: Miriam Born <miriam.born@operamail.com>
Subject: Re: How to use a web broser as GUI
Message-Id: <38ufpvssc29i4cpline4o95i7dbl7oq2d1@4ax.com>
On Thu, 23 Oct 2003 14:23:56 +0200, Roland Mösl <founder@pege.org>
wrote:
>I mean not as a client server system
>
>I mean to use Perl direct as scripting language
>like javascript
You did not tell us anything about the system you are using.
With Microsoft Windows / Internet Explorer / Active Perl it is
possible to use Perl as a scripting language in the Browser (just like
JavaScript or VBScript). The ActiveState distribution contains
examples.
Miriam Born
------------------------------
Date: Thu, 23 Oct 2003 15:58:55 GMT
From: Steve Grazzini <grazz@pobox.com>
Subject: Re: How to use a web broser as GUI
Message-Id: <3VSlb.16435$Vf7.548@nwrdny02.gnilink.net>
James Willmore <jwillmore@remove.adelphia.net> wrote:
> Roland M?sl <founder@pege.org> wrote:
>> The idea is to use a browser as the GUI
>> and writing all in Perl
>>
>> So what browsers have an direct Perl interface
>
> Huh? Perl and CGI are not the same thing. You can use _any_ browser
> to interface with the web _server_ on which the Perl script resides.
I think the OP is talking about using Perl as the client-side scripting
language (as Javascript is commonly used). The only thing I've seen is
Activestate's PerlScript, which can run inside Internet Explorer.
--
Steve
------------------------------
Date: Thu, 23 Oct 2003 16:03:54 GMT
From: James Willmore <jwillmore@remove.adelphia.net>
Subject: Re: How to use a web broser as GUI
Message-Id: <20031023120354.68b9d820.jwillmore@remove.adelphia.net>
On Thu, 23 Oct 2003 15:58:55 GMT
Steve Grazzini <grazz@pobox.com> wrote:
> James Willmore <jwillmore@remove.adelphia.net> wrote:
> > Roland M?sl <founder@pege.org> wrote:
> >> The idea is to use a browser as the GUI
> >> and writing all in Perl
> >>
> >> So what browsers have an direct Perl interface
> >
> > Huh? Perl and CGI are not the same thing. You can use _any_
> > browser to interface with the web _server_ on which the Perl
> > script resides.
>
> I think the OP is talking about using Perl as the client-side
> scripting language (as Javascript is commonly used). The only thing
> I've seen is Activestate's PerlScript, which can run inside Internet
> Explorer.
See what I get for _not_ reading the whole thread :-)
Sorry about that. Yes, you're correct.
--
Jim
Copyright notice: all code written by the author in this post is
released under the GPL. http://www.gnu.org/licenses/gpl.txt
for more information.
a fortune quote ...
I can't understand why a person will take a year or two to write
a novel when he can easily buy one for a few dollars. -- Fred
Allen
------------------------------
Date: 23 Oct 2003 10:43:43 -0800
From: yf110@vtn1.victoria.tc.ca (Malcolm Dew-Jones)
Subject: Re: How to use a web broser as GUI
Message-Id: <3f98134f@news.victoria.tc.ca>
=?Windows-1252?Q?Roland_M=F6sl?= (founder@pege.org) wrote:
: I mean not as a client server system
: I mean to use Perl direct as scripting language
: like javascript
An alternative is to run a local web server and write your program in a
manner that is basically a cgi script.
I have used httpi as the basis to do this, but I'm sure there are other
perl based web servers that would work.
If you remove all multithreading (i.e. basically remove all forking) and
only allow connects from the local host, then the web server (written in
perl) ends up being basically an event driven program like a typical
windows or mac program to write.
#!perl
# personal server
open socket for local host only
loop:
wait for connect
# don't fork or anything here, just do the work yourself
parse input
if input eq 'QUIT' then exit loop
calculate results
send back page
continue at top of loop
note that any data you load into memory is always available from one page
to the next since it's just a single tasking program, but you get all the
power of the browser (so for example its trivial to add graphics to you
page by simply sending an IMG tag that points to a local image
file).
I guess that something like apache with mod_perl but restricted to the
local host could also be used like the above.
------------------------------
Date: 23 Oct 2003 16:33:57 GMT
From: Devdas Bhagat <devdas@users.sourceforge.net>
Subject: Re: IMAP administrative tasks with Perl
Message-Id: <slrnbpg0lt.7mj.devdas@evita.devdas.geek>
On Thu, 23 Oct 2003 10:43:10 +0000 (UTC), John Doe <who_amiNIESPAMUJ@o2.pl>
poured into the usenet group comp.lang.perl.misc:
> Hi!
>
> I need to write IMAP client that does some administrative tasks on the
> server. I need to know if it is possible to log into IMAP server as
> and administrator and then switch between user mailboxes having only
There is an administrative shell shipping with Cyrus IMAP -- cyradm.
> logins and what Perl modules should I use. is it hard to find some example
> on it.
cyradm is your friend.
It shouldn't be too hard to make it portable to other IMAP servers which
support the same level of functionality.
Devdas Bhagat
------------------------------
Date: Thu, 23 Oct 2003 11:27:27 -0500
From: "J. Gleixner" <glex_nospam@qwest.net>
Subject: Re: Increment a string and write it to a file after each result.
Message-Id: <QgTlb.1589$4V5.16565@news.uswest.net>
john brown wrote:
> This script receives input from the command line. I put in for
> example "www.musicdownload.com/song1.mp3". The script looks for the
> ".mp3" extension and increments the preceeding number to 10. This
> works fine, printing the result to the screen. As you can see, I
> would like to write the results to a file called "wget_input". Wget
> reads from this file and the songs are retrieved. The problem I have
> is with writing all of the results to the file, in this
> case/www.musicdownload.com/song10.mp3" gets written to the file only.
> I know it must be incremented and written after each result, but I
> don't know how to go about constructing the loop. Any ideas?
>
>
>
> #! /usr/bin/perl -w
> #
> # mp3_search
> #
>
> print "Input path to video archive\n";
> $stdinput = <STDIN> ;
> chomp ($stdinput);
> $path = "$stdinput";
>
> $count = substr ($path, rindex ($path, ".mp3") - 1, 1);
>
> for ($count .. 10)
> { substr ($path, rindex ($path, ".") - 1, 1, $count++); print
> "$path\n"; }
>
> open (OUTPUTFILE,">wget_input")|| die "Failed to open
> wget_input\n";
>
> printf OUTPUTFILE "$path";
>
> close OUTPUTFILE;
In place of printing it to the screen, print it to your OUTPUTFILE in
your loop. Using your code, that'd be something like:
open (OUTPUTFILE,">wget_input")|| die "Failed to open wget_input: $!\n";
#include reason
for ($count .. 10)
{
substr ($path, rindex ($path, ".") - 1, 1, $count++);
print OUTPUTFILE "$path\n";
}
close (OUTPUTFILE);
I'd probably get the path, up to the integer, and then just print it and
forget about the multiple calls to substr, or do the index once, and
store it before the for loop.
for ($count .. 10)
{
print OUTPUTFILE $new_path, $count++, ".mp3\n";
}
------------------------------
Date: 23 Oct 2003 18:03:05 +0100
From: Brian McCauley <nobull@mail.com>
Subject: Re: Is there a better way than using $+ ?
Message-Id: <u9u15z28fq.fsf@wcl-l.bham.ac.uk>
Neil Shadrach <neil.shadrach@bt.com> writes:
> @a=$s=~$p;
> I could use (defined $+)?@a:()) but I'm wondering if I could have
> arranged it such that @a was empty in the [ pattern has no captures
> ] case.
I don't think so.
But you should use $#+ not defined($+). Consider
@a = 'foo' =~ /foo|(bar)|(baz)/;
Here @a is correctly set to ( undef, undef ) not () but $+ is left
undefined.
------------------------------
Date: Thu, 23 Oct 2003 15:46:03 GMT
From: merlyn@stonehenge.com (Randal L. Schwartz)
Subject: On selecting pseudonyms (was Re: file redirect within back ticks not working)
Message-Id: <73c91263cca5890b244923b21980d49e@news.teranews.com>
>>>>> "ktom" == ktom <abc@nowhere.com> writes:
ktom> from with a perl script this line does not work
ktom> `sed -e 1,14d $file >> /tmp/junk`;
ktom> it seems the redirect does not work.
I'm not going to answer any question where the poster is forging
addresses of both "nowhere.com" and "billgates.com", thus
polluting those domains for more spam and making replies difficult.
PLEASE PEOPLE.
If you don't want replies, and don't want spam, DON'T USE A VALID
DOMAIN NAME.
You're being very unfair to people who own that domain name, either
now or in the future.
Use "example.com" or "anything.you.want.as.long.as.it.ends.with.invalid"
Those are specifically set aside as "non-domains".
I say this having been burned with stonehenge.com on more than one
occasion. There are now half a dozen addresses at stonehenge.com that
are completely useless because they've been introduced to the
spammers.
You don't get to take a valid domain for your own. In the US, this
can be prosecuted as fraud. Be careful.
--
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: 23 Oct 2003 18:07:24 +0100
From: Brian McCauley <nobull@mail.com>
Subject: Re: On selecting pseudonyms (was Re: file redirect within back ticks not working)
Message-Id: <u9oew7288j.fsf@wcl-l.bham.ac.uk>
ktom <abc@nowhere.com> writes:
> Randal L. Schwartz wrote:
> > I'm not going to answer any question where the poster is forging
> > addresses of both "nowhere.com" and "billgates.com", thus
> > polluting those domains for more spam and making replies difficult.
>
> you have a very good point there.
> i have modified the reply to address with the intent of acknowledging
> your issues. is it sufficient??
No. Go back and read Randal's "very good point".
--
\\ ( )
. _\\__[oo
.__/ \\ /\@
. l___\\
# ll l\\
###LL LL\\
------------------------------
Date: Thu, 23 Oct 2003 17:03:34 GMT
From: ktom <abc@nowhere.com>
Subject: Re: On selecting pseudonyms (was Re: file redirect within back ticks not working)
Message-Id: <GRTlb.2463$rH6.372@twister.austin.rr.com>
Randal L. Schwartz wrote:
>>>>>>"ktom" == ktom <abc@nowhere.com> writes:
>
>
> ktom> from with a perl script this line does not work
> ktom> `sed -e 1,14d $file >> /tmp/junk`;
>
> ktom> it seems the redirect does not work.
>
> I'm not going to answer any question where the poster is forging
> addresses of both "nowhere.com" and "billgates.com", thus
> polluting those domains for more spam and making replies difficult.
you have a very good point there.
>
> PLEASE PEOPLE.
>
> If you don't want replies, and don't want spam, DON'T USE A VALID
> DOMAIN NAME.
I don't mind replies.
I don't want spam.
the real reply to address is ktomasek BLAT d2audio BLDOT com
>
> You're being very unfair to people who own that domain name, either
> now or in the future.
>
> Use "example.com" or "anything.you.want.as.long.as.it.ends.with.invalid"
i have noticed a number of sites that check to make sure that you are
supplying a valid domain name before accepting a replyto or email
address. but that doesn't really apply to newsgroups.
i have modified the reply to address with the intent of acknowledging
your issues. is it sufficient??
>
> Those are specifically set aside as "non-domains".
>
> I say this having been burned with stonehenge.com on more than one
> occasion. There are now half a dozen addresses at stonehenge.com that
> are completely useless because they've been introduced to the
> spammers.
>
> You don't get to take a valid domain for your own. In the US, this
> can be prosecuted as fraud. Be careful.
>
------------------------------
Date: Thu, 23 Oct 2003 17:24:37 GMT
From: ktom <abc@nospam.nowhere>
Subject: Re: On selecting pseudonyms (was Re: file redirect within back ticks not working)
Message-Id: <p9Ulb.2465$rH6.1719@twister.austin.rr.com>
Brian McCauley wrote:
> ktom <abc@nowhere.com> writes:
>
>
>>Randal L. Schwartz wrote:
>
>
>>>I'm not going to answer any question where the poster is forging
>>>addresses of both "nowhere.com" and "billgates.com", thus
>>>polluting those domains for more spam and making replies difficult.
>>
>>you have a very good point there.
>
>
>>i have modified the reply to address with the intent of acknowledging
>>your issues. is it sufficient??
>
>
> No. Go back and read Randal's "very good point".
how do i, or anyone else, find out what other domains are set aside as
'non-domains'?
>
------------------------------
Date: Thu, 23 Oct 2003 16:49:35 GMT
From: Darren Dunham <ddunham@redwood.taos.com>
Subject: Re: Pattern match over mutiple files is slow - Help Needed !
Message-Id: <zETlb.8192$e_6.76961893@newssvr21.news.prodigy.com>
RV <rvstore1@yahoo.com> wrote:
> I did try slurping the complete file - did not seem to make it any
> faster.
> It takes about 10 mins on large ( 120 Kbytes ) file for that loop :(
Okay. I just wanted to make sure that you got the idea wasn't so much
"slurping the file" as it was "putting the file into a single scalar and
only doing @keylist substitutions instead of @keylist * #lines
substitutions".
>> Another question. How often do the patterns actually occur in the file?
>> If they're pretty rare (many lines that don't require any
>> substitutions), then you could do the original "match by line", but do a
>> check on *all* the patterns for each line (fast) before attempting the
>> substitutions (slower).
>>
>> # compile regex with all keys in it.
>> my $re_str = join "|", @keylist;
>>
>> # file loop
>> while (<FILE>)
>> {
>> if (/$re_str/)
>> { # substitute loop }
>> }
> Yes - I expect to have patterns sparsely ( relatively speaking, of
> course ! ).
> Interesting - I will try your idea.
> BTW, Is there a limit on the size of the pattern joined by "|" ? -- As
> i said I expect about 1000 entries in the keylist. ( well other than
> physical memory limits :) ). ????
It's pretty big. I took a squid filter which attempted to match a URL
to a list of advertizing sites. The original looped through each of the
sites looking for a match. I combined them into a single regex that was
orders of magnitude faster. I recall the total file of host and URL
matches as several KB in size. It had no problems.
--
Darren Dunham ddunham@taos.com
Unix System Administrator Taos - The SysAdmin Company
Got some Dr Pepper? San Francisco, CA bay area
< This line left intentionally blank to confuse you. >
------------------------------
Date: Thu, 23 Oct 2003 16:52:41 GMT
From: Darren Dunham <ddunham@redwood.taos.com>
Subject: Re: Pattern match over mutiple files is slow - Help Needed !
Message-Id: <sHTlb.8205$e_6.76961893@newssvr21.news.prodigy.com>
Tad McClellan <tadmc@augustmail.com> wrote:
> Darren Dunham <ddunham@redwood.taos.com> wrote:
>> # compile regex with all keys in it.
>> my $re_str = join "|", @keylist;
> This one bit me once, so I'll mention it to save reader's
> from experiencing similar pain.
> Better make that:
> my $re_str = join "|", sort {$b cmp $a} @keylist;
> (or sort keylist in descending order when it is populated.)
> /one|onerous/ # onerous _never_ matches
> /onerous|one/ # much better
Ahh, good point. My previous time doing this I was matching whole items
or nothing. So to really get it up to speed I did this..
/^($re_str)$/
There, order didn't matter at all. I had overlooked that it would be
necessary to sort it for the general case.
--
Darren Dunham ddunham@taos.com
Unix System Administrator Taos - The SysAdmin Company
Got some Dr Pepper? San Francisco, CA bay area
< This line left intentionally blank to confuse you. >
------------------------------
Date: 6 Apr 2001 21:33:47 GMT (Last modified)
From: Perl-Users-Request@ruby.oce.orst.edu (Perl-Users-Digest Admin)
Subject: Digest Administrivia (Last modified: 6 Apr 01)
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.
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 5703
***************************************