[28458] in Perl-Users-Digest

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

Perl-Users Digest, Issue: 9822 Volume: 10

daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Mon Oct 9 00:06:04 2006

Date: Sun, 8 Oct 2006 21:05:06 -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           Sun, 8 Oct 2006     Volume: 10 Number: 9822

Today's topics:
        Class::Std and AUTOMETHOD don.hosek@gmail.com
        Data Extraction Hierarchial Report <bradbrockman@yahoo.com>
    Re: Data Extraction Hierarchial Report <mritty@gmail.com>
    Re: Data Extraction Hierarchial Report <bradbrockman@yahoo.com>
    Re: Data Extraction Hierarchial Report <bradbrockman@yahoo.com>
    Re: Data Extraction Hierarchial Report (reading news)
    Re: Google calendar interaction <mark.clementsREMOVETHIS@wanadoo.fr>
        Mechanize location <ldolan@bigpond.net.au>
    Re: Mechanize location <sbryce@scottbryce.com>
        Parse tree like data like XML by Perl? <zhushenli@gmail.com>
    Re: Parse tree like data like XML by Perl? <news12@8439.e4ward.com>
    Re: Posting Guidelines for comp.lang.perl.misc ($Revisi <tadmc@augustmail.com>
    Re: Posting Guidelines for comp.lang.perl.misc ($Revisi <nospam-abuse@ilyaz.org>
    Re: QUERY_STRING parsing and '$value =~ tr/+/ /;' treat <ynl@nsparks.net>
        Syntax for getting web page links <ldolan@bigpond.net.au>
    Re: Syntax for getting web page links <mritty@gmail.com>
    Re: Syntax for getting web page links <ldolan@bigpond.net.au>
    Re: Syntax for getting web page links (reading news)
        Digest Administrivia (Last modified: 6 Apr 01) (Perl-Users-Digest Admin)

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

Date: 8 Oct 2006 18:56:34 -0700
From: don.hosek@gmail.com
Subject: Class::Std and AUTOMETHOD
Message-Id: <1160358994.919885.255460@m7g2000cwm.googlegroups.com>

OK, so I'm going back over the last project to see what I can learn
from my efforts and I run into one annoying bit of cut-and-paste coding
which would better off not being such.

I had a number of classes derived from a base class which had some
member data which were in array form:

package A;
use Class::Std;
use base qw(BaseClass);
use strict;

# Both of these will be references to arrays
my %this_list_ref_of : ATTR;
my %that_list_ref_of : ATTR;

I want to have methods which give me the number of elements so that I
can do

my $foo=A->new();
print $foo->count_of_this_list_ref_of();

Now generating the functions by cut and paste is doable, but it's also
error-prone: What if I accidentally don't do all the substitutions and
$foo->count_of_that_ref_of() gives me the size of the array in
$this_list_ref_of{$this} rather than $that_list_ref_of{$this}?

Ignoring the autovivification issues, I had tried setting up an
AUTOMETHOD which used symbolic refs and found that this wasn't going to
work [easily] since an auto-vivified ${'foo'} is a different entry in
the symbol table than my $foo. I suppose I could look at what class my
AUTHOMETHOD is called from and use that to set up the symbol table, but
there's still the whole autovivification issue. Any thoughts on what
the best practice way of dealing with this problem would be?



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

Date: 8 Oct 2006 19:23:25 -0700
From: "banker123" <bradbrockman@yahoo.com>
Subject: Data Extraction Hierarchial Report
Message-Id: <1160360605.808092.243930@e3g2000cwe.googlegroups.com>

I have the following data in a file.

123456 Johns Account
            10.00 Apples 10/08/2006
            20.00 Grapes 10/07/2006
987654 Bobs Account
            10.00 Oranges 10/08/2006
            20.00 Plums 10/07/2006

I need to build a file to populate a database like

123456 Johns Account 10.00 Apples 10/08/2006
123456 Johns Account 20.00 Grapes 10/07/2006
987654 Bobs Account 10.00 Oranges 10/08/2006
987654 Bobs Account 20.00 Plums 10/08/2006

This your classical hierarchial report, the challenge I have had is in
exeucting the append, defining the header and detail records.  Please
help, this has been eluding me for some time.



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

Date: 8 Oct 2006 20:18:06 -0700
From: "Paul Lalli" <mritty@gmail.com>
Subject: Re: Data Extraction Hierarchial Report
Message-Id: <1160363886.708259.226630@m7g2000cwm.googlegroups.com>

banker123 wrote:
> I have the following data in a file.
>
> 123456 Johns Account
>             10.00 Apples 10/08/2006
>             20.00 Grapes 10/07/2006
> 987654 Bobs Account
>             10.00 Oranges 10/08/2006
>             20.00 Plums 10/07/2006
>
> I need to build a file to populate a database like
>
> 123456 Johns Account 10.00 Apples 10/08/2006
> 123456 Johns Account 20.00 Grapes 10/07/2006
> 987654 Bobs Account 10.00 Oranges 10/08/2006
> 987654 Bobs Account 20.00 Plums 10/08/2006
>
> This your classical hierarchial report, the challenge I have had is in
> exeucting the append, defining the header and detail records.  Please
> help, this has been eluding me for some time.

What have you tried so far?  How is it not working for you?  Please
post a short-but-complete script that demonstrates your best attempt,
and how it is failing.

For a general algorithm, process the file line by line.  If the line
does not start with spaces (or tabs, can't tell from your sample data),
set a variable to be that string.  If it does, print out the header,
followed by the current line.

Paul Lalli



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

Date: 8 Oct 2006 20:30:20 -0700
From: "banker123" <bradbrockman@yahoo.com>
Subject: Re: Data Extraction Hierarchial Report
Message-Id: <1160364619.948047.271670@i42g2000cwa.googlegroups.com>

The following code will extract the header record, the challeng I am
having is appending this to the detail records.

open(data,'C:\data.txt');
@array=<data>;

foreach $line(@array){
if ($line =~ /B./){
print "$line";
}
}
Paul Lalli wrote:
> banker123 wrote:
> > I have the following data in a file.
> >
> > 123456 Johns Account
> >             10.00 Apples 10/08/2006
> >             20.00 Grapes 10/07/2006
> > 987654 Bobs Account
> >             10.00 Oranges 10/08/2006
> >             20.00 Plums 10/07/2006
> >
> > I need to build a file to populate a database like
> >
> > 123456 Johns Account 10.00 Apples 10/08/2006
> > 123456 Johns Account 20.00 Grapes 10/07/2006
> > 987654 Bobs Account 10.00 Oranges 10/08/2006
> > 987654 Bobs Account 20.00 Plums 10/08/2006
> >
> > This your classical hierarchial report, the challenge I have had is in
> > exeucting the append, defining the header and detail records.  Please
> > help, this has been eluding me for some time.
>
> What have you tried so far?  How is it not working for you?  Please
> post a short-but-complete script that demonstrates your best attempt,
> and how it is failing.
>
> For a general algorithm, process the file line by line.  If the line
> does not start with spaces (or tabs, can't tell from your sample data),
> set a variable to be that string.  If it does, print out the header,
> followed by the current line.
> 
> Paul Lalli



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

Date: 8 Oct 2006 20:32:39 -0700
From: "banker123" <bradbrockman@yahoo.com>
Subject: Re: Data Extraction Hierarchial Report
Message-Id: <1160364759.574291.117120@h48g2000cwc.googlegroups.com>

Should be
open(data,'C:\data.txt');
@array=<data>;


foreach $line(@array){
if ($line =~ /Account/){
print "$line";





banker123 wrote:
> The following code will extract the header record, the challeng I am
> having is appending this to the detail records.
>
> open(data,'C:\data.txt');
> @array=<data>;
>
> foreach $line(@array){
> if ($line =~ /B./){
> print "$line";
> }
> }
> Paul Lalli wrote:
> > banker123 wrote:
> > > I have the following data in a file.
> > >
> > > 123456 Johns Account
> > >             10.00 Apples 10/08/2006
> > >             20.00 Grapes 10/07/2006
> > > 987654 Bobs Account
> > >             10.00 Oranges 10/08/2006
> > >             20.00 Plums 10/07/2006
> > >
> > > I need to build a file to populate a database like
> > >
> > > 123456 Johns Account 10.00 Apples 10/08/2006
> > > 123456 Johns Account 20.00 Grapes 10/07/2006
> > > 987654 Bobs Account 10.00 Oranges 10/08/2006
> > > 987654 Bobs Account 20.00 Plums 10/08/2006
> > >
> > > This your classical hierarchial report, the challenge I have had is in
> > > exeucting the append, defining the header and detail records.  Please
> > > help, this has been eluding me for some time.
> >
> > What have you tried so far?  How is it not working for you?  Please
> > post a short-but-complete script that demonstrates your best attempt,
> > and how it is failing.
> >
> > For a general algorithm, process the file line by line.  If the line
> > does not start with spaces (or tabs, can't tell from your sample data),
> > set a variable to be that string.  If it does, print out the header,
> > followed by the current line.
> > 
> > Paul Lalli



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

Date: Mon, 09 Oct 2006 03:51:02 GMT
From: "Mumia W. (reading news)" <paduille.4059.mumia.w@earthlink.net>
Subject: Re: Data Extraction Hierarchial Report
Message-Id: <GGjWg.9032$o71.4827@newsread3.news.pas.earthlink.net>

On 10/08/2006 09:23 PM, banker123 wrote:
> I have the following data in a file.
> 
> 123456 Johns Account
>             10.00 Apples 10/08/2006
>             20.00 Grapes 10/07/2006
> 987654 Bobs Account
>             10.00 Oranges 10/08/2006
>             20.00 Plums 10/07/2006
> 
> I need to build a file to populate a database like
> 
> 123456 Johns Account 10.00 Apples 10/08/2006
> 123456 Johns Account 20.00 Grapes 10/07/2006
> 987654 Bobs Account 10.00 Oranges 10/08/2006
> 987654 Bobs Account 20.00 Plums 10/08/2006
> 
> This your classical hierarchial report, the challenge I have had is in
> exeucting the append, defining the header and detail records.  Please
> help, this has been eluding me for some time.
> 

What have you tried so far?


-- 
Mumia W.
paduille.4059.mumia.w@earthlink.net
This is a temporary e-mail to help me catch some s-p*á/m.


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

Date: Mon, 09 Oct 2006 00:11:38 +0200
From: Mark Clements <mark.clementsREMOVETHIS@wanadoo.fr>
Subject: Re: Google calendar interaction
Message-Id: <4529778a$0$27408$ba4acef3@news.orange.fr>

ethandbrown@gmail.com wrote:
> Hi Group--
> 
> Has anyone succeeded in interacting with google calendars via Perl?
> Google provides client libraries for Java, but not Perl.
> I'm working with the Net::Google::Calendar module and am able
> to connect and obtain calendar entries, but am not successful at
> creating a new entry using the sample code provided by the module.
> 
> I'm getting a "401 Token invalid" error, which would lead me to
> believe the problem is in either the feed url or the user/password,
> but I can't seem to find a problem in either.
> 
> Thanks for any help,
> 

The test code works for me.

Are you specifying a full username@gmail.com for the username?

Are you sure the url is still valid? Are you sure you've chosen your 
personal one and not the shared one?

Mark


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

Date: Mon, 09 Oct 2006 02:17:56 GMT
From: dysgraphia <ldolan@bigpond.net.au>
Subject: Mechanize location
Message-Id: <ojiWg.43900$rP1.21038@news-server.bigpond.net.au>

Hi, Using XP. Brand new to perl. I have downloaded Mechanize
but am not sure in which folder it should be.
Any advice appreciated!


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

Date: Sun, 08 Oct 2006 21:45:09 -0600
From: Scott Bryce <sbryce@scottbryce.com>
Subject: Re: Mechanize location
Message-Id: <UvWdndHn1PNVWLTYnZ2dnUVZ_sidnZ2d@comcast.com>

dysgraphia wrote:

> Hi, Using XP. Brand new to perl. I have downloaded Mechanize
> but am not sure in which folder it should be.
> Any advice appreciated!

Are you familiar with the Perl Package Manager that comes with 
Activestate Perl? If you use PPM to install modules, it will install 
them to the correct directory. It will also manage dependencies for you.

Open a command window, go to the Perl\bin directory, and type ppm at the 
command prompt.


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

Date: 8 Oct 2006 19:08:05 -0700
From: "Davy" <zhushenli@gmail.com>
Subject: Parse tree like data like XML by Perl?
Message-Id: <1160359685.625880.49720@k70g2000cwa.googlegroups.com>

Hi all,

I used to embed data in program use something like "case" or
"if..else". But my friend advice me to separate program and data. So I
want to use a tree-like data file like XML.

The question is:
1. Is there any better or easier standardized tree-like data structure
than XML?
2. If XML is better, I am new to it, what shall I learn to use it by
Perl?

Please recommend some tool or reading material about the topic, thanks!

Best regards,
Davy



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

Date: Sun, 08 Oct 2006 23:13:02 -0400
From: Michael Goerz <news12@8439.e4ward.com>
Subject: Re: Parse tree like data like XML by Perl?
Message-Id: <4ott19Fg9olkU1@uni-berlin.de>

Davy wrote:
> Hi all,
> 
> I used to embed data in program use something like "case" or
> "if..else". But my friend advice me to separate program and data. So I
> want to use a tree-like data file like XML.
Might be a good idea.
> 
> The question is:
> 1. Is there any better or easier standardized tree-like data structure
> than XML?
Probably not.
> 2. If XML is better, I am new to it, what shall I learn to use it by
> Perl?
XML is pretty good. The best way to learn it is to do some reading and
then jump in the water by coding a little bit. Some good resources to
get you started:

The absolute prime resource:
http://perl-xml.sourceforge.net/faq/

For a complete beginner maybe this is easiest:
http://search.cpan.org/~grantm/XML-Simple-2.15/lib/XML/Simple.pm

The full deal is something like this:
http://search.cpan.org/~kmacleod/libxml-perl-0.08/
Lot's of other modules on CPAN, too!

Good Tutorial:
http://www.xml.com/pub/a/2001/02/14/perlsax.html
Check out other stuff at xml.com, too.

Just do a little bit of reading, and then start coding, which is the
best way to understand XML. There's somewhat of a learning curve,
depending on how much you know alrady about perl and/or XML, but it
should be worth it.

Michael


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

Date: Sun, 8 Oct 2006 18:42:52 -0500
From: Tad McClellan <tadmc@augustmail.com>
Subject: Re: Posting Guidelines for comp.lang.perl.misc ($Revision: 1.6 $)
Message-Id: <slrneij37s.f2g.tadmc@magna.augustmail.com>

Ilya Zakharevich <nospam-abuse@ilyaz.org> wrote:
> [A complimentary Cc of this posting was sent to
> Tad McClellan 
><tadmc@augustmail.com>], who wrote in article <slrneihv79.df7.tadmc@magna.augustmail.com>:
>> > Asking a FAQ is a fact of life.  It may be "bad manners"; but
>> > currently "your" posting guidelines are *used as foundation* to
>> > proliferate this fact of life into a cascade of much worse manners.
> 
>> What action can be taken to address the issue you raise?
> 
> I was thinking about changing the tone of "Posting Guidelines".


If you post proposed changes, then they can be discussed.

Is your proposal simply to remove the entire "Social faux pas to avoid" 
section?

Or some other change?


-- 
    Tad McClellan                          SGML consulting
    tadmc@augustmail.com                   Perl programming
    Fort Worth, Texas


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

Date: Mon, 9 Oct 2006 03:56:02 +0000 (UTC)
From:  Ilya Zakharevich <nospam-abuse@ilyaz.org>
Subject: Re: Posting Guidelines for comp.lang.perl.misc ($Revision: 1.6 $)
Message-Id: <egch8i$14hi$1@agate.berkeley.edu>

[A complimentary Cc of this posting was sent to
Tad McClellan 
<tadmc@augustmail.com>], who wrote in article <slrneij37s.f2g.tadmc@magna.augustmail.com>:
> > I was thinking about changing the tone of "Posting Guidelines".

> If you post proposed changes, then they can be discussed.

Sorry.  Won't be able to do it soon...

> Is your proposal simply to remove the entire "Social faux pas to avoid" 
> section?

Definitely not.  Some minor edit to change the tone of it - probably.

> Or some other change?

I think we should pay equal attention to the *other guys*; their pas
are faux too.  I won't be able to quickly invent somethign socially
acceptable, but it may go along the lines

  One should not post rude replies even if you consider the message
  you reply to as violating these guidelines, as rude, as inbalanced,
  or as insane.  If one can't post a polite informative up-to-a-point
  reply, one should not post at all...

Thanks,
Ilya


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

Date: Mon, 9 Oct 2006 00:19:39 +0200
From: Yohan N Leder <ynl@nsparks.net>
Subject: Re: QUERY_STRING parsing and '$value =~ tr/+/ /;' treatment
Message-Id: <MPG.1f9397e5787e09219898e2@news.tiscali.fr>

In article <Xns9856B6AC6C4C6asu1cornelledu@127.0.0.1>, 
1usa@llenroc.ude.invalid says...
> Yohan N Leder <ynl@nsparks.net> wrote in
> news:MPG.1f938e4a850e35139898e1@news.tiscali.fr: 
> 
> > In article <Xns98569544EFBD4asu1cornelledu@127.0.0.1>, 
> > 1usa@llenroc.ude.invalid says...
> ...
> 
> >> In any case, + signs will be unambiguously encoded as %2b in a URL
> >> encoded string and spaces will be unambiguously encoded as + signs.
> >> First, replace + signs with spaces, then decode the URL encoded char
> >> values. 
> >> 
> > 
> > The question was not 'how to handle URLencoded data', but about non-
> > URLencoded data... 
> 
> Ahem ... The fact that you were talking about replacing + signs with 
> spaces led me to believe that you were talking about URL encoded data. 
> If the data were not URL encoded why would mention one of the steps 
> involved in URL decoding it?
> 
> >> Given that you can look at the CGI.pm source code yourself, I am not 
> >> sure why you have to ask this here.
> >> 
> > 
> > Of course, everybody can always do without the others, but it may help
> > to gain time : thanks again for the clever reply of Bill S. which save
> > me some times for finding that non-URLencoded data is not considered
> > by CGI.pm in the framework of QUERY_STRING parsing.
> 
> Again, this is nothing specific to Perl or CGI.pm. QUERY_STRING is 
> supposed to be in URL encoded format which is why all CGI libraries in 
> any language start by decoding it.
> 
> Sinan
> 

Yes, Sinan, the mistake was possible, effectively... But if I told about 
a piece of Perl code involved in URL decoding, talking about base64 
data, it was because I didn't realized that URL treatment was not open 
to other type of data than the URLencoded ones. And, by that way, I was 
surprised about this tr/+/ / treatment.

Also, and to show you the reason why of my question : recently, I 
initiated a thread here, titled 'How to delete temporary file after 
displaying in browser ?'... The possibility to pass base64 encoded data 
through url was suggested at a point, even if url length limitation was 
also expressed.

Well, have a good night (00:14 here) and don't worry : the essential is 
to generate communication (sometimes useful, sometimes not ; not any 
importance) ;-)


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

Date: Mon, 09 Oct 2006 02:48:03 GMT
From: dysgraphia <ldolan@bigpond.net.au>
Subject: Syntax for getting web page links
Message-Id: <DLiWg.43922$rP1.16783@news-server.bigpond.net.au>

Hi, I'm using win xp and have the ActivePerl download.

This is my first attempt at a perl script. It tries to go to the 
chessbase site and find the links to chess tournaments in 2006.

What I hope to do is have my script collect the links on the page
listed under Events 2006 and put this collection of links into
an Excel workbook ("C:\ChessEvents.xls"), spreadsheet ("Year2006")

If I progress I will make script to follow some of the links and 
retrieve the information about that chess tournament.

I plan to put a button on the spreadsheet to fire the perl script
via some VBA.

So far I have only got this. Any help to push me along
would be appreciated!

#!/usr/bin/perl -w
use LWP::UserAgent;
use HTTP::Cookies;
use LWP;
use HTTP::Request::Common qw(POST GET);
use strict;
use DBI;
use IO::Dir;
use LWP::Debug qw(-);
# the chessbase page with list of events is at
# http://www.chessbase.com/events/index.asp and find under Events 2006
my $url = 'http://www.chessbase.com/events/index.asp';
my $ua = LWP::UserAgent->new();
$ua->agent("Mozilla/8.0");
$ua->cookie_jar(HTTP::Cookies->new);
my $res = $ua->request(new HTTP::Request GET => $url);


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

Date: 8 Oct 2006 20:15:59 -0700
From: "Paul Lalli" <mritty@gmail.com>
Subject: Re: Syntax for getting web page links
Message-Id: <1160363759.801026.220900@m7g2000cwm.googlegroups.com>

dysgraphia wrote:
> What I hope to do is have my script collect the links on the page
> listed under Events 2006 and put this collection of links into
> an Excel workbook ("C:\ChessEvents.xls"), spreadsheet ("Year2006")

http://search.cpan.org/~gaas/HTML-Parser-3.55/lib/HTML/TokeParser.pm
http://search.cpan.org/~jmcnamara/Spreadsheet-WriteExcel-2.17/lib/Spreadsheet/WriteExcel.pm

Paul Lalli



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

Date: Mon, 09 Oct 2006 03:41:01 GMT
From: dysgraphia <ldolan@bigpond.net.au>
Subject: Re: Syntax for getting web page links
Message-Id: <hxjWg.43965$rP1.25661@news-server.bigpond.net.au>

Paul Lalli wrote:
> dysgraphia wrote:
> 
>>What I hope to do is have my script collect the links on the page
>>listed under Events 2006 and put this collection of links into
>>an Excel workbook ("C:\ChessEvents.xls"), spreadsheet ("Year2006")
> 
> 
> http://search.cpan.org/~gaas/HTML-Parser-3.55/lib/HTML/TokeParser.pm
> http://search.cpan.org/~jmcnamara/Spreadsheet-WriteExcel-2.17/lib/Spreadsheet/WriteExcel.pm
> 
> Paul Lalli
> 

Hi Paul, Thanks for those links! I will follow them up now.....cheers!


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

Date: Mon, 09 Oct 2006 03:51:03 GMT
From: "Mumia W. (reading news)" <paduille.4059.mumia.w@earthlink.net>
Subject: Re: Syntax for getting web page links
Message-Id: <HGjWg.9033$o71.6235@newsread3.news.pas.earthlink.net>

On 10/08/2006 09:48 PM, dysgraphia wrote:
> Hi, I'm using win xp and have the ActivePerl download.
> 
> This is my first attempt at a perl script. It tries to go to the 
> chessbase site and find the links to chess tournaments in 2006.
> 
> What I hope to do is have my script collect the links on the page
> listed under Events 2006 and put this collection of links into
> an Excel workbook ("C:\ChessEvents.xls"), spreadsheet ("Year2006")
> 
> If I progress I will make script to follow some of the links and 
> retrieve the information about that chess tournament.
> 
> I plan to put a button on the spreadsheet to fire the perl script
> via some VBA.
> 
> So far I have only got this. Any help to push me along
> would be appreciated!
> 
> #!/usr/bin/perl -w
> use LWP::UserAgent;
> use HTTP::Cookies;
> use LWP;
> use HTTP::Request::Common qw(POST GET);
> use strict;
> use DBI;
> use IO::Dir;
> use LWP::Debug qw(-);
> # the chessbase page with list of events is at
> # http://www.chessbase.com/events/index.asp and find under Events 2006
> my $url = 'http://www.chessbase.com/events/index.asp';
> my $ua = LWP::UserAgent->new();
> $ua->agent("Mozilla/8.0");
> $ua->cookie_jar(HTTP::Cookies->new);
> my $res = $ua->request(new HTTP::Request GET => $url);

After you have retrieved the data using LWP, you can use HTML::Parser 
(or HTML::LinkExtor or HTML::LinkExtractor) to parse the HTML data.


-- 
Mumia W.
paduille.4059.mumia.w@earthlink.net
This is a temporary e-mail to help me catch some s-p*á/m.



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

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.  

NOTE: due to the current flood of worm email banging on ruby, the smtp
server on ruby has been shut off until further notice. 

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 9822
***************************************


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