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

I Pod Mini software
Filter: All | Freeware | Demo
 

I Pod Mini

< 1 2 3 4 5 > 
Added: June 14, 2010 | Visits: 1.088

XML::Mini::Element::CData XML::Mini::Element::CData Perl module is used internally to represent < ![CDATA [ CONTENTS ]] >. You shouldnt need to use it directly, see XML::Mini::Elements cdata() method..



Platforms: *nix

License: Freeware Size: 34.82 KB Download (101): XML::Mini::Element::CData Download

Added: February 25, 2010 | Visits: 981

XML::Mini::Element::Entity XML::Mini::Element::Entity Perl module is used internally to represent < !ENTITY name "stuff" >. You shouldnt need to use it directly, see XML::Mini::Elements entity() method..





Platforms: *nix

License: Freeware Size: 34.82 KB Download (96): XML::Mini::Element::Entity Download

Added: April 22, 2010 | Visits: 1.077

XML::Mini::Element::Header XML::Mini::Element::Header Perl module is used internally to represent < ? xml blah="hohoho" ? > type headers. You shouldnt need to use it directly, see XML::Mini::Elements header() method..


Platforms: *nix

License: Freeware Size: 34.82 KB Download (94): XML::Mini::Element::Header Download

Added: November 17, 2010 | Visits: 965

XML::Mini::TreeComponent XML::Mini::TreeComponent is a Perl implementation of the XML::Mini TreeComponent API. SYNOPSIS Dont use this class - only presents an interface for other derived classes. This class is only to be used as a base class for others. It presents the minimal interface we can expect from any...


Platforms: *nix

License: Freeware Size: 34.82 KB Download (87): XML::Mini::TreeComponent Download

Added: January 08, 2010 | Visits: 1.028

XML::Mini::Document XML::Mini::Document is a Perl implementation of the XML::Mini Document API. SYNOPSIS use XML::Mini::Document; use Data::Dumper; ###### PARSING XML ####### # create a new object my $xmlDoc = XML::Mini::Document->new(); # init the doc from an XML string $xmlDoc->parse($XMLString);...


Platforms: *nix

License: Freeware Size: 34.82 KB Download (92): XML::Mini::Document Download

Added: July 23, 2010 | Visits: 2.519

Amazon Mini Shop Amazon Mini Shop allows you to search Amazon.com, .co.uk, .de, .fr, .ca or .co.jp from the sidebar..


Platforms: *nix

License: Freeware Size: 9.22 KB Download (179): Amazon Mini Shop Download

Added: November 16, 2010 | Visits: 952

Pod::Hlp Pod::Hlp is a Perl module that can convert POD data to formatted VMS HLP Help module text. SYNOPSIS use Pod::Hlp; pod2hlp("perlfunc.pod",$top_help_level,*Filehandle); Also: pod2hlp < input.pod Also: perl pod2hlb Pod::Hlp is a module that can convert documentation in the POD format...


Platforms: *nix

License: Freeware Size: 102.4 KB Download (91): Pod::Hlp Download

Added: January 17, 2010 | Visits: 842

Pod::Dsr Pod::Dsr is a Perl module Convert POD data to formatted DSR input SYNOPSIS use Pod::Dsr; my $parser = Pod::Dsr->new (release => $VERSION, section => 8); # Read POD from STDIN and write to STDOUT. $parser->parse_from_filehandle; # Read POD from file.pod and write to file.1....


Platforms: *nix

License: Freeware Size: 102.4 KB Download (98): Pod::Dsr Download

Added: September 10, 2010 | Visits: 728

Pod::PP Pod::PP is a POD pre-processor. SYNOPSIS # normally used via the podpp script require Pod::PP; my $pp = Pod::PP->make( -incpath => [h, h/sys], -symbols => { DIR => "/var/www", TMPDIR => "/var/tmp" }, ); $pp->parse_from_filehandle(*STDIN); $pp->parse_from_file("file.pp"); The...


Platforms: *nix

License: Freeware Size: 17.41 KB Download (99): Pod::PP Download

Added: January 11, 2010 | Visits: 957

I-cons I-cons are easy to read, clear-looking and (allmost) configurable set of SuperKaramba themes, together making desktop look nice (i hope). Each widget has a number of config options. From these, i would mention "3/4 size widget", which makes widget switch icons and texts sizes, so widget became...


Platforms: *nix

License: Freeware Size: 16.38 KB Download (94): I-cons Download

Added: October 20, 2010 | Visits: 944

Pod::PlainText Pod::PlainText is a Perl module that can convert POD data to formatted ASCII text. SYNOPSIS use Pod::PlainText; my $parser = Pod::PlainText->new (sentence => 0, width => 78); # Read POD from STDIN and write to STDOUT. $parser->parse_from_filehandle; # Read POD from file.pod and write to...


