LEMONLDAP::NG : Few things...

This commit is contained in:
Xavier Guimard 2008-12-24 14:35:49 +00:00
parent 9f22962f03
commit 44cc396a83
6 changed files with 15 additions and 30 deletions

View File

@ -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

View File

@ -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 <x.guimard@free.fr> Wed, 24 Dec 2008 10:13:58 +0100
-- Xavier Guimard <x.guimard@free.fr> Wed, 24 Dec 2008 10:55:16 +0100
lemonldap-ng (0.9.2.2) unstable; urgency=low

View File

@ -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

View File

@ -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;

View File

@ -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();

View File

@ -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'