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 49.595.482 Times

Cgi Houston Passport software
Filter: All | Freeware | Demo
 

Cgi Houston Passport

< 1 2 3 4 5 > 
Added: March 01, 2010 | Visits: 979

CGI::Application::Generator CGI::Application::Generator is a Perl module with dynamically build CGI::Application modules. SYNOPSIS use CGI::Application::Generator; # Required methods my $cat = CGI::Application::Generator->new(); $cat->package_name(My::Widget::Browser); $cat->start_mode(list_widgets);...



Platforms: *nix

License: Freeware Size: 14.34 KB Download (97): CGI::Application::Generator Download

Added: April 22, 2010 | Visits: 865

CGI::Application CGI::Application is a framework for building reusable web-applications. SYNOPSIS # In "WebApp.pm"... package WebApp; use base CGI::Application; # ( setup() can even be skipped for common cases. See docs below. ) sub setup { my $self = shift; $self->start_mode(mode1);...





Platforms: *nix

License: Freeware Size: 55.3 KB Download (87): CGI::Application Download

Added: November 12, 2010 | Visits: 1.511

CGI::Wiki CGI::Wiki is a toolkit for building Wikis. Helps you develop Wikis quickly by taking care of the boring bits for you. You will still need to write some code - this isnt an instant Wiki. SYNOPSIS # Set up a wiki object with an SQLite storage backend, and an # inverted index/DB_File search...


Platforms: *nix

License: Freeware Size: 62.46 KB Download (87): CGI::Wiki Download

Added: June 21, 2010 | Visits: 833

CGI::FormMagick CGI::FormMagick is a Perl module to easily create CGI form-based applications. SYNOPSIS use CGI::FormMagick; my $f = new CGI::FormMagick(); # all options available to new() my $f = new CGI::FormMagick( type => file, source => $myxmlfile, ); # other types available my $f = new...


Platforms: *nix

License: Freeware Size: 75.78 KB Download (91): CGI::FormMagick Download

Added: October 08, 2010 | Visits: 954

CGI::kSession CGI::kSession is a sessions manager for CGI. This module can be used anywhere you need sessions. As a session management module, it uses files with a configurable lifetime to handle your session data. For those of you familiar with PHP, you will notice that the session syntax is a little bit...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (88): CGI::kSession Download

Added: February 08, 2010 | Visits: 839

CGI::Application::Plugin::ValidateRM CGI::Application::Plugin::ValidateRM is a Perl module to help validate CGI::Application run modes using Data::FormValidator. SYNOPSIS use CGI::Application::Plugin::ValidateRM; my $results = $self->check_rm(form_display,_form_profile) || return $self->check_rm_error_page; # Optionally,...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (87): CGI::Application::Plugin::ValidateRM Download

Added: January 12, 2010 | Visits: 1.017

CGI::Request CGI::Request is a parse client request via a CGI interface. SYNOPSIS use CGI::Request; # Simple interface: (combines SendHeaders, new and import_names) $req = GetRequest($pkg); print FmtRequest(); # same as: print $req->as_string # Full Interface: $req = new CGI::Request; # fetch...


Platforms: *nix

License: Freeware Size: 122.88 KB Download (94): CGI::Request Download

Added: August 20, 2010 | Visits: 769

