Help for this page

Select Code to Download


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