Platforms: *nix

License: Freeware Size: 96.26 KB Download (101): Pod::PlainText Download

Added: November 25, 2010 | Visits: 731

Pod::Simple::PullParser Pod::Simple::PullParser is a pull-parser interface to parsing Pod. SYNOPSIS my $parser = SomePodProcessor->new; $parser->set_source( "whatever.pod" ); $parser->run; Or: my $parser = SomePodProcessor->new; $parser->set_source( $some_filehandle_object ); $parser->run; Or: my $parser =...


Platforms: *nix

License: Freeware Size: 22.53 KB Download (97): Pod::Simple::PullParser Download

Added: January 18, 2010 | Visits: 428

Pod::PXML Pod::PXML is a Perl module that contains pxml2pod and pod2pxml. SYNOPSIS use Pod::PXML; # Take from a file... open(XMLOUT, ">foo.xml") || die "cant wropen foo.xml: $!"; binmode(XMLOUT); print XMLOUT Pod::PXML::pod2xml(foo.pod); close(XMLOUT); # Take from a file, going the other way:...


Platforms: *nix

License: Freeware Size: 12.29 KB Download (90): Pod::PXML Download

Added: August 10, 2010 | Visits: 882

Pod::Simple::HTMLBatch Pod::Simple::HTMLBatch is a Perl module to convert several Pod files to several HTML files. SYNOPSIS perl -MPod::Simple::HTMLBatch -e Pod::Simple::HTMLBatch::go in out This module is used for running batch-conversions of a lot of HTML documents This class is NOT a subclass of...


Platforms: *nix

License: Freeware Size: 256 KB Download (108): Pod::Simple::HTMLBatch Download

Added: February 20, 2010 | Visits: 1.838

Pod::Simple::Subclassing Pod::Simple::Subclassing is a Perl module that can write a formatter as a Pod::Simple subclass. SYNOPSIS package Pod::SomeFormatter; use Pod::Simple; @ISA = qw(Pod::Simple); $VERSION = 1.01; use strict; sub _handle_element_start { my($parser, $element_name, $attr_hash_r) = @_; ... }...


Platforms: *nix

License: Freeware Size: 256 KB Download (87): Pod::Simple::Subclassing Download

Added: February 20, 2010 | Visits: 970

Pod::WSDL::Doc Pod::WSDL::Doc is a Perl module that represents the WSDL pod for the documentation of methods (internal use only). SYNOPSIS use Pod::WSDL::Doc; my $doc = new Pod::WSDL::Doc(_DOC This method is for blah ...); This module is used internally by Pod::WSDL. It is unlikely that you have to...


Platforms: *nix

License: Freeware Size: 27.65 KB Download (100): Pod::WSDL::Doc Download

Added: January 04, 2010 | Visits: 741

Pod::WSDL Pod::WSDL is a Perl module that creates WSDL documents from (extended) pod. SYNOPSIS use Pod::WSDL; my $pod = new Pod::WSDL(source => My::Server, location => http://localhost/My/Server, pretty => 1, withDocumentation => 1); print $pod->WSDL; Parsing the pod How does Pod::WSDL work?...


Platforms: *nix

License: Freeware Size: 27.65 KB Download (91): Pod::WSDL Download

Added: March 04, 2010 | Visits: 1.063

Pod::LaTeX Pod::LaTeX is a Perl module to convert Pod data to formatted Latex. SYNOPSIS use Pod::LaTeX; my $parser = Pod::LaTeX->new ( ); $parser->parse_from_filehandle; $parser->parse_from_file (file.pod, file.tex); Pod::LaTeX is a module to convert documentation in the Pod format into Latex....


Platforms: *nix

License: Freeware Size: 26.62 KB Download (120): Pod::LaTeX Download

Added: February 25, 2010 | Visits: 1.198

Transparent Parallel I/O Environment Transparent Parallel I/O Environment is a software environment (written in C++) that facilitates the implementation of external memory algorithms. The goal of theoretical work in the area of external memory algorithms (also called I/O algorithms or out-of-core algorithms) has been to develop...


Platforms: *nix

License: Freeware Size: 1.1 MB Download (93): Transparent Parallel I/O Environment Download

Added: April 18, 2010 | Visits: 847

PDL::Pod::Html PDL::Pod::Html is Perl module to convert pod files to HTML. SYNOPSIS use PDL::Pod::Html; pod2html([options]); Converts files from pod format (see perlpod) to HTML format. It can automatically generate indexes and cross-references, and it keeps a cache of things it knows how to...


Platforms: *nix

License: Freeware Size: 655.36 KB Download (96): PDL::Pod::Html Download

< 1 2 3 4 5 >