[30558] in Perl-Users-Digest

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

Perl-Users Digest, Issue: 1801 Volume: 11

daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Mon Aug 18 09:09:46 2008

Date: Mon, 18 Aug 2008 06:09:08 -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           Mon, 18 Aug 2008     Volume: 11 Number: 1801

Today's topics:
    Re: array comparision <mstep@podiuminternational.org>
    Re: array comparision sheinrich@my-deja.com
    Re: array comparision <willem@stack.nl>
        HTTP Authorization in Header Request <john1949@yahoo.com>
    Re: HTTP Authorization in Header Request sheinrich@my-deja.com
    Re: HTTP Authorization in Header Request <bjoern@hoehrmann.de>
    Re: List Context in a Boolean Expression <rvtol+news@isolution.nl>
        new CPAN modules on Mon Aug 18 2008 (Randal Schwartz)
    Re: perlish way for ( 0 .. $n) , but downcounting <bugbear@trim_papermule.co.uk_trim>
    Re: perlish way for ( 0 .. $n) , but downcounting sheinrich@my-deja.com
    Re: The Importance of Terminology's Quality <jwkenne@attglobal.net>
    Re: The Importance of Terminology's Quality <martin@see.sig.for.address.invalid>
    Re: Tone generation question plus Windows XP and Vista  <glennj@ncf.ca>
    Re: Tone generation question plus Windows XP and Vista  <rvtol+news@isolution.nl>
        What is this problem <saurabhperiwal@gmail.com>
    Re: What is this problem <john1949@yahoo.com>
        Digest Administrivia (Last modified: 6 Apr 01) (Perl-Users-Digest Admin)

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

Date: Mon, 18 Aug 2008 00:06:04 -0700 (PDT)
From: Marek <mstep@podiuminternational.org>
Subject: Re: array comparision
Message-Id: <6e8f54df-4d20-43fb-8c94-6594e19d636f@m36g2000hse.googlegroups.com>



Yes Affijn, yes, my field separator is <TAB>. And just in case a field
is starting with a <space>, I added a \s*; but this was superfluous.
There are no spaces at the beginning. Thank you again for all your
very helpful answers :-)


ps: my posting from 3rd August is still not answered :-))) Just in
case you have some ideas again: "Debugger: Pipe print output into
shell" :-)))





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

Date: Mon, 18 Aug 2008 01:53:55 -0700 (PDT)
From: sheinrich@my-deja.com
Subject: Re: array comparision
Message-Id: <6d7d1645-e87b-4844-9070-012c04f2597f@d45g2000hsc.googlegroups.com>

On Aug 16, 7:22 am, Marek <ms...@podiuminternational.org> wrote:
> Hello all!
>
> I have several lines where I need to know whether the numbers are the
> same or not.
>
> I made an example, and my questions are inserted as comments:
>
> Thank you for your help
>
> marek
>
> #! /usr/local/bin/perl
>
> use warnings;
> use strict;
>
> my $line1 = "Mon, 04.08.2008       61126.10        79071.30        3567    2648.00 2864.00";
> my $line2 =
> "Die, 05.08.2008 7:40-19:40        12:00   61198.70        79103.40        3574    2648.00
> 2950.70 Name1";
>

Just for the fun of Perl

$line1 =~ s/.*?\t\s*(\d+(\.\d+)?)/(.+?)$1/g;
print $line2 =~ /^$line1$/ ? "same\n" : "not same\n";

This however, requires a constant decimal notation and wouldn't help
you much if you always need your numbers for a closer inspection.
Still it might be the 'perlish' way that helps find the occasional
discrepancy.


Regards, Steffen



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

Date: Mon, 18 Aug 2008 10:48:03 +0000 (UTC)
From: Willem <willem@stack.nl>
Subject: Re: array comparision
Message-Id: <slrngaikr3.1hb8.willem@snail.stack.nl>

Ben Morrow wrote:
)
) Quoth h3xx <amphetamachine@gmail.com>:
)> 
)> # check each member by the indexes
)> map {
)>     $fail = 1 unless $nums1[$_] == $nums2[$_]
)> } 0 .. $#nums1;
)
) Why are you using map in void context? I know it works, but it's rather
) bad style.
)
)     for (0..$#nums1) {
)         $fail = 1 unless $nums1[$_] == $nums2[$_];
)     }

