[28246] in Perl-Users-Digest
Perl-Users Digest, Issue: 9610 Volume: 10
daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Wed Aug 16 00:05:48 2006
Date: Tue, 15 Aug 2006 21:05:05 -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 Tue, 15 Aug 2006 Volume: 10 Number: 9610
Today's topics:
Add money to your Paypal account with OPRAH 4#I5t-- me@davidfilmer.net
Re: Accessing a container objects state from aggregated <dbasch@yahoo.com>
Re: Add money to your Paypal account with OPRAH 4#I5t-- <someone@example.com>
Re: Add money to your Paypal account with OPRAH 4#I5t-- <john@castleamber.com>
Re: cgi-bin/guestbook.pl <mgarrish@gmail.com>
Re: cgi-bin/guestbook.pl xhoster@gmail.com
Re: cgi-bin/guestbook.pl <tintin@invalid.invalid>
Re: initialize a hash <rvtol+news@isolution.nl>
Re: initialize a hash <rvtol+news@isolution.nl>
Re: initialize a hash <uri@stemsystems.com>
Re: My multipost-detecting usenet bot (David Filmer) <john@castleamber.com>
Re: My multipost-detecting usenet bot (David Filmer) <john@castleamber.com>
Re: My multipost-detecting usenet bot (David Filmer) <DJStunks@gmail.com>
Re: My multipost-detecting usenet bot (David Filmer) <mumia.w.18.spam+nospam.usenet@earthlink.net>
Re: My multipost-detecting usenet bot (David Filmer) usenet@DavidFilmer.com
Re: perl dbi driver for microsoft sql? <benmorrow@tiscali.co.uk>
Re: perl dbi driver for microsoft sql? <sherm@Sherm-Pendleys-Computer.local>
Re: Proposal: extending perldoc -f <someone@example.com>
Re: Regex Help <rvtol+news@isolution.nl>
Re: Template::Plugin::GD - drawing graph <benmorrow@tiscali.co.uk>
Re: Website Interface Zyad.Tamimi@gmail.com
Digest Administrivia (Last modified: 6 Apr 01) (Perl-Users-Digest Admin)
----------------------------------------------------------------------
Date: Tue, 15 Aug 2006 20:35:19 -0500
From: me@davidfilmer.net
Subject: Add money to your Paypal account with OPRAH 4#I5t--Multiposted
Message-Id: <lIWdnf3hG7jK63_ZRVn_vA@giganews.com>
"NSI" <af.irani@afyhpami.com> wrote:
>> [ snip multiposted message ]
This message has been multiposted as indicated by these message IDs:
<news:HAuEg.43782$vj1.7422@bignews5.bellsouth.net>
<news:jttEg.38368$vj1.3042@bignews5.bellsouth.net>
Multiposting is generally considered impolite in usenet. For an
explanation, please see:
http://www.cs.tut.fi/~jkorpela/usenet/xpost.html
--
msg_hash: 74 - f8b3620986a5f33d7a809b732dfee6e5
------------------------------
Date: 15 Aug 2006 15:34:57 -0700
From: "Derek Basch" <dbasch@yahoo.com>
Subject: Re: Accessing a container objects state from aggregated objects
Message-Id: <1155681297.806490.321240@i3g2000cwc.googlegroups.com>
> It is one way. If I'm not mistaken you're creating a cyclic reference
> there, so you'd need a destructor in one of the classes to resolve that,
> or use weak refs.
Ahhhh. Right you are. I never would have known that was a dangerous
thing to do. This article helped me figure it out as well:
http://www.perl.com/pub/a/2002/08/07/proxyobject.html?page=1
> Alternatives are passing the Member object (or just the address) as
> a parameter to the Membership method(s) that need(s) to know.
Like this?
package Membership;
sub suspend {
$self = shift;
$member = shift;
# do suspension stuff
}
package Member;
sub new {
my $class = shift;
my $self = {};
$self->{'membership'} = Membership->new($self);
bless ($self, $class);
return $self;
}
sub suspend {
$self->{'membership'}->suspend($self);
}
Doesn't this create another circular reference. I can see how the
references are more likely to go out of scope sooner. Wouldn't I need
to use the weakrefs here too?
> Or make the Membership method a Member method (to which, presumably,
> the specific membership would have to be passed).
I am guessing this is Similar to the example that Sinan gave earlier in
the thread?
> I'm sure there are other ways. Which one is "best" is ultimately
> a design decision you must answer yourself.
>
> Anno
Yeah, I am starting to get a bit confused as to whether or not the
Member, Membership aggregation idiom is the best design for what I am
trying to do.
I have a large club with Members. Each Member has a Membership and I
regularaly perform actions on their membership such as suspend,
activate, extend, etc... It didn't make sense (to me) to have all the
Membership actions be part of their Member object so I created a
Membership object for each Member. The Member object is focused more on
storing the members state information (address, age, etc...).
My OO design/analysis skills are weak so any thoughts on how to better
handle this situation would be greatly appreciated.
Thanks A Million,
Derek Basch
> make the Membership method a Member method (to which, presumably,
> the specific membership would have to be passed).
> I'm sure there are other ways. Which one is "best" is ultimately
> a design decision you must answer yourself.
>
> Anno
------------------------------
Date: Wed, 16 Aug 2006 01:46:06 GMT
From: "John W. Krahn" <someone@example.com>
Subject: Re: Add money to your Paypal account with OPRAH 4#I5t--Multiposted
Message-Id: <yNuEg.7029$Nz6.2568@edtnps82>
me@davidfilmer.net wrote:
> "NSI" <af.irani@afyhpami.com> wrote:
>>>[ snip multiposted message ]
>
> This message has been multiposted as indicated by these message IDs:
> <news:HAuEg.43782$vj1.7422@bignews5.bellsouth.net>
> <news:jttEg.38368$vj1.3042@bignews5.bellsouth.net>
>
> Multiposting is generally considered impolite in usenet. For an
> explanation, please see:
>
> http://www.cs.tut.fi/~jkorpela/usenet/xpost.html
It would be more productive if you reported spam to their ISP instead of
complaining about spammers multiposting here. TIA HAND :-)
John
--
use Perl;
program
fulfillment
------------------------------
Date: 16 Aug 2006 01:49:15 GMT
From: John Bokma <john@castleamber.com>
Subject: Re: Add money to your Paypal account with OPRAH 4#I5t--Multiposted
Message-Id: <Xns9820D3CB8740Dcastleamber@130.133.1.4>
"John W. Krahn" <someone@example.com> wrote:
> It would be more productive if you reported spam to their ISP instead of
> complaining about spammers multiposting here. TIA HAND :-)
:-X
--
John Bokma Freelance software developer
&
Experienced Perl programmer: http://castleamber.com/
------------------------------
Date: 15 Aug 2006 16:21:51 -0700
From: "Matt Garrish" <mgarrish@gmail.com>
Subject: Re: cgi-bin/guestbook.pl
Message-Id: <1155684111.461547.317550@p79g2000cwp.googlegroups.com>
UkJay wrote:
> I'm getting cheesed off with the pathetic attemps from hackers trying
> to find this script.
I'm not sure I follow. If they're pathetic attempts then why don't you
just put measures in place to stop them? A simple captcha for instance
will stop most bots.
> Has anyone written a simple tasty version that deletes files?
I try not to eat my code. Empty calories.
> I don't think a warning would help, or should I just keep quiet and
> write my own??
Huh? You need to make connections between statements.
> (If I can find the time)
>
Now that I don't feel the least bit of sympathy for. We all have day
jobs, except one moron who seems to have disappeared of late. Have you
tried the NMS scripts?
Matt
------------------------------
Date: 15 Aug 2006 23:08:51 GMT
From: xhoster@gmail.com
Subject: Re: cgi-bin/guestbook.pl
Message-Id: <20060815200207.591$1e@newsreader.com>
"UkJay" <jay@ukjay.co.uk> wrote:
> I'm getting cheesed off with the pathetic attemps from hackers trying
> to find this script.
This script being cgi-bin/guestbook.pl? Please put the body of your
message in the body of your message.
> Has anyone written a simple tasty version that deletes files?
No. Why would I want to respond to someone trying to hack my computer
by deleting my own files?
Xho
--
-------------------- http://NewsReader.Com/ --------------------
Usenet Newsgroup Service $9.95/Month 30GB
------------------------------
Date: Wed, 16 Aug 2006 13:55:21 +1200
From: "Tintin" <tintin@invalid.invalid>
Subject: Re: cgi-bin/guestbook.pl
Message-Id: <44e26dd8$0$20979$88260bb3@free.teranews.com>
"UkJay" <jay@ukjay.co.uk> wrote in message
news:1155679121.469501.323790@74g2000cwt.googlegroups.com...
> I'm getting cheesed off with the pathetic attemps from hackers trying
> to find this script.
"This script" being guestbook.pl. Where did you get guestbook.pl from?
> Has anyone written a simple tasty version that deletes files?
Deletes what files?
> I don't think a warning would help, or should I just keep quiet and
> write my own??
Write your own and come back here if you need help with specific components.
--
Posted via a free Usenet account from http://www.teranews.com
------------------------------
Date: Tue, 15 Aug 2006 23:55:40 +0200
From: "Dr.Ruud" <rvtol+news@isolution.nl>
Subject: Re: initialize a hash
Message-Id: <ebtn3c.vs.1@news.isolution.nl>
Uri Guttman schreef:
> i would have guessed empty to be the fastest style as it doesn't
> actually allocate an sv for each hash value, just marks them with the
> undef flag. this is different than if you actually assigned undef in
> the map styles which would allocate a full sv and mark it as undef.
Yes, I put it there to get an idea of the speed limit.
Liz Mattijsen came up with these:
empty => sub { my %a ; @a{ @list } = () },
empty1 => sub { my %a ; @a{ @list } = (undef) },
emptyN => sub { my %a ; @a{ @list } = (undef) x @list },
and empty1 is even faster than empty. <g>
(I assume that these just set the undef flag as well.)
--
Affijn, Ruud
"Gewoon is een tijger."
------------------------------
Date: Wed, 16 Aug 2006 00:22:41 +0200
From: "Dr.Ruud" <rvtol+news@isolution.nl>
Subject: Re: initialize a hash
Message-Id: <ebtosh.1d8.1@news.isolution.nl>
Paul Lalli schreef:
> Dr.Ruud:
>> I am investigating what is the fastest way to set up a hash, with the
>> keys coming from an array, and all values set to a constant like 1.
> x1s => sub { my %a ; @a{ @list } = (1) x @list },
Yes, that's more what I am looking for. Thanks, Uri and Anno too of
course.
My 'list' and 'range' (and 'empty') were meant as speed references; they
don't set all values to the same (and defined) constant.
> Rate mapB mapE list for x1s range empty
> mapB 243/s -- -0% -9% -41% -48% -48% -62%
> mapE 243/s 0% -- -8% -41% -48% -48% -62%
> list 266/s 10% 9% -- -36% -43% -43% -58%
> for 412/s 70% 69% 55% -- -11% -12% -35%
> x1s 464/s 91% 90% 74% 12% -- -1% -27%
> range 467/s 93% 92% 76% 13% 1% -- -27%
> empty 638/s 163% 162% 140% 55% 38% 37% --
On your system, 'list' isn't as near to 'for' as on the freebsd with
perl 5.8.6 here.
I still wish there were a construct that would deliver as many
<constant>s as requested.
Something like C<1...undef> maybe, but no: that would break existing
code.
This one is (just 1 or 2%) faster than "empty":
empty1 => sub { my %a ; @a{ @list } = undef },
--
Affijn, Ruud
"Gewoon is een tijger."
------------------------------
Date: Tue, 15 Aug 2006 23:27:16 -0400
From: Uri Guttman <uri@stemsystems.com>
Subject: Re: initialize a hash
Message-Id: <x7ejvhl5rf.fsf@mail.sysarch.com>
>>>>> "R" == Ruud <rvtol+news@isolution.nl> writes:
R> Uri Guttman schreef:
>> i would have guessed empty to be the fastest style as it doesn't
>> actually allocate an sv for each hash value, just marks them with the
>> undef flag. this is different than if you actually assigned undef in
>> the map styles which would allocate a full sv and mark it as undef.
R> Yes, I put it there to get an idea of the speed limit.
R> Liz Mattijsen came up with these:
R> empty => sub { my %a ; @a{ @list } = () },
R> empty1 => sub { my %a ; @a{ @list } = (undef) },
R> emptyN => sub { my %a ; @a{ @list } = (undef) x @list },
R> and empty1 is even faster than empty. <g>
R> (I assume that these just set the undef flag as well.)
hmm, i would expect the emptyN to assign real undefs to the
elements. the 1 version should assign a real one to the first
slot. there is a way to check for this (i recall with pseudohashes this
was important and maybe defined will help somehow) afaik. for sure some
devel:: module will be able to peek in and tell you what is there.
uri
--
Uri Guttman ------ uri@stemsystems.com -------- http://www.stemsystems.com
--Perl Consulting, Stem Development, Systems Architecture, Design and Coding-
Search or Offer Perl Jobs ---------------------------- http://jobs.perl.org
------------------------------
Date: 15 Aug 2006 23:01:06 GMT
From: John Bokma <john@castleamber.com>
Subject: Re: My multipost-detecting usenet bot (David Filmer)
Message-Id: <Xns9820B7497AC6Fcastleamber@130.133.1.4>
usenet@DavidFilmer.com wrote:
> I believe that it's unusual for most people to have a valid need to
> crosspost (I can't recall needing to crosspost in years, and I rarely,
> if ever, see Perl crossposts from known and respected posters, unless
> it's a reply to an x-posted message with broad follow-ups). I think it
> would be downright rare for a new poster to have a valid need to
> crosspost, and I'd rather take a discouraging posture when mentioning
> it.
Yup agreed. Xpost is rarely needed, I have xposted before but it's a small
% of my total except in those cases I was not aware that something was
xposted to 5 groups [1] :-D.
[1] Ages ago I have contributed to a thread that was xposted in 13 (!) or
so groups :-D.
--
John Bokma Freelance software developer
&
Experienced Perl programmer: http://castleamber.com/
------------------------------
Date: 15 Aug 2006 23:03:25 GMT
From: John Bokma <john@castleamber.com>
Subject: Re: My multipost-detecting usenet bot (David Filmer)
Message-Id: <Xns9820B7ADEC42Acastleamber@130.133.1.4>
axel@white-eagle.invalid.uk wrote:
> John Bokma <john@castleamber.com> wrote:
>> "Mumia W." <mumia.w.18.spam+nospam.usenet@earthlink.net> wrote:
>
>>> On 08/14/2006 05:28 PM, usenet@DavidFilmer.com wrote:
>>>> [...]
>>>> If I've angered or annoyed anyone, I do apologize. I had no such
>>>> intent.
>>>> [...]
>
>>> Thank you Mr. Filmer. I can see how the 'bot would reduce a
>>> lot of work, but, as you've acknowledged, its message was a
>>> little long and harsh.
>
>>> Whatever you do, please don't release the code. Hip-ç-rime
>>> would make usenet a nightmare with it.
>
>> Uhm? People who need such programs can just download them including
>> software to auto-cancel and repost massively.
>
> It makes me wonder what software Cantor & Siegel used in their
> infamous massive multiposting.
No idea. Posting to Usenet is not black art, you can do it manually via
telnet. Even if you write it all yourself in Perl (I once did as an
excersise) it doesn't take more then a few hours to have a working version
that posts test messages :-)
> And that was over a decade ago.
>
> I probably mentioned it before, but I found their book _How to Make a
> Fortune on the Information Superhighway _ in a remainder bookshop and
> bought it just for fun.
:-D. I would have bought it to, and not because English books are rare
here in Mexico :-D.
--
John Bokma Freelance software developer
&
Experienced Perl programmer: http://castleamber.com/
------------------------------
Date: 15 Aug 2006 16:16:19 -0700
From: "DJ Stunks" <DJStunks@gmail.com>
Subject: Re: My multipost-detecting usenet bot (David Filmer)
Message-Id: <1155683779.613012.174910@m73g2000cwd.googlegroups.com>
Mumia W. wrote:
> Whatever you do, please don't release the code. Hip-=E7-rime
> would make usenet a nightmare with it.
I don't grok "Hip-=E7-rime"...
-jp
------------------------------
Date: Wed, 16 Aug 2006 00:02:21 GMT
From: "Mumia W." <mumia.w.18.spam+nospam.usenet@earthlink.net>
Subject: Re: My multipost-detecting usenet bot (David Filmer)
Message-Id: <hgtEg.4465$Sn3.3668@newsread3.news.pas.earthlink.net>
On 08/15/2006 06:16 PM, DJ Stunks wrote:
> Mumia W. wrote:
>> Whatever you do, please don't release the code. Hip-ç-rime
>> would make usenet a nightmare with it.
>
> I don't grok "Hip-ç-rime"...
>
> -jp
>
He is someone who attempts to destroy usenet every year or so.
I dare not spell his name correctly because he might be
searching for references to himself and if he finds any, he
might resurface.
------------------------------
Date: 15 Aug 2006 17:17:14 -0700
From: usenet@DavidFilmer.com
Subject: Re: My multipost-detecting usenet bot (David Filmer)
Message-Id: <1155687434.217759.281250@b28g2000cwb.googlegroups.com>
Mumia W. wrote:
> On 08/15/2006 06:16 PM, DJ Stunks wrote:
> > I don't grok "Hip-=E7-rime"...
>
> He is someone who attempts to destroy usenet every year or so.
Wikipedia has a brief article, but I won't post a link because it
contains the word in cleartext (it's never a good idea to type the name
of trolls or vandals into cleartext messages). You ought to be able to
un-obfuscate the name easily enough (it has no dashes and can be
represented in 7-bit ASCII).
--=20
David Filmer (http://DavidFilmer.com)
------------------------------
Date: Wed, 16 Aug 2006 00:30:37 +0100
From: Ben Morrow <benmorrow@tiscali.co.uk>
Subject: Re: perl dbi driver for microsoft sql?
Message-Id: <t12ar3-85a.ln1@osiris.mauzo.dyndns.org>
Quoth Sherm Pendley <sherm@Sherm-Pendleys-Computer.local>:
> "Paul Lalli" <mritty@gmail.com> writes:
>
> > gavino wrote:
> >> where do i find dbi driver for micrsoft sql?
> >
> > The same place you find all Perl Modules - http://search.cpan.org
>
> Quite right.
>
> > Is
> > http://search.cpan.org/~jwied/Msql-Mysql-modules-1.2219/mysql/lib/DBD/mysql.pm
> > what you're looking for?
>
> Actually, no. mSQL is not Microsoft SQL Server, it's a different product:
>
> <http://www.hughes.com.au/products/msql/>
>
> I couldn't find a MS-SQL specific DBD module - I think most people use
> DBD::ODBC.
I've had success in the past using DBD::Sybase (it took me a long time
to figure that one out). AFAIK, this is the only way to connect to MSSQL
from a non-MS machine (which I needed to do at the time).
Ben
--
You poor take courage, you rich take care:
The Earth was made a common treasury for everyone to share
All things in common, all people one. [benmorrow@tiscali.co.uk]
'We come in peace'---the order came to cut them down.
------------------------------
Date: Tue, 15 Aug 2006 22:25:08 -0400
From: Sherm Pendley <sherm@Sherm-Pendleys-Computer.local>
Subject: Re: perl dbi driver for microsoft sql?
Message-Id: <m23bbx4dtn.fsf@Sherm-Pendleys-Computer.local>
Ben Morrow <benmorrow@tiscali.co.uk> writes:
> Quoth Sherm Pendley <sherm@Sherm-Pendleys-Computer.local>:
>>
>> I couldn't find a MS-SQL specific DBD module - I think most people use
>> DBD::ODBC.
>
> I've had success in the past using DBD::Sybase
I hesitated to mention it, because a quick glance at the docs mentioned only
a few specific versions of MS-SQL, and was in general not very confidence-
inspiring. I'll keep it in mind in the future.
> (it took me a long time to figure that one out)
Yeah, it's not very obvious unless you know the history. As I understand it,
MS-SQL is more or less a fork of Sybase, so that the network protocol is more
or less the same.
> AFAIK, this is the only way to connect to MSSQL
> from a non-MS machine (which I needed to do at the time).
Another approach would be to set up a DBD::Proxy server on the Windows box
that's running MS-SQL, and connect to that from just about anything. I've
gotten good results with that approach in the past - although I was writing
for "classic" MacPerl clients connecting to a MySQL server on Solaris.
sherm--
--
Web Hosting by West Virginians, for West Virginians: http://wv-www.net
Cocoa programming in Perl: http://camelbones.sourceforge.net
------------------------------
Date: Wed, 16 Aug 2006 01:05:16 GMT
From: "John W. Krahn" <someone@example.com>
Subject: Re: Proposal: extending perldoc -f
Message-Id: <gbuEg.7390$Ch.5996@clgrps13>
Jim Gibson wrote:
>
> Why not dispense with the option altogether? Why shouldn't I be able to
> type:
>
> perldoc grep
> perldoc while
> perldoc strict
> perldoc CGI
>
> and get the appropriate section. Are there any duplicates between
> keywords, built-in functions, and modules?
Off the top of my head, 'if' keyword and 'if.pm' module.
John
--
use Perl;
program
fulfillment
------------------------------
Date: Tue, 15 Aug 2006 23:41:43 +0200
From: "Dr.Ruud" <rvtol+news@isolution.nl>
Subject: Re: Regex Help
Message-Id: <ebtm45.sk.1@news.isolution.nl>
lmcosorio@hotmail.com schreef:
> if ($var =~ /\Q$match1[match any random characters]$match2/)
I think you are looking for:
$var =~ /\A\Q${match1}\E.*\Q${match2}\E\z/)
--
Affijn, Ruud
"Gewoon is een tijger."
------------------------------
Date: Wed, 16 Aug 2006 00:20:24 +0100
From: Ben Morrow <benmorrow@tiscali.co.uk>
Subject: Re: Template::Plugin::GD - drawing graph
Message-Id: <oe1ar3-85a.ln1@osiris.mauzo.dyndns.org>
Quoth "AC" <anchi.chen@gmail.com>:
> Hi
>
> There's probably a very trivial answer to my question but I just can't
> find it.
> I'm trying to incorporate a line graph into a webpage by:
>
> <html>
> <body>
> <table> ....</table>
> [%
> FILTER null;
> USE im = GD.Graph.lines();
> ...
> ...
> im.plot(data).png | stdout(1);
> END;
> %]
You need to take a step back and learn how HTML works. The image has to
be available at a separate URL that you then reference in the HTML page.
In principle you can include in inline with the data: URI scheme, but
this is not widely supported in browsers (for which read IE).
> </body>
> </html>
>
> -----------------------
> -- Problem: --
> -----------------------
> When using stdout(1):
> * webpage content: will not show
> * graph: will show
Because you have an invalid HTML page with a whole lot of binary data in
the middle of it.
> Without using the stdout(1):
> * webpage content: will show
> * graph: will not show
Because you have a valid HTML page and the output has gone nowhere.
> Is there a way of making both the webpage content and graph visible?
You need two template files, or one that accepts some sort of parameter.
Ben
--
And if you wanna make sense / Whatcha looking at me for? (Fiona Apple)
* benmorrow@tiscali.co.uk *
------------------------------
Date: 15 Aug 2006 16:19:36 -0700
From: Zyad.Tamimi@gmail.com
Subject: Re: Website Interface
Message-Id: <1155683976.075643.224570@i3g2000cwc.googlegroups.com>
It appears the search form was written in javascript. According to
their CPAN entry Mechanize does not support javascript. Any other
ideas of how i could utilize this search field through my script?
Thanks,
Zyad
Zyad.Tamimi@gmail.com wrote:
> thanks for the timely feedback, I'll try it out and let you know how it
> turns out. thanks again.
>
> Regards,
> Zyad
>
> usenet@DavidFilmer.com wrote:
> > Zyad.Tamimi@gmail.com wrote:
> > > I have a list of names and what I am attempting to do is connect to a
> > > website and search for all the names in the websites directory. Is
> > > there a simple module in CPAN that can help me do this?
> >
> > Maybe so... People try to do this to my webserver all the time ;-)
> >
> > Of course, any halfway-configured webserver won't let it happen (and
> > there's nothing you can do about it, prehaps short of some type of
> > exploit).
> >
> > Actually, CPAN has very few programs - it has lots of modules which are
> > used to build programs. If you think you can go to CPAN and download a
> > functional program to do something then you are mistaken about how CPAN
> > really works.
> >
> > If you can do what you want to do from a browser, you can (probably)
> > use WWW::Mechanize to do it in Perl. If the webserver is so poorly
> > configured that it will reveal its directory and file structure (say,
> > by omitting the name of the index document) then you can easily slurp
> > that info. But otherwise, forget it.
> >
> > --
> > David Filmer (http://DavidFilmer.com)
------------------------------
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 9610
***************************************