[32031] in Perl-Users-Digest
Perl-Users Digest, Issue: 3295 Volume: 11
daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Tue Feb 22 06:09:26 2011
Date: Tue, 22 Feb 2011 03:09:11 -0800 (PST)
From: Perl-Users Digest <Perl-Users-Request@ruby.OCE.ORST.EDU>
To: Perl-Users@ruby.OCE.ORST.EDU (Perl-Users Digest)
Perl-Users Digest Tue, 22 Feb 2011 Volume: 11 Number: 3295
Today's topics:
Air Jordan 2011 Black White Sport Red In Best Price New <sd1601.cc@gmail.com>
Re: books on perl <cartercc@gmail.com>
grab posted data <nospam.gravitalsun@hotmail.com.nospam>
Imager module with GIFs <jwcarlton@gmail.com>
Re: Please help me how is easiest way to extract text b sln@netherlands.com
Re: Please help me how is easiest way to extract text b <Peter@PSDT.com>
Posting Guidelines for comp.lang.perl.misc ($Revision: tadmc@seesig.invalid
Re: really need all the %{ ${ ${$_}{x} }{y} } jazz? <cartercc@gmail.com>
Re: Regex question; match <br> after opening tag <jcarlton@gowilkes.com>
Ruby on rails training for Perl developers <zhurama@gmail.com>
Digest Administrivia (Last modified: 6 Apr 01) (Perl-Users-Digest Admin)
----------------------------------------------------------------------
Date: Tue, 22 Feb 2011 00:50:16 -0800 (PST)
From: pingping chen <sd1601.cc@gmail.com>
Subject: Air Jordan 2011 Black White Sport Red In Best Price News
Message-Id: <a3e27eb4-56b8-437e-a38f-aba802850d91@y30g2000prf.googlegroups.com>
Air Jordan 2011 Black Red seems have some similar to the Air Jordan
2011 White Black, for example, the design on the whole shoe, the
material, the colorways, etc. The sport red used in these shoe, let
the shoe have a gorgeous look, make the shoe more stylish.
http://www.sneakerin.com/air-jordan-2011-black-white-sport-red-p-205.html
------------------------------
Date: Mon, 21 Feb 2011 15:47:16 -0800 (PST)
From: ccc31807 <cartercc@gmail.com>
Subject: Re: books on perl
Message-Id: <c27300b1-0b7d-4d29-8eba-ad61050769ee@z3g2000prz.googlegroups.com>
On Feb 21, 2:02=A0pm, Sherm Pendley <sherm.pend...@gmail.com> wrote:
> is "O'Reilly rules!" :-)
Yes, O'Reilly generally produces books of a high caliber, with the odd
exception here and there -- certainly several orders of magnitude
above the Sam's Teach Yourself in 24 Hours books.
However, I'm beginning to like the Manning books as well. The ones I
have also do well. They tend to be Windows centric, but we don't judge
the quality of a book by the OS or technology preference. Case in
point: 'Object Oriented Perl' by Damian Conway.
I also like the few Pragmatic Bookshelf books I've bought, not as
strong perhaps as O'Reilly but still of high quality.
CC.
------------------------------
Date: Tue, 22 Feb 2011 12:57:46 +0200
From: "George Mpouras" <nospam.gravitalsun@hotmail.com.nospam>
Subject: grab posted data
Message-Id: <ik04qa$a5u$1@ulysses.noc.ntua.gr>
I want to catch row data posted to a CGI script.
No url params are defined.
STDIN
$q->param('POSTDATA')
$q->param('PUTDATA') are blank
The only success I have is the $q->param(keywords)
it returns the data until the first space .
Any hint ;
------------------------------
Date: Tue, 22 Feb 2011 01:49:36 -0800 (PST)
From: jwcarlton <jwcarlton@gmail.com>
Subject: Imager module with GIFs
Message-Id: <43e302b8-1aa2-42bf-8b37-477e2ad8e65e@a11g2000pro.googlegroups.com>
Is it possible to convert an image from GIF to JPG using the Imager
module, or am I going to have to switch over to Image::Magick?
Currently, converting PNG or BMP is working fine, it's just a GIF that
gives me an error. Here's the code I'm using:
($filename, $ext) = $pic =~ m/(.*)\.(.*)/;
my $image = Imager->new;
$image->read(file => "$path/$pic");
$image->write(file => "$path/$filename.jpg")) or
die $image->errstr;
When I upload a GIF, I get an error on the "write(file => ...)" line
that says "Can't call method "write" on an undefined value".
This is the same if I change the line to:
$image->write(file => "$path/$pic")) or
die $image->errstr;
Which doesn't actually convert anything, but I still get an error when
writing.
TIA,
Jason
------------------------------
Date: Mon, 21 Feb 2011 13:21:03 -0800
From: sln@netherlands.com
Subject: Re: Please help me how is easiest way to extract text between some variable text
Message-Id: <16k5m6pmsjl5jqf6cudtcmiavfgkarn3jm@4ax.com>
On Sun, 20 Feb 2011 19:33:18 +0100, "Mladen" <mladen.g@gmail.com> wrote:
>Please help me how is easiest way to extract text between some variable text
Output:
'New name'
'Test name '
'Name 2'
If you wish to run the @content elements through a sub-container to extract
more, you must set up a sub that re-defines the 'Container Expression' regex
for each sub-container you need. There are variations on the theme of the
container expressions, but this superficiously get you started.
-sln
-------------
ie:
my ($open, $close, $rx);
my $comment = qr{ see below };
my $attrib = qr{ see below };
...
defineContainer ( '(?i:TH)' );
...
defineContainer ( '(?i:TR)' );
...
sub defineContainer {
my $tag = shift;
$open = qr{ see below <$tag ... }
$rx = qr( see below }
}
-------------------------
use strict;
use warnings;
# Primitive Definitions
#
my $comment = qr{(?xs)
<! (?:\[CDATA\[.*?\]\]|--.*?--|\[[A-Z][A-Z\ ]*\[.*?\]\]) >
};
my $attrib = qr{(?x)
(?:\s+ (?: [^>"'\/]* (?:"[^"]*"|'[^']*'|["']|(?:\/(?!>))?))++)
};
my $open = qr{(?x) <TH (?: \s*|$attrib ) > };
my $close = qr{(?x) </TH \s*> };
# Container Expression
#
my $rx = qr{(?xs)
$comment
| ( # Recursion group, the 'container'
$open
( # Container 'contents' to capture
(?:
$comment
| (?:(?!$open|$close|$comment).)++
| (?1)
)*
)
$close
)
};
# Parse Code
#
my $tog;
my $text = join '', <DATA>;
my @Contents = map { !($tog=!$tog) && defined() ? $_ : () } $text =~ /$rx/g;
for (@Contents) {
print "'$_'\n";
}
__DATA__
<TH class=name width=100>New name</TH> need to
extract: New name
<TH class=name width=50>Test name </TH> need to
extract: Test name
<TH class=name width=65>Name 2</TH> need
to extract: Name 2
------------------------------
Date: Tue, 22 Feb 2011 10:57:39 GMT
From: Peter Scott <Peter@PSDT.com>
Subject: Re: Please help me how is easiest way to extract text between some variable text
Message-Id: <DEM8p.35248$Bv7.22789@newsfe12.iad>
On Mon, 21 Feb 2011 07:38:33 -0600, Tad McClellan wrote:
> sharma__r@hotmail.com <sharma__r@hotmail.com> wrote:
>> }xms
> ^^
> ^^
> ^^
>> ;
>
>
> The "m" modifier affects only the "^" and "$" anchors. It is a no-op if
> your pattern does not contain those anchors.
>
> The "s" modifier affects only the "." metacharacter. It is a no-op if
> your pattern does not contain that character.
>
> You should not enable special treatment if you are not going to make use
> of that special treatment.
The poster is following the principles in Damian Conway's "Perl Best
Practices," which state: "Use the /xms flags on every regular expression
you ever write [...] It takes about a week to accustom your fingers to
automatically typing /xms on every [regex]..."
--
Peter Scott
http://www.perlmedic.com/ http://www.perldebugged.com/
http://www.informit.com/store/product.aspx?isbn=0137001274
http://www.oreillyschool.com/courses/perl3/
------------------------------
Date: Tue, 22 Feb 2011 02:15:18 -0600
From: tadmc@seesig.invalid
Subject: Posting Guidelines for comp.lang.perl.misc ($Revision: 1.9 $)
Message-Id: <a8idnW6AKegL7f7QnZ2dnUVZ5tadnZ2d@giganews.com>
Outline
Before posting to comp.lang.perl.misc
Must
- Check the Perl Frequently Asked Questions (FAQ)
- Check the other standard Perl docs (*.pod)
Really Really Should
- Lurk for a while before posting
- Search a Usenet archive
If You Like
- Check Other Resources
Posting to comp.lang.perl.misc
Is there a better place to ask your question?
- Question should be about Perl, not about the application area
How to participate (post) in the clpmisc community
- Carefully choose the contents of your Subject header
- Use an effective followup style
- Speak Perl rather than English, when possible
- Ask perl to help you
- Do not re-type Perl code
- Provide enough information
- Do not provide too much information
- Do not post binaries, HTML, or MIME
Social faux pas to avoid
- Asking a Frequently Asked Question
- Asking a question easily answered by a cursory doc search
- Asking for emailed answers
- Beware of saying "doesn't work"
- Sending a "stealth" Cc copy
Be extra cautious when you get upset
- Count to ten before composing a followup when you are upset
- Count to ten after composing and before posting when you are upset
-----------------------------------------------------------------
Posting Guidelines for comp.lang.perl.misc ($Revision: 1.9 $)
This newsgroup, commonly called clpmisc, is a technical newsgroup
intended to be used for discussion of Perl related issues (except job
postings), whether it be comments or questions.
As you would expect, clpmisc discussions are usually very technical in
nature and there are conventions for conduct in technical newsgroups
going somewhat beyond those in non-technical newsgroups.
The article at:
http://www.catb.org/~esr/faqs/smart-questions.html
describes how to get answers from technical people in general.
This article describes things that you should, and should not, do to
increase your chances of getting an answer to your Perl question. It is
available in POD, HTML and plain text formats at:
http://www.rehabitation.com/clpmisc.shtml
For more information about netiquette in general, see the "Netiquette
Guidelines" at:
http://andrew2.andrew.cmu.edu/rfc/rfc1855.html
A note to newsgroup "regulars":
Do not use these guidelines as a "license to flame" or other
meanness. It is possible that a poster is unaware of things
discussed here. Give them the benefit of the doubt, and just
help them learn how to post, rather than assume that they do
know and are being the "bad kind" of Lazy.
A note about technical terms used here:
In this document, we use words like "must" and "should" as
they're used in technical conversation (such as you will
encounter in this newsgroup). When we say that you *must* do
something, we mean that if you don't do that something, then
it's unlikely that you will benefit much from this group.
We're not bossing you around; we're making the point without
lots of words.
Do *NOT* send email to the maintainer of these guidelines. It will be
discarded unread. The guidelines belong to the newsgroup so all
discussion should appear in the newsgroup. I am just the secretary that
writes down the consensus of the group.
Before posting to comp.lang.perl.misc
Must
This section describes things that you *must* do before posting to
clpmisc, in order to maximize your chances of getting meaningful replies
to your inquiry and to avoid getting flamed for being lazy and trying to
have others do your work.
The perl distribution includes documentation that is copied to your hard
drive when you install perl. Also installed is a program for looking
things up in that (and other) documentation named 'perldoc'.
You should either find out where the docs got installed on your system,
or use perldoc to find them for you. Type "perldoc perldoc" to learn how
to use perldoc itself. Type "perldoc perl" to start reading Perl's
standard documentation.
Check the Perl Frequently Asked Questions (FAQ)
Checking the FAQ before posting is required in Big 8 newsgroups in
general, there is nothing clpmisc-specific about this requirement.
You are expected to do this in nearly all newsgroups.
You can use the "-q" switch with perldoc to do a word search of the
questions in the Perl FAQs.
Check the other standard Perl docs (*.pod)
The perl distribution comes with much more documentation than is
available for most other newsgroups, so in clpmisc you should also
see if you can find an answer in the other (non-FAQ) standard docs
before posting.
It is *not* required, or even expected, that you actually *read* all of
Perl's standard docs, only that you spend a few minutes searching them
before posting.
Try doing a word-search in the standard docs for some words/phrases
taken from your problem statement or from your very carefully worded
"Subject:" header.
Really Really Should
This section describes things that you *really should* do before posting
to clpmisc.
Lurk for a while before posting
This is very important and expected in all newsgroups. Lurking means
to monitor a newsgroup for a period to become familiar with local
customs. Each newsgroup has specific customs and rituals. Knowing
these before you participate will help avoid embarrassing social
situations. Consider yourself to be a foreigner at first!
Search a Usenet archive
There are tens of thousands of Perl programmers. It is very likely
that your question has already been asked (and answered). See if you
can find where it has already been answered.
One such searchable archive is:
http://groups.google.com/advanced_search
If You Like
This section describes things that you *can* do before posting to
clpmisc.
Check Other Resources
You may want to check in books or on web sites to see if you can
find the answer to your question.
But you need to consider the source of such information: there are a
lot of very poor Perl books and web sites, and several good ones
too, of course.
Posting to comp.lang.perl.misc
There can be 200 messages in clpmisc in a single day. Nobody is going to
read every article. They must decide somehow which articles they are
going to read, and which they will skip.
Your post is in competition with 199 other posts. You need to "win"
before a person who can help you will even read your question.
These sections describe how you can help keep your article from being
one of the "skipped" ones.
Is there a better place to ask your question?
Question should be about Perl, not about the application area
It can be difficult to separate out where your problem really is,
but you should make a conscious effort to post to the most
applicable newsgroup. That is, after all, where you are the most
likely to find the people who know how to answer your question.
Being able to "partition" a problem is an essential skill for
effectively troubleshooting programming problems. If you don't get
that right, you end up looking for answers in the wrong places.
It should be understood that you may not know that the root of your
problem is not Perl-related (the two most frequent ones are CGI and
Operating System related), so off-topic postings will happen from
time to time. Be gracious when someone helps you find a better place
to ask your question by pointing you to a more applicable newsgroup.
How to participate (post) in the clpmisc community
Carefully choose the contents of your Subject header
You have 40 precious characters of Subject to win out and be one of
the posts that gets read. Don't waste them. Take care while
composing them, they are the key that opens the door to getting an
answer.
Spend them indicating what aspect of Perl others will find if they
should decide to read your article.
Do not spend them indicating "experience level" (guru, newbie...).
Do not spend them pleading (please read, urgent, help!...).
Do not spend them on non-Subjects (Perl question, one-word
Subject...)
For more information on choosing a Subject see "Choosing Good
Subject Lines":
http://www.cpan.org/authors/id/D/DM/DMR/subjects.post
Part of the beauty of newsgroup dynamics, is that you can contribute
to the community with your very first post! If your choice of
Subject leads a fellow Perler to find the thread you are starting,
then even asking a question helps us all.
Use an effective followup style
When composing a followup, quote only enough text to establish the
context for the comments that you will add. Always indicate who
wrote the quoted material. Never quote an entire article. Never
quote a .signature (unless that is what you are commenting on).
Intersperse your comments *following* each section of quoted text to
which they relate. Unappreciated followup styles are referred to as
"top-posting", "Jeopardy" (because the answer comes before the
question), or "TOFU" (Text Over, Fullquote Under).
Reversing the chronology of the dialog makes it much harder to
understand (some folks won't even read it if written in that style).
For more information on quoting style, see:
http://web.presby.edu/~nnqadmin/nnq/nquote.html
Speak Perl rather than English, when possible
Perl is much more precise than natural language. Saying it in Perl
instead will avoid misunderstanding your question or problem.
Do not say: I have variable with "foo\tbar" in it.
Instead say: I have $var = "foo\tbar", or I have $var = 'foo\tbar',
or I have $var = <DATA> (and show the data line).
Ask perl to help you
You can ask perl itself to help you find common programming mistakes
by doing two things: enable warnings (perldoc warnings) and enable
"strict"ures (perldoc strict).
You should not bother the hundreds/thousands of readers of the
newsgroup without first seeing if a machine can help you find your
problem. It is demeaning to be asked to do the work of a machine. It
will annoy the readers of your article.
You can look up any of the messages that perl might issue to find
out what the message means and how to resolve the potential mistake
(perldoc perldiag). If you would like perl to look them up for you,
you can put "use diagnostics;" near the top of your program.
Do not re-type Perl code
Use copy/paste or your editor's "import" function rather than
attempting to type in your code. If you make a typo you will get
followups about your typos instead of about the question you are
trying to get answered.
Provide enough information
If you do the things in this item, you will have an Extremely Good
chance of getting people to try and help you with your problem!
These features are a really big bonus toward your question winning
out over all of the other posts that you are competing with.
First make a short (less than 20-30 lines) and *complete* program
that illustrates the problem you are having. People should be able
to run your program by copy/pasting the code from your article. (You
will find that doing this step very often reveals your problem
directly. Leading to an answer much more quickly and reliably than
posting to Usenet.)
Describe *precisely* the input to your program. Also provide example
input data for your program. If you need to show file input, use the
__DATA__ token (perldata.pod) to provide the file contents inside of
your Perl program.
Show the output (including the verbatim text of any messages) of
your program.
Describe how you want the output to be different from what you are
getting.
If you have no idea at all of how to code up your situation, be sure
to at least describe the 2 things that you *do* know: input and
desired output.
Do not provide too much information
Do not just post your entire program for debugging. Most especially
do not post someone *else's* entire program.
Do not post binaries, HTML, or MIME
clpmisc is a text only newsgroup. If you have images or binaries
that explain your question, put them in a publically accessible
place (like a Web server) and provide a pointer to that location. If
you include code, cut and paste it directly in the message body.
Don't attach anything to the message. Don't post vcards or HTML.
Many people (and even some Usenet servers) will automatically filter
out such messages. Many people will not be able to easily read your
post. Plain text is something everyone can read.
Social faux pas to avoid
The first two below are symptoms of lots of FAQ asking here in clpmisc.
It happens so often that folks will assume that it is happening yet
again. If you have looked but not found, or found but didn't understand
the docs, say so in your article.
Asking a Frequently Asked Question
It should be understood that you may have missed the applicable FAQ
when you checked, which is not a big deal. But if the Frequently
Asked Question is worded similar to your question, folks will assume
that you did not look at all. Don't become indignant at pointers to
the FAQ, particularly if it solves your problem.
Asking a question easily answered by a cursory doc search
If folks think you have not even tried the obvious step of reading
the docs applicable to your problem, they are likely to become
annoyed.
If you are flamed for not checking when you *did* check, then just
shrug it off (and take the answer that you got).
Asking for emailed answers
Emailed answers benefit one person. Posted answers benefit the
entire community. If folks can take the time to answer your
question, then you can take the time to go get the answer in the
same place where you asked the question.
It is OK to ask for a *copy* of the answer to be emailed, but many
will ignore such requests anyway. If you munge your address, you
should never expect (or ask) to get email in response to a Usenet
post.
Ask the question here, get the answer here (maybe).
Beware of saying "doesn't work"
This is a "red flag" phrase. If you find yourself writing that,
pause and see if you can't describe what is not working without
saying "doesn't work". That is, describe how it is not what you
want.
Sending a "stealth" Cc copy
A "stealth Cc" is when you both email and post a reply without
indicating *in the body* that you are doing so.
Be extra cautious when you get upset
Count to ten before composing a followup when you are upset
This is recommended in all Usenet newsgroups. Here in clpmisc, most
flaming sub-threads are not about any feature of Perl at all! They
are most often for what was seen as a breach of netiquette. If you
have lurked for a bit, then you will know what is expected and won't
make such posts in the first place.
But if you get upset, wait a while before writing your followup. I
recommend waiting at least 30 minutes.
Count to ten after composing and before posting when you are upset
After you have written your followup, wait *another* 30 minutes
before committing yourself by posting it. You cannot take it back
once it has been said.
AUTHOR
Tad McClellan and many others on the comp.lang.perl.misc newsgroup.
--
Tad McClellan
email: perl -le "print scalar reverse qq/moc.liamg\100cm.j.dat/"
The above message is a Usenet post.
I don't recall having given anyone permission to use it on a Web site.
------------------------------
Date: Mon, 21 Feb 2011 16:00:49 -0800 (PST)
From: ccc31807 <cartercc@gmail.com>
Subject: Re: really need all the %{ ${ ${$_}{x} }{y} } jazz?
Message-Id: <abd95e62-ecfc-48f5-92a9-3731c6b24277@y30g2000prf.googlegroups.com>
On Feb 18, 9:37=A0pm, jida...@jidanni.org wrote:
> Gentlemen, my program runs great, but do I really have to use all that wa=
cky
> =A0%{ ${ ${$_}{geometry} }{location} } )
No, you don't. Create local variables with nice, English names that
state exactly what the variable means, assign your data structures to
those variables, and you can clean it up quite a bit.
defined(), sprintf(), split(), and join() are your friends, and you
can use them as you would Clorox bleach.
CC.
------------------------------
Date: Tue, 22 Feb 2011 01:02:09 -0800 (PST)
From: Jason <jcarlton@gowilkes.com>
Subject: Re: Regex question; match <br> after opening tag
Message-Id: <612ecd71-845f-476a-8c80-d4638d1d9292@8g2000prb.googlegroups.com>
On Feb 16, 9:27=A0pm, Sherm Pendley <sherm.pend...@gmail.com> wrote:
> jwcarlton <jwcarl...@gmail.com> writes:
> > Sherm Pendley <sherm.pend...@gmail.com> writes:
>
> >> The HTML::HTML5::Parser docs say that parse_string() should give you a=
n
> >> instance of XML::LibXML::Document, and the message above indicates tha=
t
> >> it did. That's good news, as it shows that nothing actually went wrong=
;
> >> the problem is that you're trying to print the object as if it were ju=
st
> >> a string. What you should do instead is check the docs for that module=
,
> >> and find a method for that object that will give you a string. At firs=
t
> >> glance, it looks to me like toString() would be appropriate:
>
> >> =A0 print $comment->toString();
>
> > Awesome! That worked perfectly, Sherm.
>
> > I looked all through the docs, both last night and today, and didn't
> > see anything like that. For the sake of my own learnin', where exactly
> > did you find that?
>
> I don't have it installed, so found it on <http://search.cpan.org> and
> scanned its docs - there's a handy list of all its methods at the top.
> Based on its name, toString() looked like it might be relevant to what
> you were trying to do, so I checked the full description of it to make
> sure.
>
> I've invested quite a few points in the Looking Stuff Up skill over the
> years, and found that it's a pretty good investment. :-)
>
> sherm--
>
> --
> Sherm Pendley
> =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0<h=
ttp://camelbones.sourceforge.net>
> Cocoa Developer
So...
I'm using HTML::HTML5::Parser now, and while it works fine on catching
opening <span> or whatever without a closing </span>, I'm still not
sure how I should use this to remove the opening or trailing <br> in a
string like:
$text =3D "<span class=3Dwhatever><font class=3Dsmall><br><br>Test</font></
span><br><br>This is fine.";
Which should be converted to:
$text =3D "<span class=3Dwhatever><font class=3Dsmall>Test</font></
span><br><br>This is fine.";
Or, like:
$text =3D "This is fine.<br><br><span class=3Dwhatever><font
class=3Dsmall>Test<br><br></font></span>";
Which should be converted to:
$text =3D "This is fine.<br><br><span class=3Dwhatever><font
class=3Dsmall>Test</font></span>";
Just to reiterate, this is coming from a message board post, so these
strings are just basic samples. I'm trying to remove any <br> that
comes at the beginning (or end) of the string, even if it follows (or
precedes) another tag that is acceptable.
------------------------------
Date: Mon, 21 Feb 2011 21:19:21 -0800 (PST)
From: Wan Li Zhu <zhurama@gmail.com>
Subject: Ruby on rails training for Perl developers
Message-Id: <26b090f0-9b0d-4e0c-ba5f-d8aaac106a92@w36g2000vbi.googlegroups.com>
If you're a Perl developer in the Boston area looking to learn Ruby,
Fairhaven Capital and thoughtbot are teaming up to offer Ruby on Rails
training courses in Boston at 50% off regular price ($600 for 2 full
days of training, intro and advanced levels).
Details at http://workshops.thoughtbot.com/fairhaven
------------------------------
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:
To submit articles to comp.lang.perl.announce, send your article to
clpa@perl.com.
Back issues are available via anonymous ftp from
ftp://cil-www.oce.orst.edu/pub/perl/old-digests.
#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 V11 Issue 3295
***************************************