CGI::XMLForm CGI::XMLForm is a Perl extension of CGI.pm which reads/generates formated XML. NB: This is a subclass of CGI.pm, so can be used in its place. SYNOPSIS use CGI::XMLForm; my $cgi = new CGI::XMLForm; if ($cgi->param) { print $cgi->header, $cgi->pre($cgi->escapeHTML($cgi->toXML)); } else {...


Platforms: *nix

License: Freeware Size: 14.34 KB Download (97): CGI::XMLForm Download

Added: February 13, 2010 | Visits: 1.204

CGI-Shell CGI-Shell provides a shell using CGI, so everyone who has a CGI directory on a Web server can also have a shell on it. It is something like telnet or SSH. How to install? make make install (you have to be root) How to uninstall? make uninstall (you have to be root) The server is...


Platforms: *nix

License: Freeware Size: 225.28 KB Download (106): CGI-Shell Download

Added: July 19, 2010 | Visits: 820

CGI::FormBuilder CGI::FormBuilder is a Perl module to easily generate and process stateful forms. SYNOPSIS use CGI::FormBuilder; # Assume we did a DBI query to get existing values my $dbval = $sth->fetchrow_hashref; # First create our form my $form = CGI::FormBuilder->new( name => acctinfo, method =>...


Platforms: *nix

License: Freeware Size: 163.84 KB Download (95): CGI::FormBuilder Download

Added: October 06, 2010 | Visits: 1.024

CGI::Ex::App CGI::Ex::App is a anti-framework application framework. Fill in the blanks and get a ready made web application. This module is somewhat similar in spirit to CGI::Application, CGI::Path, and CGI::Builder and any other "CGI framework." As with the others, CGI::Ex::App tries to do as much of the...


Platforms: *nix

License: Freeware Size: 215.04 KB Download (94): CGI::Ex::App Download

Added: June 21, 2010 | Visits: 847

CGI::Ex::Conf CGI::Ex::Conf is a Perl module with Conf Reader/Writer for many different data format types. SYNOPSIS use CGI::Ex::Conf qw(conf_read conf_write); my $hash = conf_read("/tmp/foo.yaml"); conf_write("/tmp/foo.yaml", {key1 => $val1, key2 => $val2}); ### OOP interface my $cob =...


Platforms: *nix

License: Freeware Size: 215.04 KB Download (89): CGI::Ex::Conf Download

Added: November 13, 2010 | Visits: 900

CGI::SecureState CGI::SecureState is a transparent, secure statefulness for CGI programs. SYNOPSIS use CGI::SecureState; my @memory = qw(param1 param2 other_params_to_remember); my $cgi = new CGI::SecureState(-stateDir => "states", -mindSet => forgetful, -memory => @memory); print $cgi->header(),...


Platforms: *nix

License: Freeware Size: 20.48 KB Download (88): CGI::SecureState Download

Added: April 08, 2010 | Visits: 2.789

CGI::MxScreen CGI::MxScreen is a multi-screen stateful CGI framework. SYNOPSIS require CGI::MxScreen; my $manager = CGI::MxScreen->make( -bgcolor => "#dedeef", -screens => { "state_1" => [-class => "STATE_1", -title => "Hello"], "state_2" => [-class => "STATE_2", -title => "Hello #2"], },...


Platforms: *nix

License: Freeware Size: 75.78 KB Download (92): CGI::MxScreen Download

Added: July 06, 2010 | Visits: 1.203

CGI::Explorer CGI::Explorer is a class to manage displaying a hash tree of data, for use in CGI scripts. Synopsis Install /assets/css/explorer/xtree.css, /assets/js/explorer/xtree.js, and /assets/images/explorer/*, as per the installation instructions, below. Then run the demos...


Platforms: *nix

License: Freeware Size: 31.74 KB Download (101): CGI::Explorer Download

Added: April 25, 2010 | Visits: 849

DataMatrix CGI DataMatrix CGI is a web application for two-dimensional matrix symbology containing dark and light square data modules. Examples: If you specify the following parameters: http://localhost/test/dmtxcgi.exe?data=HelloWorld&w=100&h=100&bcolor=ffff00&fcolor=0000ff "HelloWorld" will be encoded...


Platforms: *nix

License: Shareware Cost: $175.00 USD Size: 419.84 KB Download (90): DataMatrix CGI Download

Added: February 25, 2010 | Visits: 761

CGI::Application::Plugin::RateLimit CGI::Application::Plugin::RateLimit is a plugin for CGI::Application which provides protection against a user calling a runmode too frequently. A typical use-case might be a contact form that sends email. Youd like to allow your users to send you messages, but thousands of messages from a...


Platforms: *nix

License: Freeware Size: 7.17 KB Download (94): CGI::Application::Plugin::RateLimit Download

Added: March 17, 2010 | Visits: 1.054

CGI++ CGI++ is a C++ macro pre-processor that facilitates development of CGI/Database applications in C++. It will also process your HTML and generate form parsing classes with appropriate constructors. Many desirable features are yet to be implemented, but you can use what is already available to...


Platforms: *nix

License: Freeware Size: 92.16 KB Download (92): CGI++ Download

Added: April 24, 2010 | Visits: 1.273

CGI::NoPoison CGI::NoPoison is No Poison Null Byte in CGI->Vars. SYNOPSIS use CGI; use CGI::NoPoison my $m = CGI->new(); $m->param( -name=>amplifier, -value=>[nine, ten, up to eleven], ); my %h = $m->Vars(); # look ma, no splitting on poison null-bytes ( )! print "$_ => ", join ", ", @{$h{$_}}...


Platforms: *nix

License: Freeware Size: 12.29 KB Download (97): CGI::NoPoison Download

Added: November 25, 2010 | Visits: 1.356

CGI::Application::Plugin::Authentication::Driver::Generic CGI::Application::Plugin::Authentication::Driver::Generic is a Generic Authentication driver. SYNOPSIS use base qw(CGI::Application); use CGI::Application::Plugin::Authentication; __PACKAGE__->authen->config( DRIVER => [ Generic, { user1 => 123, user2 => 123 } ], ); This Driver offers...


Platforms: *nix

License: Freeware Size: 48.13 KB Download (210): CGI::Application::Plugin::Authentication::Driver::Generic Download

< 1 2 3 4 5 >