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

Creative Xml Template freeware
Filter: All | Freeware | Demo
 

Creative Xml Template

< 1 2 3 4 5 > 
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: January 18, 2010 | Visits: 1.592

XML::Writer::Simple XML::Writer::Simple is a Perl module to create XML files easily! SYNOPSIS use XML::Writer::Simple dtd => "file.dtd"; print para("foo",b("bar"),"zbr"); USAGE This module takes some ideas from CGI to make easier the life for those who need to generated XML code. You can use the module in...





Platforms: *nix

License: Freeware Size: 4.1 KB Download (91): XML::Writer::Simple Download

Added: March 11, 2010 | Visits: 1.310

XML Security Library XML Security Library is a C library based on LibXML2. The library supports major XML security standards: - XML Signature - XML Encryption - Canonical XML (was included in LibXML2) - Exclusive Canonical XML (was included in LibXML2) XML Security Library is released under the MIT Licence...


Platforms: *nix

License: Freeware Size: 1.6 MB Download (120): XML Security Library Download

Added: July 05, 2010 | Visits: 1.120

XML::Simple::DTDReader XML::Simple::DTDReader is a simple XML file reading based on their DTDs. SYNOPSIS use XML::Simple::DTDReader; my $ref = XMLin("data.xml"); Or the object oriented way: require XML::Simple::DTDReader; my $xsd = XML::Simple::DTDReader->new; my $ref = $xsd->XMLin("data.xml");...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (95): XML::Simple::DTDReader Download

Added: August 12, 2010 | Visits: 805

XML::MyXML XML::MyXML is a simple XML module. SYNOPSIS use XML::MyXML qw(tidy_xml xml_to_object); my $xml = "< item >< name >Table< /name >< price >< usd >10.00< /usd >< eur >8.50< /eur >< /price >< /item >"; print tidy_xml($xml); my $obj = xml_to_object($xml); print "Price in Euros = " ....


Platforms: *nix

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

Added: June 17, 2010 | Visits: 968

XML::DOM::XML_Base XML::DOM::XML_Base Perl module can apply xml:base to attribute values. SYNOPSIS use XML::DOM::XML_Base; my $parser = XML::DOM::Parser->new(); my $xml = qq( ); # build the DOM my $dom = $parser->parse( $xml ); # get some elements my $endo = $dom->getElementsByTagName(...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (95): XML::DOM::XML_Base Download

Added: October 19, 2010 | Visits: 1.555

Test::Unit::Runner::XML Test::Unit::Runner::XML is a Perl module that can generate XML reports from unit test results. SYNOPSIS use Test::Unit::Runner::XML; mkdir("test_reports"); my $runner = Test::Unit::Runner::XML->new("test-reports"); $runner->start($test); exit(!$runner->all_tests_passed());...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (111): Test::Unit::Runner::XML Download

Added: October 21, 2010 | Visits: 1.443

Template::Plugin::Digest::MD5 Template::Plugin::Digest::MD5 is a TT2 interface to the MD5 Algorithm. SYNOPSIS [% USE Digest.MD5 -%] [% checksum = content FILTER md5 -%] [% checksum = content FILTER md5_hex -%] [% checksum = content FILTER md5_base64 -%] [% checksum = content.md5 -%] [% checksum = content.md5_hex -%]...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (96): Template::Plugin::Digest::MD5 Download

Added: January 01, 2010 | Visits: 1.473

