* images path in jquery-ui-1.7.2.custom.css
 * Upload conf lost exportedHeaders when virtualHosts node was not open
 * logError is now defined in Conf.pm, so must not be redefined in Conf/LDAP.pm
This commit is contained in:
Xavier Guimard 2009-12-16 21:13:29 +00:00
parent ffcda761f6
commit 37678b0912
7 changed files with 7 additions and 5 deletions

View File

@ -203,6 +203,7 @@ install_bin: install_libs install_conf_dir
${SRCPORTALDIR}/example/scripts/purgeCentralCache \
${SRCPORTALDIR}/example/scripts/buildPortalWSDL \
${SRCCOMMONDIR}/scripts/convertConfig \
${SRCCOMMONDIR}/scripts/lmMigrateConfFiles2ini \
${SRCMANAGERDIR}/example/scripts/lmConfigEditor \
$(RBINDIR)
chmod +x $(RBINDIR)/*

View File

@ -2,4 +2,4 @@ lemonldap-ng (0.9.5-0) unstable; urgency=low
* Local build
-- Xavier Guimard <x.guimard@free.fr> Wed, 12 Aug 2009 11:08:42 +0200
-- Xavier Guimard <x.guimard@free.fr> Wed, 16 Dec 2009 21:42:58 +0100

View File

@ -4,4 +4,5 @@ debian/tmp/usr/share/perl5/Lemonldap/NG/Common*
debian/tmp/usr/share/man/man3/Lemonldap::NG::Common*
debian/tmp/usr/share/lemonldap-ng/ressources
debian/tmp/usr/share/lemonldap-ng/bin/convertConfig
debian/tmp/usr/share/lemonldap-ng/bin/lmMigrateConfFiles2ini
debian/tmp/var/lib/lemonldap-ng/conf/

View File

@ -14,7 +14,6 @@ our $VERSION = 0.02;
BEGIN {
*Lemonldap::NG::Common::Conf::ldap = \&ldap;
*Lemonldap::NG::Common::Conf::logError = \&logError;
}
sub prereq {

View File

@ -50,9 +50,9 @@
----------------------------------*/
.ui-widget { font-family: Trebuchet MS, Tahoma, Verdana, Arial, sans-serif; font-size: 1.1em; }
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Trebuchet MS, Tahoma, Verdana, Arial, sans-serif; font-size: 1em; }
.ui-widget-content { border: 1px solid #dddddd; background: #eeeeee url(images/ui-bg_highlight-soft_100_eeeeee_1x100.png) 50% top repeat-x; color: #333333; }
.ui-widget-content { border: 1px solid #dddddd; background: #eeeeee url(/images/ui-bg_highlight-soft_100_eeeeee_1x100.png) 50% top repeat-x; color: #333333; }
.ui-widget-content a { color: #333333; }
.ui-widget-header { border: 1px solid #e78f08; background: #f6a828 url(images/ui-bg_gloss-wave_35_f6a828_500x100.png) 50% 50% repeat-x; color: #ffffff; font-weight: bold; }
.ui-widget-header { border: 1px solid #e78f08; background: #f6a828 url(/images/ui-bg_gloss-wave_35_f6a828_500x100.png) 50% 50% repeat-x; color: #ffffff; font-weight: bold; }
.ui-widget-header a { color: #ffffff; }
/* Interaction states

View File

@ -168,6 +168,7 @@ sub findAllConfKeys {
push @res, ( $m =~ /^(?:.*?:)?(.*?)(?:\:.*)?$/ ? $1 : () );
}
}
push @res, @{$h->{_upload}} if($h->{_upload});
return @res;
}

View File

@ -125,7 +125,7 @@ sub struct {
groups =>
{ _nodes => ['hash:/groups:groups:btext'], _js => 'hashRoot' },
virtualHosts =>
{ _nodes => ['nhash:/locationRules:virtualHosts:none'], },
{ _nodes => ['nhash:/locationRules:virtualHosts:none'], _upload => ['/exportedHeaders'] },
};
}