True.

) Better would be to exit the loop early as soon as you know it will fail,
) viz.
)
)     for (0..$#nums1) {
)         unless ($nums1[$_] == $nums2[$_]) {
)             $fail = 1;
)             last;
)         }
)     }

If you look further you will see he then prints all differing numbers.


SaSW, Willem
-- 
Disclaimer: I am in no way responsible for any of the statements
            made in the above text. For all I know I might be
            drugged or something..
            No I'm not paranoid. You all think I'm paranoid, don't you !
#EOT


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

Date: Mon, 18 Aug 2008 12:19:11 +0100
From: "John" <john1949@yahoo.com>
Subject: HTTP Authorization in Header Request
Message-Id: <g8blrb$i9l$1@news.albasani.net>

Hi

I have two short programs.

Client Request program that sends an HTTP request to a Server Response 
program.
The contents is picked up by the Server with no problem.
However, it does not pick up the Authorization part of the header.
Any idea why it is not being picked up.  I have dumped all the $ENV but it 
is not there.

------------------------------------------------
Client Request Program :-

use LWP::UserAgent; my $ua=new LWP::UserAgent;
use HTTP::Request::Common qw (POST);

my $req=new HTTP::Request 'POST',$url;
$req->header('Authorization' => 'Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==');
$req->header('Content-Type' => 'application/xml;charset=UTF-8');
$req->content($xml);
my $response=$ua->request($req);

---------------------------------------------------
Server Response Program:-

my $length=$ENV{'CONTENT_LENGTH'}; my $request;
read (STDIN,$request,$length);
# read headers
my $auth = $ENV{"AUTHORIZATION"};
my $content_type = $ENV{"CONTENT_TYPE"};
------------------------------------------------

Regards
John






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

Date: Mon, 18 Aug 2008 05:15:16 -0700 (PDT)
From: sheinrich@my-deja.com
Subject: Re: HTTP Authorization in Header Request
Message-Id: <b5194980-76e3-45d5-9490-eff189fb4237@c58g2000hsc.googlegroups.com>

On Aug 18, 1:19 pm, "John" <john1...@yahoo.com> wrote:
> Hi
>
> I have two short programs.
>
> Client Request program that sends an HTTP request to a Server Response
> program.
> The contents is picked up by the Server with no problem.
> However, it does not pick up the Authorization part of the header.
> Any idea why it is not being picked up.  I have dumped all the $ENV but it
> is not there.
>
> ------------------------------------------------
> Client Request Program :-
>
> use LWP::UserAgent; my $ua=new LWP::UserAgent;
> use HTTP::Request::Common qw (POST);
>
> my $req=new HTTP::Request 'POST',$url;
> $req->header('Authorization' => 'Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==');
> $req->header('Content-Type' => 'application/xml;charset=UTF-8');
> $req->content($xml);
> my $response=$ua->request($req);
>
>
snip

You can access the headers that were actually sent through the
response object.

print $response()->request->as_string();
print $response()->headers_as_string();

Could it possibly be that your credentials have 8bit chars in them?
That might cause trouble depending on server configuration.

You did enable warnings, did you?

Steffen


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

Date: Mon, 18 Aug 2008 14:21:53 +0200
From: Bjoern Hoehrmann <bjoern@hoehrmann.de>
Subject: Re: HTTP Authorization in Header Request
Message-Id: <87qia4hn8t26flp4t88muq45c7mafk6q0t@hive.bjoern.hoehrmann.de>

* John wrote in comp.lang.perl.misc:
>However, it does not pick up the Authorization part of the header.

Many CGI implementations prevent scripts from accessing the value of
this header as a security precaution. Generally speaking, running the
code under something but the CGI module of your software (e.g., using
mod_perl on an Apache web server) allows you to get around that; an
alternative is to use the mod_rewrite module to put the value into the
environment before the script is called.
-- 
Björn Höhrmann · mailto:bjoern@hoehrmann.de · http://bjoern.hoehrmann.de


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

Date: Mon, 18 Aug 2008 13:25:57 +0200
From: "Dr.Ruud" <rvtol+news@isolution.nl>
Subject: Re: List Context in a Boolean Expression
Message-Id: <g8btai.1nc.1@news.isolution.nl>

Michael Carman schreef:

> I'm having a hard time envisioning a situation where
>   @foo = $bar || @baz;
> is useful. 


Then use it in a JAPH. Why did you write "$bar"? 

-- 
Affijn, Ruud

"Gewoon is een tijger."


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