Template::Plugin::Digest::SHA1 Template::Plugin::Digest::SHA1 is a TT2 interface to the SHA1 Algorithm. SYNOPSIS [% USE Digest.SHA1 -%] [% checksum = content FILTER sha1 -%] [% checksum = content FILTER sha1_hex -%] [% checksum = content FILTER sha1_base64 -%] [% checksum = content.sha1 -%] [% checksum =...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (94): Template::Plugin::Digest::SHA1 Download

Added: October 13, 2010 | Visits: 1.688

Template::Plugin::Lingua::EN::Inflect Template::Plugin::Lingua::EN::Inflect is a Perl interface to Lingua::EN::Inflect module. SYNOPSIS [% USE infl = Lingua.EN.Inflect; -%] [% FILTER inflect(number => 42); -%] There PL_V(was) NO(error). PL_ADJ(This) PL_N(error) PL_V(was) fatal. [% END; -%] [% "... and "; infl.ORD(9);...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (93): Template::Plugin::Lingua::EN::Inflect Download

Added: July 13, 2010 | Visits: 2.068

XML::Parser::YahooRESTGeocode SYNOPPSIS use LWP::Simple use XML::Parser; use XML::Parser::YahooRESTGeocode; #connect to yahoo geocode service my $url = http://api.local.yahoo.com/MapsService/V1/geocode; my $get = appid=YahooDemo&street=701+First+Street&city=Sunnyvale&state=CA; #call yahoo geocode service my $xml =...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (110): XML::Parser::YahooRESTGeocode Download

Added: June 20, 2010 | Visits: 1.135

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: April 12, 2010 | Visits: 1.408

Template::FAQ Template::FAQ contains Frequently Asked Questions about the Template Toolkit. Template Toolkit Language Why doesnt [% a = b IF c %] work as expected? Because the parser interprets it as [% a = (b IF c) %] Do this instead: [% SET a = b IF c %] If Im using TT to write out a TT...


Platforms: *nix

License: Freeware Size: 778.24 KB Download (97): Template::FAQ Download

Added: March 23, 2010 | Visits: 1.423

Template::Plugins Template::Plugins is a Perl module with plugin provider. SYNOPSIS use Template::Plugins; $plugin_provider = Template::Plugins->new(%options); ($plugin, $error) = $plugin_provider->fetch($name, @args); The Template::Plugins module defines a provider class which can be used to load and...


Platforms: *nix

License: Freeware Size: 778.24 KB Download (176): Template::Plugins Download

Added: June 02, 2010 | Visits: 1.527

Template::Tools::ttree Template::Tools::ttree module can process entire directory trees of templates. SYNOPSIS ttree [options] [files] The ttree script is used to process entire directory trees containing template files. The resulting output from processing each file is then written to a corresponding file in a...


Platforms: *nix

License: Freeware Size: 768 KB Download (102): Template::Tools::ttree Download

Added: June 23, 2010 | Visits: 1.678

Template::Tutorial::Web Template::Tutorial::Web is a Perl module for generating web content using the template toolkit. This tutorial document provides a introduction to the Template Toolkit and demonstrates some of the typical ways it may be used for generating web content. It covers the generation of static pages...


Platforms: *nix

License: Freeware Size: 778.24 KB Download (112): Template::Tutorial::Web Download

Added: November 05, 2010 | Visits: 1.234

Template::Manual::Directives Template::Manual::Directives is a Perl module that contains template directives. Accessing and Updating Template Variables GET The GET directive retrieves and outputs the value of the named variable. [% GET foo %] The GET keyword is optional. A variable can be specified in a directive...


Platforms: *nix

License: Freeware Size: 778.24 KB Download (105): Template::Manual::Directives Download

Added: October 20, 2010 | Visits: 1.545

Template::Manual::Plugins Template::Manual::Plugins is Perl module for standard plugins. This section lists the standard plugins which can be used to extend the runtime functionality of the Template Toolkit. The plugins are distributed with the Template Toolkit but may required additional modules from CPAN. TEMPLATE...


Platforms: *nix

License: Freeware Size: 778.24 KB Download (128): Template::Manual::Plugins Download

Added: July 07, 2010 | Visits: 882

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: May 16, 2010 | Visits: 1.384

XML::Schema::Type::Simple XML::Schema::Type::Simple is a base class for simple XML Schema datatypes. SYNOPSIS package XML::Schema::Type::whatever; use base qw( XML::Schema::Type::Simple ); use vars qw( @FACETS ); @FACETS = ( minLength => 10, maxLength => 30, otherFacet => { value => $n, fixed => 1,...


Platforms: *nix

License: Freeware Size: 143.36 KB Download (101): XML::Schema::Type::Simple Download

< 1 2 3 4 5 >