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

Apachetemplate 0 09 freeware
Filter: All | Freeware | Demo
 

Apachetemplate 0 09

1 2 3 4 5 > 
Added: June 08, 2013 | Visits: 469

Apache::Template Apache::Template is a Perl module that provides a simple interface to the Template Toolkit from Apache/mod_perl. The Template Toolkit is a fast, powerful and extensible template processing system written in Perl. It implements a general purpose template language which allows you to clearly... Platforms: *nix

License: Freeware Size: 20.48 KB Download (35): Apache::Template Download

Added: April 02, 2010 | Visits: 1.021

slackget10::Package slackget10::Package this class is the internal representation of a package for slack-get 1.0. SYNOPSIS This module is used to represent a package for slack-get use slackget10::Package; my $package = slackget10::Package->new(package-1.0.0-noarch-1); $package->setValue(description,"This is... Platforms: *nix

License: Freeware Size: 163.84 KB Download (102): slackget10::Package Download

Added: May 05, 2010 | Visits: 932

OS2::SoftInstaller OS2::SoftInstaller is a Perl extension for generation of daughter packages for IBMs Software Installer. SYNOPSIS use OS2::SoftInstaller; open PKG, >my.pkg; select PKG; make_pkg toplevel => ., zipfile => my.zip, packid => myzip, nozip => 0, exclude => undef, dirid => FILE, strip => emx/;... Platforms: *nix

License: Freeware Size: 12.29 KB Download (104): OS2::SoftInstaller Download

Added: July 09, 2010 | Visits: 915

Algorithm::Huffman Algorithm::Huffman is a Perl extension that implements the Huffman algorithm. SYNOPSIS use Algorithm::Huffman; my %char_counting = map {$_ => int rand(100)} (a .. z, A .. Z); # or better the real counting for your characters # as the huffman algorithm doesnt work good with random data... Platforms: *nix

License: Freeware Size: 8.19 KB Download (110): Algorithm::Huffman Download

Added: November 27, 2010 | Visits: 862

Text::Query::BuildSQL Text::Query::BuildSQL is a base class for SQL query builders. SYNOPSIS package Text::Query::BuildSQLsqldb; use Text::Query::BuildSQL; use vars qw(@ISA); @ISA = qw(Text::Query::BuildSQL); Defines all the build_* functions to build a syntax tree. The tree nodes are [ operator scope... Platforms: *nix

License: Freeware Size: 19.46 KB Download (92): Text::Query::BuildSQL Download

Added: September 24, 2010 | Visits: 1.071

Flash::FLAP::Object Flash::FLAP::Object is a Perl module translated from PHP Remoting v. 0.5b from the -PHP project. Package used for building and retreiving header and body information. Installation: 1a. If you have access to Macromedia Flash MX, load the docs/examples/cpu/CpuExample.fla file. Edit the... Platforms: *nix

License: Freeware Size: 440.32 KB Download (93): Flash::FLAP::Object Download

Added: January 18, 2010 | Visits: 904

Tk::ToolBar Tk::ToolBar is a toolbar widget for Perl/Tk. SYNOPSIS use Tk; use Tk::ToolBar; my $mw = new MainWindow; my $tb = $mw->ToolBar(qw/-movable 1 -side top -indicatorcolor blue/); $tb->ToolButton (-text => Button, -tip => tool tip, -command => sub { print "hin" }); $tb->ToolLabel (-text... Platforms: *nix

License: Freeware Size: 56.32 KB Download (92): Tk::ToolBar Download

Added: July 06, 2010 | Visits: 1.118

Math::Combinatorics Math::Combinatorics is a Perl module that can perform combinations and permutations on lists. SYNOPSIS Available as an object oriented API. use Math::Combinatorics; my @n = qw(a b c); my $combinat = Math::Combinatorics->new(count => 2, data => [@n], ); print "combinations of 2 from:... Platforms: *nix

License: Freeware Size: 10.24 KB Download (168): Math::Combinatorics Download

Added: October 04, 2010 | Visits: 1.782

Stream::Reader Stream::Reader is a stream reader Perl class. SYNOPSIS # Input stream can be reference to TYPEGLOB or SCALAR, output stream # can be the same types or undefined # Constructor $stream = Stream::Reader->new( *IN, { Limit => $limit, BuffSize => $buffsize, Mode => UB } ); # Reading all... Platforms: *nix

License: Freeware Size: 6.14 KB Download (108): Stream::Reader Download

Added: October 24, 2010 | Visits: 1.201

CGI::WML CGI::WML is a Perl module with subclass LDSs "CGI.pm" for WML output and WML methods. SYNOPSIS use CGI::WML; $query = new CGI::WML; $content = $query->p("Hello WAP world"); print $query->header(), $query->start_wml(), $query->template(-content=>$query->prev()),... Platforms: *nix

License: Freeware Size: 21.5 KB Download (101): CGI::WML Download

Added: November 06, 2010 | Visits: 1.059

POE::Component::Server::HTTP POE::Component::Server::HTTP is a foundation of a POE HTTP Daemon. SYNOPSIS use POE::Component::Server::HTTP; use HTTP::Status; my $aliases = POE::Component::Server::HTTP->new( Port => 8000, ContentHandler => { / => &handler1, /dir/ => sub { ... }, /file => sub { ... } }, Headers =>... Platforms: *nix

License: Freeware Size: 16.38 KB Download (99): POE::Component::Server::HTTP Download

Added: May 15, 2010 | Visits: 1.228

Software::Packager Software::Packager is a common software packaging interface. SYNOPSIS use Software::Packager; my $packager = new Software::Packager(); $packager->version(1.2.3.4.5.6); $packager->package_name("Somename"); $packager->program_name(Software Packager); $packager->description("This is the... Platforms: *nix

License: Freeware Size: 21.5 KB Download (114): Software::Packager Download

Added: May 20, 2010 | Visits: 939

Astro::Constants Astro::Constants is a Perl module that contains physical constants for use in Astronomy. SYNOPSIS use Astro::Constants::CGS qw(:long); print "The Schwarzschild radius of the sun is ", 2 * GRAVITATIONAL * SOLAR_MASS / LIGHT_SPEED ** 2, " centimetresn"; or use Astro::Constants::MKS... Platforms: *nix

License: Freeware Size: 12.29 KB Download (92): Astro::Constants Download

Added: June 15, 2010 | Visits: 1.269

File::Sync File::Sync is a Perl access to fsync() and sync() function calls. SYNOPSIS use File::Sync qw(fsync sync); fsync(*FILEHANDLE) or die "fsync: $!"; sync(); use File::Sync qw(fsync); use IO::File; $fh = IO::File->new("> /tmp/foo") or die "new IO::File: $!"; ... fsync($fh) or die "fsync:... Platforms: *nix

License: Freeware Size: 4.1 KB Download (112): File::Sync Download

Added: September 06, 2010 | Visits: 796

Sendmail::AccessDB Sendmail::AccessDB is an interface to the Sendmail access.db list. SYNOPSIS use Sendmail::AccessDB qw(spam_friend whitelisted); $friend_or_hater = spam_friend(user@example.com); $whitelisted = whitelisted(sender@example.com); This module is designed so that users of the Sendmail::Milter... Platforms: *nix

License: Freeware Size: 15.36 KB Download (94): Sendmail::AccessDB Download

Added: November 08, 2010 | Visits: 763

CGI::Utils CGI::Utils is a Perl module for retrieving information through the Common Gateway Interface and mod_perl. Whats New in This Release: - This release adds support for mod_perl 2 in addition to mod_perl 1. - It fixes some formatting issues with the POD documentation and adds underscore versions... Platforms: *nix

License: Freeware Size: 20.48 KB Download (89): CGI::Utils Download

Added: January 21, 2010 | Visits: 789

Audio::Moosic Audio::Moosic is a Moosic client library for Perl. SYNOPSIS use Audio::Moosic; $moo = Audio::Moosic::Unix->new(); $moosic->append(/home/me/somewhat.ogg); $moosic->play; print $moosic->current, "n"; $moosic->pause; ... Audio::Moosic acts as a client for the musical jukebox programm... Platforms: *nix

License: Freeware Size: 9.22 KB Download (89): Audio::Moosic Download

Added: January 08, 2010 | Visits: 829

wmifinfo wmifinfo is a simple applet showing basic network info for all available interfaces. It shows IP address, netmask, gateway and MAC address. Left-button click moves to the next interface, right-button click calls ifup/ifdown scripts. Please report bugs if you find any. Left-button click... Platforms: *nix

License: Freeware Size: 15.36 KB Download (100): wmifinfo Download

Added: July 18, 2010 | Visits: 894

VCShell VCShell is a command line interface for VCS::Lite::Repository. SYNOPSIS B< add > element|repository [element|repository...] B< remove > name [name...] B< ci >|check_in name [name...] B< co >|check_out parent_repository B< commit > B< update > B< cd > repository B< fetch > name@@gen... Platforms: *nix

License: Freeware Size: 26.62 KB Download (90): VCShell Download

Added: February 24, 2010 | Visits: 866

List::RewriteElements List::RewriteElements is a Perl module that can create a new list by rewriting elements of a first list. SYNOPSIS use List::RewriteElements; Constructor Simplest case: Input from array, output to STDOUT. $lre = List::RewriteElements->new( { list => @source, body_rule => sub { my... Platforms: *nix

License: Freeware Size: 26.62 KB Download (98): List::RewriteElements Download

1 2 3 4 5 >