Changeset 11424
- Timestamp:
- 05/12/08 12:06:38 (5 years ago)
- Location:
- lang/perl/Apache2-AuthenOpenID/trunk
- Files:
-
- 3 added
- 4 modified
-
Changes (modified) (1 diff)
-
MANIFEST (modified) (1 diff)
-
Makefile.PL (modified) (1 diff)
-
lib/Apache2/AuthenOpenID.pm (modified) (3 diffs)
-
t/TEST.PL (added)
-
t/conf (added)
-
t/conf/extra.last.conf.in (added)
Legend:
- Unmodified
- Added
- Removed
-
lang/perl/Apache2-AuthenOpenID/trunk/Changes
r7366 r11424 1 1 Revision history for Perl extension Apache2::AuthenOpenID. 2 2 3 0.06 Mon May 12 11:15:00 JST 2008 4 - removed harmful code for AuthType directive. 5 3 6 0.05 Sun Mar 02 12:45:00 JST 2008 4 - added missing use lines7 - added missing use lines 5 8 6 9 0.04 Sat Nov 10 12:21:00 JST 2007 -
lang/perl/Apache2-AuthenOpenID/trunk/MANIFEST
r476 r11424 1 1 Changes 2 lib/Apache2/AuthenOpenID.pm 2 3 Makefile.PL 3 4 MANIFEST 4 5 README 5 6 t/Apache2-AuthenOpenID.t 6 lib/Apache2/AuthenOpenID.pm 7 t/conf/extra.last.conf.in 8 t/TEST.PL -
lang/perl/Apache2-AuthenOpenID/trunk/Makefile.PL
r1263 r11424 1 use 5.008;1 use strict; 2 2 use ExtUtils::MakeMaker; 3 # See lib/ExtUtils/MakeMaker.pm for details of how to influence 4 # the contents of the Makefile that is written. 3 use Apache::TestMM qw(test clean); 4 5 Apache::TestMM::filter_args(); 6 Apache::TestMM::generate_script('t/TEST'); 7 5 8 WriteMakefile( 6 9 NAME => 'Apache2::AuthenOpenID', 7 10 VERSION_FROM => 'lib/Apache2/AuthenOpenID.pm', # finds $VERSION 8 11 PREREQ_PM => { 9 mod_perl2 => 2.000001, 10 CGI => 0, 11 Net::OpenID::Consumer => 0.14, 12 Digest::HMAC_SHA1 => 1.01, 13 LWPx::ParanoidAgent => 1.03, 14 Class::Data::Inheritable => 0, 12 'Text::More' => 0.32, 13 'mod_perl2' => 2.000001, 14 'Apache::Test' => 0, 15 'CGI' => 0, 16 'Net::OpenID::Consumer' => 0.14, 17 'Digest::HMAC_SHA1' => 1.01, 18 'LWPx::ParanoidAgent' => 1.03, 19 'Class::Data::Inheritable' => 0, 15 20 }, # e.g., Module::Name => 1.1 16 21 ($] >= 5.005 ? ## Add these new keywords supported since 5.005 -
lang/perl/Apache2-AuthenOpenID/trunk/lib/Apache2/AuthenOpenID.pm
r7368 r11424 20 20 use base qw( Class::Data::Inheritable ); 21 21 22 our $VERSION = '0.0 5';22 our $VERSION = '0.06'; 23 23 24 24 __PACKAGE__->mk_classdata( auth_type => 'openid' ); … … 30 30 31 31 my @directives = ( 32 {33 name => 'AuthType',34 req_override => Apache2::Const::OR_AUTHCFG,35 args_how => Apache2::Const::TAKE1,36 },37 32 { 38 33 name => 'return_to', … … 57 52 eval { 58 53 Apache2::Module::add($self, \@directives); 54 Apache2::ServerUtil->server->push_handlers( 55 PerlAuthenHandler => $self, 56 ); 59 57 }; 60 }61 62 sub AuthType {63 my ($self, $params, $arg) = @_;64 my $class = ref $self;65 if (lc $arg eq lc $self->auth_type) {66 Apache2::ServerUtil->server->push_handlers(67 PerlAuthenHandler => $class,68 );69 }70 58 } 71 59
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)