Linux 162-55-97-189.cprapid.com 5.14.0-687.24.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Jul 9 18:14:06 EDT 2026 x86_64
LiteSpeed
Server IP : 162.55.97.189 & Your IP : 216.73.216.182
Domains :
Cant Read [ /etc/named.conf ]
User : kavci
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
lib64 /
perl5 /
5.32 /
XML /
LibXML /
Delete
Unzip
Name
Size
Permission
Date
Action
SAX
[ DIR ]
drwxr-xr-x
2026-07-11 08:52
Attr.pod
4.02
KB
-r--r--r--
2026-05-21 15:37
AttributeHash.pm
4.47
KB
-r--r--r--
2026-05-21 15:36
Boolean.pm
1.54
KB
-r--r--r--
2026-05-21 15:36
CDATASection.pod
1.28
KB
-r--r--r--
2026-05-21 15:37
Comment.pod
1.36
KB
-r--r--r--
2026-05-21 15:37
Common.pm
8.16
KB
-r--r--r--
2026-05-21 15:36
Common.pod
3.59
KB
-r--r--r--
2026-05-21 15:37
DOM.pod
6.23
KB
-r--r--r--
2026-05-21 15:37
Devel.pm
5.06
KB
-r--r--r--
2026-05-21 15:36
Document.pod
21.13
KB
-r--r--r--
2026-05-21 15:37
DocumentFragment.pod
819
B
-r--r--r--
2026-05-21 15:37
Dtd.pod
1.99
KB
-r--r--r--
2026-05-21 15:37
Element.pod
13.48
KB
-r--r--r--
2026-05-21 15:37
ErrNo.pm
27.81
KB
-r--r--r--
2026-05-21 15:36
ErrNo.pod
591
B
-r--r--r--
2026-05-21 15:37
Error.pm
8.42
KB
-r--r--r--
2026-05-21 15:36
Error.pod
5.98
KB
-r--r--r--
2026-05-21 15:37
InputCallback.pod
9.59
KB
-r--r--r--
2026-05-21 15:37
Literal.pm
2.03
KB
-r--r--r--
2026-05-21 15:36
NamedNodeMap.pod
1.65
KB
-r--r--r--
2026-05-21 15:37
Namespace.pod
3.28
KB
-r--r--r--
2026-05-21 15:37
Node.pod
25.72
KB
-r--r--r--
2026-05-21 15:37
NodeList.pm
7.29
KB
-r--r--r--
2026-05-21 15:36
Number.pm
1.85
KB
-r--r--r--
2026-05-21 15:36
PI.pod
2.22
KB
-r--r--r--
2026-05-21 15:37
Parser.pod
27.79
KB
-r--r--r--
2026-05-21 15:37
Pattern.pod
2.91
KB
-r--r--r--
2026-05-21 15:37
Reader.pm
5.69
KB
-r--r--r--
2026-05-21 15:36
Reader.pod
17.6
KB
-r--r--r--
2026-05-21 15:37
RegExp.pod
1.54
KB
-r--r--r--
2026-05-21 15:37
RelaxNG.pod
2.34
KB
-r--r--r--
2026-05-21 15:37
SAX.pm
3.42
KB
-r--r--r--
2026-05-21 15:36
SAX.pod
1.76
KB
-r--r--r--
2026-05-21 15:37
Schema.pod
2.19
KB
-r--r--r--
2026-05-21 15:37
Text.pod
5.47
KB
-r--r--r--
2026-05-21 15:37
XPathContext.pm
3.11
KB
-r--r--r--
2026-05-21 15:36
XPathContext.pod
11.65
KB
-r--r--r--
2026-05-21 15:37
XPathExpression.pod
1.64
KB
-r--r--r--
2026-05-21 15:37
Save
Rename
=head1 NAME XML::LibXML::NamedNodeMap - A map for named nodes =head1 SYNOPSIS use XML::LibXML; my $map = XML::LibXML::NamedNodeMap->new(@nodes); my $nodes_list = $map->nodes(); my $node_with_index_2 = $map->item(2); my $length = $map->length; my $nodes_ref = $node->nodes() my $node_2 = $map->item(2); my $node = $map->getNamedItem('phone_number'); $map->setNamedItem($new_node) $map->removeNamedItem($name) =head1 DESCRIPTION XML::LibXML::NamedNodeMap maps nodes' names to nodes. =head1 METHODS =over 4 =item length my $length = $map->length; Returns the number of nodes in the map. =item nodes my $nodes_ref = $node->nodes() Returns a reference to the list of nodes. =item item my $node_2 = $map->item(2); Returns the node with the index of the argument (starting from 0) =item getNamedItem my $node = $map->getNamedItem('phone_number'); Returns the node with the name. =item setNamedItem $map->setNamedItem($new_node) Sets the node with the same name as C<<<<<< $new_node >>>>>> to C<<<<<< $new_node >>>>>>. =item removeNamedItem $map->removeNamedItem($name) Remove the item with the name C<<<<<< $name >>>>>>. =item getNamedItemNS I<<<<<< Not implemented yet. >>>>>>. =item setNamedItemNS I<<<<<< Not implemented yet. >>>>>>. =item removeNamedItemNS I<<<<<< Not implemented yet. >>>>>>. =back =head1 AUTHORS Matt Sergeant, Christian Glahn, Petr Pajas =head1 VERSION 2.0213 =head1 COPYRIGHT 2001-2007, AxKit.com Ltd. 2002-2006, Christian Glahn. 2006-2009, Petr Pajas. =cut =head1 LICENSE This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.