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

Asp Dynamic Xml freeware
Filter: All | Freeware | Demo
 

Asp Dynamic Xml

< 1 2 3 4 5 > 
Added: October 11, 2010 | Visits: 1.141

XML::Filter::Dispatcher::Compiler XML::Filter::Dispatcher::Compiler can compile rulesets in to code. SYNOPSIS use XML::Filter::Dispatcher::Compiler qw( xinline ); my $c = XML::Filter::Dispatcher::Compiler->new( ... ) my $code = $c->compile( Package => "My::Filter", Rules => [ a/b/c => xinline q{warn "found a/b/c"}, ],...



Platforms: *nix

License: Freeware Size: 88.06 KB Download (103): XML::Filter::Dispatcher::Compiler Download

Added: April 11, 2010 | Visits: 1.055

XML::Filter::DocSplitter XML::Filter::DocSplitter does multipass processing of documents. SYNOPSIS ## See XML::SAX::???? for an easier way to use this filter. use XML::SAX::Machines qw( Machine ) ; my $m = Machine( [ Intake => "XML::Filter::DocSplitter" => qw( Filter ) ], [ Filter => "My::Filter" => qw( Merger...





Platforms: *nix

License: Freeware Size: 43.01 KB Download (96): XML::Filter::DocSplitter Download

Added: January 23, 2010 | Visits: 880

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

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 (97): XML::SAX::Machine Download

Added: June 26, 2010 | Visits: 883

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

Added: April 22, 2010 | Visits: 806

XML::Filter::DataIndenter XML::Filter::DataIndenter is a SAX2 Indenter for data oriented XML. SYNOPSIS use XML::Filter::DataIndenter; use XML::SAX::Machines qw( Pipeline ); Pipeline( XML::Filter::DataIndenter => *STDOUT ); ALPHA CODE ALERT: This is the first release. Feedback and patches welcome. In data...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (88): XML::Filter::DataIndenter Download

Added: July 22, 2010 | Visits: 911

XML::Filter::Dispatcher XML::Filter::Dispatcher is a path based event dispatching with DOM support. SYNOPSIS use XML::Filter::Dispatcher qw( :all ); my $f = XML::Filter::Dispatcher->new( Rules => [ foo => &handle_foo_start_tag, @bar => &handle_bar_attr, ## Send any elts and their contents to $handler...


Platforms: *nix

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

Added: February 04, 2010 | Visits: 668

XML::ValidWriter XML::ValidWriter is DOCTYPE driven valid XML output. SYNOPSIS ## As a normal perl object: $writer = XML::ValidWriter->new( DOCTYPE => $xml_doc_type, OUTPUT => *FH ) ; $writer->startTag( b1 ) ; $writer->startTag( c2 ) ; $writer->end ; ## Writing to a scalar: $writer =...


Platforms: *nix

License: Freeware Size: 28.67 KB Download (93): XML::ValidWriter Download

Added: August 24, 2010 | Visits: 1.134

C++ xml C++ xml is a C++ library that provides an API for XML document handling. Similar to the JDOM Java interface, a XML document can be parsed, traced and generated by the provided methods. Furthermore, this library is a good example for the usage of the dragon parser generator. Installation:...


Platforms: *nix

License: Freeware Size: 194.56 KB Download (94): C++ xml Download

Added: May 26, 2010 | Visits: 1.653

XML Schema Standard Type Library XML Schema Standard Type Library, in short XSSTL, is a collection of universally-useful data types defined in the W3C XML Schema language. The provided types describe concepts such as email address, IP address, phone number, country code, US states, etc. To make all the types from XSSTL...


Platforms: *nix

License: Freeware Size: 11.26 KB Download (97): XML Schema Standard Type Library Download

Added: March 07, 2010 | Visits: 1.001

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: May 27, 2010 | Visits: 1.423

XML::WMM::ASX XML::WMM::ASX is a very simple OO interface to create Windows Media Metafile ASX. SYNOPSIS use XML::WMM::ASX $asx = new XML::WMM::ASX; This simple module allows you to create ASX file. METHODS The following methods are available: $asx = XML::WMM::ASX->new The constructor returns a...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (164): XML::WMM::ASX Download

Added: May 09, 2010 | Visits: 623

XML::NodeFilter XML::NodeFilter is a generic XML::NodeFilter Class. SYNOPSIS use XML::NodeFilter; my $filter = XML::NodeFilter->new(); $your_iterator->set_filter( $filter ); "Filters are objects that know how to "filter out" nodes. If a NodeIterator or a TreeWalker is given a NodeFilter, it applies the...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (87): XML::NodeFilter Download

Added: February 21, 2010 | Visits: 855

XML::Bare XML::Bare is a minimal XML parser implemented via a C state engine. SYNOPSIS use XML::Bare; my $xml = new XML::Bare( text => Bob ); # Parse the xml into a hash tree my $root = $xml->parse(); # Print the content of the name node print $root->{xml}->{name}->{value}; #...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (88): XML::Bare Download

Added: April 14, 2010 | Visits: 844

Bare XML Bare XML project is a XML parser with all primary parsing done via a simple state engine with about 20 or so different states. A tree structure is created during parsing, with all node names and values linked via pointers directly into the original text buffer. As such, Bare XML is extremely...


Platforms: *nix

License: Freeware Size: 24.58 KB Download (88): Bare XML Download

Added: February 12, 2010 | Visits: 1.113

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: June 27, 2010 | Visits: 1.041

The Epeios XML preprocessor 0.2.1 The Epeios XML preprocessor (expp in short) is a tool which transforms an XML file to another XML file, by using tags owned by a given namespace (xpp by default, but you can change it). This tags allow to handle macros, to affect value to variables ant to test their values, to include files, ......


Platforms: *nix

License: Freeware Size: 389.12 KB Download (90): The Epeios XML preprocessor 0.2.1 Download

Added: March 21, 2010 | Visits: 1.285

CAM::XML CAM::XML is an encapsulation of a simple XML data structure. SYNOPSIS my $pollTag = CAM::XML->new(poll); foreach my $q (@questions) { my $questionTag = CAM::XML->new(question); $questionTag->add(-text => $q->{text}); my $choicesTag = CAM::XML->new(choices); foreach my $c...


Platforms: *nix

License: Freeware Size: 22.53 KB Download (102): CAM::XML Download

Added: March 15, 2010 | Visits: 909

XML::EasySQL::XMLobj::Node XML::EasySQL::XMLobj::Node is a Perl module that contains a Node interface. Derived from a fork of Robert Hansons killer XML::EasyOBJ module, which offers Easy XML object navigation. METHODS makeNewNode( NEW_TAG ) Append a new element node to the current node. Takes the tag name as the...


Platforms: *nix

License: Freeware Size: 11.26 KB Download (87): XML::EasySQL::XMLobj::Node Download

Added: October 18, 2010 | Visits: 855

XML::EasySQL XML::EasySQL is a two-way SQL/XML base class for Perl. SYNOPSIS ... # fetch a database row as hash ref my $data = $db->selectrow_hashref(select * from users where id = 2); # init the new EasySQL data object my $data_object = EasySqlChildClass->new({data=>$data}); # get the root XML...


Platforms: *nix

License: Freeware Size: 11.26 KB Download (89): XML::EasySQL Download

< 1 2 3 4 5 >