CGI::Minimal

CGI::Minimal is a lightweight CGI form processing package.
Download

CGI::Minimal Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Perl Artistic License
  • Price:
  • FREE
  • Publisher Name:
  • Benjamin Franz
  • Publisher web site:
  • http://www.nihongo.org/snowhare/utilities/ftpweblog/

CGI::Minimal Tags


CGI::Minimal Description

CGI::Minimal is a lightweight CGI form processing package. 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 alternative to the CGI.pm moduleRather than attempt to address every possible need of a CGI programmer, it provides the _minimum_ functions needed for CGI such as form decoding (including file upload forms), URL encoding and decoding, HTTP usable date generation (RFC1123 compliant dates) and basic escaping and unescaping of HTMLized text.The ':preload' use time option is used to force all sub-component modules to load at compile time. It is not required for operation. It is solely a performance optimization for particular configurations. When used, it preloads the 'dehtmlize',' param_mime', 'param_filename', 'date_rfc1123', 'url_decode', 'calling_parms_table' and parameter setting supporting code. Those code sections are normally loaded automatically the first time they are needed.The form decoding interface is somewhat compatible with the CGI.pm module. No provision is made for generating HTTP or HTML on your behalf - you are expected to be conversant with how to put together any HTML or HTTP you need.Requirements:· PerlWhat's New in This Release:· Added 'allow_hybrid_post_get' class method. Tweaked file permissions.· Added regression tests for hybrid forms.


CGI::Minimal Related Software