4b934ee23e4786ae604834288ba0582d4f300789
[p5sagit/p5-mst-13.2.git] / lib / CGI / Changes
1   Version 3.21
2   1. Don't try to read data at all when POST > $POST_MAX.
3   2. Fixed bug that caused $cgi->param('name',undef,'value') to unset param('name') entirely.
4   3. Fixed bug in which upload() sometimes returns empty. (CPAN bug #12694).
5   4. Incorporated patch from BURAK@cpan.org to support HTTPcookies (CPAN bug 21019).
6
7   Version 3.20
8   1. Patch from David Wheeler for CGI::Cookie->bake(). Uses mod_perl headers_out->add()
9         rather than headers_out->set().
10   2. Fixed problem identified by Andrei Voronkov in which start_form() output was screwed
11         up when initial argument begins with a dash and subsequent arguments do not.
12   3. Quashed uninitialized variable warnings coming from script_name(), url() and other
13         functions that require access to the PATH_INFO environment variable.
14
15   Version 3.19
16   1. Added patch from Stephen Frost that allows one to suppress use of the temp file that is
17         created during uploads.
18   2. Fixed problem noted by Martin Foster in which regular expression meta-character terms
19         in the path information were not quoted, causing URL parsing
20         to fail on URLs that contained metacharacters (such as +).
21   3. More fixes to the url() method.
22   4. Removed "hack to fix broken PATH_INFO in MSII".
23
24   Version 3.18
25   1.  Doc typo fixes.
26   2.  Patch from Steve Peters to default the document type to match the charset.
27   3.  Fixed param() so that param(-name=>'foo',-values=>[]) sets the parameter to empty list.
28
29   Version 3.16 Wed Feb  8 13:29:11 EST 2006
30    1. header() -charset option now works even when the MIME type is not "text".
31    2. Fixed documentation for cookie() function and fastCGI.
32    3. Upload filehandles now only closed automatically on Windows systems.
33    4. Apache::Cookie compatibility fix from David Wheeler
34    5. CGI::Carp->fatalsToBrowser() does not work correctly with
35         mod_perl 2. No workaround is known.
36    6. Fixed text status code associated with 302 redirects. Should be "Found"
37         but was "Moved".
38    7. Fixed charset in start_html() and header() to be in synch.
39
40   Version 3.15 Wed Dec  7 15:13:22 EST 2005
41    1. Remove extraneous "?" from self_url() when URI contains a ? but no query string.
42
43   Version 3.14 Tue Dec  6 17:12:03 EST 2005
44    1. Fixed broken scrolling_list() select attribute.
45         
46   Version 3.13
47     1. Removed extraneous empty "?" from end of self_url().
48
49   Version 3.12
50     1. Fixed virtual_port so that it works properly with https protocol.
51     2. Fixed documentation for upload_hook().
52     3. Added POSTDATA documentation.
53     4. Made upload_hook() work in function-oriented mode.
54     5. Fixed POST_MAX behavior so that it doesn't cause client to hang.
55     6. Disabled automatic tab indexes and added new -tabindex pragma to
56         turn automatic indexes back on.
57     7. The url() and self_url() methods now work better in the context of Apache
58        mod_rewrite. Be advised that path_info() may give you confusing results
59        when mod_rewrite is active because Apache calculates the path info *after*
60        rewriting. This is mostly worked around in url() and self_url(), but you
61        may notice some anomalies.
62     8. Removed empty (and non-validating) <div> from code emitted by end_form().
63     9. Fixed CGI::Carp to work correctly with Mod_perl 1.29 in an Apache 2 environment.
64    10. Setting $CGI::TMPDIRECTORY should now be effective.
65
66   Version 3.11
67     1. Killed warning in CGI::Cookie about MOD_PERL_API_VERSION
68     2. Fixed append() so that it works in function mode.
69     3. Workaround for a bug that appears in Apache2 versions through 2.0.54 
70        in which SCRIPT_NAME and PATH_INFO are incorrect if the additional path_info
71        contains a double slash. This workaround will handle the common case of
72        http://mysite.com/cgi-bin/log.cgi/http://www.some.other.site/args, but will
73        not handle the uncommon case of a ScriptAlias directive that adds additional
74        path information to the end of the translated URI.
75
76   Version 3.10
77     1. Added Apache2::RequestIO, which is necessary for mp2 interoperability.
78
79   Version 3.09
80     1. Fixed tabindex="0" when using CGI to create forms without a prior start_html
81     2. Removed warning about non-numeric MOD_PERL_API_VERSION.
82
83   Version 3.08
84     1. update support for mod_perl 2.0.  versions prior to
85        mod_perl 1.999_22 (2.0.0-RC5) are no longer supported.
86
87   Version 3.07
88     1. Fixed typo in mod_perl detection.
89
90   Version 3.06
91
92     1. Fixed bare call to script() in start_html
93     2. Moved Fh::DESTROY out of autoloaded functions so as to avoid
94        clobbering $@ when CGI functions are executed in an eval{}
95        context.
96     3. mod_perl 2.0 version detection patch in CGI::Cookie provided by
97        Allen Day.
98     4. autoEscape() flag is now respected when generating extra
99        attributes.
100     5. Tests for *tag start/end generation from Shlomi Fish.
101     6. Support for can() method provided by Ron Savage.
102     7. Fix for lang='' when outputting XHTML.
103     8. Added support for chunked transfer encoding, as suggested by 
104         Hakan Ardo
105     9. Fixed clobbering of row and column headers in tableized radio
106         and checkbox groups, as reported by Nicolas Thierry-Mieg.
107    10. <Label> tags are now associated with form elements, as suggested
108         by accessibility guidelines.
109    11. The <?xml> directive produced by start_html is now turned off by
110         default and the charset is specified in a <meta> directive.  Apparently
111         IE6 (and maybe some versions of Opera) were getting confused by this.
112    12. Support for tab indexes.
113    13. Retired the HTML docs.  The POD docs are now primary documentation.
114    14. CGI::Carp now correctly detects and handles Apache::Dispatch.
115    15. CGI::Util::utf8_chr now correctly sets the UTF8 flag on 5.006 or
116         higher perls (fix courtesy Slaven Rezic).
117
118
119   Version 3.05
120
121     1. Fixed uninitialized variable warning on start_form() when running
122        from command line.
123     2. Fixed CGI::_set_attributes so that attributes with a - are handled
124        correctly.
125     3. Fixed CGI::Carp::die() so as to avoid problems from _longmess()
126        clobbering @_.
127     4. If HTTP_X_FORWARDED_HOST is defined (i.e. running under a proxy),
128        the various functions that return HOST will use that instead.
129     5. Fix for undefined utf8() call in CGI::Util.
130     6. Changed the call to warningsToBrowser() in
131        CGI::Carp::fatalsToBrowser to call only after HTTP header is sent
132        (thanks to Didier Lebrun for noticing).
133     7. Patches from Dan Harkless to make CGI.pm validatable against HTML
134        3.2.
135     8. Fixed an extraneous "foo=bar" appearing when extra style
136        parameters passed to start_html;
137     9. Fixed cross-site scripting bug in startform() pointed out by Dan
138        Harkless.
139    10. Fixed documentation to discuss list context behavior of
140        form-element generators explicitly.
141    11. Fixed incorrect results from end_form() when called in OO manner.
142    12. Fixed query string stripping in order to handle URLs containing
143        escaped newlines.
144    13. During server push, set NPH to 0 rather than 1. This is supposed
145        to fix problems with Apache.
146    14. Fixed incorrect processing of multipart form fields that contain
147        embedded quotes. There's still the issue of how to handle ones
148        that contain embedded semicolons, but no one has complained (yet).
149    15. Fixed documentation bug in -style argument to start_html()
150    16. Added -status argument to redirect().
151
152   Version 3.04
153
154     1. Fixed the problem with mod_perl crashing when "defaults" button
155        pressed.
156
157   Version 3.03
158
159     1. Fix upload hook functionality
160     2. Workaround for CGI->unescape_html()
161     3. Bumped version numbers in CGI::Fast and CGI::Util for 5.8.3-tobe
162
163   Version 3.02
164
165     1. Bring in Apache::Response just in case.
166     2. File upload on EBCDIC systems now works.
167
168   Version 3.01
169
170     1. No fix yet for upload failures when running on EBCDIC server.
171     2. Fixed uninitialized glob warnings that appeared when file
172        uploading under perl 5.8.2.
173     3. Added patch from Schlomi Fish to allow debugging of PATH_INFO from
174        command line.
175     4. Added patch from Steve Hay to correctly unlink tmp files under
176        mod_perl/windows
177     5. Added upload_hook functionality from Jamie LeTaul
178     6. Workarounds for mod_perl 2 IO issues. Check that file upload and
179        state saving still working.
180     7. Added code for underreads.
181     8. Fixed misleading description of redirect() and relative URLs in
182        the POD docs.
183     9. Workaround for weird interaction of CGI::Carp with Safe module
184        reported by William McKee.
185    10. Added patches from Ilmari Karonen to improve behavior of
186        CGI::Carp.
187    11. Fixed documentation error in -style argument.
188    12. Added virtual_port() method for finding out what port server is
189        listening on in a virtual-host aware fashion.
190
191   Version 3.00
192
193     1. Patch from Randal Schwartz to fix bug introduced by cross-site
194        scripting vulnerability "fix."
195     2. Patch from JFreeman to replace UTF-8 escape constant of 0xfe with
196        0xfc. Hope this is right!
197
198   Version 2.99
199
200     1. Patch from Steve Hay to fix extra Content-type: appearing on
201        browser screen when FatalsToBrowser invoked.
202     2. Patch from Ewann Corvellec to fix cross-site scripting
203        vulnerability.
204     3. Fixed tmpdir routine for file uploading to solve problem that
205        occurs under mod_perl when tmpdir is writable at startup time, but
206        not at session time.
207
208   Version 2.98
209
210     1. Fixed crash in Dump() function.
211
212   Version 2.97
213
214     1. Sigh. Uploaded wrong 2.96 to CPAN.
215
216   Version 2.96
217
218     1. More bugfixes to the -style argument.
219
220   Version 2.95
221
222     1. Fixed bugs in start_html(-style=>...) support introduced in 2.94.
223
224   Version 2.94
225
226     1. Removed warning from reset() method.
227     2. Moved
228
229    and tags into the :html3 group. Hope this removes undefined CGI::Area
230    errors.
231
232      Changed CGI::Carp to play with mod_perl2 and to (hopefully) restore
233    reporting of compile-time errors.
234
235      Fixed potential deadlock between web server and CGI.pm when aborting
236    a read due to POST_MAX (reported by Antti Lankila).
237
238      Fixed issue with tag-generating function not incorporating content
239    when first variable undef.
240
241      Fixed cross-site scripting bug reported by obscure.
242
243      Fixed Dump() function to return correctly formed XHTML - bug
244    reported by Ralph Siemsen.
245
246   Version 2.93
247
248     1. Fixed embarassing bug in mp1 support.
249
250   Version 2.92
251
252     1. Fix to be P3P compliant submitted from MPREWITT.
253     2. Added CGI->r() API for mod_perl1/mod_perl2.
254     3. Fixed bug in redirect() that was corrupting cookies.
255     4. Minor fix to behavior of reset() button to make it consistent with
256        submit() button (first time this has been changed in 9 years).
257     5. Patch from Dan Kogai to handle UTF-8 correctly in 5.8 and higher.
258     6. Patch from Steve Hay to make CGI::Carp's error messages appear on
259        MSIE browsers.
260     7. Added Yair Lenga's patch for non-urlencoded postings.
261     8. Added Stas Bekman's patches for mod_perl 2 compatibility.
262     9. Fixed uninitialized escape behavior submitted by William Campbell.
263    10. Fixed tied behavior so that you can pass arguments to tie()
264    11. Fixed incorrect generation of URLs when the path_info contains +
265        and other odd characters.
266    12. Fixed redirect(-cookies=>$cookie) problem.
267    13. Fixed tag generation bug that affects -javascript passed to
268        start_html().
269
270   Version 2.91
271
272     1. Attribute generation now correctly respects the value of
273        autoEscape().
274     2. Fixed endofrm() syntax error introduced by Ben Edgington's patch.
275
276   Version 2.90
277
278     1. Fixed bug in redirect header handling.
279     2. Added P3P option to header().
280     3. Patches from Alexey Mahotkin to make CGI::Carp work correctly with
281        object-oriented exceptions.
282     4. Removed inaccurate description of how to set multiple cookies from
283        CGI::Cookie pod file.
284     5. Patch from Kevin Mahony to prevent running out of filehandles when
285        uploading lots of files.
286     6. Documentation enhancement from Mark Fisher to note that the
287        import_names() method transforms the parameter names into valid
288        Perl names.
289     7. Patch from Dan Harkless to suppress lang attribute in <html> tag
290        if specified as a null string.
291     8. Patch from Ben Edgington to fix broken XHTML-transitional 1.0
292        validation on endform().
293     9. Custom html header fix from Steffen Beyer (first letter correctly
294        upcased now)
295    10. Added a -verbatim option to stylesheet generation from Michael
296        Dickson
297    11. Faster delete() method from Neelam Gupta
298    12. Fixed broken Cygwin support.
299    13. Added empty charset support from Bradley Baetz
300    14. Patches from Doug Perham and Kevin Mahoney to fix file upload
301        failures when uploaded file is a multiple of 4096.
302
303   Version 2.89
304
305     1. Fixed behavior of ACTION tag when POSTING to a URL that has a
306        query string.
307     2. Added Patch from Michael Rommel to handle multipart/mixed uploads
308        from Opera
309
310   Version 2.88
311
312     1. Fixed problem with uploads being refused under Perl 5.8 when under
313        Taint mode.
314     2. Fixed uninitialized variable warnings under Perl 5.8.
315     3. Fixed CGI::Pretty regression test failures.
316
317   Version 2.87
318
319     1. Security hole patched: when processing multipart/form-data
320        postings, most arguments were being untainted silently. Returned
321        arguments are now tainted correctly. This may cause some scripts
322        to fail that used to work (thanks to Nick Cleaton for pointing
323        this out and persisting until it was fixed).
324     2. Update for mod_perl 2.0.
325     3. Pragmas such as -no_xhtml are now respected in mod_perl
326        environment.
327
328   Version 2.86
329
330     1. Fixes for broken CGI::Cookie expiration dates introduced in 2.84.
331
332   Version 2.85
333
334     1. Fix for broken autoEscape function introduced in 2.84.
335
336   Version 2.84
337
338     1. Fix for failed file uploads on Cygwin platforms.
339     2. HTML escaping code now replaced 0x8b and 0x9b with unicode
340        references < and *#8250;
341
342   Version 2.83
343
344     1. Fixed autoEscape() documentation inconsistencies.
345     2. Patch from Ville Skyttä to fix a number of XHTML inconsistencies.
346     3. Added Max-Age to list of CGI::Cookie headers.
347
348   Version 2.82
349
350     1. Patch from Rudolf Troller to add attribute setting and option
351        groups to form fields.
352     2. Patch from Simon Perreault for silent crashes when using CGI::Carp
353        under mod_perl.
354     3. Patch from Scott Gifford allows you to set the program name for
355        CGI::Carp.
356
357   Version 2.81
358
359     1. Removed extraneous slash from end of stylesheet tags generated by
360        start_html in non-XHTML mode.
361     2. Changed behavior of CGI::Carp with respect to eval{} contexts so
362        that output behaves properly in mod_perl environments.
363     3. Fixed default DTD so that it validates with W3C validator.
364
365   Version 2.80
366
367     1. Fixed broken messages in CGI::Carp.
368     2. Changed checked="1" to checked="checked" for real XHTML
369        compatibility.
370     3. Resurrected REQUEST_URI code so that url() works correctly with
371        multiviews.
372
373   Version 2.79
374
375     1. Changes to CGI::Carp to avoid "subroutine redefined" error
376        messages.
377     2. Default DTD is now XHTML 1.0 Transitional
378     3. Patches to support all HTML4 tags.
379
380   Version 2.78
381
382     1. Added ability to change encoding in <?xml> assertion.
383     2. Fixed the old escapeHTML('CGI') ne "CGI" bug
384     3. In accordance with XHTML requirements, there are no longer any
385        minimized attributes, such as "checked".
386     4. Patched bug which caused file uploads of exactly 4096 bytes to be
387        truncated to 4094 (thanks to Kevin Mahony)
388     5. New tests and fixes to CGI::Pretty (thanks to Michael Schwern).
389
390   Version 2.77
391
392     1. No new features, but released in order to fix an apparent CPAN
393        bug.
394
395   Version 2.76
396
397     1. New esc.t regression test for EBCDIC translations courtesy Peter
398        Prymmer.
399     2. Patches from James Jurach to make compatible with FCGI-ProcManager
400     3. Additional fields passed to header() (like -Content_disposition)
401        now honor initial capitalization.
402     4. Patch from Andrew McNaughton to handle utf-8 escapes (%uXXXX
403        codes) in URLs.
404
405   Version 2.752
406
407     1. Syntax error in the autoloaded Fh::new() subroutine.
408     2. Better error reporting in autoloaded functions.
409
410   Version 2.751
411
412     1. Tiny tweak to filename regular expression function on line 3355.
413
414   Version 2.75
415
416     1. Fixed bug in server push boundary strings (CGI.pm and CGI::Push).
417     2. Fixed bug that occurs when uploading files with funny characters
418        in the name
419     3. Fixed non-XHTML-compliant attributes produced by textfield()
420     4. Added EPOC support, courtesy Olaf Flebbe
421     5. Fixed minor XHTML bugs.
422     6. Made escape() and unescape() symmetric with respect to EBCDIC,
423        courtesy Roca, Ignasi <ignasi.roca@fujitsu.siemens.es>
424     7. Removed uninitialized variable warning from CGI::Cookie, provided
425        by Atipat Rojnuckarin <rojnuca@yahoo.com>
426     8. Fixed bug in CGI::Pretty that causes it to print partial end tags
427        when the $INDENT global is changed.
428     9. Single quotes are changed to character entity ' for compatibility
429        with URLs.
430
431   Version 2.74
432
433    September 13, 2000
434     1. Quashed one-character bug that caused CGI.pm to fail on file
435        uploads.
436
437   Version 2.73
438
439    September 12, 2000
440     1. Added -base to the list of arguments accepted by url().
441     2. Fixes to XHTML support.
442     3. POST parameters no longer show up in the Location box.
443
444   Version 2.72
445
446    August 19, 2000
447     1. Fixed the defaults button so that it works again
448     2. Charset is now correctly saved and restored when saving to files
449     3. url() now works correctly when given scripts with %20 and other
450        escapes in the additional path info. This undoes a patch
451        introduced in version 2.47 that I no longer understand the
452        rationale for.
453
454   Version 2.71
455
456    August 13, 2000
457     1. Newlines in the value attributes of hidden fields and other form
458        elements are now escaped when using ISO-Latin.
459     2. Inline script and style sections are now protected as CDATA
460        sections when XHTML mode is on (the default).
461
462   Version 2.70
463
464    August 4, 2000
465     1. Fixed bug in scrolling_list() which omitted a space in front of
466        the "multiple" attribute.
467     2. Squashed the "useless use of string in void context" message from
468        redirects.
469
470   Version 2.69
471
472     1. startform() now creates default ACTION for POSTs as well as GETs.
473        This may break some browsers, but it no longer violates the HTML
474        spec.
475     2. CGI.pm now emits XHTML by default. Disable with -no_xhtml.
476     3. We no longer interpret &#ddd sequences in non-latin character
477        sets.
478
479   Version 2.68
480
481     1. No longer attempts to escape characters when dealing with non
482        ISO-8861 character sets.
483     2. checkbox() function now defaults to using -value as its label,
484        rather than -name. The current behavior is what has been
485        documented from the beginning.
486     3. -style accepts array reference to incorporate multiple stylesheets
487        into document.
488
489     1. Fixed two bugs that caused the -compile pragma to fail with a
490        syntax error.
491
492   Version 2.67
493
494     1. Added XHTML support (incomplete; tags need to be lowercased).
495     2. Fixed CGI/Carp when running under mod_perl. Probably broke in
496        other contexts.
497     3. Fixed problems when passing multiple cookies.
498     4. Suppress warnings from _tableize() that were appearing when using
499        -w switch with radio_group() and checkbox_group().
500     5. Support for the header() -attachment argument, which can give
501        pages a default file name when saving to disk.
502
503   Version 2.66
504
505     1. 2.65 changes in make_attributes() broke HTTP header functions
506        (including redirect), so made it context sensitive.
507
508   Version 2.65
509
510     1. Fixed regression tests to skip tests that require implicit fork on
511        machines without fork().
512     2. Changed make_attributes() to automatically escape any HTML
513        reserved characters.
514     3. Minor documentation fix in javascript example.
515
516   Version 2.64
517
518     1. Changes introduced in 2.63 broke param() when retrieving parameter
519        lists containing only a single argument. This is now fixed.
520     2. self_url() now defaults to returning parameters delimited with
521        semicolon. Use the pragma -oldstyle_urls to get the old "&"
522        delimiter.
523
524   Version 2.63
525
526     1. Fixed CGI::Push to pull out parameters correctly.
527     2. Fixed redirect() so that it works with default character set
528     3. Changed param() so as to returned empty string '' when referring
529        to variables passed in query strings like 'name1=&name2'
530
531   Version 2.62
532
533     1. Fixed broken ReadParse() function, and added regression tests
534     2. Fixed broken CGI::Pretty, and added regression tests
535
536   Version 2.61
537
538     1. Moved more functions from CGI.pm proper into CGI/Util.pm.
539        CGI/Cookie should now be standalone.
540     2. Disabled per-user temporary directories, which were causing grief.
541
542   Version 2.60
543
544     1. Fixed junk appearing in autogenerated HTML functions when using
545        object-oriented mode.
546
547   Version 2.59
548
549     1. autoescape functionality breaks too much existing code, removed
550        it.
551     2. use escapeHTML() manually
552
553   Version 2.58
554
555    This is the release version of 2.57.
556
557   Version 2.57
558
559     1. Added -debug pragma and turned off auto reading of STDIN.
560     2. Default DTD updated to HTML 4.01 transitional.
561     3. Added charset() method and the -charset argument to header().
562     4. Fixed behavior of escapeHTML() to respect charset() and to escape
563        nasty Windows characters (thanks to Tom Christiansen).
564     5. Handle REDIRECT_QUERY_STRING correctly.
565     6. Removed use_named_parameters() because of dependency problems and
566        general lameness.
567     7. Fixed problems with bad HREF links generated by url(-relative=>1)
568        when the url is like /people/.
569     8. Silenced a warning on upload (patch provided by Jonas Liljegren)
570     9. Fixed race condition in CGI::Carp when errors occur during parsing
571        (patch provided by Maurice Aubrey).
572    10. Fixed failure of url(-path_info=>1) when path contains % signs.
573    11. Fixed warning from CGI::Cookie when receiving foreign cookies that
574        don't use name=value format.
575    12. Fixed incompatibilities with file uploading on VMS systems.
576
577   Version 2.56
578
579     1. Fixed bugs in file upload introduced in version 2.55
580     2. Fixed long-standing bug that prevented two files with identical
581        names from being uploaded.
582
583   Version 2.55
584
585     1. Fixed cookie regression test so as not to produce an error.
586     2. Fixed path_info() and self_url() to work correctly together when
587        path_info() modified.
588     3. Removed manify warnings from CGI::{Switch,Apache}.
589
590   Version 2.54
591
592     1. This will be the last release of the monolithic CGI.pm module.
593        Later versions will be modularized and optimized.
594     2. DOMAIN tag no longer added to cookies by default. This will break
595        some versions of Internet Explorer, but will avoid breaking
596        networks which use host tables without fully qualified domain
597        names. For compatibility, please always add the -domain tag when
598        creating cookies.
599     3. Fixed escape() method so that +'s are treated correctly.
600     4. Updated CGI::Pretty module.
601
602   Version 2.53
603
604     1. Forgot to upgrade regression tests before releasing 2.52. NOTHING
605        ELSE HAS CHANGED IN LIBRARY
606
607   Version 2.52
608
609     1. Spurious newline in checkbox() routine removed. (courtesy John
610        Essen)
611     2. TEXTAREA linebreaks now respected in dump() routine. (courtesy
612        John Essen)
613     3. Patches for DOS ports (courtesy Robert Davies)
614     4. Patches for VMS
615     5. More fixes for cookie problems
616     6. Fix CGI::Carp so that it doesn't affect eval{} blocks (courtesy
617        Byron Brummer)
618
619   Version 2.51
620
621     1. Fixed problems with cookies not being remembered when sent to IE
622        5.0 (and Netscape 5.0 too?)
623     2. Numerous HTML compliance problems in cgi_docs.html; fixed thanks
624        to Michael Leahy
625
626   Version 2.50
627
628     1. Added a new Vars() method to retrieve all parameters as a tied
629        hash.
630     2. Untainted tainted tempfile name so that script doesn't fail on
631        terminal unlink.
632     3. Made picking of upload tempfile name more intelligent so that
633        doesn't fail in case of name collision.
634     4. Fixed handling of expire times when passed an absolute timestamp.
635     5. Changed dump() to Dump() to avoid name clashes.
636
637   Version 2.49
638
639     1. Fixes for FastCGI (globals not getting reset)
640     2. Fixed url() to correctly handle query string and path under
641        MOD_PERL
642
643   Version 2.48
644
645     1. Reverted detection of MOD_PERL to avoid breaking PerlEX.
646
647   Version 2.47
648
649     1. Patch to fix file upload bug appearing in IE 3.01 for
650        Macintosh/PowerPC.
651     2. Replaced use of $ENV{SCRIPT_NAME} with $ENV{REQUEST_URI} when
652        running under Apache, to fix self-referencing URIs.
653     3. Fixed bug in escapeHTML() which caused certain constructs, such as
654        CGI->image_button(), to fail.
655     4. Fixed bug which caused strong('CGI') to fail. Be careful to use
656        CGI::strong('CGI') and not CGI->strong('CGI'). The latter will
657        produce confusing results.
658     5. Added upload() function, as a preferred replacement for the
659        "filehandle as string" feature.
660     6. Added cgi_error() function.
661     7. Rewrote file upload handling to return undef rather than dieing
662        when an error is encountered. Be sure to call cgi_error() to find
663        out what went wrong.
664
665   Version 2.46
666
667     1. Fix for failure of the "include" tests under mod_perl
668     2. Added end_multipart_form to prevent failures during qw(-compile
669        :all)
670
671   Version 2.45
672
673     1. Multiple small documentation fixes
674     2. CGI::Pretty didn't get into 2.44. Fixed now.
675
676   Version 2.44
677
678     1. Fixed file descriptor leak in upload function.
679     2. Fixed bug in header() that prevented fields from containing double
680        quotes.
681     3. Added Brian Paulsen's CGI::Pretty package for pretty-printing
682        output HTML.
683     4. Removed CGI::Apache and CGI::Switch from the distribution.
684     5. Generated start_* shortcuts so that start_table(), end_table(),
685        start_ol(), end_ol(), and so forth now work (see the docs on how
686        to enable this feature).
687     6. Changed accept() to Accept(), sub() to Sub(). There's still a
688        conflict with reset(), but this will break too many existing
689        scripts!
690
691   Version 2.43
692
693     1. Fixed problem with "use strict" and file uploads (thanks to Peter
694        Haworth)
695     2. Fixed problem with not MSIE 3.01 for the power_mac not doing file
696        uploads right.
697     3. Fixed problem with file upload on IIS 4.0 when authorization in
698        use.
699     4. -content_type and '-content-type' can now be provided to header()
700        as synonyms for -type.
701     5. CGI::Carp now escapes the ampersand BEFORE escaping the > and <
702        signs.
703     6. Fixed "not an array reference" error when passing a hash reference
704        to radio_group().
705     7. Fixed non-removal of uploaded TMP files on NT platforms which
706        occurs when server runs on non-C drive (thanks to Steve Kilbane
707        for finding this one).
708
709   Version 2.42
710
711     1. Too many screams of anguish at changed behavior of url(). Is now
712        back to its old behavior by default, with options to generate all
713        the variants.
714     2. Added regression tests. "make test" now works.
715     3. Documentation fixes.
716     4. Fixes for Macintosh uploads, but uploads STILL do not work pending
717        changes to MacPerl.
718
719   Version 2.41
720
721     1. url() method now includes the path info. Use script_name() to get
722        it without path info().
723     2. Changed handling of empty attributes in HTML tag generation. Be
724        warned! Use table({-border=>undef}) rather than
725        table({-border=>''}).
726     3. Changes to allow uploaded filenames to be compared to other
727        strings with "eq", "cmp" and "ne".
728     4. Changes to allow CGI.pm to coexist more peacefully with
729        ActiveState PerlEX.
730     5. Changes to prevent exported variables from clashing when importing
731        ":all" set in combination with cookies.
732
733   Version 2.40
734
735     1. CGI::Carp patched to work better with mod_perl (thanks to Chris
736        Dean).
737     2. Uploads of files whose names begin with numbers or the Windows
738        \\UNC\shared\file nomenclature should no longer fail.
739     3. The <STYLE> tag (for cascading style sheets) now generates the
740        required TYPE attribute.
741     4. Server push primitives added, thanks to Ed Jordan.
742     5. Table and other HTML3 functions are now part of the :standard set.
743     6. Small documentation fixes.
744
745    TO DO:
746     1. Do something about the DTD mess. The module should generate
747        correct DTDs, or at least offer the programmer a way to specify
748        the correct one.
749     2. Split CGI.pm into CGI processing and HTML-generating modules.
750     3. More robust file upload (?still not working on the Macintosh?).
751     4. Bring in all the HTML4 functionality, particular the accessibility
752        features.
753
754   Version 2.39
755
756     1. file uploads failing because of VMS patch; fixed.
757     2. -dtd parameter was not being properly processed.
758
759   Version 2.38
760
761    I finally got tired of all the 2.37 betas and released 2.38. The main
762    difference between this version and the last 2.37 beta (2.37b30) are
763    some fixes for VMS. This should allow file upload to work properly on
764    all VMS Web servers.
765
766   Version 2.37, various beta versions
767
768     1. Added a CGI::Cookie::parse() method for lucky mod_perl users.
769     2. No longer need separate -values and -labels arguments for
770        multi-valued form elements.
771     3. Added better interface to raw cookies (fix courtesy Ken Fox,
772        kfox@ford.com)
773     4. Added param_fetch() function for direct access to parameter list.
774     5. Fix to checkbox() to allow for multi-valued single checkboxes
775        (weird problem).
776     6. Added a compile() method for those who want to compile without
777        importing.
778     7. Documented the import pragmas a little better.
779     8. Added a -compile switch to the use clause for the long-suffering
780        mod_perl and Perl compiler users.
781     9. Fixed initialization routines so that FileHandle and type globs
782        work correctly (and hash initialization doesn't fail!).
783    10. Better deletion of temporary files on NT systems.
784    11. Added documentation on escape(), unescape(), unescapeHTML() and
785        unescapeHTML() subroutines.
786    12. Added documentation on creating subclasses.
787    13. Fixed problem when calling $self->SUPER::foo() from inheriting
788        subclasses.
789    14. Fixed problem using filehandles from within subroutines.
790    15. Fixed inability to use the string "CGI" as a parameter.
791    16. Fixed exponentially growing $FILLUNIT bug
792    17. Check for undef filehandle in read_from_client()
793    18. Now requires the UNIVERSAL.pm module, present in Perl 5.003_7 or
794        higher.
795    19. Fixed problem with uppercase-only parameters being ignored.
796    20. Fixed vanishing cookie problem.
797    21. Fixed warning in initialize_globals() under mod_perl.
798    22. File uploads from Macintosh versions of MSIE should now work.
799    23. Pragmas now preceded by dashes (-nph) rather than colons (:nph).
800        Old style is supported for backward compatability.
801    24. Can now pass arguments to all functions using {} brackets,
802        resolving historical inconsistencies.
803    25. Removed autoloader warnings about absent MultipartBuffer::DESTROY.
804    26. Fixed non-sticky checkbox() when -name used without -value.
805    27. Hack to fix path_info() in IIS 2.0. Doesn't help with IIS 3.0.
806    28. Parameter syntax for debugging from command line now more
807        straightforward.
808    29. Added $DISABLE_UPLOAD to disable file uploads.
809    30. Added $POST_MAX to error out if POSTings exceed some ceiling.
810    31. Fixed url_param(), which wasn't working at all.
811    32. Fixed variable suicide problem in s///e expressions, where the
812        autoloader was needed during evaluation.
813    33. Removed excess spaces between elements of checkbox and radio
814        groups
815    34. Can now create "valueless" submit buttons
816    35. Can now set path_info as well as read it.
817    36. ReadParse() now returns a useful function result.
818    37. import_names() now allows you to optionally clear out the
819        namespace before importing (for mod_perl users)
820    38. Made it possible to have a popup menu or radio button with a value
821        of "0".
822    39. link() changed to Link() to avoid overriding native link function.
823    40. Takes advantage of mod_perl's register_cleanup() function to clear
824        globals.
825    41. <LAYER> and <ILAYER> added to :html3 functions.
826    42. Fixed problems with private tempfiles and NT/IIS systems.
827    43. No longer prints the DTD by default (I bet no one will complain).
828    44. Allow underscores to replace internal hyphens in parameter names.
829    45. CGI::Push supports heterogeneous MIME types and adjustable delays
830        between pages.
831    46. url_param() method added for retrieving URL parameters even when a
832        fill-out form is POSTed.
833    47. Got rid of warnings when radio_group() is called.
834    48. Cookies now moved to their very own module.
835    49. Fixed documentation bug in CGI::Fast.
836    50. Added a :no_debug pragma to the import list.
837
838   Version 2.36
839
840     1. Expanded JavaScript functionality
841     2. Preliminary support for cascading stylesheets
842     3. Security fixes for file uploads:
843           + Module will bail out if its temporary file already exists
844           + Temporary files can now be made completely private to avoid
845             peeking by other users or CGI scripts.
846     4. use CGI qw/:nph/ wasn't working correctly. Now it is.
847     5. Cookie and HTTP date formats didn't meet spec. Thanks to Mark
848        Fisher (fisherm@indy.tce.com) for catching and fixing this.
849
850    p
851
852   Version 2.35
853
854     1. Robustified multipart file upload against incorrect syntax in
855        POST.
856     2. Fixed more problems with mod_perl.
857     3. Added -noScript parameter to start_html().
858     4. Documentation fixes.
859
860   Version 2.34
861
862     1. Stupid typo fix
863
864   Version 2.33
865
866     1. Fixed a warning about an undefined environment variable.
867     2. Doug's patch for redirect() under mod_perl
868     3. Partial fix for busted inheritence from CGI::Apache
869     4. Documentation fixes.
870
871   Version 2.32
872
873     1. Improved support for Apache's mod_perl.
874     2. Changes to better support inheritance.
875     3. Support for OS/2.
876
877   Version 2.31
878
879     1. New uploadInfo() method to obtain header information from uploaded
880        files.
881     2. cookie() without any arguments returns all the cookies passed to a
882        script.
883     3. Removed annoying warnings about $ENV{NPH} when running with the -w
884        switch.
885     4. Removed operator overloading throughout to make compatible with
886        new versions of perl.
887     5. -expires now implies the -date header, to avoid clock skew.
888     6. WebSite passes cookies in $ENV{COOKIE} rather than
889        $ENV{HTTP_COOKIE}. We now handle this, even though it's O'Reilly's
890        fault.
891     7. Tested successfully against new sfio I/O layer.
892     8. Documentation fixes.
893
894   Version 2.30
895
896     1. Automatic detection of operating system at load time.
897     2. Changed select() function to Select() in order to avoid conflict
898        with Perl built-in.
899     3. Added Tr() as an alternative to TR(); some people think it looks
900        better that way.
901     4. Fixed problem with autoloading of MultipartBuffer::DESTROY code.
902     5. Added the following methods:
903           + virtual_host()
904           + server_software()
905     6. Automatic NPH mode when running under Microsoft IIS server.
906
907   Version 2.29
908
909     1. Fixed cookie bugs
910     2. Fixed problems that cropped up when useNamedParameters was set to
911        1.
912     3. Prevent CGI::Carp::fatalsToBrowser() from crapping out when
913        encountering a die() within an eval().
914     4. Fixed problems with filehandle initializers.
915
916   Version 2.28
917
918     1. Added support for NPH scripts; also fixes problems with Microsoft
919        IIS.
920     2. Fixed a problem with checkbox() values not being correctly saved
921        and restored.
922     3. Fixed a bug in which CGI objects created with empty string
923        initializers took on default values from earlier CGI objects.
924     4. Documentation fixes.
925
926   Version 2.27
927
928     1. Small but important bug fix: the automatic capitalization of tag
929        attributes was accidentally capitalizing the VALUES as well as the
930        ATTRIBUTE names (oops).
931
932   Version 2.26
933
934     1. Changed behavior of scrolling_list(), checkbox() and
935        checkbox_group() methods so that defaults are honored correctly.
936        The "fix" causes endform() to generate additional <INPUT
937        TYPE="HIDDEN"> tags -- don't be surpised.
938     2. Fixed bug involving the detection of the SSL protocol.
939     3. Fixed documentation error in position of the -meta argument in
940        start_html().
941     4. HTML shortcuts now generate tags in ALL UPPERCASE.
942     5. start_html() now generates correct SGML header:
943       <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
944       
945     6. CGI::Carp no longer fails "use strict refs" pragma.
946
947   Version 2.25
948
949     1. Fixed bug that caused bad redirection on destination URLs with
950        arguments.
951     2. Fixed bug involving use_named_parameters() followed by
952        start_multipart_form()
953     3. Fixed bug that caused incorrect determination of binmode for
954        Macintosh.
955     4. Spelling fixes on documentation.
956
957   Version 2.24
958
959     1. Fixed bug that caused generation of lousy HTML for some form
960        elements
961     2. Fixed uploading bug in Windows NT
962     3. Some code cleanup (not enough)
963
964   Version 2.23
965
966     1. Fixed an obscure bug that caused scripts to fail mysteriously.
967     2. Fixed auto-caching bug.
968     3. Fixed bug that prevented HTML shortcuts from passing taint checks.
969     4. Fixed some -w warning problems.
970
971   Version 2.22
972
973     1. New CGI::Fast module for use with FastCGI protocol. See pod
974        documentation for details.
975     2. Fixed problems with inheritance and autoloading.
976     3. Added TR() (<tr>) and PARAM() (<param>) methods to list of
977        exported HTML tag-generating functions.
978     4. Moved all CGI-related I/O to a bottleneck method so that this can
979        be overridden more easily in mod_perl (thanks to Doug MacEachern).
980     5. put() method as substitute for print() for use in mod_perl.
981     6. Fixed crash in tmpFileName() method.
982     7. Added tmpFileName(), startform() and endform() to export list.
983     8. Fixed problems with attributes in HTML shortcuts.
984     9. Functions that don't actually need access to the CGI object now no
985        longer generate a default one. May speed things up slightly.
986    10. Aesthetic improvements in generated HTML.
987    11. New examples.
988
989   Version 2.21
990
991     1. Added the -meta argument to start_html().
992     2. Fixed hidden fields (again).
993     3. Radio_group() and checkbox_group() now return an appropriate
994        scalar value when called in a scalar context, rather than
995        returning a numeric value!
996     4. Cleaned up the formatting of form elements to avoid unesthetic
997        extra spaces within the attributes.
998     5. HTML elements now correctly include the closing tag when
999        parameters are present but null: em('')
1000     6. Added password_field() to the export list.
1001
1002   Version 2.20
1003
1004     1. Dumped the SelfLoader because of problems with running with taint
1005        checks and rolled my own. Performance is now significantly
1006        improved.
1007     2. Added HTML shortcuts.
1008     3. import() now adheres to the Perl module conventions, allowing
1009        CGI.pm to import any or all method names into the user's name
1010        space.
1011     4. Added the ability to initialize CGI objects from strings and
1012        associative arrays.
1013     5. Made it possible to initialize CGI objects with filehandle
1014        references rather than filehandle strings.
1015     6. Added the delete_all() and append() methods.
1016     7. CGI objects correctly initialize from filehandles on NT/95 systems
1017        now.
1018     8. Fixed the problem with binary file uploads on NT/95 systems.
1019     9. Fixed bug in redirect().
1020    10. Added '-Window-target' parameter to redirect().
1021    11. Fixed import_names() so that parameter names containing funny
1022        characters work.
1023    12. Broke the unfortunate connection between cookie and CGI parameter
1024        name space.
1025    13. Fixed problems with hidden fields whose values are 0.
1026    14. Cleaned up the documentation somewhat.
1027
1028   Version 2.19
1029
1030     1. Added cookie() support routines.
1031     2. Added -expires parameter to header().
1032     3. Added cgi-lib.pl compatability mode.
1033     4. Made the module more configurable for different operating systems.
1034     5. Fixed a dumb bug in JavaScript button() method.
1035
1036   Version 2.18
1037
1038     1. Fixed a bug that corrects a hang that occurs on some platforms
1039        when processing file uploads. Unfortunately this disables the
1040        check for bad Netscape uploads.
1041     2. Fixed bizarre problem involving the inability to process uploaded
1042        files that begin with a non alphabetic character in the file name.
1043     3. Fixed a bug in the hidden fields involving the -override directive
1044        being ignored when scalar defaults were passed.
1045     4. Added documentation on how to disable the SelfLoader features.
1046
1047   Version 2.17
1048
1049     1. Added support for the SelfLoader module.
1050     2. Added oodles of JavaScript support routines.
1051     3. Fixed bad bug in query_string() method that caused some parameters
1052        to be silently dropped.
1053     4. Robustified file upload code to handle premature termination by
1054        the client.
1055     5. Exported temporary file names on file upload.
1056     6. Removed spurious "uninitialized variable" warnings that appeared
1057        when running under 5.002.
1058     7. Added the Carp.pm library to the standard distribution.
1059     8. Fixed a number of errors in this documentation, and probably added
1060        a few more.
1061     9. Checkbox_group() and radio_group() now return the buttons as
1062        arrays, so that you can incorporate the individual buttons into
1063        specialized tables.
1064    10. Added the '-nolabels' option to checkbox_group() and
1065        radio_group(). Probably should be added to all the other
1066        HTML-generating routines.
1067    11. Added the url() method to recover the URL without the entire query
1068        string appended.
1069    12. Added request_method() to list of environment variables available.
1070    13. Would you believe it? Fixed hidden fields again!
1071
1072   Version 2.16
1073
1074     1. Fixed hidden fields yet again.
1075     2. Fixed subtle problems in the file upload method that caused
1076        intermittent failures (thanks to Keven Hendrick for this one).
1077     3. Made file upload more robust in the face of bizarre behavior by
1078        the Macintosh and Windows Netscape clients.
1079     4. Moved the POD documentation to the bottom of the module at the
1080        request of Stephen Dahmen.
1081     5. Added the -xbase parameter to the start_html() method, also at the
1082        request of Stephen Dahmen.
1083     6. Added JavaScript form buttons at Stephen's request. I'm not sure
1084        how to use this Netscape extension correctly, however, so for now
1085        the form() method is in the module as an undocumented feature. Use
1086        at your own risk!
1087
1088   Version 2.15
1089
1090     1. Added the -override parameter to all field-generating methods.
1091     2. Documented the user_name() and remote_user() methods.
1092     3. Fixed bugs that prevented empty strings from being recognized as
1093        valid textfield contents.
1094     4. Documented the use of framesets and added a frameset example.
1095
1096   Version 2.14
1097
1098    This was an internal experimental version that was never released.
1099
1100   Version 2.13
1101
1102     1. Fixed a bug that interfered with the value "0" being entered into
1103        text fields.
1104
1105   Version 2.01
1106
1107     1. Added -rows and -columns to the radio and checkbox groups. No
1108        doubt this will cause much grief because it seems to promise a
1109        level of meta-organization that it doesn't actually provide.
1110     2. Fixed a bug in the redirect() method -- it was not truly HTTP/1.0
1111        compliant.
1112
1113   Version 2.0
1114
1115    The changes seemed to touch every line of code, so I decided to bump
1116    up the major version number.
1117     1. Support for named parameter style method calls. This turns out
1118        to be a big win for extending CGI.pm when Netscape adds new HTML
1119        "features".
1120     2. Changed behavior of hidden fields back to the correct "sticky"
1121        behavior. This is going to break some programs, but it is for
1122        the best in the long run.
1123     3. Netscape 2.0b2 broke the file upload feature. CGI.pm now handles
1124        both 2.0b1 and 2.0b2-style uploading. It will probably break again
1125        in 2.0b3.
1126     4. There were still problems with library being unable to distinguish
1127        between a form being loaded for the first time, and a subsequent
1128        loading with all fields blank. We now forcibly create a default
1129        name for the Submit button (if not provided) so that there's
1130        always at least one parameter.
1131     5. More workarounds to prevent annoying spurious warning messages
1132        when run under the -w switch. -w is seriously broken in perl
1133        5.001!
1134
1135   Version 1.57
1136
1137     1. Support for the Netscape 2.0 "File upload" field.
1138     2. The handling of defaults for selected items in scrolling lists and
1139        multiple checkboxes is now consistent.
1140
1141   Version 1.56
1142
1143     1. Created true "pod" documentation for the module.
1144     2. Cleaned up the code to avoid many of the spurious "use of
1145        uninitialized variable" warnings when running with the -w switch.
1146     3. Added the autoEscape() method. v
1147     4. Added string interpolation of the CGI object.
1148     5. Added the ability to pass additional parameters to the <BODY> tag.
1149     6. Added the ability to specify the status code in the HTTP header.
1150
1151   Bug fixes in version 1.55
1152
1153     1. Every time self_url() was called, the parameter list would grow.
1154        This was a bad "feature".
1155     2. Documented the fact that you can pass "-" to radio_group() in
1156        order to prevent any button from being highlighted by default.
1157
1158   Bug fixes in version 1.54
1159
1160     1. The user_agent() method is now documented;
1161     2. A potential security hole in import() is now plugged.
1162     3. Changed name of import() to import_names() for compatability with
1163        CGI:: modules.
1164
1165   Bug fixes in version 1.53
1166
1167     1. Fixed several typos in the code that were causing the following
1168        subroutines to fail in some circumstances
1169          1. checkbox()
1170          2. hidden()
1171     2. No features added
1172
1173   New features added in version 1.52
1174
1175     1. Added backslashing, quotation marks, and other shell-style escape
1176        sequences to the parameters passed in during debugging off-line.
1177     2. Changed the way that the hidden() method works so that the default
1178        value always overrides the current one.
1179     3. Improved the handling of sticky values in forms. It's now less
1180        likely that sticky values will get stuck.
1181     4. If you call server_name(), script_name() and several other methods
1182        when running offline, the methods now create "dummy" values to
1183        work with.
1184
1185   Bugs fixed in version 1.51
1186
1187     1. param() when called without arguments was returning an array of
1188        length 1 even when there were no parameters to be had. Bad bug!
1189        Bad!
1190     2. The HTML code generated would break if input fields contained the
1191        forbidden characters ">< or &. You can now use these characters
1192        freely.
1193
1194   New features added in version 1.50
1195
1196     1. import() method allows all the parameters to be imported into a
1197        namespace in one fell swoop.
1198     2. Parameters are now returned in the same order in which they were
1199        defined.
1200
1201   Bugs fixed in version 1.45
1202
1203     1. delete() method didn't work correctly. This is now fixed.
1204     2. reset() method didn't allow you to set the name of the button.
1205        Fixed.
1206
1207   Bugs fixed in version 1.44
1208
1209     1. self_url() didn't include the path information. This is now fixed.
1210
1211   New features added in version 1.43
1212
1213     1. Added the delete() method.
1214
1215   New features added in version 1.42
1216
1217     1. The image_button() method to create clickable images.
1218     2. A few bug fixes involving forms embedded in <PRE> blocks.
1219
1220   New features added in version 1.4
1221
1222     1. New header shortcut methods
1223           + redirect() to create HTTP redirection messages.
1224           + start_html() to create the HTML title, complete with the
1225             recommended <LINK> tag that no one ever remembers to include.
1226           + end_html() for completeness' sake.
1227     2. A new save() method that allows you to write out the state of an
1228        script to a file or pipe.
1229     3. An improved version of the new() method that allows you to restore
1230        the state of a script from a file or pipe. With (2) this gives you
1231        dump and restore capabilities! (Wow, you can put a "121,931
1232        customers served" banner at the bottom of your pages!)
1233     4. A self_url() method that allows you to create state-maintaining
1234        hypertext links. In addition to allowing you to maintain the state
1235        of your scripts between invocations, this lets you work around a
1236        problem that some browsers have when jumping to internal links in
1237        a document that contains a form -- the form information gets lost.
1238     5. The user-visible labels in checkboxes, radio buttons, popup menus
1239        and scrolling lists have now been decoupled from the values sent
1240        to your CGI script. Your script can know a checkbox by the name of
1241        "cb1" while the user knows it by a more descriptive name. I've
1242        also added some parameters that were missing from the text fields,
1243        such as MAXLENGTH.
1244     6. A whole bunch of methods have been added to get at environment
1245        variables involved in user verification and other obscure
1246        features.
1247
1248   Bug fixes
1249
1250     1. The problems with the hidden fields have (I hope at last) been
1251        fixed.
1252     2. You can create multiple query objects and they will all be
1253        initialized correctly. This simplifies the creation of multiple
1254        forms on one page.
1255     3. The URL unescaping code works correctly now.