Command Line error while installing perl modules.

2006-11-14 Thread Anushya Ganapathy
Hi, I am trying to install a perl module Net::RawIP in windows xp. Sorry, if this doubt is not belongs to this list. While installing Net::RawIP, i faced as below. ** D:\Tools\PerlModules\Net-RawIP-0.2>Makefile.PL Sorry,ethernet related methods are not implemented on this system Sorry, t

Re: How to manipulate environment variables in parent process?

2006-11-14 Thread Matt Johnson
siegfried wrote: >>> I think the best I could hope for would be to write a perl script that >>> generated a bat file and then I manually execute the bat file. I don't >>> think there is anyway to automate the execution of the bat file. >> I'm sure that there is; if you can't put it into its own bat

Re: log file help

2006-11-14 Thread Rob Dixon
Chris Parker wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I couldn't find the answer while googling for a regexp to pull the ip from my log files so here I am. I am trying to get the ip's (source and destination) along with the ports for a summary. WFLOG doesnt cover my firewall so I t

log file help

2006-11-14 Thread Chris Parker
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I couldn't find the answer while googling for a regexp to pull the ip from my log files so here I am. I am trying to get the ip's (source and destination) along with the ports for a summary. WFLOG doesnt cover my firewall so I thought id try. Code i

Re: How to manipulate environment variables in parent process?

2006-11-14 Thread Rob Dixon
siegfried wrote: I think the best I could hope for would be to write a perl script that generated a bat file and then I manually execute the bat file. I don't think there is anyway to automate the execution of the bat file. I'm sure that there is; if you can't put it into its own bat file, you c

Re: SPUG: Minimal Perl talk at UW on Thursday

2006-11-14 Thread John W. Krahn
John W. Krahn wrote: Sorry, I sent this to the wrong mailing list. Please disreguard. John -- Perl isn't a toolbox, but a small machine shop where you can special-order certain sorts of tools at low cost and in short order. -- Larry Wall -- To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: SPUG: Minimal Perl talk at UW on Thursday

2006-11-14 Thread John W. Krahn
Tim Maher wrote: > On Tue, Nov 14, 2006 at 02:37:12PM -0800, John W. Krahn wrote: >> >>>$x=getgrgid $gid; >>>defined $x and $x =~ /[a-zA-Z]/ and $gid_name=$x; >>Is there some Unix or Posix specification that requires the /[a-zA- >>Z]/ test? >> >>Or to put it another way, if the tes

RE: How to manipulate environment variables in parent process?

2006-11-14 Thread siegfried
>> I think the best I could hope for would be to write a perl script that >> generated a bat file and then I manually execute the bat file. I don't >> think there is anyway to automate the execution of the bat file. > >I'm sure that there is; if you can't put it into its own bat file, you >could ha

Re: Perl - Bit Manipulation

2006-11-14 Thread Rob Dixon
Ricardo SIGNES wrote: * "Randal L. Schwartz" [2006-11-14T16:34:43] "Rob" == Rob Dixon <[EMAIL PROTECTED]> writes: This is indeed a documentation bug. perlop says, in full: ~ The "=>" operator is a synonym for the comma, but forces any word ~ (consisting entirely of word characters) to its

Re: Perl - Bit Manipulation

2006-11-14 Thread Dr.Ruud
Randal L. Schwartz schreef: > Ruud: >> >> The "=>" operator is a synonym for the comma, but forces any >> word to its left to be interpreted as a string (as of 5.001). >> >> >> And AFAICS that isn't true: >> >> $ perl -MData::Dumper -wle' >> %n = (00 => Integer, 01 => Floating, 10 => Char, 11

Re: Perl - Bit Manipulation

2006-11-14 Thread Ricardo SIGNES
* "Randal L. Schwartz" [2006-11-14T16:34:43] > > "Rob" == Rob Dixon <[EMAIL PROTECTED]> writes: > > Rob> This is indeed a documentation bug. perlop says, in full: > Rob> ~ The "=>" operator is a synonym for the comma, but forces any word > (consisting > Rob> ~ entirely of word characters) to

Re: how to stop RPC::XML::Server blocking

2006-11-14 Thread Todd W
"Robin Sheat" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi, I have a small XML-RPC server I wrote using the RPC::XML::Server > module, > however I found that if a single task given to it takes some time, then it > prevents any more requests from happening. I'd like to have ea

Re: Perl - Bit Manipulation

2006-11-14 Thread Randal L. Schwartz
> "Rob" == Rob Dixon <[EMAIL PROTECTED]> writes: Rob> This is indeed a documentation bug. perlop says, in full: Rob> ~ The "=>" operator is a synonym for the comma, but forces any word (consisting Rob> ~ entirely of word characters) to its left to be interpreted as a string (as of Rob> ~ 5.

Hi all, when click on an item which laied in a ListBox, can we let some strings print into a Text widget area.

2006-11-14 Thread 辉 王
Hi all, Hi all, when click on an item which laied in a ListBox, can we let some strings print into a Text widget area. Below is my perl script which does not work properly. use warnings; use strict; use Tk; use URI; my $mw = MainWindow->new; my $text = $mw->Scrolled(qw/Text -relief sunken -

Re: Hi, how to extract five texts on each side of an URI? I post my own perl script and its use.

2006-11-14 Thread Jenda Krynicky
From: ťÔ Íő <[EMAIL PROTECTED]> > my $text; > for my $left_index (1..WIDTH) { >last if $start_index < $left_index; > $text .= $texts_arr[$start_index - $left_index] . ' '; > } > $text .= join(" ", @texts_arr[$start_index..$end_index]) . ' '; >for my $right_index (1..WIDTH) { >

Re: Help regular expression

2006-11-14 Thread Jenda Krynicky
Date sent: Thu, 9 Nov 2006 21:34:35 -0800 (PST) From: ppp ppp <[EMAIL PROTECTED]> Subject:Help regular expression To: beginners@perl.org > Hi All ; > > > I am new to this group.I am just started to learn perl.I want to > progra

Re: How to define modules?

2006-11-14 Thread Adriano Rodrigues
On 11/14/06, Dharshana Eswaran <[EMAIL PROTECTED]> wrote: I have perl programs with me and i wish to convert it into perl modules. Can i know how to do the same? Dharshana, The basic reading on this subject may be found at the installed perldoc pages at your machine perlmod

Re: How to define modules?

2006-11-14 Thread Mumia W.
On 11/14/2006 06:11 AM, Dharshana Eswaran wrote: Hi all, I have perl programs with me and i wish to convert it into perl modules. Can i know how to do the same? Or can i know any links or documents which describes the same? Thanks and Regards, Dharshana If you use ActiveState Perl on Wind

How to define modules?

2006-11-14 Thread Dharshana Eswaran
Hi all, I have perl programs with me and i wish to convert it into perl modules. Can i know how to do the same? Or can i know any links or documents which describes the same? Thanks and Regards, Dharshana

Re: Question on Tk::HList

2006-11-14 Thread DJ Gruby
Hi! 2006/11/11, zentara <[EMAIL PROTECTED]>: Yeah, that is why I said the answer was complicated, and Slaven Reszic recommended patching the Tk c code. [...] Okay, thank you *very much* for this exhausting bunch of information. I think that I can live with that little inconvenience, as I sup