Date: Mon, 18 Aug 2008 04:42:21 GMT
From: merlyn@stonehenge.com (Randal Schwartz)
Subject: new CPAN modules on Mon Aug 18 2008
Message-Id: <K5s52L.wAr@zorch.sf-bay.org>

The following modules have recently been added to or updated in the
Comprehensive Perl Archive Network (CPAN).  You can install them using the
instructions in the 'perlmodinstall' page included with your Perl
distribution.

Authen-Quiz-0.01
http://search.cpan.org/~lushe/Authen-Quiz-0.01/
The person's input is confirmed by setting the quiz. 
----
Authen-Quiz-0.02
http://search.cpan.org/~lushe/Authen-Quiz-0.02/
The person's input is confirmed by setting the quiz. 
----
Authen-Quiz-0.03
http://search.cpan.org/~lushe/Authen-Quiz-0.03/
The person's input is confirmed by setting the quiz. 
----
Callback-Cleanup-0.02
http://search.cpan.org/~nuffin/Callback-Cleanup-0.02/
Declare callbacks that clean themselves up 
----
Callback-Cleanup-0.03
http://search.cpan.org/~nuffin/Callback-Cleanup-0.03/
Declare callbacks that clean themselves up 
----
CatalystX-ListFramework-Builder-0.22
http://search.cpan.org/~oliver/CatalystX-ListFramework-Builder-0.22/
Instant AJAX web front-end for DBIx::Class, using Catalyst 
----
CatalystX-ListFramework-Builder-0.23
http://search.cpan.org/~oliver/CatalystX-ListFramework-Builder-0.23/
Instant AJAX web front-end for DBIx::Class, using Catalyst 
----
Class-DBI-Lite-0.008
http://search.cpan.org/~johnd/Class-DBI-Lite-0.008/
Lightweight ORM for Perl 
----
DateTimeX-Web-0.04
http://search.cpan.org/~ishigaki/DateTimeX-Web-0.04/
DateTime factory for web apps 
----
Flex-WPS
http://search.cpan.org/~sflex/Flex-WPS/
----
Getopt-Chain-0.004
http://search.cpan.org/~rkrimen/Getopt-Chain-0.004/
Option and subcommand processing in the style svn(1) and git(1) 
----
Hash-Param-0.04
http://search.cpan.org/~rkrimen/Hash-Param-0.04/
CGI/Catalyst::Request-like parameter-hash accessor/mutator 
----
JavaScript-Dumper-0.005
http://search.cpan.org/~perler/JavaScript-Dumper-0.005/
Dump JavaScript data structures from Perl objects. Allows unquoted strings and numbers. 
----
Lingua-JA-FindDates-0.008
http://search.cpan.org/~bkb/Lingua-JA-FindDates-0.008/
scan text to find Japanese dates 
----
Lingua-Stem-Snowball-0.95
http://search.cpan.org/~creamyg/Lingua-Stem-Snowball-0.95/
Perl interface to Snowball stemmers. 
----
Mail-SPF-v2.006
http://search.cpan.org/~jmehnle/Mail-SPF-v2.006/
An object-oriented implementation of Sender Policy Framework 
----
Math-GSL-0.09_01
http://search.cpan.org/~leto/Math-GSL-0.09_01/
Perl interface to the GNU Scientific Library (GSL) 
----
Net-Twitter-Search-0.05
http://search.cpan.org/~shiny/Net-Twitter-Search-0.05/
----
Object-Disoriented-0.02
http://search.cpan.org/~arc/Object-Disoriented-0.02/
remove object-orientation from modules 
----
POEIKC-0.02_01
http://search.cpan.org/~suzuki/POEIKC-0.02_01/
POE IKC daemon and client 
----
Padre-0.05
http://search.cpan.org/~szabgab/Padre-0.05/
Perl Application Development and Refactoring Environment 
----
Padre-Plugin-PAR-0.02
http://search.cpan.org/~szabgab/Padre-Plugin-PAR-0.02/
PAR generation from Padre 
----
Pod-Browser-0.02
http://search.cpan.org/~perler/Pod-Browser-0.02/
Pod Web Server based on Catalyst and ExtJS 
----
Rose-DBx-Object-Renderer-0.28
http://search.cpan.org/~danny/Rose-DBx-Object-Renderer-0.28/
Web UI Rendering for Rose::DB::Object 
----
SkypeAPI-0.01
http://search.cpan.org/~laomoi/SkypeAPI-0.01/
Skype API simple implementation, only support windows platform now. 
----
SkypeAPI-0.02
http://search.cpan.org/~laomoi/SkypeAPI-0.02/
Skype API simple implementation, only support windows platform now. 
----
Socket6-0.22
http://search.cpan.org/~umemoto/Socket6-0.22/
IPv6 related part of the C socket.h defines and structure manipulators 
----
Sort-External-0.17
http://search.cpan.org/~creamyg/Sort-External-0.17/
Sort huge lists. 
----
Statistics-R-0.03
http://search.cpan.org/~ctbrown/Statistics-R-0.03/
Controls the R (R-project) interpreter through Perl. 
----
Sub-Clone-0.01
http://search.cpan.org/~nuffin/Sub-Clone-0.01/
Clone subroutine refs for garbage collection/blessing purposes 
----
Test-TCP-0.01
http://search.cpan.org/~tokuhirom/Test-TCP-0.01/
testing TCP program 
----
Unicode-Properties-0.03
http://search.cpan.org/~bkb/Unicode-Properties-0.03/
find out what properties a character has 
----
Var-State-0.02
http://search.cpan.org/~eidolon/Var-State-0.02/
state [variable]; in perl 5.8 - sort-of... 
----
Var-State-0.03
http://search.cpan.org/~eidolon/Var-State-0.03/
state [variable]; in perl 5.8 - sort-of... 
----
XML-FeedWriter-0.06
http://search.cpan.org/~ishigaki/XML-FeedWriter-0.06/
simple RSS writer 
----
XiaoI-0.01
http://search.cpan.org/~laomoi/XiaoI-0.01/
Perl extension for blah blah blah 
----
XiaoI-0.02
http://search.cpan.org/~laomoi/XiaoI-0.02/
Perl extension for blah blah blah 
----
mogilefs-server-2.18
http://search.cpan.org/~dormando/mogilefs-server-2.18/


