![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /usr/share/perl5/XML/XPath/Node/ |
Upload File : |
package XML::XPath::Node::Comment; $VERSION = '1.44'; use strict; use warnings; use vars qw/@ISA/; @ISA = ('XML::XPath::Node'); package XML::XPath::Node::CommentImpl; use vars qw/@ISA/; @ISA = ('XML::XPath::NodeImpl', 'XML::XPath::Node::Comment'); use XML::XPath::Node ':node_keys'; sub new { my $class = shift; my ($comment) = @_; my $pos = XML::XPath::Node->nextPos; my @vals; @vals[node_global_pos, node_comment] = ($pos, $comment); my $self = \@vals; bless $self, $class; } sub getNodeType { COMMENT_NODE } sub isCommentNode { 1; } sub getNodeValue { return shift->[node_comment]; } sub getData { shift->getNodeValue; } sub setNodeValue { shift->[node_comment] = shift; } sub _to_sax { my $self = shift; my ($doch, $dtdh, $enth) = @_; $doch->comment( { Data => $self->getValue } ); } sub comment_escape { my $data = shift; $data =~ s/--/--/g; return $data; } sub string_value { my $self = shift; return $self->[node_comment]; } sub toString { my $self = shift; return '<!--' . comment_escape($self->[node_comment]) . '-->'; } 1; __END__ =head1 NAME Comment - an XML comment: <!--comment--> =head1 API =head2 new ( data ) Create a new comment node. =head2 getValue / getData Returns the value in the comment =head2 toString Returns the comment with -- encoded as a numeric entity (if it exists in the comment text). =cut