Re: Patches

2004-12-30 Thread Randy W. Sims
Octavian Rasnita wrote: Hi all, Does anyone know if there are perl modules for applying patches? I have seen on many lists that are provided some patches for some perl modules, and probably they can be applied automaticly under Unix using "patch" for .dif files, but I cannot do this under Windows.

Patches

2004-12-30 Thread Octavian Rasnita
Hi all, Does anyone know if there are perl modules for applying patches? I have seen on many lists that are provided some patches for some perl modules, and probably they can be applied automaticly under Unix using "patch" for .dif files, but I cannot do this under Windows. So, are there any per

Re: IO::Socket::UNIX questions

2004-12-30 Thread mgoland
- Original Message - From: Dave Kettmann <[EMAIL PROTECTED]> Date: Thursday, December 30, 2004 5:23 pm Subject: IO::Socket::UNIX questions > Hello list, Hi Dave, > > I am working with UNIX Sockets and have some questions that I cant > seem to find answers to on the web. It can be hard

Re: IO::Socket::UNIX questions

2004-12-30 Thread Jonathan Paton
> I am working with UNIX Sockets and have some questions > that I cant seem to find answers to on the web. Since the questions was interesting enough to me, I thought I would research the answer. "Perl Cookbook" contains an entire chapter on this. I am not a socket programmer! > 1: Are UNIX soc

Re: h2xs directory structure in perl-5.8.x?

2004-12-30 Thread Randy W. Sims
Alex Daniloff wrote: Hello Perl people, Recently, upgrading to perl v5.8.5 I've noticed that h2xs lays out module directory structure in a quite different way than before. Prior to this I could create a module e.g. Data::Loader h2xs -XA -n Data::Loader And it would create directory Data, then subdi

Net::RawIP Compile

2004-12-30 Thread Welsh, Ed
Hopefully this is an appropriate place to field this. Let me know otherwise. I am attempting to instal the Net::RawIP perl module and keep getting heinous compile errors. I'll take any suggestions as to research resources. This is a fairly clean install of perl and Fedora. I'm thinking that

RE: xml module

2004-12-30 Thread Bob Showalter
Patricio Bruna V wrote: > i need to parse out one big xml file, 592K, but the only thing i need > to do its eliminate some tags, where the lang attribute is not es > (, fox example). > I think its a simple thing to do, so here its the question, what perl > module do you recommend for this task? XM

IO::Socket::UNIX questions

2004-12-30 Thread Dave Kettmann
Hello list, I am working with UNIX Sockets and have some questions that I cant seem to find answers to on the web. 1: Are UNIX sockets bi-directional? 2: If so, what is the proper way to 'setup' the connection? (will post what I have below) 3: Do UNIX sockets have less overhead than INET sock

xml module

2004-12-30 Thread Patricio Bruna V
i need to parse out one big xml file, 592K, but the only thing i need to do its eliminate some tags, where the lang attribute is not es (, fox example). I think its a simple thing to do, so here its the question, what perl module do you recommend for this task? thx. -- Patricio Bruna

Re: Copying a hash-of-hashes

2004-12-30 Thread Alfred Vahau
Hi, The three CPAN modules suitable for copying data structures are: Storable, Data::Dumper and FreezeThaw. Of these, Storable offers the dclone method which addresses the problem on hand. use Storable qw(dclone); $ref2 = dclone ($ref1); The method works on references to scalars, arrays and hashe

Copying a hash-of-hashes

2004-12-30 Thread Bakken, Luke
> Hello List, > To explain the problem I am having, I wrote a simple snipet > that doesn't do > anything meaningful other than illustrating the behaviour I > want to avoid: > > my %hoh = ( > 1 => { > a => 5, b => 5 > }, > > 2 => 5 >

Re: Copying a hash-of-hashes

2004-12-30 Thread Dave Gray
> The question is whether there is an elegant way to produce a complete copy > of a hash-of-hashes-of-hashes-...-of-hashes for internal subroutine purposes > and make sure that all references will be translated properly as well, > leaving the subroutine no ability to modify the main hash. You migh

RE : Copying a hash-of-hashes

2004-12-30 Thread Jose Nyimi
> -Message d'origine- > De : Peter Rabbitson [mailto:[EMAIL PROTECTED] > Envoyé : jeudi 30 décembre 2004 04:58 > À : beginners@perl.org > Objet : Copying a hash-of-hashes > > Hello List, > To explain the problem I am having, I wrote a simple snipet that doesn't > do > anything meaningful