diff --git a/build/lemonldap-ng/changelog b/build/lemonldap-ng/changelog index bf85c5eed..2741beeaa 100644 --- a/build/lemonldap-ng/changelog +++ b/build/lemonldap-ng/changelog @@ -4,6 +4,23 @@ lemonldap-ng (0.9) unstable; urgency=low -- Xavier Guimard Sun, 14 Oct 2007 12:02:33 +0200 +lemonldap-ng (0.8.3.2) unstable; urgency=low + + * purgeCentralCache was not correctly installed in Debian (Closes: #461572 / + bugs.debian.org) + * debconf translation for german and portuguese (Closes: #451820 and #462807 + bugs.debian.org) + * HTML documentation update + * Option +ExecCGI was missing in + lemonldap-ng-handler/example/lmH-apache2.conf (Closes: #307891) + * Local overload was not taken in account in handlers + * Sessions could not be stored in SOAPServer (Closes: #308181) + * Attributes could not be deleted in SOAP session client (Closes: #308214) + * Sessions timeout can now be managed by the Manager + * AuthSSL doesn't work without SSLvar parameter + + -- Xavier Guimard Fri, 08 Feb 2008 17:27:15 +0100 + lemonldap-ng (0.8.3.1) unstable; urgency=low * New feature: LDAP groups are now available in $groups diff --git a/modules/lemonldap-ng-handler/Changes b/modules/lemonldap-ng-handler/Changes index 6c7adc5f9..ac21338de 100644 --- a/modules/lemonldap-ng-handler/Changes +++ b/modules/lemonldap-ng-handler/Changes @@ -1,5 +1,9 @@ Revision history for Perl extension Lemonldap::NG::Handler. +0.85 Fri feb 8 17:50:25 2008 + - local overload was not taken in account + - little bugs in redirections + 0.84 Mon Jul 30 21:26:19 2007 - New parameter to fix port in redirections. diff --git a/modules/lemonldap-ng-handler/lib/Lemonldap/NG/Handler.pm b/modules/lemonldap-ng-handler/lib/Lemonldap/NG/Handler.pm index e8567e797..960e8412a 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.84"; +our $VERSION = "0.85"; 1; 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 274f2ee74..2fac4a52f 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); our @ISA = qw(Lemonldap::NG::Handler::Vhost Lemonldap::NG::Handler::Simple); -our $VERSION = '0.6'; +our $VERSION = '0.61'; 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 3360b0fb0..637e46788 100644 --- a/modules/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Simple.pm +++ b/modules/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Simple.pm @@ -7,7 +7,7 @@ use Exporter 'import'; use Safe; require POSIX; -our $VERSION = '0.84'; +our $VERSION = '0.85'; our %EXPORT_TAGS = ( localStorage => diff --git a/modules/lemonldap-ng-manager/Changes b/modules/lemonldap-ng-manager/Changes index 861ca81d0..eea741dcc 100644 --- a/modules/lemonldap-ng-manager/Changes +++ b/modules/lemonldap-ng-manager/Changes @@ -1,5 +1,9 @@ Revision history for Perl extension Lemonldap::NG::Manager. +0.83 Fri feb 8 17:45:34 2008 + - bugs in SOAP server + - sessions timeout is now included in the manager + 0.82 Sat jul 21 15:21:32 2007 - TLS support in LDAP - Help for new logout system diff --git a/modules/lemonldap-ng-manager/lib/Lemonldap/NG/Manager.pm b/modules/lemonldap-ng-manager/lib/Lemonldap/NG/Manager.pm index 9893eb854..b4eae6df8 100644 --- a/modules/lemonldap-ng-manager/lib/Lemonldap/NG/Manager.pm +++ b/modules/lemonldap-ng-manager/lib/Lemonldap/NG/Manager.pm @@ -17,7 +17,7 @@ use MIME::Base64; our @ISA = qw(Lemonldap::NG::Manager::Base); -our $VERSION = '0.82'; +our $VERSION = '0.83'; sub new { my ( $class, $args ) = @_; diff --git a/modules/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Apache/Session/SOAP.pm b/modules/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Apache/Session/SOAP.pm index b232e9fd8..e28f12baf 100644 --- a/modules/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Apache/Session/SOAP.pm +++ b/modules/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Apache/Session/SOAP.pm @@ -3,7 +3,7 @@ package Lemonldap::NG::Manager::Apache::Session::SOAP; use strict; use SOAP::Lite; -our $VERSION = 0.2; +our $VERSION = 0.3; # Variables shared with SOAP::Transport::HTTP::Client our ( $user, $password ) = ( '', '' ); diff --git a/modules/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Help.pm b/modules/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Help.pm index 8898fefc6..8e64451e8 100644 --- a/modules/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Help.pm +++ b/modules/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Help.pm @@ -2,7 +2,7 @@ package Lemonldap::NG::Manager::Help; use AutoLoader qw(AUTOLOAD); use UNIVERSAL qw(can); -our $VERSION = '0.34'; +our $VERSION = '0.35'; sub import { my ($caller_package) = caller; diff --git a/modules/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/SOAPServer.pm b/modules/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/SOAPServer.pm index fa17318c6..ac9d1a095 100644 --- a/modules/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/SOAPServer.pm +++ b/modules/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/SOAPServer.pm @@ -5,7 +5,7 @@ use SOAP::Transport::HTTP; use Lemonldap::NG::Manager::Conf; use UNIVERSAL qw(isa); -our $VERSION = "0.2"; +our $VERSION = "0.3"; # Initialization diff --git a/modules/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/_HTML.pm b/modules/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/_HTML.pm index cf830afc5..7f741ca6b 100644 --- a/modules/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/_HTML.pm +++ b/modules/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/_HTML.pm @@ -8,7 +8,7 @@ use AutoLoader qw(AUTOLOAD); require Lemonldap::NG::Manager::_i18n; use Lemonldap::NG::Manager::Conf::Constants; -our $VERSION = '0.28'; +our $VERSION = '0.29'; # TODO: Delete buttons in headers and rules if 'read-only' diff --git a/modules/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/_i18n.pm b/modules/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/_i18n.pm index 546a4e04a..5e8462da4 100644 --- a/modules/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/_i18n.pm +++ b/modules/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/_i18n.pm @@ -2,7 +2,7 @@ package Lemonldap::NG::Manager::_i18n; use AutoLoader qw(AUTOLOAD); use UNIVERSAL qw(can); -our $VERSION = '0.3'; +our $VERSION = '0.31'; sub import { my ($caller_package) = caller; diff --git a/modules/lemonldap-ng-portal/Changes b/modules/lemonldap-ng-portal/Changes index 1776de477..268775bf5 100644 --- a/modules/lemonldap-ng-portal/Changes +++ b/modules/lemonldap-ng-portal/Changes @@ -1,7 +1,8 @@ Revision history for Perl extension Lemonldap::NG::Portal. -0.8.1 Wed Nov 7 16:44:46 2007 +0.81 Wed Feb 8 17:44:46 2008 - Ldap groups can now be available in $groups + - Bug in AuthSSL 0.8 Mon Oct 15 7:58:25 2007 - Integration of the Liberty Alliance module issued from FederID project diff --git a/modules/lemonldap-ng-portal/lib/Lemonldap/NG/Portal.pm b/modules/lemonldap-ng-portal/lib/Lemonldap/NG/Portal.pm index 3fba4c059..8872ab62b 100644 --- a/modules/lemonldap-ng-portal/lib/Lemonldap/NG/Portal.pm +++ b/modules/lemonldap-ng-portal/lib/Lemonldap/NG/Portal.pm @@ -2,7 +2,7 @@ package Lemonldap::NG::Portal; print STDERR "See Lemonldap::NG::Portal(3) to know which Lemonldap::NG::Portal::* module to use."; -our $VERSION = "0.8"; +our $VERSION = "0.81"; 1; 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 ad7343636..c6476510c 100644 --- a/modules/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/AuthSSL.pm +++ b/modules/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/AuthSSL.pm @@ -3,7 +3,7 @@ package Lemonldap::NG::Portal::AuthSSL; use strict; use Lemonldap::NG::Portal::Simple; -our $VERSION = '0.06'; +our $VERSION = '0.1'; # Authentication is made by Apache with SSL and here before searching the LDAP # Directory.