LEMONLDAP::NG : Perl module versions update for CPAN export

This commit is contained in:
Xavier Guimard 2008-12-25 08:04:33 +00:00
parent 1d1fbbe1c2
commit 0d8ab5ea2b
20 changed files with 36 additions and 17 deletions

View File

@ -1,5 +1,11 @@
Revision history for Perl extension Lemonldap::NG::Handler.
0.9 Thu Dec 25 8:43:55 2008
- Configuration now managed by Lemonldap::NG::Common::Conf
- Custom functions
- Status now couns only past minutes, not current one
- Protection management in Handler/CGI
0.89 Mon Aug 25 21:59:34 2008
- Bug in default condition: rules are always "deny" or "accept"
- More examples

View File

@ -2,7 +2,7 @@ package Lemonldap::NG::Handler;
print STDERR
"See Lemonldap::NG::Handler(3) to know which Lemonldap::NG::Handler::* module to use.";
our $VERSION = "0.89";
our $VERSION = "0.9";
1;

View File

@ -9,7 +9,7 @@ use MIME::Base64;
use base qw(Lemonldap::NG::Handler::SharedConf);
our $VERSION = '0.01';
our $VERSION = '0.1';
# We need just this constant, that's why Portal is 'required' but not 'used'
*PE_OK = *Lemonldap::NG::Portal::SharedConf::PE_OK;

View File

@ -4,7 +4,7 @@ use strict;
use Lemonldap::NG::Handler::SharedConf qw(:all);
our $VERSION = '0.02';
our $VERSION = '0.1';
use base qw(Lemonldap::NG::Handler::SharedConf);

View File

@ -10,7 +10,7 @@ use base qw(Lemonldap::NG::Common::CGI);
use Lemonldap::NG::Handler::SharedConf qw(:all);
our $VERSION = '0.11';
our $VERSION = '0.2';
sub new {
my $class = shift;

View File

@ -5,7 +5,7 @@ use strict;
use Lemonldap::NG::Handler::Simple qw(:apache :headers :log);
use LWP::UserAgent;
our $VERSION = '0.31';
our $VERSION = '0.4';
##########################################
# COMPATIBILITY WITH APACHE AND APACHE 2 #

View File

@ -9,7 +9,7 @@ use Cache::Cache qw($EXPIRES_NEVER);
use base qw(Lemonldap::NG::Handler::Vhost Lemonldap::NG::Handler::Simple);
our $VERSION = '0.62';
our $VERSION = '0.7';
our $cfgNum = 0;
our $lastReload = 0;
our $reloadTime;

View File

@ -8,7 +8,7 @@ use Safe;
require Data::Dumper;
require POSIX;
our $VERSION = '0.89';
our $VERSION = '0.9';
our %EXPORT_TAGS;

View File

@ -4,6 +4,8 @@ use strict;
use POSIX;
use Data::Dumper;
our $VERSION = "0.2";
our $status = {};
our $activity = [];
our $start = int( time / 60 );

View File

@ -4,7 +4,7 @@ use Lemonldap::NG::Handler::Simple qw(:locationRules :headers);
use strict;
use MIME::Base64;
our $VERSION = '0.53';
our $VERSION = '0.54';
# TODO: split locationRules into 2 arrays
sub locationRulesInit {

View File

@ -1,7 +1,8 @@
Revision history for Perl extension Lemonldap::NG::Manager.
0.87 Tue nov 4 17:28:45 2008
0.87 Tue dec 25 9:01:21 2008
- New module Sessions.pm and example
- Configuration modules migrates to Lemonldap::NG::Common
0.86 Mon aug 25 22:02:23 2008
- UTF8 in _i18n.pm

View File

@ -1,5 +1,15 @@
Revision history for Perl extension Lemonldap::NG::Portal.
0.86 Thu dec 25 8:55:41 2008
- New Menu module
* Password management
* Dynamic links
- New pastel skin
- Configuration managed by Lemonldap::NG::Common::Conf
- UserDB system : LDAP is not needed now
- Custom functions
- SOAP functions
0.85 Mon aug 25 22:07:54 2008
- CSS for the portal
- Little bug in CDA

View File

@ -3,7 +3,7 @@ package Lemonldap::NG::Portal::AuthApache;
use strict;
use Lemonldap::NG::Portal::Simple;
our $VERSION = '0.1';
our $VERSION = '0.11';
sub authInit {
PE_OK;

View File

@ -4,7 +4,7 @@ use strict;
use Lemonldap::NG::Portal::Simple;
use AuthCAS;
our $VERSION = '0.03';
our $VERSION = '0.04';
sub authInit {
PE_OK;

View File

@ -34,7 +34,7 @@ use UNIVERSAL qw( isa can VERSION );
*EXPORT_TAGS = *Lemonldap::NG::Portal::SharedConf::EXPORT_TAGS;
*EXPORT = *Lemonldap::NG::Portal::SharedConf::EXPORT;
our $VERSION = '0.31';
our $VERSION = '0.32';
use base qw(Lemonldap::NG::Portal::SharedConf);
#===============================================================================

View File

@ -5,7 +5,7 @@ use Lemonldap::NG::Portal::_LDAP;
use Lemonldap::NG::Portal::_WebForm;
use Lemonldap::NG::Portal::UserDBLDAP;
our $VERSION = '0.1';
our $VERSION = '0.2';
use base qw(Lemonldap::NG::Portal::_WebForm);
sub ldap {

View File

@ -6,7 +6,7 @@ use Lemonldap::NG::Portal::AuthLDAP;
use base qw(Lemonldap::NG::Portal::AuthLDAP);
our $VERSION = '0.1';
our $VERSION = '0.11';
sub authInit {
my $self = shift;

View File

@ -3,7 +3,7 @@ package Lemonldap::NG::Portal::CDA;
use strict;
use Lemonldap::NG::Portal::SharedConf qw(:all);
our $VERSION = '0.03';
our $VERSION = '0.04';
use base ('Lemonldap::NG::Portal::SharedConf');
*EXPORT_OK = *Lemonldap::NG::Portal::SharedConf::EXPORT_OK;

View File

@ -15,7 +15,7 @@ use Lemonldap::NG::Common::Conf;
*EXPORT_TAGS = *Lemonldap::NG::Portal::Simple::EXPORT_TAGS;
*EXPORT = *Lemonldap::NG::Portal::Simple::EXPORT;
our $VERSION = "0.42";
our $VERSION = "0.5";
use base qw(Lemonldap::NG::Portal::Simple);
##################

View File

@ -3,7 +3,7 @@ package Lemonldap::NG::Portal::_i18n;
# Developpers warning : this file must stay UTF-8 encoded
use AutoLoader qw(AUTOLOAD);
our $VERSION = '0.2';
our $VERSION = '0.3';
sub error {
my ( $error, $lang ) = @_;