Remove BrowserID parameters (see #602)

This commit is contained in:
Xavier Guimard 2017-02-01 10:32:03 +00:00
parent b78c094518
commit a08d2f6433
7 changed files with 2 additions and 58 deletions

View File

@ -17,7 +17,6 @@ sub defaultValues {
},
'authChoiceParam' => 'lmAuth',
'authentication' => 'Demo',
'browserIdAuthnLevel' => 1,
'captcha_register_enabled' => 1,
'captcha_size' => 6,
'CAS_authnLevel' => 1,

View File

@ -31,7 +31,6 @@ our $virtualHostKeys = '(?:vhost(?:(?:Aliase|Http)s|Maintenance|Port)|(?:exporte
our $authParameters = {
adParams => [qw(ADPwdMaxAge ADPwdExpireWarning)],
apacheParams => [qw(apacheAuthnLevel)],
browseridParams => [qw(browserIdAuthnLevel browserIdAutoLogin browserIdVerificationURL browserIdSiteName browserIdSiteLogo browserIdBackgroundColor)],
casParams => [qw(CAS_authnLevel CAS_url CAS_CAFile CAS_renew CAS_gateway CAS_pgtFile CAS_proxiedServices)],
choiceParams => [qw(authChoiceParam authChoiceModules)],
dbiParams => [qw(dbiAuthnLevel dbiExportedVars dbiAuthChain dbiAuthUser dbiAuthPassword dbiUserChain dbiUserUser dbiUserPassword dbiAuthTable dbiUserTable dbiAuthLoginCol dbiAuthPasswordCol dbiPasswordMailCol userPivot dbiAuthPasswordHash)],

View File

@ -296,10 +296,6 @@ sub attributes {
'k' => 'AD',
'v' => 'Active Directory'
},
{
'k' => 'BrowserID',
'v' => 'BrowserID (Mozilla Persona)'
},
{
'k' => 'CAS',
'v' => 'Central Authentication Service (CAS)'
@ -474,10 +470,6 @@ sub attributes {
'k' => 'AD',
'v' => 'Active Directory'
},
{
'k' => 'BrowserID',
'v' => 'BrowserID (Mozilla Persona)'
},
{
'k' => 'Choice',
'v' => 'authChoice'
@ -564,25 +556,6 @@ sub attributes {
'AuthLDAPFilter' => {
'type' => 'text'
},
'browserIdAuthnLevel' => {
'default' => 1,
'type' => 'int'
},
'browserIdAutoLogin' => {
'type' => 'bool'
},
'browserIdBackgroundColor' => {
'type' => 'text'
},
'browserIdSiteLogo' => {
'type' => 'text'
},
'browserIdSiteName' => {
'type' => 'text'
},
'browserIdVerificationURL' => {
'type' => 'text'
},
'captcha_login_enabled' => {
'default' => 0,
'type' => 'bool'

View File

@ -1757,7 +1757,6 @@ sub attributes {
select => [
{ k => 'Apache', v => 'Apache' },
{ k => 'AD', v => 'Active Directory' },
{ k => 'BrowserID', v => 'BrowserID (Mozilla Persona)' },
{ k => 'Choice', v => 'authChoice' },
{ k => 'CAS', v => 'Central Authentication Service (CAS)' },
{ k => 'DBI', v => 'Database (DBI)' },
@ -2217,7 +2216,6 @@ m{^(?:ldapi://[^/]*/?|\w[\w\-\.]*(?::\d{1,5})?|ldap(?:s|\+tls)?://\w[\w\-\.]*(?:
[
{ k => 'Apache', v => 'Apache' },
{ k => 'AD', v => 'Active Directory' },
{ k => 'BrowserID', v => 'BrowserID (Mozilla Persona)' },
{ k => 'CAS', v => 'Central Authentication Service (CAS)' },
{ k => 'DBI', v => 'Database (DBI)' },
{ k => 'Demo', v => 'Demo' },
@ -2290,18 +2288,6 @@ m{^(?:ldapi://[^/]*/?|\w[\w\-\.]*(?::\d{1,5})?|ldap(?:s|\+tls)?://\w[\w\-\.]*(?:
documentation => 'Yubikey public ID size',
},
# BrowserID
browserIdAuthnLevel => {
type => 'int',
default => 1,
documentation => 'Browser ID authentication level',
},
browserIdAutoLogin => { type => 'bool', },
browserIdVerificationURL => { type => 'text', },
browserIdSiteName => { type => 'text', },
browserIdSiteLogo => { type => 'text', },
browserIdBackgroundColor => { type => 'text', },
# OpenID Connect auth params
oidcAuthnLevel => {
type => 'int',

View File

@ -118,19 +118,6 @@ sub tree {
form => 'simpleInputContainer',
nodes => ['apacheAuthnLevel']
},
{
title => 'browseridParams',
help => 'authbrowserid.html',
form => 'simpleInputContainer',
nodes => [
'browserIdAuthnLevel',
'browserIdAutoLogin',
'browserIdVerificationURL',
'browserIdSiteName',
'browserIdSiteLogo',
'browserIdBackgroundColor'
]
},
{
title => 'casParams',
help => 'authcas.html',

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long