Revision history for Perl extension Apache::AuthCookie.

2.001 date: 2000/02/11 04:46:59;
 - The login forms may now use the POST method instead of the GET method.
   This is a big deal, because with GET the user's credentials get logged
   to access logs, they remain in the user's browser history, and so on.
   Thanks to cholet@logilune.com (Eric Cholet) for the patch and prodding.

 - There is now a proper test suite, which will fire up an httpd and make
   requests of it.  The test code is adapted from Eric's old example
   (eg/) suite.

 - I've added a logout() method to help unset cookies.  The example
   logout.pl now uses logout().  Thanks to Aaron Ross
   (ross@mathforum.com).

2.000 date: 2000/02/02 13:18:23;
  - Now owned by Ken Williams (ken@forum.swarthmore.edu)

  - Created authenticate() and authorize() methods to replace authen()
    and authz().  authen() and authz() are now deprecated and will 
    disappear in a later version.

  - AuthType can now contain colons [adi@certsite.com (Adi)]

  - Nonexistent method calls (via 'require' directive) are no longer
    shielded in authorization stage - if it fails it fails, and you 
    get a server error.

  - Multiple 'require' directives should work now - previously only
    the first directive was respected.


1.3_03
	- Make synopsis access control params match the example. Pointed
	  out by tad@webcollective.com.
	- Added <Files> to the .htaccess in the sample to enable ExecCGI.
	- Nate Wilken reported that AuthCookie works as-is on Win32 with
	  a post 1.10 version of mod_perl and post 1.3b5 version of Apache.
	  (These versions add support for mod_perl's error_document method
	  on Win32. For earlier versions, AuthCookie can be modified to use
	  the ErrorDocument directive in the Apache config.)
	- Cleanup "Use of uninitialized value" warnings sotted by 
	  Marlys Nelson <marlys.a.nelson@UWRF.EDU>.

1.3_02
	- login.pl now uses $r->prev to get authtype and authname, so it
	  doesn't have to be in the same hierarchy as the proctected docs.
	  Thanks to Liam Kirsher <liam@numenet.com> for spotting this.
	- Steve Shreeve <shreeve@meded.med.uci.edu> tracked down a segv
	  from $r->err_header_out("Location"... I never could reproduce
	  this, but he said this $r->header_out("Location"... worked.
	- Fixed typo pointed out by Nate Wilken <wilken@mr_x.inre.asu.edu>
	- Changed directory eg/sample to eg/unprotected for compatibility
	  with windows pointed out by Nate Wilken <wilken@mr_x.inre.asu.edu>
1.3_01
	- Fix error where the cookie wasn't printed when debugging was
	  turned on.
	- Consistantly treat the session key as a string. This meant a
	  change to the authen_* function prototypes, you may need to
	  change ones you've already written.

1.3
	- First public release on CPAN, removed from Apache contrib.