Remove unused CAS_pgtFile parameter (#1183)

environments/ppa-mbqj77/deployments/1
Xavier Guimard 8 years ago
parent 311ce7693d
commit 43ece77749
  1. 1
      lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/DefaultValues.pm
  2. 2
      lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/ReConstants.pm
  3. 4
      lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Attributes.pm
  4. 17
      lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Build/Attributes.pm
  5. 3
      lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Build/Tree.pm
  6. 1
      lemonldap-ng-manager/site/htdocs/static/languages/en.json
  7. 1
      lemonldap-ng-manager/site/htdocs/static/languages/fr.json
  8. 2
      lemonldap-ng-manager/site/htdocs/static/reverseTree.json
  9. 2
      lemonldap-ng-manager/site/htdocs/static/struct.json

@ -21,7 +21,6 @@ sub defaultValues {
'captcha_register_enabled' => 1,
'captcha_size' => 6,
'CAS_authnLevel' => 1,
'CAS_pgtFile' => '/tmp/pgt.txt',
'casAccessControlPolicy' => 'none',
'checkXSS' => 1,
'confirmFormMethod' => 'post',

@ -31,7 +31,7 @@ our $virtualHostKeys = '(?:vhost(?:A(?:uthnLevel|liases)|(?:Maintenanc|Typ)e|Htt
our $authParameters = {
adParams => [qw(ADPwdMaxAge ADPwdExpireWarning)],
apacheParams => [qw(apacheAuthnLevel)],
casParams => [qw(CAS_authnLevel CAS_url CAS_CAFile CAS_renew CAS_gateway CAS_pgtFile CAS_proxiedServices)],
casParams => [qw(CAS_authnLevel CAS_url CAS_CAFile CAS_renew CAS_gateway CAS_proxiedServices)],
choiceParams => [qw(authChoiceParam authChoiceModules)],
combinationParams => [qw(combination combModules)],
customParams => [qw(customAuth customUserDB customPassword customRegister customAddParams)],

@ -618,10 +618,6 @@ sub attributes {
'CAS_gateway' => {
'type' => 'bool'
},
'CAS_pgtFile' => {
'default' => '/tmp/pgt.txt',
'type' => 'text'
},
'CAS_proxiedServices' => {
'keyMsgFail' => '__badCasProxyId__',
'keyTest' => qr/^\w+$/,

@ -2057,24 +2057,19 @@ m{^(?:ldapi://[^/]*/?|\w[\w\-\.]*(?::\d{1,5})?|ldap(?:s|\+tls)?://\w[\w\-\.]*(?:
default => 1,
documentation => 'CAS authentication level',
},
CAS_url => {
type => 'text',
test => $url,
msgFail => '__badUrl__',
},
CAS_CAFile => { type => 'text', },
CAS_renew => { type => 'bool', },
CAS_gateway => { type => 'bool', },
CAS_pgtFile => {
type => 'text',
default => '/tmp/pgt.txt',
documentation => 'CAS PGT file',
},
CAS_proxiedServices => {
type => 'keyTextContainer',
keyTest => qr/^\w+$/,
keyMsgFail => '__badCasProxyId__',
},
CAS_renew => { type => 'bool', },
CAS_url => {
type => 'text',
test => $url,
msgFail => '__badUrl__',
},
# PAM
pamAuthnLevel => {

@ -124,8 +124,7 @@ sub tree {
nodes => [
'CAS_authnLevel', 'CAS_url',
'CAS_CAFile', 'CAS_renew',
'CAS_gateway', 'CAS_pgtFile',
'CAS_proxiedServices'
'CAS_gateway', 'CAS_proxiedServices'
]
},
{

@ -102,7 +102,6 @@
"CAS_authnLevel": "Authentication level",
"CAS_CAFile": "CA file",
"CAS_gateway": "Gateway authentication",
"CAS_pgtFile": "PGT file",
"CAS_renew": "Renew authentication",
"CAS_proxiedServices": "Proxied services",
"CAS_url": "Server URL",

@ -102,7 +102,6 @@
"CAS_authnLevel": "Niveau d'authentification",
"CAS_CAFile": "Fichier d'AC",
"CAS_gateway": "Authentification transparente",
"CAS_pgtFile": "Fichier de PGT",
"CAS_renew": "Renouveller l'authentication",
"CAS_proxiedServices": "Services mandatés",
"CAS_url": "URL du serveur",

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save