If you're an author of one of these modules, please submit a detailed
announcement to comp.lang.perl.announce, and we'll pass it along.

This message was generated by a Perl program described in my Linux
Magazine column, which can be found on-line (along with more than
200 other freely available past column articles) at
  http://www.stonehenge.com/merlyn/LinuxMag/col82.html

print "Just another Perl hacker," # the original

--
Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095
<merlyn@stonehenge.com> <URL:http://www.stonehenge.com/merlyn/>
Smalltalk/Perl/Unix consulting, Technical writing, Comedy, etc. etc.
See http://methodsandmessages.vox.com/ for Smalltalk and Seaside discussion


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

Date: Mon, 18 Aug 2008 10:03:33 +0100
From: bugbear <bugbear@trim_papermule.co.uk_trim>
Subject: Re: perlish way for ( 0 .. $n) , but downcounting
Message-Id: <j6-dnUbfttt4pzTVnZ2dnUVZ8sLinZ2d@posted.plusnet>

Willem wrote:
> Justin C wrote:
> ) Not pretty, but works without warnings:
> )
> ) my $i = 1000
> )
> ) for ( -$i .. 0 ) {
> )     print "$i\n";
> )     $i--;
> ) }
> 
> Why not go all the way then:
> 
>   for (-1000 .. 0) { dowith(-$_) }

Nicely done!

   BugBear


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

Date: Mon, 18 Aug 2008 02:29:48 -0700 (PDT)
From: sheinrich@my-deja.com
Subject: Re: perlish way for ( 0 .. $n) , but downcounting
Message-Id: <86521731-9512-4364-a38e-6d99627da90e@34g2000hsh.googlegroups.com>

On Aug 15, 4:46 am, Michael Carman <mjcar...@mchsi.com> wrote:
> Eric Pozharski wrote:
>
> > Appending C<print scalar @x> in each case is left as an exercise for
> > courious reader (BTW, how to say that abreviated?)
>
> print 0+@x;
>
> -mjc

LEXTOR ? :-)


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

Date: Sun, 17 Aug 2008 22:30:35 -0400
From: John W Kennedy <jwkenne@attglobal.net>
Subject: Re: The Importance of Terminology's Quality
Message-Id: <48a8df27$0$7362$607ed4bc@cv.net>

