Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re^2: sub that finds ancestor elements

by tobyink (Canon)
on Sep 13, 2012 at 20:52 UTC ( [id://993575]=note: print w/replies, xml ) Need Help??


in reply to Re: sub that finds ancestor elements
in thread sub that finds ancestor elements

Why the colons between the module name and version number? (I doubt you need to specify the version number at all - ppm presumably defaults to the latest version available.)
perl -E'sub Monkey::do{say$_,for@_,do{($monkey=[caller(0)]->[3])=~s{::}{ }and$monkey}}"Monkey say"->Monkey::do'

Replies are listed 'Best First'.
Re^3: sub that finds ancestor elements
by jccunning (Acolyte) on Sep 13, 2012 at 21:47 UTC
    When I install using "ppm install XML-LibXML" then version 1.70 of XML-LibXML is installed as the latest. Your script indicated "use XML::LibXML 2;". Of course, I get error that version 2 is required.

      Replace this:

      $node->findnodes("ancestor::*")->map(sub { $coolNodeName->($_) })

      With this:

      (map { $coolNodeName->($_) } $node->findnodes("ancestor::*"))

      ... and you should be able to use XML::LibXML 1.70.

      perl -E'sub Monkey::do{say$_,for@_,do{($monkey=[caller(0)]->[3])=~s{::}{ }and$monkey}}"Monkey say"->Monkey::do'

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://993575]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (8)
As of 2024-04-18 15:58 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found