- or download this
my $xc = XML::LibXML::XPathContext->new($root);
$xc->findnodes('/HOSTNAME/PATROL/ACL/USERNAME')
$sections->findnodes('./PERMISSION')
- or download this
$root->findnodes('/HOSTNAME/PATROL/ACL/USERNAME')
$sections->findnodes('./PERMISSION')
- or download this
my $xc = XML::LibXML::XPathContext->new( $root );
$xc->findnodes('/HOSTNAME/PATROL/ACL/USERNAME')
$xc->findnodes('./PERMISSION', $sections)
- or download this
$xc->findnodes('PERMISSION', $section)