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

Expat freeware
Filter: All | Freeware | Demo
 

Expat

1 2 3 > 
Added: May 03, 2010 | Visits: 1.136

libSpiff libSpiff library brings XSPF playlist reading and writing support to your C++ application. Both version 0 and 1 are supported. libSpiff uses Expat for XML parsing and CppTest for unit testing. libSpiff is the official reference implementation for XSPF of the Xiph.Org Foundation..



Platforms: *nix

License: Freeware Size: 593.92 KB Download (263): libSpiff Download

Added: September 22, 2010 | Visits: 838

XML::WBXML XML::WBXML is a Perl module to convert between XML and WBXML using libwbxml2. SYNOPSIS use XML::WBXML; $wbxml = XML::WBXML::xml_to_wbxml($xml); $xml = XML::WBXML::wbxml_to_xml($wbxml); This module is a wrapper around Aymerick Jehannes libwbxml (or perhaps libwbxml2, I am not sure what...





Platforms: *nix

License: Freeware Size: 52.22 KB Download (171): XML::WBXML Download

Added: June 06, 2010 | Visits: 1.225

SVG::Parser SVG::Parser is a Perl module with XML Parser for SVG documents. SYNOPSIS #!/usr/bin/perl -w use strict; use SVG::Parser; die "Usage: $0 n" unless @ARGV; my $xml; { local $/=undef; $xml=<>; } my $parser=new SVG::Parser(-debug => 1); my $svg=$parser->parse($xml); print...


Platforms: *nix

License: Freeware Size: 14.34 KB Download (146): SVG::Parser Download

Added: September 25, 2010 | Visits: 776

mod_xml mod_xml is an XML applications development environment for Apache 2.0. mod_xmls primary purpose is to provide a powerful, full-featured opensource platform for Webservices and XML applications. Written in C (and possibly C++, depending on the XML library used) and fully integrated into Apache,...


Platforms: *nix

License: Freeware Size: 30.72 KB Download (117): mod_xml Download

Added: August 23, 2010 | Visits: 1.036

PXR::Parser PXR::Parser is a Pure Perl SAX XML Push Parser. SYNOPSIS use PXR::Parser; my $parser = PXR::Parser->new( Handlers => { startDocument => &start_doc, endDocument => &end_doc, startElement => &start_element, endElement => &end_element, characters => &characters, } );...


Platforms: *nix

License: Freeware Size: 16.38 KB Download (111): PXR::Parser Download

Added: June 05, 2010 | Visits: 1.117

XML::Checker::Parser XML::Checker::Parser is an XML::Parser that validates at parse time. SYNOPSIS use XML::Checker::Parser; my %expat_options = (KeepCDATA => 1, Handlers => [ Unparsed => &my_Unparsed_handler ]); my $parser = new XML::Checker::Parser (%expat_options); eval { local $XML::Checker::FAIL =...


Platforms: *nix

License: Freeware Size: 368.64 KB Download (110): XML::Checker::Parser Download

Added: February 12, 2010 | Visits: 1.123

XML::Parser::Style::Stream XML::Parser::Style::Stream is a Stream style for XML::Parser. SYNOPSIS use XML::Parser; my $p = XML::Parser->new(Style => Stream, Pkg => MySubs); $p->parsefile(foo.xml); { package MySubs; sub StartTag { my ($e, $name) = @_; # do something with start tags } sub EndTag { my ($e,...


Platforms: *nix

License: Freeware Size: 225.28 KB Download (105): XML::Parser::Style::Stream Download

Added: May 10, 2013 | Visits: 694

PHP AnyXML AnyXML is an XML read-only class which offers PHP5 SimpleXML's capabilities on ANY host, even if PHP4 and/or without the expat extension; AnyXML will always choose the best available library to offer its functionality. Your solution to PHP XML messes.


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

License: Freeware Download (104): PHP AnyXML Download

Added: May 10, 2013 | Visits: 1.655

libConfig Libconfig is a simple library for processing structured configuration files, like this one: test.cfg. This file format is more compact and more readable than XML. And unlike XML, it is type-aware, so it is not necessary to do string parsing in application code. Libconfig is very compact * just...


Platforms: Windows, Mac, *nix, C/C++, BSD Solaris

License: Freeware Download (103): libConfig Download

Added: July 19, 2010 | Visits: 1.024

Parsifal XML Parser Parsifal is a validating XML 1.0 parser written in ANSI C. Parsifal API is based on SAX2. Parsifal can be used for parsing XML based messages (such as REST and RSS) and for application specific data processing e.g. config files, data files etc. Parsifal can also be used for document-oriented...


Platforms: *nix

License: Freeware Size: 757.76 KB Download (103): Parsifal XML Parser Download

Added: January 18, 2010 | Visits: 972

RDFStore::Parser::SiRPAC RDFStore::Parser::SiRPAC is a Perl module that implements a streaming RDF Parser as a direct implementation of XML::Parser::Expat. SYNOPSIS use RDFStore::Parser::SiRPAC; use RDFStore::NodeFactory; my $p=new RDFStore::Parser::SiRPAC( ErrorContext => 2, Handlers => { Init => sub { print...


Platforms: *nix

License: Freeware Size: 481.28 KB Download (102): RDFStore::Parser::SiRPAC Download

Added: March 16, 2010 | Visits: 881

XML::SAX::Intro XML::SAX::Intro is an Introduction to SAX Parsing with Perl. XML::SAX is a new way to work with XML Parsers in Perl. In this article well discuss why you should be using SAX, why you should be using XML::SAX, and well see some of the finer implementation details. The text below assumes some...


Platforms: *nix

License: Freeware Size: 58.37 KB Download (101): XML::SAX::Intro Download

Added: October 06, 2010 | Visits: 841

RNV RNV is an implementation of Relax NG Compact Syntax validator. It is written in ANSI C and the command-line utility uses Expat. The project is a part of an on-going work, and the current code may have bugs and shortcomings; however, it validates documents against a number of grammars. Usage:...


Platforms: *nix

License: Freeware Size: 184.32 KB Download (98): RNV Download

Added: November 24, 2010 | Visits: 874

XML::Parser XML::Parser is a perl module for parsing XML documents. SYNOPSIS use XML::Parser; $p1 = new XML::Parser(Style => Debug); $p1->parsefile(REC-xml-19980210.xml); $p1->parse( Hello World ); # Alternative $p2 = new XML::Parser(Handlers => {Start => &handle_start, End => &handle_end,...


Platforms: *nix

License: Freeware Size: 225.28 KB Download (98): XML::Parser Download

Added: September 22, 2010 | Visits: 1.044

XhtmlValidator.php XhtmlValidator.php can be used to validate XHTML documents. It uses only the expat extension functions always available under since PHP 3 and it does not need other external XML processing extensions. This validator is part of the Akelos Framework and is enabled by default when the framework is...


Platforms: *nix

License: Freeware Size: 7.17 KB Download (97): XhtmlValidator.php Download

Added: January 27, 2010 | Visits: 931

Jabberlang Jabberlang is a client XMPP and Jabber library for Erlang to implement scalable fault-tolerant XMPP/Jabber agents. The first version has been presented during Erlang User Conference (EUC 2004). For now, it still only supports a minimal subset of the Jabber/XMPP protocol but many changes are...


Platforms: *nix

License: Freeware Size: 1003.52 KB Download (97): Jabberlang Download

Added: March 02, 2010 | Visits: 827

XML::DOM XML::DOM is a perl module for building DOM Level 1 compliant document structures. SYNOPSIS use XML::DOM; my $parser = new XML::DOM::Parser; my $doc = $parser->parsefile ("file.xml"); # print all HREF attributes of all CODEBASE elements my $nodes = $doc->getElementsByTagName...


Platforms: *nix

License: Freeware Size: 143.36 KB Download (97): XML::DOM Download

Added: July 13, 2010 | Visits: 946

Cobex Cobex is a small implementation of the OBEX communication protocol for slow serial cables. Its primary use is to communicate with cell phones such as the Sony Ericsson T610, T310, and T300. Currently the project consists of a couple of headerfiles and some sourcefiles, which results in a small...


Platforms: *nix

License: Freeware Size: 26.62 KB Download (96): Cobex Download

Added: July 24, 2010 | Visits: 759

SXP SXP stands for Simple XML Persistence, and is a quick-and-dirty C++ library I threw together. It provides a simple (I hope) mechanism for enabling the objects in your application to persist themselves (i.e. read from and write to) to a XML file. SXP is built as a C++ wrapper around James Clarks...


Platforms: *nix

License: Freeware Size: 20.48 KB Download (94): SXP Download

Added: May 02, 2010 | Visits: 838

Expat Expat is a stream-oriented XML parser written in C. This means that you register handlers with the parser before starting the parse. These handlers are called when the parser discovers the associated structures in the document being parsed. A start tag is an example of the kind of structures...


Platforms: *nix

License: Freeware Size: 317.44 KB Download (91): Expat Download

1 2 3 >