diff --git a/modules/lemonldap-ng-manager/example/sessions.pl b/modules/lemonldap-ng-manager/example/sessions.pl index 75993197e..df3e9afd0 100755 --- a/modules/lemonldap-ng-manager/example/sessions.pl +++ b/modules/lemonldap-ng-manager/example/sessions.pl @@ -20,17 +20,10 @@ our $cgi = Lemonldap::NG::Manager::Sessions->new( # protection => 'authenticate', # * nothing : not protected - # REDIRECTIONS - # You have to set this to explain to the handler if runs under SSL - # or not (for redirections after authentications). Default is true. - https => 0, - - # You can also fix the port (for redirections after authentications) - #port => 80, - -# IP -# You can configure sessions explorer to use X-FORWARDED-FOR rather than REMOTRE_ADDR for IP -#useXForwardedForIP => 1, + # IP + # You can configure sessions explorer to use X-FORWARDED-FOR + # rather than REMOTRE_ADDR for IP + #useXForwardedForIP => 1, # ACCESS TO CONFIGURATION # By default, Lemonldap::NG uses the default storage.conf file to know diff --git a/modules/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Sessions.pm b/modules/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Sessions.pm index b969f639c..74f5712dd 100644 --- a/modules/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Sessions.pm +++ b/modules/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Sessions.pm @@ -503,6 +503,7 @@ sub start {

Gestion de la configuration

Explorateur de sessions

+
'; } @@ -547,6 +548,7 @@ sub end { my $self = shift; print '
'; + print ''; print $self->end_html(); } @@ -562,10 +564,15 @@ body /*font: normal 12px arial, tahoma, helvetica, sans-serif;*/ font:normal 9pt sans-serif; margin:0; + background-color:#000; +} +a +{ + text-decoration:none; } #header { - background-color:#000000; + background-color:#000; padding:14px; height:36px; width:auto; @@ -579,12 +586,14 @@ body margin:5px 10px; padding:5px; } +#body +{ + margin: 0 10px; +} .simpleTree { overflow:auto; - margin:20px; - margin-top:0px; - margin-bottom:0px; + margin:20px 0; /* * width: 250px; * height:350px; @@ -613,7 +622,7 @@ body .simpleTree .root { margin-left:-16px; - background: url($self->{imagePath}root.gif) no-repeat 16px 0 #ffffff; + background: url($self->{imagePath}root.gif) no-repeat 16px 0; } .simpleTree .line { @@ -654,36 +663,36 @@ body .simpleTree .folder-open { margin-left:-16px; - background: url($self->{imagePath}collapsable.gif) 0 -2px no-repeat #fff; + background: url($self->{imagePath}collapsable.gif) 0 -2px no-repeat; } .simpleTree .folder-open-last { margin-left:-16px; - background: url($self->{imagePath}collapsable-last.gif) 0 -2px no-repeat #fff; + background: url($self->{imagePath}collapsable-last.gif) 0 -2px no-repeat; } .simpleTree .folder-close { margin-left:-16px; - background: url($self->{imagePath}expandable.gif) 0 -2px no-repeat #fff; + background: url($self->{imagePath}expandable.gif) 0 -2px no-repeat; } .simpleTree .folder-close-last { margin-left:-16px; - background: url($self->{imagePath}expandable-last.gif) 0 -2px no-repeat #fff; + background: url($self->{imagePath}expandable-last.gif) 0 -2px no-repeat; } .simpleTree .doc { margin-left:-16px; - background: url($self->{imagePath}leaf.gif) 0 -1px no-repeat #fff; + background: url($self->{imagePath}leaf.gif) 0 -1px no-repeat; } .simpleTree .doc-last { margin-left:-16px; - background: url($self->{imagePath}leaf-last.gif) 0 -1px no-repeat #fff; + background: url($self->{imagePath}leaf-last.gif) 0 -1px no-repeat; } .simpleTree .ajax { - background: url($self->{imagePath}spinner.gif) no-repeat 0 0 #ffffff; + background: url($self->{imagePath}spinner.gif) no-repeat 0 0; height: 16px; display:none; } @@ -714,7 +723,6 @@ body } #drag_container { - background:#ffffff; color:#000; font: normal 11px arial, tahoma, helvetica, sans-serif; border: 1px dashed #767676; @@ -729,7 +737,6 @@ body #drag_container li { list-style: none; - background-color:#ffffff; line-height:18px; white-space: nowrap; padding:1px 1px 0px 16px; @@ -742,16 +749,16 @@ body #drag_container li.doc, #drag_container li.doc-last { - background: url($self->{imagePath}leaf.gif) no-repeat -17px 0 #ffffff; + background: url($self->{imagePath}leaf.gif) no-repeat -17px 0; } #drag_container .folder-close, #drag_container .folder-close-last { - background: url($self->{imagePath}expandable.gif) no-repeat -17px 0 #ffffff; + background: url($self->{imagePath}expandable.gif) no-repeat -17px 0; } #drag_container .folder-open, #drag_container .folder-open-last { - background: url($self->{imagePath}collapsable.gif) no-repeat -17px 0 #ffffff; + background: url($self->{imagePath}collapsable.gif) no-repeat -17px 0; } EOF }