From: Rafael Garcia-Suarez Date: Tue, 15 Mar 2005 09:30:28 +0000 (+0000) Subject: Upgrade to CGI 3.07. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=976c4ade930645f3b8c72758f0dca6062c93eb42;p=p5sagit%2Fp5-mst-13.2.git Upgrade to CGI 3.07. Add CGI's changelog p4raw-id: //depot/perl@24039 --- diff --git a/MANIFEST b/MANIFEST index 78baed2..f80fd3d 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1169,6 +1169,7 @@ lib/Carp.pm Error message base class lib/Carp.t See if Carp works lib/CGI/Apache.pm Support for Apache's Perl module lib/CGI/Carp.pm Log server errors with helpful context +lib/CGI/Changes Changelog for CGI.pm lib/CGI/Cookie.pm Interface to Netscape Cookies lib/CGI/eg/caution.xbm CGI example lib/CGI/eg/clickable_image.cgi CGI example diff --git a/lib/CGI.pm b/lib/CGI.pm index 94c4e65..08adf4f 100644 --- a/lib/CGI.pm +++ b/lib/CGI.pm @@ -18,8 +18,8 @@ use Carp 'croak'; # The most recent version and complete docs are available at: # http://stein.cshl.org/WWW/software/CGI/ -$CGI::revision = '$Id: CGI.pm,v 1.177 2005/03/09 21:04:48 lstein Exp $'; -$CGI::VERSION=3.06; +$CGI::revision = '$Id: CGI.pm,v 1.178 2005/03/14 16:30:20 lstein Exp $'; +$CGI::VERSION=3.07; # HARD-CODED LOCATION FOR FILE UPLOAD TEMPORARY FILES. # UNCOMMENT THIS ONLY IF YOU KNOW WHAT YOU'RE DOING. diff --git a/lib/CGI/Changes b/lib/CGI/Changes new file mode 100644 index 0000000..7a6baf8 --- /dev/null +++ b/lib/CGI/Changes @@ -0,0 +1,1169 @@ + Version 3.07 + 1. Fixed typo in mod_perl detection. + + Version 3.06 + + 1. Fixed bare call to script() in start_html + 2. Moved Fh::DESTROY out of autoloaded functions so as to avoid + clobbering $@ when CGI functions are executed in an eval{} + context. + 3. mod_perl 2.0 version detection patch in CGI::Cookie provided by + Allen Day. + 4. autoEscape() flag is now respected when generating extra + attributes. + 5. Tests for *tag start/end generation from Shlomi Fish. + 6. Support for can() method provided by Ron Savage. + 7. Fix for lang='' when outputting XHTML. + 8. Added support for chunked transfer encoding, as suggested by + Hakan Ardo + 9. Fixed clobbering of row and column headers in tableized radio + and checkbox groups, as reported by Nicolas Thierry-Mieg. + 10.