Modules Question

2003-09-10 Thread James Edward Gray II
I use Text::Bastardize off of the CPAN from time to time.  I find it 
mildly amusing, if not terribly practical.

However, today when I was working with it, I basically fed it some text 
that overwhelmed it.  What I fed it really wasn't too crazy, so I took 
a look under the hood.

While I was in there, I basically saw a lot of general improvements I 
would like to make, so I fired off a message to the author.  Of course, 
it bounced.  Looking at the CPAN, it looks like it's been around three 
years since the author contributed anything.

So, if memory serves, there is a proper protocol for taking control of 
an abandoned module, which is what I would like to do.  However, I'm 
having trouble finding it.  Could someone point me in the right 
direction?

Thanks.

James

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


RE: Modules Question

2003-09-10 Thread Hanson, Rob
I googles Julian and came up with two email addresses from this page:
http://www.monkey.org/openbsd/archive/misc/9904/msg00077.html

If that fails I'm not sure.

The FAQ on CPAN doesn't help much with this specific case since the mails
are bouncing:
http://www.cpan.org/misc/cpan-faq.html#How_maintain_module

Perhaps Randal will pop his head in and have some advice.

Rob

-Original Message-
From: James Edward Gray II [mailto:[EMAIL PROTECTED]
Sent: Wednesday, September 10, 2003 6:11 PM
To: [EMAIL PROTECTED]
Subject: Modules Question


I use Text::Bastardize off of the CPAN from time to time.  I find it 
mildly amusing, if not terribly practical.

However, today when I was working with it, I basically fed it some text 
that overwhelmed it.  What I fed it really wasn't too crazy, so I took 
a look under the hood.

While I was in there, I basically saw a lot of general improvements I 
would like to make, so I fired off a message to the author.  Of course, 
it bounced.  Looking at the CPAN, it looks like it's been around three 
years since the author contributed anything.

So, if memory serves, there is a proper protocol for taking control of 
an abandoned module, which is what I would like to do.  However, I'm 
having trouble finding it.  Could someone point me in the right 
direction?

Thanks.

James


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Modules Question

2003-09-10 Thread James Edward Gray II
On Wednesday, September 10, 2003, at 05:43  PM, Hanson, Rob wrote:

I googles Julian and came up with two email addresses from this page:
http://www.monkey.org/openbsd/archive/misc/9904/msg00077.html
Thank you.  I have no idea why, but it never occurred to me to Google 
for a person, though it seems so obvious now.  I have tried the second 
address and will see what that nets me.

James

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


modules question

2001-07-30 Thread anna . roberts

Dose anyone know of a exsiting Perl module that will test to see what tape drives are 
available on Unix box?

I looked through the some of the CPAN stuff but didn't find anything that looked like 
what I might need.  

Any help would be appreciated. 

Thank you,

Anna

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




Re: modules question

2001-07-30 Thread Elaine -HFB- Ashton

[EMAIL PROTECTED] [[EMAIL PROTECTED]] quoth:
*Dose anyone know of a exsiting Perl module that will test to see what tape drives 
are available on Unix box?
*
*I looked through the some of the CPAN stuff but didn't find anything that looked 
like what I might need.  

None that I'm aware of as it is so gnarly across different Unixes to get
the device that you'll probably have to go with a system specific command
to list all your available drives.

e.

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




RE: Modules question

2001-06-29 Thread John Edwards

put use (MODULE NAME); at the top of the script. Run the script and see if
it generates an error.

e.g

use Win32::Lanman;

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: 29 June 2001 13:36
To: [EMAIL PROTECTED]
Subject: Modules question


Help with Modules please.

Is there a option I can run with perl to find out if a particular module is
installed?

Thanks,

Anna


--Confidentiality--.
This E-mail is confidential.  It should not be read, copied, disclosed or
used by any person other than the intended recipient.  Unauthorised use,
disclosure or copying by whatever medium is strictly prohibited and may be
unlawful.  If you have received this E-mail in error please contact the
sender immediately and delete the E-mail from your system.





Re: Modules question

2001-06-29 Thread Kevin Meltzer

Hi Anna,

To find out all the modules installed on your system, refer to the
following URL:

http:[EMAIL PROTECTED]/msg04057.html

To find out about a single one, you can do:

perl -MMODULE_NAME -e 1

So, to see if CGI.pm is installed:

perl -MCGI -e 1

If you see no error messages, it is installed, if you do.. it isn't.

Cheers,
Kevin

On Fri, Jun 29, 2001 at 08:35:34AM -0400, [EMAIL PROTECTED] 
([EMAIL PROTECTED]) spew-ed forth:
 Help with Modules please.
 
 Is there a option I can run with perl to find out if a particular module is 
installed?

-- 
[Writing CGI Applications with Perl - http://perlcgi-book.com]
Don't mind your make-up, you'd better make your mind up.
-- Frank Zappa



Re: Modules question

2001-06-29 Thread Brett W. McCoy

On Fri, 29 Jun 2001 [EMAIL PROTECTED] wrote:

 Help with Modules please.

 Is there a option I can run with perl to find out if a particular
 module is installed?

Try perl -MModuleName -e ''.  If it isn't in @INC, you'll get an error,
otherwise it will return to the command-line prompt.

-- Brett
   http://www.chapelperilous.net/btfwk/

Q:  How do you play religious roulette?
A:  You stand around in a circle and blaspheme and see who gets
struck by lightning first.




Re: Modules question

2001-06-29 Thread Nigel G Romeril

On Win32, typing
ppm verify
at the command prompt will list all the modules installed on your system
quit
will exit the ppm tool

[EMAIL PROTECTED] wrote:

 Help with Modules please.

 Is there a option I can run with perl to find out if a particular module is 
installed?

 Thanks,

 Anna




Re: Packages/modules Question

2001-06-15 Thread Kevin Meltzer

Hi Bill,

Please refer to  the answers to this same question in the archives:

http:[EMAIL PROTECTED]/msg04057.html

Cheers,
Kevin

On Fri, Jun 15, 2001 at 08:59:57AM -0400, Conrad, Bill (ThomasTech) 
([EMAIL PROTECTED]) spew-ed forth:
 Hi All
 
   Is there a way to list all of the packages/modules installed on a
 system from the command line?
 
 Thanks
 
 Bill Conrad
 
   
 

-- 
[Writing CGI Applications with Perl - http://perlcgi-book.com]
You think because you understand _one_ you must understand two. Because
one and one make _two_. But you must also understand _and_.
--Sufi Sage