diff --git a/build/lemonldap-ng/TODO b/build/lemonldap-ng/TODO deleted file mode 100644 index 755ab13d3..000000000 --- a/build/lemonldap-ng/TODO +++ /dev/null @@ -1,23 +0,0 @@ -Lemonldap::NG TODO ------------------- -TODO list for Lemonldap::NG development - -- Priority: Low Status: In progress Created: 2007\05\03 10-41-36 -Modify install to make a running example as debian install -- Priority: Low Status: Done Created: 2007\04\23 21-26-18 Done: 2007\10\24 10-17-47 -TLS in LDAP connections -- Priority: Low Status: N/A Created: 2007\04\21 13-14-55 -Simplified manager interface fo rules: - * simplified regexp (* instead of .*,...) - * simple combobox to choose groups -- Priority: Low Status: N/A Created: 2007\05\03 11-40-36 -Delete buttons in virtualHosts if 'read"-"only' -- Priority: Low Status: N/A Created: 2007\05\03 11-47-42 -Order rules : - * find a system to move up and down rules in manager interface - * split locationRules into 2 arrays -- Priority: Low Status: N/A Created: 2007\05\05 21-58-53 -Documentation : - * Security document - * apply.conf Howto - * ldapGroupBase diff --git a/build/lemonldap-ng/changelog b/build/lemonldap-ng/changelog index 227298426..cabb8f028 100644 --- a/build/lemonldap-ng/changelog +++ b/build/lemonldap-ng/changelog @@ -12,8 +12,11 @@ lemonldap-ng (0.9.3) unstable; urgency=low * Manager protection * New configuration access with local cache system * AuthBasic handler + * MRTG scripts to read LmNG status + * UserDB mechanism : LDAP is not required now + * Portal SOAP functions - -- Xavier Guimard Wed, 24 Dec 2008 10:13:58 +0100 + -- Xavier Guimard Wed, 24 Dec 2008 10:55:16 +0100 lemonldap-ng (0.9.2.2) unstable; urgency=low diff --git a/modules/lemonldap-ng-common/MANIFEST b/modules/lemonldap-ng-common/MANIFEST index 58026dc0d..9f0fb0f12 100644 --- a/modules/lemonldap-ng-common/MANIFEST +++ b/modules/lemonldap-ng-common/MANIFEST @@ -19,5 +19,6 @@ t/02-Manager-Conf-File.t t/03-Manager-Conf-DBI.t t/04-Manager-Conf-SOAP.t t/10-Common.t +t/99-pod.t tools/apache-session-mysql.sql tools/lmConfig.mysql diff --git a/modules/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf.pm b/modules/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf.pm index 294404330..c58aafd2c 100644 --- a/modules/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf.pm +++ b/modules/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf.pm @@ -192,7 +192,7 @@ sub getDBConf { $msg = "Get configuration $conf->{cfgNum}"; my $re = Regexp::Assemble->new(); foreach ( keys %{ $conf->{locationRules} } ) { - quotemeta($_); + $_ = quotemeta($_); $re->add($_); } $conf->{reVHosts} = $re->as_string; diff --git a/modules/lemonldap-ng-common/t/99-pod.t b/modules/lemonldap-ng-common/t/99-pod.t new file mode 100644 index 000000000..437887a0a --- /dev/null +++ b/modules/lemonldap-ng-common/t/99-pod.t @@ -0,0 +1,4 @@ +use Test::More; +eval "use Test::Pod 1.00"; +plan skip_all => "Test::Pod 1.00 required for testing POD" if $@; +all_pod_files_ok(); diff --git a/modules/lemonldap-ng-handler/t/30-Lemonldap-NG-Handler-CGI.t b/modules/lemonldap-ng-handler/t/30-Lemonldap-NG-Handler-CGI.t index f3f39d1e3..7cc536b8d 100644 --- a/modules/lemonldap-ng-handler/t/30-Lemonldap-NG-Handler-CGI.t +++ b/modules/lemonldap-ng-handler/t/30-Lemonldap-NG-Handler-CGI.t @@ -25,11 +25,11 @@ $ENV{QUERY_STRING} = ''; ok( $p = Lemonldap::NG::Handler::CGI->new( { - configStorage => { - type => "File", - dirName => '/tmp/', - }, - https => 0, + configStorage => { + type => "File", + dirName => '/tmp/', + }, + https => 0, } ), 'Portal object'