Skip to content

Commit 65aecfc

Browse files
author
matisse
committed
Factored out the concept of user_is_active into a new method.
Added tests. Added documentation for public methods.
1 parent a5bba8b commit 65aecfc

File tree

11 files changed

+306
-183
lines changed

11 files changed

+306
-183
lines changed

Changes

+10-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
11
Revision history for Perl extension Apache2::AuthCookieDBI.
22

33
2.06 (unreleased)
4-
- Fixed https://rt.cpan.org/Public/Bug/Display.html?id=57906
5-
- Added support for WhatEverDBI_UserActiveField
6-
- Fixed https://rt.cpan.org/Public/Bug/Display.html?id=46117 $HEX_STRING_REGEX definition is wrong
4+
- Fixed statement handle still active <https://rt.cpan.org/Public/Bug/Display.html?id=57906>
5+
Also added support for WhatEverDBI_UserActiveField
6+
Thanks to Chad Columbus
7+
- Fixed $HEX_STRING_REGEX definition is wrong <https://rt.cpan.org/Public/Bug/Display.html?id=46117>
8+
Thanks to Joe Ingersoll
9+
- Fixed User authenticated if not in MySQL database <https://rt.cpan.org/Ticket/Display.html?id=62470>
10+
Thanks to Keith Lawson
11+
- Fixed Login.pl example - syntax error <https://rt.cpan.org/Public/Bug/Display.html?id=62487>
12+
(also moved from eg/public-pl/login.pl to eg/bin/login.pl)
13+
Thanks to William McKee http://search.cpan.org/~wmckee/
714

815
2.05 - Thu May 14 18:37:07 PDT 2009
916
- Fixed bug in _get_cipher_type() where it was not memoizing the

MANIFEST

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1+
Build.PL
12
Changes
3+
eg/bin/login.pl
4+
eg/html/login-failed.html
5+
eg/html/login.html
6+
generic_reg_auth_scheme.txt
7+
lib/Apache2/AuthCookieDBI.pm
28
LICENSE
39
MANIFEST
410
MANIFEST.SKIP
511
META.yml Module meta-data (added by MakeMaker)
6-
Makefile.PL
712
README
8-
eg/html/login-failed.html
9-
eg/html/login.html
10-
eg/public-pl/login.pl
11-
generic_reg_auth_scheme.txt
12-
lib/Apache2/AuthCookieDBI.pm
1313
schema.sql
1414
t/basic.t
1515
t/mock_libs/Apache/DBI.pm
@@ -22,3 +22,4 @@ t/mock_libs/DBI.pm
2222
t/mock_libs/Digest/MD5.pm
2323
t/utils.t
2424
techspec.txt
25+
Makefile.PL

MANIFEST.SKIP

+1
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ CVS/*
88
.*.tar.gz$
99
_build
1010
Build
11+
Apache2-AuthCookieDBI-*

META.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ name: Apache2-AuthCookieDBI
1414
provides:
1515
Apache2::AuthCookieDBI:
1616
file: lib/Apache2/AuthCookieDBI.pm
17-
version: 2.12
17+
version: 2.06
1818
requires:
1919
Apache2::AuthCookie: 3.08
2020
Apache2::Const: 0
@@ -29,4 +29,4 @@ requires:
2929
mod_perl2: 1.999022
3030
resources:
3131
license: http://opensource.org/licenses/lgpl-license.php
32-
version: 2.12
32+
version: 2.06

MYMETA.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ name: Apache2-AuthCookieDBI
1515
provides:
1616
Apache2::AuthCookieDBI:
1717
file: lib/Apache2/AuthCookieDBI.pm
18-
version: 2.12
18+
version: 2.06
1919
requires:
2020
Apache2::AuthCookie: 3.08
2121
Apache2::Const: 0
@@ -30,4 +30,4 @@ requires:
3030
mod_perl2: 1.999022
3131
resources:
3232
license: http://opensource.org/licenses/lgpl-license.php
33-
version: 2.12
33+
version: 2.06

eg/public-pl/login.pl eg/bin/login.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/perl -Tw
22
#
3-
# $Id: login.pl,v 1.4 2010/11/27 04:11:19 matisse Exp $
3+
# $Id: login.pl,v 1.1 2010/11/27 19:15:37 matisse Exp $
44
#
55
# Display a login form with hidden fields corresponding to the page they
66
# wanted to see.

0 commit comments

Comments
 (0)