Martin Gregorie wrote:
> On Sat, 16 Aug 2008 21:46:18 -0400, John W Kennedy wrote:
> 
>> Martijn Lievaart wrote:
>>> On Thu, 14 Aug 2008 18:33:30 -0400, John W Kennedy wrote:
>>>
>>>> Actually, I was thinking of the 1401. But both the 1620 and the 1401
>>>> (without the optional Advanced Programming Feature) share the basic
>>>> omission of any instruction that could do call-and-return without
>>>> hard-coding an adcon with the address of the point to be returned to.
>>>> (The Advanced Programming Feature added a 1401 instruction, Store
>>>> B-address Register, that, executed as the first instruction of a
>>>> subroutine, could store the return-to address.)
>>> Raaaagh!!!!
>>>
>>> Don't. Bring. Back. Those. Nightmares. Please.
>>>
>>> The 1401 was a decent enough processor for many industrial tasks -- at
>>> that time -- but for general programming it was sheer horror.
>> But the easiest machine language /ever/.
> 
> What? Even easier than ICL 1900 PLAN or MC68000 assembler? That would be 
> difficult to achieve.

I said "machine language" and I meant it. I haven't touched a 1401 since 
1966, and haven't dealt with a 1401 emulator since 1968, but I can 
/still/ write a self-booting program. In 1960, some people still looked 
on assemblers (to say nothing of compilers) as a useless waste of 
resources that could be better applied to end-user applications, and the 
1401 was designed to be programmable in raw machine language. Even shops 
that used assembler nevertheless frequently did bug fixes as 
machine-language patches, rather than take the time to run the assembler 
again. (SPS, the non-macro basic assembler, ran at about 70 lines a 
minute, tops.)

-- 
John W. Kennedy
  "The bright critics assembled in this volume will doubtless show, in 
their sophisticated and ingenious new ways, that, just as /Pooh/ is 
suffused with humanism, our humanism itself, at this late date, has 
become full of /Pooh./"
   -- Frederick Crews.  "Postmodern Pooh", Preface


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

Date: Mon, 18 Aug 2008 09:33:44 +0000 (UTC)
From: Martin Gregorie <martin@see.sig.for.address.invalid>
Subject: Re: The Importance of Terminology's Quality
Message-Id: <g8bflo$984$1@localhost.localdomain>

On Sun, 17 Aug 2008 22:30:35 -0400, John W Kennedy wrote:

> I said "machine language" and I meant it.
>
OK - I haven't touched that since typing ALTER commands into the console 
of a 1903 running the UDAS executive or, even better, patching the 
executive on the hand switches.

I was fascinated, though by the designs of early assemblers: I first 
learnt Elliott assembler, which required the op codes to be typed on 
octal but used symbolic labels and variable names. Meanwhile a colleague 
had started on a KDF6 which was the opposite - op codes were mnemonics 
but all addresses were absolute and entered in octal. I always wondered 
about the rationale of the KDF6 assembler writers in tackling only the 
easy part of the job.

> Even shops that used assembler nevertheless frequently did bug fixes as
> machine-language patches, rather than take the time to run the assembler
> again. (SPS, the non-macro basic assembler, ran at about 70 lines a
> minute, tops.)
>
Even a steam powered 1901 (3.6 uS for a half-word add IIRC) running a 
tape based assembler was faster than that. It could just about keep up 
with a 300 cpm card reader.


-- 
martin@   | Martin Gregorie
gregorie. | Essex, UK
org       |


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

Date: 18 Aug 2008 10:20:37 GMT
From: Glenn Jackman <glennj@ncf.ca>
Subject: Re: Tone generation question plus Windows XP and Vista information
Message-Id: <slrngaij7n.dok.glennj@smeagol.ncf.ca>

At 2008-08-17 12:06AM, "E.D.G." wrote:
>  Also, the Sound command documentation says to use the form 
>  Win32::Sound::Play("file.wav");
>  
>  I had to use Win32::Sound::Play('file.wav'); for it to work.

See also "Quote and Quote-like Operators" in perldoc perlop

-- 
Glenn Jackman
    Write a wise saying and your name will live forever. -- Anonymous


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

Date: Mon, 18 Aug 2008 13:31:57 +0200
From: "Dr.Ruud" <rvtol+news@isolution.nl>
Subject: Re: Tone generation question plus Windows XP and Vista information
Message-Id: <g8btl6.kc.1@news.isolution.nl>

E.D.G. schreef:
> Dr.Ruud:

