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

Enigma Xml freeware
Filter: All | Freeware | Demo
 

Enigma Xml

< 1 2 3 4 5 > 
Added: May 09, 2010 | Visits: 621

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

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

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

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 (99): XML::Parser::Style::Stream Download

Added: June 27, 2010 | Visits: 1.034

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

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 (101): CAM::XML Download

Added: March 15, 2010 | Visits: 905

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

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

Added: August 19, 2010 | Visits: 692

XML::SimpleObject::LibXML XML::SimpleObject::LibXML is a Perl extension allowing a simple(r) object representation of an XML::LibXML DOM object. SYNOPSIS use XML::SimpleObject::LibXML; # Construct with the key/value pairs as argument; this will create its # own XML::LibXML object. my $xmlobj = new...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (88): XML::SimpleObject::LibXML Download

Added: April 11, 2010 | Visits: 729

XML::SimpleObject XML::SimpleObject is a Perl extension allowing a simple object representation of a parsed XML::Parser tree. SYNOPSIS use XML::SimpleObject; # Construct with the key/value pairs as argument; this will create its # own XML::Parser object. my $xmlobj = new XML::SimpleObject(XML => $XML,...


Platforms: *nix

License: Freeware Size: 11.26 KB Download (93): XML::SimpleObject Download

Added: September 22, 2010 | Visits: 831

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 (165): XML::WBXML Download

Added: January 27, 2010 | Visits: 1.037

XML::Writer XML::Writer is a Perl extension for writing XML documents. SYNOPSIS use XML::Writer; use IO::File; my $output = new IO::File(">output.xml"); my $writer = new XML::Writer(OUTPUT => $output); $writer->startTag("greeting", "class" => "simple"); $writer->characters("Hello, world!");...


Platforms: *nix

License: Freeware Size: 22.53 KB Download (90): XML::Writer Download

Added: January 15, 2010 | Visits: 702

DBIx::XML::DataLoader DBIx::XML::DataLoader contains a set of modules that are meant to work together. DBIx::XML::DataLoader.pm the core for this package DB.pm which contains the sql specific stuff MapIt.pm handles parsing the xml mapping file IsDefined.pm a simple module for making sure empty data sets are defined...


Platforms: *nix

License: Freeware Size: 25.6 KB Download (94): DBIx::XML::DataLoader Download

Added: October 14, 2010 | Visits: 892

Test::XML::XPath Test::XML::XPath is a Perl module to test XPath assertions. SYNOPSIS use Test::XML::XPath tests => 3; like_xpath( , /foo ); # PASS like_xpath( , /bar ); # FAIL unlike_xpath( , /bar ); # PASS is_xpath( bar , /foo, bar ); # PASS is_xpath( bar , /bar, foo ); # FAIL # More...


Platforms: *nix

License: Freeware Size: 9.22 KB Download (88): Test::XML::XPath Download

Added: October 17, 2010 | Visits: 632

XML::Genx::Simple XML::Genx::Simple is a slightly simpler wrapper class for genx. SYNOPSIS use XML::Genx::Simple; my $w = XML::Genx::Simple->new; eval { # bar $w->StartDocFile( *STDOUT ); $w->StartElementLiteral( root ); $w->Element( foo => bar, id => 1 ); $w->EndElement; $w->EndDocument; };...


Platforms: *nix

License: Freeware Size: 37.89 KB Download (88): XML::Genx::Simple Download

Added: July 07, 2010 | Visits: 711

XML::Genx XML::Genx is a simple, correct XML writer. SYNOPSIS use XML::Genx; my $w = XML::Genx->new; eval { # < foo >bar< /foo > $w->StartDocFile( *STDOUT ); $w->StartElementLiteral( foo ); $w->AddText( bar ); $w->EndElement; $w->EndDocument; }; die "Writing XML failed: $@" if $@; This...


Platforms: *nix

License: Freeware Size: 37.89 KB Download (101): XML::Genx Download

Added: June 10, 2010 | Visits: 1.068

XML Hammer 1.0 XML Hammer application is a free and open-source tool that simplifies elementary XML actions like checking for well-formedness, validation, transformation and xpath searches using any JAXP implementation. After all these years of XML, it is still relatively difficult to simply validate or...


Platforms: *nix

License: Freeware Size: 4.2 MB Download (89): XML Hammer 1.0 Download

Added: April 17, 2010 | Visits: 940

XML::UM XML::UM is a Perl module to convert UTF-8 strings to any encoding supported by XML::Encoding. SYNOPSIS use XML::UM; # Set directory with .xml files that comes with XML::Encoding distribution # Always include the trailing slash! $XML::UM::ENCDIR =...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (93): XML::UM Download

Added: November 03, 2010 | Visits: 881

XML::DOM::DocumentType XML::DOM::DocumentType is an XML document type (DTD) in XML::DOM. XML::DOM::DocumentType extends XML::DOM::Node. Each Document has a doctype attribute whose value is either null or a DocumentType object. The DocumentType interface in the DOM Level 1 Core provides an interface to the list of...


Platforms: *nix

License: Freeware Size: 112.64 KB Download (88): XML::DOM::DocumentType Download

Added: June 05, 2010 | Visits: 1.103

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 (104): XML::Checker::Parser Download

< 1 2 3 4 5 >