Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.156.402 Times

Xml Node Duplicate software
Filter: All | Freeware | Demo
 

Xml Node Duplicate

< 1 2 3 4 5 > 
Added: November 03, 2010 | Visits: 612

XML::LibXML::XPathContext XML::LibXML::XPathContext is an XPath evaluation. SYNOPSIS my $xpc = XML::LibXML::XPathContext->new(); my $xpc = XML::LibXML::XPathContext->new($node); $xpc->registerNs($prefix, $namespace_uri) $xpc->unregisterNs($prefix) $uri = $xpc->lookupNs($prefix)...



Platforms: *nix

License: Freeware Size: 256 KB Download (93): XML::LibXML::XPathContext Download

Added: February 24, 2010 | Visits: 930

XML::DOM::EntityReference XML::DOM::EntityReference is an XML ENTITY reference in XML::DOM. XML::DOM::EntityReference extends XML::DOM::Node. EntityReference objects may be inserted into the structure model when an entity reference is in the source document, or when the user wishes to insert an entity reference. Note...





Platforms: *nix

License: Freeware Size: 39.94 KB Download (92): XML::DOM::EntityReference Download

Added: June 22, 2010 | Visits: 811

XML::XPathToXML XML::XPathToXML is a Perl module that generates XML document from XPath expressions. SYNOPSIS my @data = ( /project/name => The Ultimate Question, /project/comment() => generated by XPathToXML , /project/start => 2002-09-08, /project/end => 7002002-09-08, /project/@id => 42,...


Platforms: *nix

License: Freeware Size: 307.2 KB Download (89): XML::XPathToXML Download

Added: July 19, 2010 | Visits: 695

XML::Filter::DOMFilter::LibXML XML::Filter::DOMFilter::LibXML is a SAX Filter allowing DOM processing of selected subtrees. SYNOPSIS use XML::LibXML; use XML::Filter::DOMFilter::LibXML; my $filter = XML::Filter::DOMFilter::LibXML->new( Handler => $handler, XPathContext => XML::LibXML::XPathContext->new(), Process =>...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (89): XML::Filter::DOMFilter::LibXML Download

Added: May 13, 2010 | Visits: 1.143

XML::DOM::Lite XML::DOM::Lite is a Lite Pure Perl XML DOM Parser Kit. SYNOPSIS # Parser use XML::DOM::Lite qw(Parser :constants); $parser = Parser->new( %options ); $doc = Parser->parse($xmlstr); $doc = Parser->parseFile(/path/to/file.xml); # strip whitespace (can be about 30% faster) $doc =...


Platforms: *nix

License: Freeware Size: 30.72 KB Download (97): XML::DOM::Lite Download

Added: September 21, 2010 | Visits: 697

XML::DOM::Attr XML::DOM::Attr is an XML attribute in XML::DOM. XML::DOM::Attr extends XML::DOM::Node. The Attr nodes built by the XML::DOM::Parser always have one child node which is a Text node containing the expanded string value (i.e. EntityReferences are always expanded.) EntityReferences may be added...


Platforms: *nix

License: Freeware Size: 112.64 KB Download (97): XML::DOM::Attr Download

Added: May 02, 2010 | Visits: 709

XML::DOM::Text XML::DOM::Text is a piece of XML text in XML::DOM. XML::DOM::Text extends XML::DOM::CharacterData, which extends XML::DOM::Node. The Text interface represents the textual content (termed character data in XML) of an Element or Attr. If there is no markup inside an elements content, the text...


Platforms: *nix

License: Freeware Size: 112.64 KB Download (100): XML::DOM::Text Download

Added: May 10, 2013 | Visits: 351

XML Content 6.x-1.x-dev / 5.x-1.x-dev The module allows saving XML inside the body of any node type, and have it display differently with XSL, or validated against a preconfigured schema.InstallationUnpack in your modules folder (usually /sites/all/modules/) and enable under Administer > Site Building > Modules. Key features "XML...


Platforms: Windows, Mac, *nix, PHP, BSD Solaris

License: Freeware Download (49): XML Content 6.x-1.x-dev / 5.x-1.x-dev Download

Added: July 13, 2010 | Visits: 2.069

XML::Parser::YahooRESTGeocode SYNOPPSIS use LWP::Simple use XML::Parser; use XML::Parser::YahooRESTGeocode; #connect to yahoo geocode service my $url = http://api.local.yahoo.com/MapsService/V1/geocode; my $get = appid=YahooDemo&street=701+First+Street&city=Sunnyvale&state=CA; #call yahoo geocode service my $xml =...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (116): XML::Parser::YahooRESTGeocode Download

Added: June 20, 2010 | Visits: 1.137

XML::Descent XML::Descent is a Perl module for recursive descent XML parsing. SYNOPSIS use XML::Descent; # Create parser my $p = XML::Descent->new({ Input => $xml }); # Setup handlers $p->on(folder => sub { my ($elem, $attr) = @_; $p->on(url => sub { my ($elem, $attr) = @_; my $link = { name...


Platforms: *nix

License: Freeware Size: 9.22 KB Download (93): XML::Descent Download

Added: July 22, 2010 | Visits: 911

XML::Filter::Dispatcher XML::Filter::Dispatcher is a path based event dispatching with DOM support. SYNOPSIS use XML::Filter::Dispatcher qw( :all ); my $f = XML::Filter::Dispatcher->new( Rules => [ foo => &handle_foo_start_tag, @bar => &handle_bar_attr, ## Send any elts and their contents to $handler...


Platforms: *nix

License: Freeware Size: 88.06 KB Download (93): XML::Filter::Dispatcher Download

Added: February 21, 2010 | Visits: 855

XML::Bare XML::Bare is a minimal XML parser implemented via a C state engine. SYNOPSIS use XML::Bare; my $xml = new XML::Bare( text => Bob ); # Parse the xml into a hash tree my $root = $xml->parse(); # Print the content of the name node print $root->{xml}->{name}->{value}; #...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (88): XML::Bare Download

Added: April 14, 2010 | Visits: 845

Bare XML Bare XML project is a XML parser with all primary parsing done via a simple state engine with about 20 or so different states. A tree structure is created during parsing, with all node names and values linked via pointers directly into the original text buffer. As such, Bare XML is extremely...


Platforms: *nix

License: Freeware Size: 24.58 KB Download (88): Bare XML Download

Added: August 19, 2010 | Visits: 695

XML::SimpleObject::LibXML XML::SimpleObject::LibXML is a Perl extension allowing a simple(r) object representation of an XML::LibXML DOM object. SYNOPSIS use XML::SimpleObject::LibXML; # Construct with the key/value pairs as argument; this will create its # own XML::LibXML object. my $xmlobj = new...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (88): XML::SimpleObject::LibXML Download

Added: October 14, 2010 | Visits: 897

Test::XML::XPath Test::XML::XPath is a Perl module to test XPath assertions. SYNOPSIS use Test::XML::XPath tests => 3; like_xpath( , /foo ); # PASS like_xpath( , /bar ); # FAIL unlike_xpath( , /bar ); # PASS is_xpath( bar , /foo, bar ); # PASS is_xpath( bar , /bar, foo ); # FAIL # More...


Platforms: *nix

License: Freeware Size: 9.22 KB Download (88): Test::XML::XPath Download

Added: November 03, 2010 | Visits: 885

XML::DOM::DocumentType XML::DOM::DocumentType is an XML document type (DTD) in XML::DOM. XML::DOM::DocumentType extends XML::DOM::Node. Each Document has a doctype attribute whose value is either null or a DocumentType object. The DocumentType interface in the DOM Level 1 Core provides an interface to the list of...


Platforms: *nix

License: Freeware Size: 112.64 KB Download (94): XML::DOM::DocumentType Download

Added: January 25, 2010 | Visits: 969

XML::Parser::EasyTree XML::Parser::EasyTree is an easier tree style for XML::Parser. SYNOPSIS use XML::Parser; use XML::Parser::EasyTree; $XML::Parser::Easytree::Noempty=1; my $p=new XML::Parser(Style=>EasyTree); my $tree=$p->parsefile(something.xml); XML::Parser::EasyTree adds a new "built-in" style called...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (96): XML::Parser::EasyTree Download

Added: February 08, 2010 | Visits: 737

XML::IDMEF XML::IDMEF is a module for building/parsing IDMEF messages. QUICK START Below is an example of an Alert IDMEF message. < ?xml version="1.0" encoding="UTF-8"? > < !DOCTYPE IDMEF-Message PUBLIC "-//IETF//DTD RFC XXXX IDMEF v1.0//EN" "idmef-message.dtd" > < IDMEF-Message > < Alert > <...


Platforms: *nix

License: Freeware Size: 25.6 KB Download (114): XML::IDMEF Download

Added: September 11, 2010 | Visits: 800

Test::XML::Simple Test::XML::Simple is an easy testing for XML. SYNOPSIS use Test::XML::Simple tests=>5; xml_valid $xml, "Is valid XML"; xml_node $xml, "/xpath/expression", "specified xpath node is present"; xml_is, $xml, /xpath/expr, "expected value", "specified text present"; xml_like, $xml, /xpath/expr,...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (86): Test::XML::Simple Download

Added: July 20, 2010 | Visits: 1.174

XML::XPath::Builder XML::XPath::Builder is a SAX handler for building an XPath tree. SYNOPSIS use AnySAXParser; use XML::XPath::Builder; $builder = XML::XPath::Builder->new(); $parser = AnySAXParser->new( Handler => $builder ); $root_node = $parser->parse( Source => [SOURCE] ); XML::XPath::Builder is a...


Platforms: *nix

License: Freeware Size: 39.94 KB Download (118): XML::XPath::Builder Download

< 1 2 3 4 5 >