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.291.687 Times

Xml Trees freeware
Filter: All | Freeware | Demo
 

Xml Trees

1 2 3 4 5 > 
Added: August 17, 2013 | Visits: 234

my_xml This is a very simple and easy to use XML parserThis is a replacement for Python's DOM parsers for simple XML data.It is possible, but not convenient, to construct an XML trees using this module.



Platforms: Python

License: Freeware Size: 10 KB Download (42): my_xml Download

Added: March 07, 2010 | Visits: 1.006

XML Parse Library XML-Parse library is a lightweight set of re-usable functions for general purpose parsing, checking, and creating xml files. It can support stream-oriented, SAX or DOM parsing styles, and includes an optional xsd schema validator and graphical schema generator. It supports all valid XML, and...





Platforms: *nix

License: Freeware Size: 11.26 KB Download (103): XML Parse Library Download

Added: April 13, 2010 | Visits: 745

XML::Sablotron::DOM XML::Sablotron::DOM is the DOM interface to Sablotrons internal structures. SYNOPSIS use XML::Sablotron::DOM; my $situa = new XML::Sablotron::Situation(); my $doc = new XML::Sablotron::DOM::Document(SITUATION => $sit); my $e = $doc->createElement($situa, "foo"); my $t =...


Platforms: *nix

License: Freeware Size: 53.25 KB Download (100): XML::Sablotron::DOM Download

Released: September 18, 2012  |  Added: September 18, 2012 | Visits: 443

Xml Generator Query Language Xml Generator Query Language is a language whose purpose is to Generate Xml,Xhtml from Relational DB: No Xsl required, XQuery/Xpath, DB Independant.You can interpolate queries to create multilevel xml trees and insert custom tags.


Platforms: Windows, Mac, BSD, Linux

License: Freeware Size: 65.15 KB Download (52): Xml Generator Query Language Download

Released: October 01, 2012  |  Added: October 01, 2012 | Visits: 258

TinyXPath : tiny C++ XPath Small footprint C++ library to extract an XPath 1.0 expression from an XML tree. Uses the TinyXML project to parse XML trees and store intermediate results. Runs on any platform. Optional use of STL. Overhead less than 100KB, including TinyXML.


Platforms: Windows, Mac, BSD, Linux

License: Freeware Size: 108.47 KB Download (48): TinyXPath : tiny C++ XPath Download

Added: April 11, 2010 | Visits: 949

XML::Handler::Trees XML::Handler::Trees is a PerlSAX handlers for building tree structures. SYNOPSIS use XML::Handler::Trees; use XML::Parser::PerlSAX; my $p=XML::Parser::PerlSAX->new(); my $h=XML::Handler::Tree->new(); my $tree=$p->parse(Handler=>$h,Source=>{SystemId=>file.xml}); my...


Platforms: *nix

License: Freeware Size: 7.17 KB Download (100): XML::Handler::Trees Download

Added: November 18, 2010 | Visits: 1.008

XML::Generator::DOM XML::Generator::DOM is an XML::Generator subclass for producing DOM trees instead of strings. SYNOPSIS use XML::Generator::DOM; my $dg = XML::Generator::DOM->new(); my $doc = $dg->xml($dg->xmlcmnt("Test document."), $dg->foo({baz => bam}, 42)); print $doc->toString; yields: < ?xml...


Platforms: *nix

License: Freeware Size: 21.5 KB Download (118): XML::Generator::DOM Download

Added: August 25, 2013 | Visits: 529

