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

Sax Drivers freeware
Filter: All | Freeware | Demo
 

Sax Drivers

1 2 3 4 5 > 
Added: August 05, 2010 | Visits: 1.102

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: April 04, 2010 | Visits: 893

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: June 24, 2010 | Visits: 1.302

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: March 27, 2010 | Visits: 1.611

Emulex Linux Drivers Emulex Linux Drivers package provides the sources for Emulexs LPFC (LightPulse Fibre Channel) family of HBAs. The source base is developed and tested specifically for the 2.6 Linux kernel. This Emulex driver is derived from Emulexs currently shipping driver which supports several application... Platforms: *nix

License: Freeware Size: 174.08 KB Download (122): Emulex Linux Drivers Download

Added: August 15, 2010 | Visits: 755

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

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: August 27, 2010 | Visits: 818

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

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

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

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

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

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

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

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

Added: November 05, 2013 | Visits: 613

Epson Printer Drivers About Epson Printer Drivers v2.2 for Mac OS X v10.6.1 This download includes the latest Epson printing and scanning software for Snow Leopard. Platforms: Mac

License: Freeware Size: 686.08 KB Download (42): Epson Printer Drivers Download

Added: July 21, 2013 | Visits: 669

Linux drivers for Xilinx MailBox IP Development of Linux drivers for Xilinx MailBox IP. MailBox IP is a bi-directionnal FIFO plugged between two buses, allowing sending messages from one bus to the other, in both directions. Platforms: *nix

License: Freeware Size: 10.24 KB Download (35): Linux drivers for Xilinx MailBox IP Download

Added: November 10, 2010 | Visits: 1.114

libdbi-drivers libdbi implements a database-independent abstraction layer in C, similar to the DBI/DBD layer in Perl. Writing one generic set of code, programmers can leverage the power of multiple databases and multiple simultaneous database connections by using this framework. The libdbi-drivers project... Platforms: *nix

License: Freeware Size: 952.32 KB Download (111): libdbi-drivers Download

Added: January 25, 2010 | Visits: 1.629

Lexmark Drivers Lexmark Drivers contains the printer drivers that support the following models: Lexmark C720, Lexmark Optra C710, Lexmark Optra E312L, Lexmark Optra E312, Lexmark Optra M412, Lexmark Optra T610, Lexmark Optra T612, Lexmark Optra T614, Lexmark Optra T616, Lexmark Optra W810, Lexmark Optra M410,... Platforms: Mac

License: Freeware Size: 4.7 MB Download (378): Lexmark Drivers Download

Added: January 25, 2010 | Visits: 1.001

Brother CUPS Drivers Brother CUPS Drivers contains the printing drivers needed for your Brother-brand printers and SOHO devices. Platforms: Mac

License: Freeware Size: 14.4 MB Download (122): Brother CUPS Drivers Download

1 2 3 4 5 >