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

Xml Slide Element freeware
Filter: All | Freeware | Demo
 

Xml Slide Element

< 1 2 3 4 5 > 
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: April 11, 2010 | Visits: 734

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: March 21, 2010 | Visits: 821

Any::Renderer::XML Any::Renderer::XML Perl module can render a data structure as element-only XML. SYNOPSIS use Any::Renderer; my %xml_options = (); my %options = ( XmlOptions => %xml_options ); my $format = "XML"; my $r = new Any::Renderer ( $format, %options ); my $data_structure = [...]; # arbitrary...


Platforms: *nix

License: Freeware Size: 23.55 KB Download (98): Any::Renderer::XML Download

Added: April 17, 2010 | Visits: 1.241

XML::TMX::Writer XML::TMX::Writer is a Perl extension for writing TMX files. SYNOPSIS use XML::TMX::Writer; my $tmx = new XML::TMX::Writer(); $tmx->start_tmx(ID => paulojjs); $tmx->add_tu(SRCLANG => en, en => some text, pt => algum texto); $tmx->add_tu(SRCLANG => en, en => some text, pt => algum...


Platforms: *nix

License: Freeware Size: 15.36 KB Download (132): XML::TMX::Writer Download

Added: July 19, 2010 | Visits: 695

XML::Filter::DOMFilter::LibXML XML::Filter::DOMFilter::LibXML is a SAX Filter allowing DOM processing of selected subtrees. SYNOPSIS use XML::LibXML; use XML::Filter::DOMFilter::LibXML; my $filter = XML::Filter::DOMFilter::LibXML->new( Handler => $handler, XPathContext => XML::LibXML::XPathContext->new(), Process =>...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (89): XML::Filter::DOMFilter::LibXML Download

Added: November 05, 2010 | Visits: 899

XML::EasySQL::XMLobj XML::EasySQL::XMLobj is a Fork of Robert Hansons killer XML::EasyOBJ module, which offers Easy XML object navigation. SYNOPSIS XML::EasySQL::XMLobj is a fork of Robert Hansons XML::EasyOBJ module. The goal of the fork was to simplify inheritance issues. However, easy inheritance comes at a...


Platforms: *nix

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

Added: March 12, 2010 | Visits: 675

XML::EasyOBJ XML::EasyOBJ is an easy XML object navigation. SYNOPSIS # open exisiting file my $doc = new XML::EasyOBJ(my_xml_document.xml); my $doc = new XML::EasyOBJ(-type => file, -param => my_xml_document.xml); # create object from XML string my $doc = new XML::EasyOBJ(-type => string, -param =>...


Platforms: *nix

License: Freeware Size: 25.6 KB Download (90): XML::EasyOBJ Download

Added: May 02, 2010 | Visits: 709

XML::DOM::Text XML::DOM::Text is a piece of XML text in XML::DOM. XML::DOM::Text extends XML::DOM::CharacterData, which extends XML::DOM::Node. The Text interface represents the textual content (termed character data in XML) of an Element or Attr. If there is no markup inside an elements content, the text...


Platforms: *nix

License: Freeware Size: 112.64 KB Download (100): XML::DOM::Text Download

Added: August 25, 2013 | Visits: 529

Mini-XML for XML Tools Mini-XML is a small XML parsing library that you can use it to read XML and XML-like data files in your application without requiring large non-standard libraries. Mini-XML only requires an ANSI C compatible compiler (GCC works, as do most vendors' ANSI C compilers) and a 'make' program.Mini-XML...


Platforms: C and C plus plus

License: Freeware Size: 204.8 KB Download (43): Mini-XML for XML Tools Download

Added: August 21, 2013 | Visits: 396

XML::TreePuller XML::TreePuller is a Perl module that implements a tree oriented XML pull processor providing fast and convenient unmarshalling of extremely large XML documents serially. Unmarshalling means the module is intended to turn the XML document into datastructures, not transform it. Tree oriented...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (40): XML::TreePuller Download

Added: January 18, 2010 | Visits: 937

XML::DocStats XML::DocStats is a Perl module to produce a simple analysis of an XML document. SYNOPSIS Analyze the xml document on STDIN, the STDOUT output format is html: use XML::DocStats; my $parse = XML::DocStats->new; $parse->analyze; Analyze in-memory xml document: use XML::DocStats; my...


Platforms: *nix

License: Freeware Size: 27.65 KB Download (88): XML::DocStats Download

Added: June 20, 2010 | Visits: 1.137

XML::Descent XML::Descent is a Perl module for recursive descent XML parsing. SYNOPSIS use XML::Descent; # Create parser my $p = XML::Descent->new({ Input => $xml }); # Setup handlers $p->on(folder => sub { my ($elem, $attr) = @_; $p->on(url => sub { my ($elem, $attr) = @_; my $link = { name...


Platforms: *nix

License: Freeware Size: 9.22 KB Download (93): XML::Descent Download

Added: September 24, 2010 | Visits: 968

Template::Plugin::XML::DOM Template::Plugin::XML::DOM is a plugin interface to XML::DOM. SYNOPSIS # load plugin [% USE dom = XML.DOM %] # also provide XML::Parser options [% USE dom = XML.DOM(ProtocolEncoding = ISO-8859-1) %] # parse an XML file [% doc = dom.parse(filename) %] [% doc = dom.parse(file =...


Platforms: *nix

License: Freeware Size: 26.62 KB Download (99): Template::Plugin::XML::DOM Download

Added: April 23, 2010 | Visits: 812

XML::Literal XML::Literal is a Perl module with syntax support for XML literals. SYNOPSIS # This is not a source filter: it just augments glob(). use XML::Simple; use XML::Literal &XMLin; # Simple element my $xml1 = < hr/ >; # With variable interpolation my $xml2 = < input value=$ARGV[0] / >; #...


Platforms: *nix

License: Freeware Size: 24.58 KB Download (94): XML::Literal 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: 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: February 12, 2010 | Visits: 1.116

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

Added: August 19, 2010 | Visits: 695

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: October 14, 2010 | Visits: 897

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 (89): Test::XML::XPath Download

< 1 2 3 4 5 >