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

Xml Javascript Simple Slideshow freeware
Filter: All | Freeware | Demo
 

Xml Javascript Simple Slideshow

< 1 2 3 4 5 > 
Added: July 07, 2010 | Visits: 891

XML::Namespace XML::Namespace is a Perl module with simple support for XML Namespaces. SYNOPSIS Example 1: using XML::Namespace objects use XML::Namespace; my $xsd = XML::Namespace->new(http://www.w3.org/2001/XMLSchema#); # explicit access via the uri() method print $xsd->uri(); #... Platforms: *nix

License: Freeware Size: 4.1 KB Download (94): XML::Namespace Download

Added: June 26, 2010 | Visits: 896

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 (101): XML::Filter::Dispatcher::AsStructHandler Download

Added: April 14, 2010 | Visits: 853

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: August 19, 2010 | Visits: 702

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 (94): XML::SimpleObject::LibXML Download

Added: July 07, 2010 | Visits: 724

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 (107): XML::Genx Download

Added: September 14, 2010 | Visits: 1.359

Yahoo::Search::XML Yahoo::Search::XML is a Perl module with simple routines for parsing XML from Yahoo! Search. The XML sent back from Yahoo! is fairly simple, and is guaranteed to be well formed, so we really dont need much more than to make the data easily available. Id like to use XML::Simple, but it uses... Platforms: *nix

License: Freeware Size: 35.84 KB Download (101): Yahoo::Search::XML Download

Added: February 18, 2010 | Visits: 902

RDF::Simple::Parser RDF::Simple::Parser is a simple RDF/XML parser that reads a string containing RDF in XML. SYNOPSIS my $uri = http://www.zooleika.org.uk/bio/foaf.rdf; my $rdf = LWP::Simple::get($uri); my $parser = RDF::Simple::Parser->new(base => $uri) my @triples = $parser->parse_rdf($rdf); # returns... Platforms: *nix

License: Freeware Size: 17.41 KB Download (104): RDF::Simple::Parser Download

Added: March 18, 2010 | Visits: 749

XML::Conf XML::Conf is a simple configuration module based on XML. SYNOPSIS Here follows some examples as the tests are done. use XML::Conf; my $c = XML::Conf->new($filename); $w = $c->FIRSTKEY(); $v = $c->NEXTKEY(); $c->EXISTS($v); $c->DELETE($v); $c->CLEAR(); This is the description of the... Platforms: *nix

License: Freeware Size: 6.14 KB Download (88): XML::Conf Download

Added: January 10, 2010 | Visits: 949

XML::FOAFKnows::FromvCard XML::FOAFKnows::FromvCard is a Perl module to create simple foaf:knows records from vCards. SYNOPSIS use XML::FOAFKnows::FromvCard; # read a vCard file into $data my $formatter = XML::FOAFKnows::FromvCard->format($data); print $formatter->fragment; The foafvcard script in the... Platforms: *nix

License: Freeware Size: 10.24 KB Download (100): XML::FOAFKnows::FromvCard Download

Added: March 05, 2010 | Visits: 1.077

SOAP::XML::Client SOAP::XML::Client is a simple frame work for talking with web services. This package is the base class for talking with web services, there are specific modules to use depending on the type of service you are calling, e.g. SOAP::XML::Client::DotNet or SOAP::XML::Client::Generic This package... Platforms: *nix

License: Freeware Size: 9.22 KB Download (119): SOAP::XML::Client Download

Added: August 16, 2010 | Visits: 997

XML::Structured XML::Structured is a simple conversion API from XML to perl structures and back. SYNOPSIS use XML::Structured; $dtd = [ element => attribute1, attribute2, [], element1, [ element2 ], [ element3 => ... ], [[ element4 => ... ]], ]; $hashref = XMLin($dtd, $xmlstring); $hashref... Platforms: *nix

License: Freeware Size: 5.12 KB Download (95): XML::Structured Download

Released: August 01, 2012  |  Added: August 01, 2012 | Visits: 1.295

Class::XML Class::XML is a Perl module for simple XML Abstraction. SYNOPSIS package Foo; use base qw/Class::XML/; __PACKAGE__->has_attributes(qw/length colour/); __PACKAGE__->has_child(bar => Bar); package Bar; use base qw/Class::XML/; __PACKAGE__->has_parent(foo);... Platforms: *nix

License: Freeware Size: 18.43 KB Download (97): Class::XML Download

Added: April 04, 2010 | Visits: 894

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: 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: June 05, 2010 | Visits: 1.324

XML From Plain Text XML From Plain Text (xfpt) is a program that reads a file of plain text that contains relatively simple markup, and outputs an XML file. It is intended to simplify the management of XML data. The project is not a program that attempts to turn a plain text document into XML. Markup within text... Platforms: *nix

License: Freeware Size: 133.12 KB Download (106): XML From Plain Text Download

Added: February 05, 2010 | Visits: 853

XML::NamespaceSupport XML::NamespaceSupport is Perl module a simple generic namespace support class. SYNOPSIS use XML::NamespaceSupport; my $nsup = XML::NamespaceSupport->new; # add a new empty context $nsup->push_context; # declare a few prefixes $nsup->declare_prefix($prefix1, $uri1);... Platforms: *nix

License: Freeware Size: 8.19 KB Download (94): XML::NamespaceSupport Download

Added: July 20, 2010 | Visits: 1.499

Simple Spreadsheet Simple Spreadsheet is a webbased spreadsheet program written in Javascript, HTML, CSS and PHP. Simple Spreadsheet features formulas, charts, numeric formats, keyboard navigation, etc. Javascript is used for the default data format and for the macros and formulas.. Platforms: *nix

License: Freeware Download (168): Simple Spreadsheet Download

Released: September 09, 2012  |  Added: September 09, 2012 | Visits: 653

Simple Batch Simple Batch was designed as a programming framework designed to allow you to define batch jobs in a basic XML format. A basic selection of data source and destination processors baked in, such as: · File (Text, CSV, XML) · Email · SQL (SQL Server Client) · SharePoint (Document Library)... Platforms: Windows

License: Freeware Download (51): Simple Batch Download

Released: November 11, 2012  |  Added: November 11, 2012 | Visits: 746

PSPE - Pascal's Simple PHP Engine PSPE (Pascal's Simple PHP Engine), is a web site (building tool) written in PHP, with a little DHTML (and JavaScript) features, the content is in XML format. An easy to install procedures roundsup the feature list. Platforms: Windows, Mac, Linux

License: Freeware Size: 662.18 KB Download (54): PSPE - Pascal's Simple PHP Engine Download

Released: October 06, 2012  |  Added: October 06, 2012 | Visits: 523

Simple Javascript Image Viewer Simple Javascript Image Viewer is an easy-to-embed image viewer with which you can zoom using mouse wheel, pan using mouse drag, and preload images. Comes with complete keyboard support and extensions for things such as adding toolbar. Platforms: Windows, Mac, Linux

License: Freeware Size: 323.96 KB Download (56): Simple Javascript Image Viewer Download

< 1 2 3 4 5 >