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

Cgi Proxy Start freeware
Filter: All | Freeware | Demo
 

Cgi Proxy Start

< 1 2 3 4 5 > 
Added: February 22, 2010 | Visits: 2.474

Yet Another Filter Proxy Yet Another Filter Proxy project is a preforking, banner filtering, content scanning Perl proxy. Yet Another Filter Proxy is a proxy to filter out advertising banners and malicious script code from web sites. It is written in Perl and based on an example by Randal L. Schwartz. For...



Platforms: *nix

License: Freeware Size: 27.65 KB Download (290): Yet Another Filter Proxy Download

Added: September 02, 2010 | Visits: 1.161

POE::Component::Proxy::TCP POE::Component::Proxy::TCP is a simplified TCP proxy. SYNOPSIS use POE qw(Component::Proxy::TCP); POE::Component::Proxy::TCP->new (Alias => "ProxyServerSessionAlias", Port => $local_server_port, OrigPort => $remote_server_port, OrigAddress => $remote_server_host, DataFromClient =>...





Platforms: *nix

License: Freeware Size: 17.41 KB Download (112): POE::Component::Proxy::TCP Download

Added: September 08, 2010 | Visits: 1.192

CGI::Simple CGI::Simple is a simple totally OO CGI interface that is CGI.pm compliant. SYNOPSIS use CGI::Simple; $CGI::Simple::POST_MAX = 1024; # max upload via post default 100kB $CGI::Simple::DISABLE_UPLOADS = 0; # enable uploads $q = new CGI::Simple; $q = new CGI::Simple( { foo=>1, bar=>[2,3,4] }...


Platforms: *nix

License: Freeware Size: 84.99 KB Download (103): CGI::Simple Download

Added: October 24, 2010 | Visits: 1.194

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 (95): CGI::WML Download

Added: June 15, 2010 | Visits: 1.335

CGI::Minimal CGI::Minimal is a lightweight CGI form processing package. SYNOPSIS # use CGI::Minimal qw(:preload); use CGI::Minimal; my $cgi = CGI::Minimal->new; if ($cgi->truncated) { &scream_about_bad_form; exit; } my $form_field_value = $cgi->param(some_field_name); Provides a micro-weight...


Platforms: *nix

License: Freeware Size: 29.7 KB Download (99): CGI::Minimal Download

Added: September 05, 2010 | Visits: 1.284

BlockStop Proxy BlockStop Proxy is a Firefox extension that allows you to view the current page or link using. Adds a "View this page with BlockStop" or "Open Link Target with BlockStop" option to your Firefox right-click menu, depending on where you click. The BlockStop Proxy extension automatically encodes...


Platforms: *nix

License: Freeware Size: 34.82 KB Download (109): BlockStop Proxy Download

Added: February 20, 2010 | Visits: 1.323

CGI::Expand CGI::Expand is a Perl module that can convert flat hash to nested data using TT2s dot convention. SYNOPSIS use CGI::Expand; use CGI; # or Apache::Request, etc. $args = expand_cgi( CGI->new(a.0=3&a.2=4&b.c.0=x) ); # $args = { a => [3,undef,4], b => { c => [x] }, } # Or to catch...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (95): CGI::Expand Download

Added: January 04, 2010 | Visits: 1.045

CGI::Validate CGI::Validate is an advanced CGI form parser and type validation. SYNOPSIS use CGI::Validate; # GetFormData() only use CGI::Validate qw(:standard); # Normal use use CGI::Validate qw(:subs); # Just functions use CGI::Validate qw(:vars); # Just exception vars ## If you dont want it to...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (101): CGI::Validate Download

Added: March 21, 2010 | Visits: 1.610

Proxy Applet Proxy Applet is a GNOME tray applet for changing your network proxy configuration with a single click, in a manner similar to Galeon 1.x. Galeon used to have a single click Network Proxy selector in their menu, which I used frequently. In a discussion with Epiphany developers about this same...


Platforms: *nix

License: Freeware Size: 81.92 KB Download (110): Proxy Applet Download

Added: May 09, 2010 | Visits: 1.989

CGI::Application::Plugin::Authentication::Store::Cookie CGI::Application::Plugin::Authentication::Store::Cookie is a Cookie based Store. SYNOPSIS use base qw(CGI::Application); use CGI::Application::Plugin::Session; use CGI::Application::Plugin::Authentication; __PACKAGE__->authen->config( STORE => [Cookie, SECRET => "Shhh, dont tell anyone",...


Platforms: *nix

License: Freeware Size: 48.13 KB Download (115): CGI::Application::Plugin::Authentication::Store::Cookie Download

Added: April 14, 2010 | Visits: 2.822

CGI::Application::Plugin::Authentication::Store::Session CGI::Application::Plugin::Authentication::Store::Session is a session based store. SYNOPSIS use base qw(CGI::Application); use CGI::Application::Plugin::Session; use CGI::Application::Plugin::Authentication; __PACKAGE__->authen->config( STORE => Session, ); This module uses a session...


Platforms: *nix

License: Freeware Size: 48.13 KB Download (88): CGI::Application::Plugin::Authentication::Store::Session Download

Added: February 23, 2010 | Visits: 7.250

CGI::Application::Plugin::Authorization CGI::Application::Plugin::Authorization is an authorization framework for CGI::Application. SYNOPSIS use base qw(CGI::Application); use CGI::Application::Plugin::Authentication; use CGI::Application::Plugin::Authorization; # default config for runmode authorization...


Platforms: *nix

License: Freeware Size: 17.41 KB Download (87): CGI::Application::Plugin::Authorization Download

Added: October 18, 2010 | Visits: 1.843

CGI::Application::Plugin::Authentication::Driver CGI::Application::Plugin::Authentication::Driver is a Perl base module for building driver clasees for CGI::Application::Plugin::Authentication. SYNOPSIS package CGI::Application::Plugin::Authentication::Driver::MyDriver; use base qw(CGI::Application::Plugin::Authentication::Driver); sub...


Platforms: *nix

License: Freeware Size: 47.1 KB Download (92): CGI::Application::Plugin::Authentication::Driver Download

Added: September 23, 2010 | Visits: 2.357

CGI::Application::Plugin::Authentication::Store CGI::Application::Plugin::Authentication::Store is a base module for building storage classes for the CGI::Application::Plugin::Authentication plugin. SYNOPSIS package CGI::Application::Plugin::Authentication::Store::MyStore; use base qw(CGI::Application::Plugin::Authentication::Store);...


Platforms: *nix

License: Freeware Size: 47.1 KB Download (94): CGI::Application::Plugin::Authentication::Store Download

Added: November 20, 2010 | Visits: 1.660

CGI::WeT::Modules::Basic CGI::WeT::Modules::Basic is a basic rendering engine extensions. SYNOPSIS use CGI::WeT::Modules::Basic (); This module provides basic rendering constructs for the engine. Please be aware that the code supersedes the documentation. While I have tried to be accurate there are times that words...


Platforms: *nix

License: Freeware Size: 40.96 KB Download (98): CGI::WeT::Modules::Basic Download

Added: August 06, 2010 | Visits: 1.505

CGI::WeT::Modules::Calendar CGI::WeT::Modules::Calendar are Perl extensions to engine to allow calendar management. SYNOPSIS use CGI::WeT::Modules::Calendar (); This module provides rendering constructs to allow navigation through a set of calendars. Support is provided for multiple types of events in multiple...


Platforms: *nix

License: Freeware Size: 40.96 KB Download (99): CGI::WeT::Modules::Calendar Download

Added: November 06, 2010 | Visits: 1.612

CGI::WeT::Modules::News CGI::WeT::Modules::News are Perl extensions to engine to allow article management. SYNOPSIS use CGI::WeT::Modules::News (); This module provides rendering constructs to allow navigation through a set of articles. Support is provided for multiple types of articles in multiple groupings (or...


Platforms: *nix

License: Freeware Size: 40.96 KB Download (99): CGI::WeT::Modules::News Download

Added: January 24, 2010 | Visits: 1.491

CGI::WeT::Theme CGI::WeT::Theme is a Perl module with theme loader for the CGI::WeT package. SYNOPSIS use CGI::WeT::Theme (); This module provides a well-defined interface between the rendering engine and the theme definition loaders. It is designed to work with or without mod_perl. All theme loader...


Platforms: *nix

License: Freeware Size: 40.96 KB Download (93): CGI::WeT::Theme Download

Added: August 20, 2010 | Visits: 1.680

cgi-postin cgi-postin utility processes data generated from a World-Wide Web form. cgi-postin is a standalone processor that may be run easily from sh, perl, or Tcl scripts. Important Note: I recommend this tool only when implementing CGIs as shell scripts. For other languages, there are more modern and...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (94): cgi-postin Download

Added: April 16, 2010 | Visits: 1.825

CGI::XMLApplication CGI::XMLApplication is an Object Oriented Interface for CGI Script Applications. SYNOPSIS use CGI::XMLApplication; $script = new CGI::XMLApplication; $script->setStylesheetPath( "the/path/to/the/stylesheets" ); # either this for simple scripts $script->run(); # or if you need more...


Platforms: *nix

License: Freeware Size: 21.5 KB Download (92): CGI::XMLApplication Download

< 1 2 3 4 5 >