[23561] in Perl-Users-Digest
Perl-Users Digest, Issue: 5769 Volume: 10
daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Sun Nov 9 06:06:01 2003
Date: Sun, 9 Nov 2003 03:05:07 -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 Sun, 9 Nov 2003 Volume: 10 Number: 5769
Today's topics:
Re: binary dist calculation <kalinaubears@iinet.net.au>
Re: bit sequence match <usenet@morrow.me.uk>
Re: bit sequence match (Jay Tilton)
Re: Code Help <karigna_no spam@verizon.net>
Re: Code Help <usenet@morrow.me.uk>
Re: DOS window. <krahnj@acm.org>
Re: extracting properties of companies with a tag for c <krahnj@acm.org>
Re: How to send string to a window?? <keeper@iosys.no-ip.org>
Re: How to send string to a window?? <me@privacy.net>
Re: How to send string to a window?? <keeper@iosys.no-ip.org>
Multi-page TIFF's --> PDF files <nakroshis@NOICKYSPAMsmart.net>
Re: Multi-page TIFF's --> PDF files <usenet@morrow.me.uk>
perl regular expression question. <hobbes@vkr.NOSPAM.dk>
Re: perl regular expression question. <hobbes@vkr.NOSPAM.dk>
Simple way to kill @array element? <ducott_99@yahoo.com>
Re: Simple way to kill @array element? <noreply@gunnar.cc>
Re: Simple way to kill @array element? <usenet@morrow.me.uk>
Re: unlink and big files <ruben@NOSPAMtextinfo.nl>
Re: Upgrading perl and module use <b_duke@octa4.net.invalid>
Re: Upgrading perl and module use <usenet@morrow.me.uk>
Re: Upgrading perl and module use <b_duke@octa4.net.invalid>
WWW::Mechanize - multiselect (Ramana Mokkapati)
Digest Administrivia (Last modified: 6 Apr 01) (Perl-Users-Digest Admin)
----------------------------------------------------------------------
Date: Sun, 09 Nov 2003 16:37:13 +1100
From: Sisyphus <kalinaubears@iinet.net.au>
Subject: Re: binary dist calculation
Message-Id: <3fadd348$0$1745$5a62ac22@freenews.iinet.net.au>
Fred wrote:
> Sisyphus wrote:
>
>> Sisyphus wrote:
>>
>>>
>>> As Brian hinted:
>>> $x = 0b101; # $x is a number (= 3).
>>> $x = "0b101"; # $x is not a number, just a string of chars.
>>> $x = oct("0b101"); # $x is a number (= 3)
>>>
>>
>> Ummm ... I wasn't wearing my glasses, and couldn't see my fingers
>> properly. I think '101' is actually binary representation of '5', not
>> '3'. Time to visit the optometrist .... or maybe the neurosurgeon.
>>
>> Cheers,
>> Rob
>>
>>
>
> thanks
>
> one more thing,
> what is this " $x is a number (= 3) or (= 5) mean?
> who is (= number) used and what for?
>
They are just comments (and the 3 was a mistake since 101 base 2 equals
5 base 10, not 3 base 10). All I mean is that if you have code saying
'$x = 0b101;' then that is effectively the same as code that says '$x = 5;'.
But if you're code says '$x = "0b101";' then that is different. It is no
longer going to be interpreted as a number. It is merely a string of the
characters "0b101".
Code that says '$x = oct("0b101");' is again effectively the same as
code that says '$x = 5;'.
Cheers,
Rob
--
To reply by email u have to take out the u in kalinaubears.
------------------------------
Date: Sat, 8 Nov 2003 23:07:08 +0000 (UTC)
From: Ben Morrow <usenet@morrow.me.uk>
Subject: Re: bit sequence match
Message-Id: <bojsus$h83$1@wisteria.csv.warwick.ac.uk>
[please attribute quotes correctly]
Edo wrote:
>Ben Morrow wrote:
>> my %h1 = (1 => '00', 2 => '10', 3 => '11');
>>
>> my %h2 = (20 => '00', 21 => '10', 22 => '11',
>> 30 => '10', 31 => '00', 32 => '00',
>> 41 => '10', 42 => '11', 43 => '10',
>> 111 => '00', 112 => '10', 113 => '11');
>>
>> my @lookfor = map { $h1{$_} } sort keys %h1;
>> my $lookfor = 0;
>> my (@h3, $tmph);
>>
>> for (sort keys %h2) {
>> $tmph = {} unless $lookfor;
>>
>> if ($h2{$_} eq $lookfor[$lookfor]) {
>> $tmph->{$_} = $h2{$_};
>> $lookfor = ($lookfor + 1) % @lookfor;
>> }
>>
>> push @h3, $tmph if !$lookfor and keys %$tmph;
>> }
>
> for (@h3) {
> print %{$_}, "\n";
> }
Have you come across Data::Dumper? That's a bloody stupid way to print
out a hash.
> the above code puts
>
> 111001121011311
> 211022112000
> 310041104211
>
> it nees to put out the following the keys
>
> 202122 #keys 20 21 22 whose values are 00 10 11
> 111112113 #keys 111 112 113 whose values are 00 10 11
Eh? Replace your 'for(@h3) {...}' with
use Data::Dumper;
print Dumper \@h3;
which will (with my code) print
$VAR1 = [
{
111 => '00',
112 => '10',
113 => '11'
},
{
21 => '10',
22 => '11',
20 => '00',
},
{
31 => '00',
41 => '10',
42 => '11'
}
]
. As someone else has already asked, what *exactly* would you like the
output of that command to be? In particular, each row of your given
output seems to consist of three values, whereas you have stated
several times that @h3 should be an array of hashrefs. A hash is a
collection of key:value pairs: what do you want to be the values which
go with those keys?
> ok here is what I am thinking in perl
> my @lookfor = map { $h1{$_} } sort keys %h1; #saves the 3 values from %h1
> my $lookfor = 0;
> my (@h3, $tmph, @lookin);
> my @lookin; #to save a range of 3 values from %h2
Have you even run this code? You've just declared @lookin twice: if
you'd had warnings on perl would have told you that.
> for (sort keys %h2) {
> #build @lookin with next 3 values of %h2
> for (0 .. $#lookfor) { # 0 .. 3
This is nearly always a bad idea.
for (@lookfor) {
> push @lookin, #graps the values of keys 20 21 22
push @lookin, what?
> }
> if (@lookfor == @lookin) { #001011 cmp 100010
This will compare the lengths of the two arrays. I do not think you
meant to do that. What you did mean to do I do not know.
> #put that section of %h2 in @h3 which is AoHref
Eh what? Which section of %h2? And why didn't you code it?
> }
> } #the next iteration @lookin graps values of keys 21 22 30 which should
> match the values in the @lookfor
If you want any more help (from me), can you *please* state, in the
form of my example above, *exactly* what data structure you wish to
produce from this input.
Ben
--
$.=1;*g=sub{print@_};sub r($$\$){my($w,$x,$y)=@_;for(keys%$x){/main/&&next;*p=$
$x{$_};/(\w)::$/&&(r($w.$1,$x.$_,$y),next);$y eq\$p&&&g("$w$_")}};sub t{for(@_)
{$f&&($_||&g(" "));$f=1;r"","::",$_;$_&&&g(chr(0012))}};t # ben@morrow.me.uk
$J::u::s::t, $a::n::o::t::h::e::r, $P::e::r::l, $h::a::c::k::e::r, $.
------------------------------
Date: Sun, 09 Nov 2003 05:05:11 GMT
From: tiltonj@erols.com (Jay Tilton)
Subject: Re: bit sequence match
Message-Id: <3fadc815.980333499@news.erols.com>
Edo <edady2002@yahoo.com> wrote:
: Invalid type in pack: '(' at prog/play.pl line 26.
: line 26: my $look_for = pack('(B6)*' => @h1{ @k1 });
:
: does this need perl 5.8? I have 5.6.1
Yes. 5.8.0 introduced the ability to use parentheses to create pack
sub-templates that can take a repeat count. We used to have to do the
repeating manually.
pack 'B6' x @k1 => @h1{ @k1 }
------------------------------
Date: Sun, 09 Nov 2003 01:32:52 GMT
From: "Kenny" <karigna_no spam@verizon.net>
Subject: Re: Code Help
Message-Id: <8Pgrb.3531$bQ3.1439@nwrdny03.gnilink.net>
"James E Keenan" <jkeen@concentric.net> wrote in message
news:b955da04.0311081424.2ed25e48@posting.google.com...
> "Kenny" <karigna_no spam@verizon.net> wrote in message
news:<Hzbrb.5529$hB5.3732@nwrdny02.gnilink.net>...
> > I need some code help on a small piece that is giving me some problems:
> >
> [snip]
> > foreach $i (@Files) {
> >
> >
> > while ( $_=~/\b([a-z][-a-z][-a-z][-a-z]+)\b/ig){
>
> One of your problems is right here. You're iterating over @Files with
> $i, but your lvalue for the binding operator is $_. Also, it seems to
> me that you're defining a "word" as containing 4 or more characters,
> the first of which must be a letter, and the next 3 or more of which
> must be either letters or a hyphen. Is that what you intended? In
> particular, are the names of the relevant .html files forbidden to
> contain numerals or the underscore character?
>
Jimk,
Yes, I'm only looking for words containing 4 or more characters plus a
number of the .html files that I'm downloading have the same name so I'm
renaming them on download using a random filename based on the date and
current time to eliminate duplicate naming.
K.
> jimk
------------------------------
Date: Sun, 9 Nov 2003 01:51:37 +0000 (UTC)
From: Ben Morrow <usenet@morrow.me.uk>
Subject: Re: Code Help
Message-Id: <bok6j9$lo8$4@wisteria.csv.warwick.ac.uk>
"Kenny" <karigna_no spam@verizon.net> wrote:
> using a random filename based on the date and current time
ObPedant: if it's based on the current date and time, it's not random.
Ben
--
Joy and Woe are woven fine,
A Clothing for the Soul divine William Blake
Under every grief and pine 'Auguries of Innocence'
Runs a joy with silken twine. ben@morrow.me.uk
------------------------------
Date: Sun, 09 Nov 2003 06:39:19 GMT
From: "John W. Krahn" <krahnj@acm.org>
Subject: Re: DOS window.
Message-Id: <3FADE0DC.3587298C@acm.org>
Chris Mattern wrote:
>
> Ben Morrow wrote:
> > "Richard S Beckett" <spikeywan@bigfoot.com.delete.this.bit> wrote:
> >
> >>It's a shame that microsoft not supporting their own hardware
> >
> > Err.. I don't think Microsoft are a hardware company... :)
> >
> <Looks at Microsoft mouse>
>
> <Looks at Microsoft keyboard>
>
> <Looks at Microsoft joystick>
>
> They aren't?
Don't forget your XBox. :-)
John
--
use Perl;
program
fulfillment
------------------------------
Date: Sun, 09 Nov 2003 09:00:45 GMT
From: "John W. Krahn" <krahnj@acm.org>
Subject: Re: extracting properties of companies with a tag for company number
Message-Id: <3FAE0200.4CB655BC@acm.org>
Vumani Dlamini wrote:
>
> I would like to extract properties of companies from a huge text data
> set. The data is structured as follows;
>
> ##### data #########
> Area=3706
> Company=101
> PROPdes1=1 # description/type of property
> PROPpri1=2 # public/private
> PROPemp1=54 # number of employees
> PROPdes2=6
> PROPpri2=2
> PROPemp2=23
> ###################
>
> I would like to create data like,
> 3706|101|1|1|2|54
> 3706|101|2|6|2|23
>
> where column 3 corresponds to the property tag, attached to each
> variable corresponding to a particular property.
>
> There are a lot more properties per company in my data set and thus I
> opted to loop over that tag; but my code gives errors where those tags
> are. Am not sure what I am missing.
This seems to do what you want:
#!/usr/bin/perl
use warnings;
use strict;
open DATA, 'c:/../properties.txt' or die "Unable to open c:/../properties.txt: $!";
open PRIVATE, '>c:/.../private.txt' or die "Unable to open c:/.../private.txt: $!";
my %data;
my @head = qw( Area Company );
my @rest = qw( record PROPdes PROPpri PROPemp );
while ( <DATA> ) {
my ( $name, $record, $num ) = /(\S+?)(\d+)?=(\d+)/ or next;
$data{ $name } = $num;
$data{ record } = $record if defined $record;
if ( keys( %data ) == @head + @rest ) {
print PRIVATE join( '|', @data{ @head, @rest } ), "\n";
delete @data{ @rest };
}
}
__END__
John
--
use Perl;
program
fulfillment
------------------------------
Date: Sun, 09 Nov 2003 10:11:42 +0100
From: Keeper <keeper@iosys.no-ip.org>
Subject: Re: How to send string to a window??
Message-Id: <bol0f7$bd9$1@nemesis.news.tpi.pl>
Uz.ytkownik Gunnar Hjalmarsson napisa?:
> Keeper wrote:
>
>> Hi All,
>
>
> Stop this multiposting!!!
>
and what is the problem?, i need help...so if you can't help me than...
------------------------------
Date: Sun, 9 Nov 2003 22:22:25 +1300
From: "Tintin" <me@privacy.net>
Subject: Re: How to send string to a window??
Message-Id: <bol122$1e0n1g$1@ID-172104.news.uni-berlin.de>
"Keeper" <keeper@iosys.no-ip.org> wrote in message
news:bol0f7$bd9$1@nemesis.news.tpi.pl...
> Uz.ytkownik Gunnar Hjalmarsson napisa?:
> > Keeper wrote:
> >
> >> Hi All,
> >
> >
> > Stop this multiposting!!!
> >
> and what is the problem?, i need help...so if you can't help me than...
It is very clear you need help.
Go read http://www.cs.tut.fi/~jkorpela/usenet/xpost.html
------------------------------
Date: Sun, 09 Nov 2003 11:28:21 +0100
From: Keeper <keeper@iosys.no-ip.org>
Subject: Re: How to send string to a window??
Message-Id: <bol4v1$orv$1@nemesis.news.tpi.pl>
Uz.ytkownik Gunnar Hjalmarsson napisa?:
> Keeper wrote:
>
>> Hi All,
>
>
> Stop this multiposting!!!
>
Ok my apologize, now I understand what was the problem :)...
------------------------------
Date: Sun, 09 Nov 2003 01:06:52 -0000
From: Rick Nakroshis <nakroshis@NOICKYSPAMsmart.net>
Subject: Multi-page TIFF's --> PDF files
Message-Id: <Xns942DCC95959BEricknak@216.168.3.44>
After some wrestling with the PDF::API2 module, I've gotten it to
faithfully create PDF files from text, which if the first half of my
project.
Multi-page TIFF's are driving me crazy, however. The module is only
picking up one of the pages from the TIFF. At first I thought it was a
flaw of the module, but have discovered that many graphics programs have
this flaw, too. The latest version of Irfanview, for example, only "sees"
the first page.
Anyone have any suggestions on this?
Thanks,
Rick
------------------------------
Date: Sun, 9 Nov 2003 01:50:34 +0000 (UTC)
From: Ben Morrow <usenet@morrow.me.uk>
Subject: Re: Multi-page TIFF's --> PDF files
Message-Id: <bok6ha$lo8$3@wisteria.csv.warwick.ac.uk>
Rick Nakroshis <nakroshis@NOICKYSPAMsmart.net> wrote:
> After some wrestling with the PDF::API2 module, I've gotten it to
> faithfully create PDF files from text, which if the first half of my
> project.
>
> Multi-page TIFF's are driving me crazy, however. The module is only
> picking up one of the pages from the TIFF. At first I thought it was a
> flaw of the module, but have discovered that many graphics programs have
> this flaw, too. The latest version of Irfanview, for example, only "sees"
> the first page.
Use tiffsplit, which comes with libtiff.
Ben
--
For the last month, a large number of PSNs in the Arpa[Inter-]net have been
reporting symptoms of congestion ... These reports have been accompanied by an
increasing number of user complaints ... As of June,... the Arpanet contained
47 nodes and 63 links. [ftp://rtfm.mit.edu/pub/arpaprob.txt] * ben@morrow.me.uk
------------------------------
Date: Sun, 9 Nov 2003 11:51:17 +0100
From: "Jesper" <hobbes@vkr.NOSPAM.dk>
Subject: perl regular expression question.
Message-Id: <bol61c$37h$1@news.net.uni-c.dk>
Hi
I have a string that contains 5<= characters; two (or more) of these
charaters must be numbers - is there anyway to check this with reg. exp. ?
regards,
Jesper
------------------------------
Date: Sun, 9 Nov 2003 11:52:23 +0100
From: "Jesper" <hobbes@vkr.NOSPAM.dk>
Subject: Re: perl regular expression question.
Message-Id: <bol63e$3ac$1@news.net.uni-c.dk>
Some examples could be:
ab1g3a
af884f
Regards,
Jesper
"Jesper" <hobbes@vkr.NOSPAM.dk> wrote in message
news:bol61c$37h$1@news.net.uni-c.dk...
> Hi
> I have a string that contains 5<= characters; two (or more) of these
> charaters must be numbers - is there anyway to check this with reg. exp. ?
>
> regards,
> Jesper
>
>
------------------------------
Date: Sun, 09 Nov 2003 00:00:17 GMT
From: "Robert TV" <ducott_99@yahoo.com>
Subject: Simple way to kill @array element?
Message-Id: <lsfrb.346154$pl3.100683@pd7tw3no>
Hi, I'm wondering if there is a simple way to kill (remove) an element from
an array when inside a foreach loop. I can easily add an element to an array
like below:
push(@list, $element);
But when it comes to removing an element, it seems (as far as my research
shows) one would normally use the splice command. This means starting a
counter, when the condition is met, reduce counter by one, then splice it
... I am looking for something a little more simple like this ("unpush"
syntax not real)
$element = "Mike";
foreach $list (@list) {
if ($list eq $element) {
unpush (this specific @array element)
}
}
Am I dreaming? TIA!
Robert
------------------------------
Date: Sun, 09 Nov 2003 01:15:11 +0100
From: Gunnar Hjalmarsson <noreply@gunnar.cc>
Subject: Re: Simple way to kill @array element?
Message-Id: <bok1qs$1fr1l8$1@ID-184292.news.uni-berlin.de>
Robert TV wrote:
> Hi, I'm wondering if there is a simple way to kill (remove) an
> element from an array when inside a foreach loop. I can easily add
> an element to an array like below:
>
> push(@list, $element);
>
> But when it comes to removing an element, it seems (as far as my
> research shows) one would normally use the splice command. This
> means starting a counter, when the condition is met, reduce counter
> by one, then splice it
This is a for loop without a separate counter:
for (0..$#list) {
if ($list[$_] eq $element) {
splice @list, $_, 1;
last;
}
}
But it can be written much simpler using the grep() function:
@list = grep { $_ ne $element } @list;
--
Gunnar Hjalmarsson
Email: http://www.gunnar.cc/cgi-bin/contact.pl
------------------------------
Date: Sun, 9 Nov 2003 01:48:41 +0000 (UTC)
From: Ben Morrow <usenet@morrow.me.uk>
Subject: Re: Simple way to kill @array element?
Message-Id: <bok6dp$lo8$2@wisteria.csv.warwick.ac.uk>
"Robert TV" <ducott_99@yahoo.com> wrote:
> Hi, I'm wondering if there is a simple way to kill (remove) an element from
> an array when inside a foreach loop. I can easily add an element to an array
> like below:
>
> push(@list, $element);
>
> But when it comes to removing an element, it seems (as far as my research
> shows) one would normally use the splice command. This means starting a
> counter, when the condition is met, reduce counter by one, then splice it
> ... I am looking for something a little more simple like this ("unpush"
> syntax not real)
From the Book of perlsyn, Chapter 7, Verse vi:
| If any part of LIST is an array, "foreach" will get very confused if
| you add or remove elements within the loop body, for example with
| "splice". So don't do that.
HTH
Ben
--
Every twenty-four hours about 34k children die from the effects of poverty.
Meanwhile, the latest estimate is that 2800 people died on 9/11, so it's like
that image, that ghastly, grey-billowing, double-barrelled fall, repeated
twelve times every day. Full of children. [Iain Banks] ben@morrow.me.uk
------------------------------
Date: Sun, 09 Nov 2003 01:15:06 +0100
From: Ruben van Engelenburg <ruben@NOSPAMtextinfo.nl>
Subject: Re: unlink and big files
Message-Id: <3fad8769$0$56497$1b62eedf@news.wanadoo.nl>
Mike Flannigan wrote:
> A Google search will produce a ton of pages discussing this
> issue. Here are just a few:
> http://www.ussg.iu.edu/hypermail/linux/kernel/0108.1/1440.html
> http://www.redhat.com/archives/redhat-list/2002-July/msg00442.html
> http://sources.redhat.com/ml/bug-gnu-utils/2000-02/msg00108.html
>
> Apparently it is not Perl related.
Hi Mike,
Thanks for the reply. I'll go look somewhere else for an answer to
solve this, since it turns out to be not Perl related indeed.
Regards,
Ruben.
------------------------------
Date: Sat, 08 Nov 2003 23:27:02 GMT
From: Brian Salter-Duke <b_duke@octa4.net.invalid>
Subject: Re: Upgrading perl and module use
Message-Id: <aZerb.72$z31.2423@news.optus.net.au>
On Fri, 7 Nov 2003 17:18:50 -0600, Tad McClellan <tadmc@augustmail.com> wrote:
> Brian Salter-Duke <b_duke@octa4.net.invalid> wrote:
>
>> When I upgraded perl,
>
>
> From what version to what version?
>
>
>> it could not find my installed modules (the ones I
>> had installed). Is there a way to get perl to use modules that are under a
>> different version tree structure,
>
>
> Yes, the way given in the Perl FAQ no less!
>
> perldoc -q module
>
> How do I keep my own module/library directory?
I followed this up, but it about your own private library. This is not
what I want. I have a partial answer. 5.6.1 was installed in the
/usr/local/lib tree. 5.6.0 was installed in the /usr/lib. I can add all
the 5.6.0 stuff:-
/usr/lib/perl5/5.6.0
/usr/lib/perl5/5.6.0/i386-linux
/usr/lib/perl5/site-perl
/usr/lib/perl5/site-perl/5.6.0
/usr/lib/perl5/site-perl/5.6.0/i386-linux
to $PERL5LIB environmental variable. However, I am not sure but I think
it then searches the 5.6.0 libraries before it searches the 5.6.1
libraries. Of course I want the opposite as 5.6.1 might have a leter
version than 5.6.0 if I installed in the former after I installed in the
latter. I guess you can get around this by putting the 5.6.1 in
$PERL5LIB too in the right order, but this repeats the 5.6.1 in @INC.
Is there a better way. I must be missing something.
>
>> or do I have to reinstall the modules?
>
>
> Maybe.
>
> Are they pure Perl modules or do they use XS?
>
> Some versions of Perl are not binary-compatible with other versions.
>
>
--
Brian Salter-Duke Humpty Doo, Nr Darwin, Australia
My real address is b_duke(AT)octa4(DOT)net(DOT)au
Use this for reply or followup
Perl user for eight years - the way to go.
------------------------------
Date: Sun, 9 Nov 2003 01:45:12 +0000 (UTC)
From: Ben Morrow <usenet@morrow.me.uk>
Subject: Re: Upgrading perl and module use
Message-Id: <bok678$lo8$1@wisteria.csv.warwick.ac.uk>
Brian Salter-Duke <b_duke@octa4.net.invalid> wrote:
> On Fri, 7 Nov 2003 17:18:50 -0600, Tad McClellan
> <tadmc@augustmail.com> wrote:
> > Brian Salter-Duke <b_duke@octa4.net.invalid> wrote:
> >
> >> When I upgraded perl,
<snip>
> I followed this up, but it about your own private library. This is not
> what I want. I have a partial answer. 5.6.1 was installed in the
> /usr/local/lib tree. 5.6.0 was installed in the /usr/lib. I can add all
> the 5.6.0 stuff:-
When you install perl, it looks for old versions and asks if you want
to add their library paths to that of the new perl.
Ben
--
'Deserve [death]? I daresay he did. Many live that deserve death. And some die
that deserve life. Can you give it to them? Then do not be too eager to deal
out death in judgement. For even the very wise cannot see all ends.'
:-:-:-:-:-:-:-:-:-:-:-:-:-:-:-:-:-:-:-:-:-:-:-:-:-:-:-:-:-:-: ben@morrow.me.uk
------------------------------
Date: Sun, 09 Nov 2003 03:23:46 GMT
From: Brian Salter-Duke <b_duke@octa4.net.invalid>
Subject: Re: Upgrading perl and module use
Message-Id: <6rirb.73$z31.2477@news.optus.net.au>
On Sun, 9 Nov 2003 01:45:12 +0000 (UTC), Ben Morrow
<usenet@morrow.me.uk> wrote:
>
> Brian Salter-Duke <b_duke@octa4.net.invalid> wrote:
>> On Fri, 7 Nov 2003 17:18:50 -0600, Tad McClellan
>> <tadmc@augustmail.com> wrote:
>> > Brian Salter-Duke <b_duke@octa4.net.invalid> wrote:
>> >
>> >> When I upgraded perl,
><snip>
>> I followed this up, but it about your own private library. This is not
>> what I want. I have a partial answer. 5.6.1 was installed in the
>> /usr/local/lib tree. 5.6.0 was installed in the /usr/lib. I can add all
>> the 5.6.0 stuff:-
>
> When you install perl, it looks for old versions and asks if you want
> to add their library paths to that of the new perl.
>
> Ben
>
--
Brian Salter-Duke Humpty Doo, Nr Darwin, Australia
My real address is b_duke(AT)octa4(DOT)net(DOT)au
Use this for reply or followup
Perl user for eight years - the way to go.
------------------------------
Date: 8 Nov 2003 16:23:40 -0800
From: mvr707@yahoo.com (Ramana Mokkapati)
Subject: WWW::Mechanize - multiselect
Message-Id: <7bc56448.0311081623.64c17642@posting.google.com>
How do you specify multiple options
of a multiselect box in a form?
------------------------------
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.
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 5769
***************************************