Ports Search

Results 1,0011,010 of 8,048 for www%3Atrac.(0.004 seconds)
www/CGI-Prototype-0.9054 (Score: 0.020137845)
Create a CGI application by subclassing
The core of every CGI application seems to be roughly the same: - analyze the incoming parameters, cookies, and URLs to determine the state of the application (let's call this "dispatch"). - based on the current state, analyze the incoming parameters to respond to any form submitted ("respond"). - from there, decide what response page should be generated, and produce it ("render"). CGI::Prototype creates a Class::Prototyped engine for doing all this, with the right amount of callback hooks to customize the process.
www/CGI-SSI-0.92 (Score: 0.020137845)
Use SSI from CGI scripts
CGI::SSI is meant to be used as an easy way to filter shtml through CGI scripts in a loose imitation of Apache's mod_include. If you're using Apache, you may want to use either mod_include or the Apache::SSI module instead of CGI::SSI. Limitations in a CGI script's knowledge of how the server behaves make some SSI directives impossible to imitate from a CGI script.
www/CGI-Session-ExpireSessions-1.12 (Score: 0.020137845)
Perl module to delete expired CGI::Session-type sessions
CGI::Session::ExpireSessions is a pure Perl module. It deletes CGI::Session-type sessions which have passed their use-by date. It works with CGI::Session-type sessions in a database or in disk files, but does not appear to work with CGI::Session::PureSQL-type sessions. The recommended way to use this module is via method expire_sessions(), which requires CGI::Session V 4 or later.
www/CGI-Simple-1.115 (Score: 0.020137845)
Simple totally OO CGI interface that is CGI.pm compliant
CGI::Simple provides a relatively lightweight drop in replacement for CGI.pm. It shares an identical OO interface to CGI.pm for parameter parsing, file upload, cookie handling and header generation. This module is entirely object oriented, however a complete functional interface is available by using the CGI::Simple::Standard module.
www/CGI-Struct-1.21 (Score: 0.020137845)
Build data structures from CGI request parameters
CGI::Struct lets you transform CGI data keys that look like perl data structures into actual perl data structures.
www/CGI-Thin-0.52 (Score: 0.020137845)
Lightweight Parser for CGI Forms
This module is a very lightweight parser of CGI forms. And it has a special feature that it will return an array if the same key is used twice in the form. You can force an array even if only one value returned to avoid complications. The hash %cgi_data will have all the form data from either a POST or GET form and will also work for "multipart/form-data" forms necessary for uploading files.
www/CGI-Untaint-date-1.00 (Score: 0.020137845)
Validate a date
This Input Handler verifies that it is dealing with a reasonable date. Reasonably means anything that Date::Manip thinks is sensible, so you could use any of (for example): "December 12, 2001" "12th December, 2001" "2001-12-12" "next Tuesday" "third Wednesday in March" See Date::Manip for much more information on what date formats are acceptable. The resulting date will be a Date::Simple object. Date::Simple for more information on this.
www/CGI-Untaint-email-0.03 (Score: 0.020137845)
Validate an email address in a CGI form
CGI::Untaint::email input handler verifies that it is a valid RFC2822 mailbox format. The resulting value will be a Mail::Address instance.
www/CGI-Untaint-1.26 (Score: 0.020137845)
Process CGI input parameters
Dealing with large web based applications with multiple forms is a minefield. It's often hard enough to ensure you validate all your input at all, without having to worry about doing it in a consistent manner. If any of the validation rules change, you often have to alter them in many different places. And, if you want to operate taint-safe, then you're just adding even more headaches.
www/CGI-Upload-1.11 (Score: 0.020137845)
CGI class for handling browser file uploads
This module has been written to provide a simple and secure manner by which to handle files uploaded in multipart/form-data requests through a web browser. The primary advantage which this module offers over existing modules is the single interface which it provides for the most often required information regarding files uploaded in this manner. This module builds upon primarily the CGI and File::MMagic modules and offers some tidy and succinct methods for the handling of files uploaded via multipart/form-data requests.