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 24.461.756 Times

Fre Sax freeware
Filter: All | Freeware | Demo
Display by: Relevance |  Downloads |  Name

Fre Sax

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

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: Linux

License: Freeware Cost: $0.00 USD Size: 43.01 KB Download (47): XML::SAX::Machine Download

Added: August 05, 2010 | Visits: 299

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: Linux

License: Freeware Cost: $0.00 USD Size: 20.48 KB Download (48): XML::SAX::Base Download

Added: August 15, 2010 | Visits: 324

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: Linux

License: Freeware Cost: $0.00 USD Size: 14.34 KB Download (44): Pod::SAX Download

Added: March 16, 2010 | Visits: 293

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: Linux

License: Freeware Cost: $0.00 USD Size: 58.37 KB Download (52): XML::SAX::Intro Download

Added: March 14, 2010 | Visits: 411

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: Linux

License: Freeware Cost: $0.00 USD Size: 16.38 KB Download (51): XML::SAX::Simple Download

Added: April 04, 2010 | Visits: 381

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: Linux

License: Freeware Cost: $0.00 USD Size: 58.37 KB Download (52): XML::SAX Download

Added: August 27, 2010 | Visits: 288

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: Linux

License: Freeware Cost: $0.00 USD Size: 4.1 KB Download (44): Tree::Simple::SAX Download

Added: July 13, 2010 | Visits: 382

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: Linux

License: Freeware Cost: $0.00 USD Size: 22.53 KB Download (47): iCal::Parser::SAX Download

Added: October 15, 2010 | Visits: 378

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: Linux

License: Freeware Cost: $0.00 USD Size: 12.29 KB Download (61): XML::SAX::Writer Download

Added: October 23, 2010 | Visits: 257

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: Linux

License: Freeware Cost: $0.00 USD Size: 43.01 KB Download (43): XML::SAX::ByRecord Download

Added: May 10, 2013 | Visits: 1

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 a...


Platforms: Windows, Macintosh, *nix, Mac OSX, Linux, Python, BSD Solaris

License: Freeware Cost: $0.00 USD Download (0): Multiple handlers for xml.sax parser Download

Added: May 10, 2013 | Visits: 1

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, Macintosh, *nix, Mac OSX, Linux, Python, BSD Solaris

License: Freeware Cost: $0.00 USD Download (0): A SAX filter for normalizing text events Download

Added: May 10, 2013 | Visits: 1

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, Macintosh, *nix, Mac OSX, Linux, Python, BSD Solaris

License: Freeware Cost: $0.00 USD Download (0): SAX to DOM Chunker Download

Added: May 10, 2013 | Visits: 1

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, Macintosh, *nix, Mac OSX, Linux, PHP, BSD Solaris

License: Freeware Cost: $0.00 USD Download (1): Sax Filters Download

Added: June 18, 2010 | Visits: 261

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: Linux

License: Freeware Cost: $0.00 USD Size: 307.2 KB Download (44): Apache::AxKit::Language::SAXMachines Download

Added: January 23, 2010 | Visits: 303

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: Linux

License: Freeware Cost: $0.00 USD Size: 43.01 KB Download (46): XML::Filter::Tee Download

Added: June 26, 2010 | Visits: 222

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: Linux

License: Freeware Cost: $0.00 USD Size: 88.06 KB Download (48): XML::Filter::Dispatcher::AsStructHandler Download

Added: July 01, 2010 | Visits: 430

XML::Filter::Sort XML::Filter::Sort is a SAX filter for sorting elements in XML. SYNOPSIS use XML::Filter::Sort; use XML::SAX::Machines qw( :all ); my $sorter = XML::Filter::Sort->new( Record => person, Keys => [ [ lastname, alpha, asc ], [ firstname, alpha, asc ], [ @age, num, desc] ], ); my...


Platforms: Linux

License: Freeware Cost: $0.00 USD Size: 25.6 KB Download (63): XML::Filter::Sort Download

Added: February 19, 2010 | Visits: 261

XML::SAX2Perl XML::SAX2Perl is a Perl module to translate Perl SAX methods to Java/CORBA style methods. SYNOPSIS use XML::Perl2SAX; $perl2sax = XML::Perl2SAX(handler => $java_style_handler); XML::Perl2SAX is a SAX filter that translates Perl style SAX methods to Java/CORBA style method calls. This...


Platforms: Linux

License: Freeware Cost: $0.00 USD Size: 64.51 KB Download (44): XML::SAX2Perl Download

Added: February 01, 2010 | Visits: 366

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


Platforms: Linux

License: Freeware Cost: $0.00 USD Size: 32.77 KB Download (50): Data::DPath::Builder Download

1 2 3 4 5 > 
Home  | About Us  | Privacy  | Disclaimer  | Link to Us  | Contact Us  | Top Searches  | Submit Software
File Transit © 1998-2012