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

Sax freeware
Filter: All | Freeware | Demo
 

Sax

1 2 3 4 5 > 
Added: June 24, 2010 | Visits: 1.296

XML::SAX::Machine XML::SAX::Machine is a Perl module that can manage a collection of SAX processors. SYNOPSIS ## Note: See XML::SAX::Pipeline and XML::SAX::Machines first, ## this is the gory, detailed interface. use My::SAX::Machines qw( Machine ); use My::SAX::Filter2; use My::SAX::Filter3; my...



Platforms: *nix

License: Freeware Size: 43.01 KB Download (103): XML::SAX::Machine Download

Added: August 05, 2010 | Visits: 1.097

XML::SAX::Base XML::SAX::Base is a base Perl class with SAX Drivers and Filters. SYNOPSIS package MyFilter; use XML::SAX::Base; @ISA = (XML::SAX::Base); This module has a very simple task - to be a base class for PerlSAX drivers and filters. Its default behaviour is to pass the input directly to the...





Platforms: *nix

License: Freeware Size: 20.48 KB Download (100): XML::SAX::Base Download

Added: August 15, 2010 | Visits: 752

Pod::SAX Pod::SAX is a SAX parser for Pod. SYNOPSIS my $h = XML::SAX::Writer->new(); my $p = Pod::SAX->new( Handler => $h ); $p->parse_uri(perlpodspec.pod); Very simply, this module parses POD (or perl) files and turns the Plain Old Documentation into SAX events (which often youll use to turn into...


Platforms: *nix

License: Freeware Size: 14.34 KB Download (88): Pod::SAX Download

Added: March 16, 2010 | Visits: 878

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: March 14, 2010 | Visits: 814

XML::SAX::Simple XML::SAX::Simple is a SAX version of XML::Simple. SYNOPSIS use XML::SAX::Simple qw(XMLin XMLout); my $hash = XMLin("foo.xml"); XML::SAX::Simple is a very simple version of XML::Simple but for SAX. It can be used as a complete drop-in replacement for XML::Simple. See the documentation for...


Platforms: *nix

License: Freeware Size: 16.38 KB Download (94): XML::SAX::Simple Download

Added: April 04, 2010 | Visits: 889

XML::SAX XML::SAX is a simple API for XML. SYNOPSIS use XML::SAX; # get a list of known parsers my $parsers = XML::SAX->parsers(); # add/update a parser XML::SAX->add_parser(q(XML::SAX::PurePerl)); # remove parser XML::SAX->remove_parser(q(XML::SAX::Foodelberry)); # save parsers...


Platforms: *nix

License: Freeware Size: 58.37 KB Download (95): XML::SAX Download

Added: August 27, 2010 | Visits: 813

Tree::Simple::SAX Tree::Simple::SAX is a set of classes for using Tree::Simple with XML. SYNOPSIS use Tree::Simple::SAX; use XML::SAX::ParserFactory; my $handler = Tree::Simple::SAX::Handler->new(Tree::Simple->new()); my $p = XML::SAX::ParserFactory->parser(Handler => $handler); $p->parse_string(...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (94): Tree::Simple::SAX Download

Added: July 13, 2010 | Visits: 1.005

iCal::Parser::SAX iCal::Parser::SAX is a Perl module to generate SAX events from an iCalendar. SYNOPSIS use iCal::Parser::SAX; my $parser=iCal::Parser::SAX->new(Handler=>SAXHandler,%args); $parser->parse_uri($file); $parser->parse_uris(@files); This module uses iCal::Parser to generates SAX events for the...


Platforms: *nix

License: Freeware Size: 22.53 KB Download (93): iCal::Parser::SAX Download

Added: October 15, 2010 | Visits: 889

XML::SAX::Writer XML::SAX::Writer is a Perl module with SAX2 Writer. SYNOPSIS use XML::SAX::Writer; use XML::SAX::SomeDriver; my $w = XML::SAX::Writer->new; my $d = XML::SAX::SomeDriver->new(Handler => $w); $d->parse(some options...); Why yet another XML Writer ? A new XML Writer was needed to match...


Platforms: *nix

License: Freeware Size: 12.29 KB Download (105): XML::SAX::Writer Download

Added: October 23, 2010 | Visits: 739

XML::SAX::ByRecord XML::SAX::ByRecord can record oriented processing of (data) documents. SYNOPSIS use XML::SAX::Machines qw( ByRecord ) ; my $m = ByRecord( "My::RecordFilter1", "My::RecordFilter2", ... { Handler => $h, ## optional } ); $m->parse_uri( "foo.xml" ); XML::SAX::ByRecord is a SAX...


Platforms: *nix

License: Freeware Size: 43.01 KB Download (89): XML::SAX::ByRecord Download

Added: May 10, 2013 | Visits: 363

Multiple handlers for xml.sax parser SAX is commonly used on large XML files because they don't fit nicely into core memory necessary for the friendlier DOM API. When dealing with -really- large XML files, multiple passes over the file becomes costly. The SAX handler in this script allows you to handle an XML file multiple ways in...


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

License: Freeware Download (49): Multiple handlers for xml.sax parser Download

Added: May 10, 2013 | Visits: 528

A SAX filter for normalizing text events SAX parser can report contiguous text using multiple characters events. This is often unexpected and can cause obscure bugs or require complicated adjustments to SAX handlers. By inserting text_normalize_filter into the SAX handler chain all downstream parsers are ensured that all text nodes in...


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

License: Freeware Download (51): A SAX filter for normalizing text events Download

Added: May 10, 2013 | Visits: 345

SAX to DOM Chunker This module is similar to pulldom in that it takes a stream of SAX objects and breaks it down into chunks of DOM. The differences are that it works with any DOM implementation meeting the Python DOM conventions, and that it uses simple pattern expressions to declaratively set how the DOM chunks...


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

License: Freeware Download (54): SAX to DOM Chunker Download

Added: May 10, 2013 | Visits: 527

Sax Filters This is a set of classes implementing SAX filters, the classes include a SAX class to parse XML documents using Expat and defines a way to create SAX filters to perform SAX- based queries, updates and transformations of documents. Simple filters can be chained to construct augmented complex XML...


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

License: Freeware Download (57): Sax Filters Download

Released: December 24, 2012  |  Added: December 24, 2012 | Visits: 317

SAX for .NET SAX for .NET is a C# port of the original Java based SAX API specifications. When compiled into a .NET assembly it becomes available to the other .NET languages as well.


Platforms: Windows, Mac, Linux

License: Freeware Size: 4 MB Download (54): SAX for .NET Download

Released: October 20, 2012  |  Added: October 20, 2012 | Visits: 591

Sax for PHP (Sax4PHP) A little PHP library for programming with Sax XML API like in Java.


Platforms: Windows, Mac, Linux

License: Freeware Size: 133.19 KB Download (47): Sax for PHP (Sax4PHP) Download

Released: August 05, 2012  |  Added: August 05, 2012 | Visits: 604

SAXY - A SAX XML parser for PHP SAXY is a Simple API for XML (SAX) parser for PHP, written purely in PHP. It is lightweight, fast, and modelled on the Expat parser.


Platforms: Windows, Mac, Linux

License: Freeware Size: 39.01 KB Download (54): SAXY - A SAX XML parser for PHP Download

Added: June 18, 2010 | Visits: 1.099

Apache::AxKit::Language::SAXMachines Apache::AxKit::Language::SAXMachines is a Perl module that can transform Content With SAX Filters. SYNOPSIS # add the style processor mapping AxAddStyleMap application/x-saxmachines Apache::AxKit::Language::SAXMachines # add the processor AxAddProcessor application/x-saxmachines . #...


Platforms: *nix

License: Freeware Size: 307.2 KB Download (95): Apache::AxKit::Language::SAXMachines Download

Added: January 23, 2010 | Visits: 881

XML::Filter::Tee XML::Filter::Tee can send SAX events to multiple processor, with switching. SYNOPSIS my $t = XML::Filter::Tee->new( { Handler => $h0 }, { Handler => $h1 }, { Handler => $h2 }, ... ); ## Altering the handlers list: $t->set_handlers( $h0, $h1, $h2, $h3 ); ## Controlling flow to a...


Platforms: *nix

License: Freeware Size: 43.01 KB Download (106): XML::Filter::Tee Download

Added: June 26, 2010 | Visits: 887

XML::Filter::Dispatcher::AsStructHandler XML::Filter::Dispatcher::AsStructHandler Perl module can help you convert SAX stream in to simple, data-oriented structure. SYNOPSIS ## Ordinarily used via the XML::Filter::Dispatchers as_data_struct() ## built-in extension function for XPath This SAX2 handler builds a simple hash from...


Platforms: *nix

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

1 2 3 4 5 >