From 0d8ab5ea2bcfba80824494f56e34609f971787e9 Mon Sep 17 00:00:00 2001 From: Xavier Guimard Date: Thu, 25 Dec 2008 08:04:33 +0000 Subject: [PATCH] LEMONLDAP::NG : Perl module versions update for CPAN export --- modules/lemonldap-ng-handler/Changes | 6 ++++++ .../lemonldap-ng-handler/lib/Lemonldap/NG/Handler.pm | 2 +- .../lib/Lemonldap/NG/Handler/AuthBasic.pm | 2 +- .../lib/Lemonldap/NG/Handler/CDA.pm | 2 +- .../lib/Lemonldap/NG/Handler/CGI.pm | 2 +- .../lib/Lemonldap/NG/Handler/Proxy.pm | 2 +- .../lib/Lemonldap/NG/Handler/SharedConf.pm | 2 +- .../lib/Lemonldap/NG/Handler/Simple.pm | 2 +- .../lib/Lemonldap/NG/Handler/Status.pm | 2 ++ .../lib/Lemonldap/NG/Handler/Vhost.pm | 2 +- modules/lemonldap-ng-manager/Changes | 3 ++- modules/lemonldap-ng-portal/Changes | 10 ++++++++++ .../lib/Lemonldap/NG/Portal/AuthApache.pm | 2 +- .../lib/Lemonldap/NG/Portal/AuthCAS.pm | 2 +- .../lib/Lemonldap/NG/Portal/AuthLA.pm | 2 +- .../lib/Lemonldap/NG/Portal/AuthLDAP.pm | 2 +- .../lib/Lemonldap/NG/Portal/AuthSSL.pm | 2 +- .../lemonldap-ng-portal/lib/Lemonldap/NG/Portal/CDA.pm | 2 +- .../lib/Lemonldap/NG/Portal/SharedConf.pm | 2 +- .../lib/Lemonldap/NG/Portal/_i18n.pm | 2 +- 20 files changed, 36 insertions(+), 17 deletions(-) diff --git a/modules/lemonldap-ng-handler/Changes b/modules/lemonldap-ng-handler/Changes index f60468d0e..552ee7ad1 100644 --- a/modules/lemonldap-ng-handler/Changes +++ b/modules/lemonldap-ng-handler/Changes @@ -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 diff --git a/modules/lemonldap-ng-handler/lib/Lemonldap/NG/Handler.pm b/modules/lemonldap-ng-handler/lib/Lemonldap/NG/Handler.pm index 051882965..7daeb63bb 100644 --- a/modules/lemonldap-ng-handler/lib/Lemonldap/NG/Handler.pm +++ b/modules/lemonldap-ng-handler/lib/Lemonldap/NG/Handler.pm @@ -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; diff --git a/modules/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/AuthBasic.pm b/modules/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/AuthBasic.pm index 361dd6a2b..5f81fd67f 100644 --- a/modules/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/AuthBasic.pm +++ b/modules/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/AuthBasic.pm @@ -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; diff --git a/modules/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/CDA.pm b/modules/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/CDA.pm index e87f1f315..a65c74500 100644 --- a/modules/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/CDA.pm +++ b/modules/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/CDA.pm @@ -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); diff --git a/modules/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/CGI.pm b/modules/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/CGI.pm index f126a4de1..fc006089d 100644 --- a/modules/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/CGI.pm +++ b/modules/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/CGI.pm @@ -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; diff --git a/modules/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Proxy.pm b/modules/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Proxy.pm index 09d680525..5e2f36968 100644 --- a/modules/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Proxy.pm +++ b/modules/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Proxy.pm @@ -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 # diff --git a/modules/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/SharedConf.pm b/modules/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/SharedConf.pm index 62340f0e5..d0fd1c0ab 100644 --- a/modules/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/SharedConf.pm +++ b/modules/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/SharedConf.pm @@ -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; diff --git a/modules/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Simple.pm b/modules/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Simple.pm index 5d00f6c52..d2c9096dd 100644 --- a/modules/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Simple.pm +++ b/modules/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Simple.pm @@ -8,7 +8,7 @@ use Safe; require Data::Dumper; require POSIX; -our $VERSION = '0.89'; +our $VERSION = '0.9'; our %EXPORT_TAGS; diff --git a/modules/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Status.pm b/modules/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Status.pm index ba184d8e2..c7e08b4c9 100644 --- a/modules/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Status.pm +++ b/modules/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Status.pm @@ -4,6 +4,8 @@ use strict; use POSIX; use Data::Dumper; +our $VERSION = "0.2"; + our $status = {}; our $activity = []; our $start = int( time / 60 ); diff --git a/modules/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Vhost.pm b/modules/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Vhost.pm index 8d02841f2..3cce044a1 100644 --- a/modules/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Vhost.pm +++ b/modules/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Vhost.pm @@ -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 { diff --git a/modules/lemonldap-ng-manager/Changes b/modules/lemonldap-ng-manager/Changes index bba77e1ac..f7b7af4f8 100644 --- a/modules/lemonldap-ng-manager/Changes +++ b/modules/lemonldap-ng-manager/Changes @@ -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 diff --git a/modules/lemonldap-ng-portal/Changes b/modules/lemonldap-ng-portal/Changes index 6c664880c..3d7c6930a 100644 --- a/modules/lemonldap-ng-portal/Changes +++ b/modules/lemonldap-ng-portal/Changes @@ -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 diff --git a/modules/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/AuthApache.pm b/modules/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/AuthApache.pm index 904fb1792..3424c2ad8 100644 --- a/modules/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/AuthApache.pm +++ b/modules/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/AuthApache.pm @@ -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; diff --git a/modules/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/AuthCAS.pm b/modules/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/AuthCAS.pm index 7328089e9..af44b4616 100644 --- a/modules/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/AuthCAS.pm +++ b/modules/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/AuthCAS.pm @@ -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; diff --git a/modules/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/AuthLA.pm b/modules/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/AuthLA.pm index e3bb29f85..ceae5eb56 100644 --- a/modules/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/AuthLA.pm +++ b/modules/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/AuthLA.pm @@ -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); #=============================================================================== diff --git a/modules/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/AuthLDAP.pm b/modules/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/AuthLDAP.pm index e96a8a63e..94d741def 100644 --- a/modules/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/AuthLDAP.pm +++ b/modules/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/AuthLDAP.pm @@ -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 { diff --git a/modules/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/AuthSSL.pm b/modules/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/AuthSSL.pm index c9cc8fab4..5dc343637 100644 --- a/modules/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/AuthSSL.pm +++ b/modules/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/AuthSSL.pm @@ -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; diff --git a/modules/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/CDA.pm b/modules/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/CDA.pm index 55d4de018..6140f8cd0 100644 --- a/modules/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/CDA.pm +++ b/modules/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/CDA.pm @@ -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; diff --git a/modules/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/SharedConf.pm b/modules/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/SharedConf.pm index c570cffc3..21e480cb0 100644 --- a/modules/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/SharedConf.pm +++ b/modules/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/SharedConf.pm @@ -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); ################## diff --git a/modules/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/_i18n.pm b/modules/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/_i18n.pm index d43e62b09..fdc057226 100644 --- a/modules/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/_i18n.pm +++ b/modules/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/_i18n.pm @@ -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 ) = @_; -- 2.22.0