Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

xml::libxml::debugging(3pm) [debian man page]

XML::LibXML::Debugging(3pm)				User Contributed Perl Documentation			       XML::LibXML::Debugging(3pm)

NAME
XML::LibXML::Debugging - get debugging information from XML::LibXML nodes SYNOPSIS
use XML::LibXML::Debugging; my $parser = XML::LibXML->new; my $doc = $parser->parse_file('input.xml'); print $doc->toClarkML; DESCRIPTION
This module adds a couple of additional methods to XML::LibXML::Node objects which are mostly aimed at helping figure out what's going on with the DOM's namespaces and structure. "toClarkML" produces a string of XML-like markup with explicit namespaces. The following XML: <foo xmlns="http://example.com/1" xmlns:bar="http://example.com/2" bar:baz="quux" /> Might be represented as: <{http://example.com/1}foo {http://www.w3.org/2000/xmlns/}xmlns="http://example.com/1" {http://www.w3.org/2000/xmlns/}bar="http://example.com/2" {http://example.com/2}baz="quux" /> Another method "toDebuggingHash" returns a hashref suitable for dumping using Data::Dumper. BUGS
Please report any bugs to <http://rt.cpan.org/>. SEE ALSO
XML::LibXML, XML::LibXML::Debugging. AUTHOR
Toby Inkster <tobyink@cpan.org>. COPYRIGHT AND LICENSE
Copyright (C) 2009-2011 by Toby Inkster This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. DISCLAIMER OF WARRANTIES
THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. perl v5.14.2 2011-12-04 XML::LibXML::Debugging(3pm)

Check Out this Related Man Page

XML::LibXML::CDATASection(3)				User Contributed Perl Documentation			      XML::LibXML::CDATASection(3)

NAME
XML::LibXML::CDATASection - XML::LibXML Class for CDATA Sections SYNOPSIS
use XML::LibXML; # Only methods specific to CDATA nodes are listed here, # see XML::LibXML::Node manpage for other methods $node = XML::LibXML::CDATASection->new( $content ); DESCRIPTION
This class provides all functions of XML::LibXML::Text, but for CDATA nodes. METHODS
The class inherits from XML::LibXML::Node. The documentation for Inherited methods is not listed here. Many functions listed here are extensively documented in the DOM Level 3 specification (<http://www.w3.org/TR/DOM-Level-3-Core/>). Please refer to the specification for extensive documentation. new $node = XML::LibXML::CDATASection->new( $content ); The constructor is the only provided function for this package. It is required, because libxml2 treats the different text node types slightly differently. AUTHORS
Matt Sergeant, Christian Glahn, Petr Pajas VERSION
2.0110 COPYRIGHT
2001-2007, AxKit.com Ltd. 2002-2006, Christian Glahn. 2006-2009, Petr Pajas. LICENSE
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.18.2 2014-02-01 XML::LibXML::CDATASection(3)
Man Page

3 More Discussions You Might Find Interesting

1. Homework & Coursework Questions

Fixer Debugging

School:Syrian Virtual University - Bachelor in Information Technology - Tutor: A.Issa - course: S10-iti320 hi all, would you please help me correcting and debugging this script: fx-permiss.sh which accepts a list of users as argument resiting those files permissions: say our directory... (0 Replies)
Discussion started by: erzal
0 Replies

2. Programming

Debugging software for C++ on Unix

Hi, Is anyone aware of any debugging software for C++ on Unix something similar to the one in VC++. Any information in this regard would be very helpful. Thank you. (2 Replies)
Discussion started by: bornon2303
2 Replies

3. Shell Programming and Scripting

XML file

Hi, how to remove the below tag in the xml file USING any command. xmlns="http://integration.sprint.com/v2/public/interfaces/EnterpriseEmail/EmailMessage.xsd" Test file <?xml version="1.0" encoding="UTF-8" ?><EmailMessage... (2 Replies)
Discussion started by: bmk
2 Replies