Mini-XML for XML Tools Mini-XML is a small XML parsing library that you can use it to read XML and XML-like data files in your application without requiring large non-standard libraries. Mini-XML only requires an ANSI C compatible compiler (GCC works, as do most vendors' ANSI C compilers) and a 'make' program.Mini-XML...


Platforms: C and C plus plus

License: Freeware Size: 204.8 KB Download (43): Mini-XML for XML Tools Download

Added: July 07, 2010 | Visits: 773

XML::PatAct::ToObjects XML::PatAct::ToObjects is an action module for creating Perl objects. SYNOPSIS use XML::PatAct::ToObjects; my $patterns = [ PATTERN => [ OPTIONS ], PATTERN => "PERL-CODE", ... ]; my $matcher = XML::PatAct::ToObjects->new( Patterns => $patterns, Matcher => $matcher, CopyId => 1,...


Platforms: *nix

License: Freeware Size: 31.74 KB Download (93): XML::PatAct::ToObjects Download

Added: November 01, 2010 | Visits: 1.723

XML::LibXML::Reader XML::LibXML::Reader is a Perl interface to libxml2 pull parser. SYNOPSIS use XML::LibXML::Reader; $reader = new XML::LibXML::Reader("file.xml") or die "cannot read file.xmln"; while ($reader->read) { processNode($reader); } sub processNode { $reader = shift; printf "%d %d %s %dn",...


Platforms: *nix

License: Freeware Size: 256 KB Download (108): XML::LibXML::Reader 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: September 26, 2010 | Visits: 956

XML::RSS::Parser XML::RSS::Parser is a liberal object-oriented parser for RSS feeds. SYNOPSIS #!/usr/bin/perl -w use strict; use XML::RSS::Parser; use FileHandle; my $p = XML::RSS::Parser->new; my $fh = FileHandle->new(/path/to/some/rss/file); my $feed = $p->parse_file($fh); # output some values my...


Platforms: *nix

License: Freeware Size: 12.29 KB Download (93): XML::RSS::Parser Download

Added: April 11, 2010 | Visits: 618

XML::Xerces::DOMParse XML::Xerces::DOMParse is a Perl module for parsing DOMs. SYNOPSIS # Here;s an example that reads in an XML file from the # command line and then removes all formatting, re-adds # formatting and then prints the DOM back to a file. use XML::Xerces; use XML::Xerces::DOMParse; my $parser =...


Platforms: *nix

License: Freeware Size: 133.12 KB Download (93): XML::Xerces::DOMParse Download

Added: June 26, 2010 | Visits: 634

XML::DifferenceMarkup XML::DifferenceMarkup is a XML diff and merge. SYNOPSIS use XML::DifferenceMarkup qw(make_diff); $parser = XML::LibXML->new(); $parser->keep_blanks(0); $d1 = $parser->parse_file($fname1); $d2 = $parser->parse_file($fname2); $dom = make_diff($d1, $d2); print $dom->toString(1); This...


Platforms: *nix

License: Freeware Size: 57.34 KB Download (108): XML::DifferenceMarkup Download

Added: May 10, 2013 | Visits: 442

Align XML ElementTrees with original text Often when a program adds some XML markup to a plain-text document, it doesn't retain the original whitespace formatting. This script determines the character offsets the XML elements should have had in the original document.


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

License: Freeware Download (50): Align XML ElementTrees with original text Download

Added: April 27, 2013 | Visits: 435

XSH2 for XML Tools XSH2 is a powerfull command-line tool for querying, processing and editing XML documents. It features a shell-like interface with auto-completion for comfortable interactive work, but can be as well used for off-line (batch) processing of XML data. XSH makes extensive use of the XPath language,...


Platforms: CGI and Perl

License: Freeware Size: 7.88 MB Download (42): XSH2 for XML Tools Download

Added: August 21, 2013 | Visits: 396

XML::TreePuller XML::TreePuller is a Perl module that implements a tree oriented XML pull processor providing fast and convenient unmarshalling of extremely large XML documents serially. Unmarshalling means the module is intended to turn the XML document into datastructures, not transform it. Tree oriented...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (40): XML::TreePuller Download

Released: May 06, 2003  |  Added: September 20, 2006 | Visits: 4.108

Sydock XML Forms This program allows you to work with XML forms in the same way that you work with regular forms in text processors. It includes a WYSIWYG forms editor. The Extended Style Language consists of XSLT and CSS directions. Sydock XML Forms provides built-in realizations of XSLT and CSS subsets. And...


Platforms: Windows

License: Freeware Size: 6.06 MB Download (363): Sydock XML Forms Download

Released: May 09, 2003  |  Added: October 20, 2006 | Visits: 11.775

XML Viewer MindFusion's XML Viewer is used to examine the contents of an XML file in an easy-to-use environment. In addition you can make modification to the XML such as insering and deleting items as well as adding and deleting properties to existing items. MindFusion's XML Viewer offers you also...


Platforms: Windows

License: Freeware Size: 500 KB Download (1100): XML Viewer Download

Released: October 18, 2007  |  Added: October 28, 2007 | Visits: 6.162

Liquid XML Studio Liquid XML Studio is a FREE XML Schema Editor, and much more. Simple enough for new users to pick up quickly and comprehensive enough for experienced users deal with the advanced features of the XSD standard. A fully featured XML Development Studio:- - Graphical and Text based XML...


Platforms: Windows

License: Freeware Size: 9.4 MB Download (968): Liquid XML Studio Download

1 2 3 4 5 >