>> Looks like you are testing from the command line in a DOS box. There,
>> the local shell rules apply.
>>
>> Putting your code in a whatever.pl file will make testing more
>> convenient, for example because you can have different windows for
>> editing and running.
>
> The code was actually stored at the beginning of my regular .pl
> program for testing purposes.  I will have to give it another try as
> I stated in another posting.  Perhaps part of the command that looked
> correct was actually entered wrong.

The next thing that can go wrong, is that the file name that you showed
us: "file.wav", is not the same as in your real code.
Perhaps the real name has embedded '@' or '$' characters?
I like the q{filename} way of coding.

-- 
Affijn, Ruud

"Gewoon is een tijger."



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

Date: Mon, 18 Aug 2008 00:29:32 -0700 (PDT)
From: Saurabh <saurabhperiwal@gmail.com>
Subject: What is this problem
Message-Id: <3920e2c3-67eb-4c2f-91df-69ab49230ea2@x16g2000prn.googlegroups.com>

Hi,

Please help. Never faced this problem before with cpan

cpan> install Cache::FastMap
CPAN: Storable loaded ok
Going to read /root/.cpan/Metadata
Warning: Found only 0 objects in /root/.cpan/Metadata
CPAN: LWP::UserAgent loaded ok
Fetching with LWP:
   /authors/01mailrc.txt.gz
LWP failed with code[400] message[URL must be absolute]
Please check, if the URLs I found in your configuration file ( ) are
valid.
The urllist can be edited. E.g. with 'o conf urllist push ftp://myurl/'

Could not fetch authors/01mailrc.txt.gz
Fetching with LWP:
   /modules/02packages.details.txt.gz
LWP failed with code[400] message[URL must be absolute]
Please check, if the URLs I found in your configuration file ( ) are
valid.
The urllist can be edited. E.g. with 'o conf urllist push ftp://myurl/'

Could not fetch modules/02packages.details.txt.gz
Fetching with LWP:
   /modules/03modlist.data.gz
LWP failed with code[400] message[URL must be absolute]
Please check, if the URLs I found in your configuration file ( ) are
valid.
The urllist can be edited. E.g. with 'o conf urllist push ftp://myurl/'

Could not fetch modules/03modlist.data.gz
Going to write /root/.cpan/Metadata
Warning: Cannot install Cache::FastMap, don't know what it is.
Try the command

    i /Cache::FastMap/

to find objects with matching identifiers.


Please help

Regards
Saurabh


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

Date: Mon, 18 Aug 2008 12:23:39 +0100
From: "John" <john1949@yahoo.com>
Subject: Re: What is this problem
Message-Id: <g8bm3m$iks$1@news.albasani.net>


"Saurabh" <saurabhperiwal@gmail.com> wrote in message 
news:3920e2c3-67eb-4c2f-91df-69ab49230ea2@x16g2000prn.googlegroups.com...
> Hi,
>
> Please help. Never faced this problem before with cpan
>
> cpan> install Cache::FastMap
> CPAN: Storable loaded ok
> Going to read /root/.cpan/Metadata
> Warning: Found only 0 objects in /root/.cpan/Metadata
> CPAN: LWP::UserAgent loaded ok
> Fetching with LWP:
>   /authors/01mailrc.txt.gz
> LWP failed with code[400] message[URL must be absolute]
> Please check, if the URLs I found in your configuration file ( ) are
> valid.
> The urllist can be edited. E.g. with 'o conf urllist push ftp://myurl/'
>
> Could not fetch authors/01mailrc.txt.gz
> Fetching with LWP:
>   /modules/02packages.details.txt.gz
> LWP failed with code[400] message[URL must be absolute]
> Please check, if the URLs I found in your configuration file ( ) are
> valid.
> The urllist can be edited. E.g. with 'o conf urllist push ftp://myurl/'
>
> Could not fetch modules/02packages.details.txt.gz
> Fetching with LWP:
>   /modules/03modlist.data.gz
> LWP failed with code[400] message[URL must be absolute]
> Please check, if the URLs I found in your configuration file ( ) are
> valid.
> The urllist can be edited. E.g. with 'o conf urllist push ftp://myurl/'
>
> Could not fetch modules/03modlist.data.gz
> Going to write /root/.cpan/Metadata
> Warning: Cannot install Cache::FastMap, don't know what it is.
> Try the command
>
>    i /Cache::FastMap/
>
> to find objects with matching identifiers.
>
>
> Please help
>
> Regards
> Saurabh



Try Cache::FastMmap.  I think you have a missing 'm'.

Regards
John





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

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 V11 Issue 1801
***************************************


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