mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Replace IPA.get_entity_param calls in specs with provider strings
https://fedorahosted.org/freeipa/ticket/3235
This commit is contained in:
@@ -81,7 +81,7 @@ IPA.automount.map_entity = function(spec) {
|
||||
{
|
||||
$factory: IPA.automount_key_column,
|
||||
name: 'automountkey',
|
||||
label: IPA.get_entity_param('automountkey', 'automountkey').label
|
||||
label: '@mo-param:automountkey:automountkey:label'
|
||||
},
|
||||
'automountinformation'
|
||||
]
|
||||
|
||||
@@ -272,7 +272,7 @@ IPA.dns.zone_entity = function(spec) {
|
||||
columns: [
|
||||
{
|
||||
name: 'idnsname',
|
||||
label: IPA.get_entity_param('dnsrecord', 'idnsname').label,
|
||||
label: '@mo-param:dnsrecord:idnsname:label',
|
||||
primary_key: true
|
||||
},
|
||||
{
|
||||
@@ -1177,8 +1177,7 @@ IPA.dns.record_entity = function(spec) {
|
||||
$type: 'dnsrecord_host_link',
|
||||
name: 'idnsname',
|
||||
other_entity: 'host',
|
||||
label: IPA.get_entity_param(
|
||||
'dnsrecord', 'idnsname').label
|
||||
label: '@mo-param:dnsrecord:idnsname:label'
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -48,27 +48,27 @@ IPA.idrange.entity = function(spec) {
|
||||
{
|
||||
name: 'ipabaseid',
|
||||
label: '@i18n:objects.idrange.ipabaseid',
|
||||
tooltip: IPA.get_entity_param('idrange', 'ipabaseid').label
|
||||
tooltip: '@mo-param:idrange:ipabaseid:label'
|
||||
},
|
||||
{
|
||||
name: 'ipaidrangesize',
|
||||
label: '@i18n:objects.idrange.ipaidrangesize',
|
||||
tooltip: IPA.get_entity_param('idrange', 'ipaidrangesize').label
|
||||
tooltip: '@mo-param:idrange:ipaidrangesize:label'
|
||||
},
|
||||
{
|
||||
name: 'ipabaserid',
|
||||
label: '@i18n:objects.idrange.ipabaserid',
|
||||
tooltip: IPA.get_entity_param('idrange', 'ipabaserid').label
|
||||
tooltip: '@mo-param:idrange:ipabaserid:label'
|
||||
},
|
||||
{
|
||||
name: 'ipasecondarybaserid',
|
||||
label: '@i18n:objects.idrange.ipasecondarybaserid',
|
||||
tooltip: IPA.get_entity_param('idrange', 'ipasecondarybaserid').label
|
||||
tooltip: '@mo-param:idrange:ipasecondarybaserid:label'
|
||||
},
|
||||
{
|
||||
name: 'ipanttrusteddomainsid',
|
||||
label: '@i18n:objects.idrange.ipanttrusteddomainsid',
|
||||
tooltip: IPA.get_entity_param('idrange', 'ipanttrusteddomainsid').label
|
||||
tooltip: '@mo-param:idrange:ipanttrusteddomainsid:label'
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -83,31 +83,31 @@ IPA.idrange.entity = function(spec) {
|
||||
{
|
||||
name: 'ipabaseid',
|
||||
label: '@i18n:objects.idrange.ipabaseid',
|
||||
tooltip: IPA.get_entity_param('idrange', 'ipabaseid').label,
|
||||
tooltip: '@mo-param:idrange:ipabaseid:label',
|
||||
widget: 'idrange.ipabaseid'
|
||||
},
|
||||
{
|
||||
name: 'ipaidrangesize',
|
||||
label: '@i18n:objects.idrange.ipaidrangesize',
|
||||
tooltip: IPA.get_entity_param('idrange', 'ipaidrangesize').label,
|
||||
tooltip: '@mo-param:idrange:ipaidrangesize:label',
|
||||
widget: 'idrange.ipaidrangesize'
|
||||
},
|
||||
{
|
||||
name: 'ipabaserid',
|
||||
label: '@i18n:objects.idrange.ipabaserid',
|
||||
tooltip: IPA.get_entity_param('idrange', 'ipabaserid').label,
|
||||
tooltip: '@mo-param:idrange:ipabaserid:label',
|
||||
widget: 'idrange.ipabaserid'
|
||||
},
|
||||
{
|
||||
name: 'ipasecondarybaserid',
|
||||
label: '@i18n:objects.idrange.ipasecondarybaserid',
|
||||
tooltip: IPA.get_entity_param('idrange', 'ipasecondarybaserid').label,
|
||||
tooltip: '@mo-param:idrange:ipasecondarybaserid:label',
|
||||
widget: 'type.ipasecondarybaserid'
|
||||
},
|
||||
{
|
||||
name: 'ipanttrusteddomainsid',
|
||||
label: '@i18n:objects.idrange.ipanttrusteddomainsid',
|
||||
tooltip: IPA.get_entity_param('idrange', 'ipanttrusteddomainsid').label,
|
||||
tooltip: '@mo-param:idrange:ipanttrusteddomainsid:label',
|
||||
widget: 'type.ipanttrusteddomainsid'
|
||||
}
|
||||
],
|
||||
|
||||
@@ -116,7 +116,7 @@ IPA.user.entity = function(spec) {
|
||||
{
|
||||
$factory: IPA.user_password_widget,
|
||||
name: 'has_password',
|
||||
metadata: IPA.get_entity_param('user', 'userpassword')
|
||||
metadata: '@mo-param:user:userpassword'
|
||||
},
|
||||
{
|
||||
name: 'krbpasswordexpiration',
|
||||
@@ -141,44 +141,44 @@ IPA.user.entity = function(spec) {
|
||||
fields: [
|
||||
{
|
||||
name: 'krbmaxpwdlife',
|
||||
label: IPA.get_entity_param('pwpolicy', 'krbmaxpwdlife').label,
|
||||
label: '@mo-param:pwpolicy:krbmaxpwdlife:label',
|
||||
read_only: true
|
||||
},
|
||||
{
|
||||
name: 'krbminpwdlife',
|
||||
label: IPA.get_entity_param('pwpolicy', 'krbminpwdlife').label,
|
||||
label: '@mo-param:pwpolicy:krbminpwdlife:label',
|
||||
read_only: true
|
||||
},
|
||||
{
|
||||
name: 'krbpwdhistorylength',
|
||||
label: IPA.get_entity_param('pwpolicy', 'krbpwdhistorylength').label,
|
||||
label: '@mo-param:pwpolicy:krbpwdhistorylength:label',
|
||||
read_only: true,
|
||||
measurement_unit: 'number_of_passwords'
|
||||
},
|
||||
{
|
||||
name: 'krbpwdmindiffchars',
|
||||
label: IPA.get_entity_param('pwpolicy', 'krbpwdmindiffchars').label,
|
||||
label: '@mo-param:pwpolicy:krbpwdmindiffchars:label',
|
||||
read_only: true
|
||||
},
|
||||
{
|
||||
name: 'krbpwdminlength',
|
||||
label: IPA.get_entity_param('pwpolicy', 'krbpwdminlength').label,
|
||||
label: '@mo-param:pwpolicy:krbpwdminlength:label',
|
||||
read_only: true
|
||||
},
|
||||
{
|
||||
name: 'krbpwdmaxfailure',
|
||||
label: IPA.get_entity_param('pwpolicy', 'krbpwdmaxfailure').label,
|
||||
label: '@mo-param:pwpolicy:krbpwdmaxfailure:label',
|
||||
read_only: true
|
||||
},
|
||||
{
|
||||
name: 'krbpwdfailurecountinterval',
|
||||
label: IPA.get_entity_param('pwpolicy', 'krbpwdfailurecountinterval').label,
|
||||
label: '@mo-param:pwpolicy:krbpwdfailurecountinterval:label',
|
||||
read_only: true,
|
||||
measurement_unit: 'seconds'
|
||||
},
|
||||
{
|
||||
name: 'krbpwdlockoutduration',
|
||||
label: IPA.get_entity_param('pwpolicy', 'krbpwdlockoutduration').label,
|
||||
label: '@mo-param:pwpolicy:krbpwdlockoutduration:label',
|
||||
read_only: true,
|
||||
measurement_unit: 'seconds'
|
||||
}
|
||||
@@ -190,13 +190,13 @@ IPA.user.entity = function(spec) {
|
||||
fields: [
|
||||
{
|
||||
name: 'krbmaxrenewableage',
|
||||
label: IPA.get_entity_param('krbtpolicy', 'krbmaxrenewableage').label,
|
||||
label: '@mo-param:krbtpolicy:krbmaxrenewableage:label',
|
||||
read_only: true,
|
||||
measurement_unit: 'seconds'
|
||||
},
|
||||
{
|
||||
name: 'krbmaxticketlife',
|
||||
label: IPA.get_entity_param('krbtpolicy', 'krbmaxticketlife').label,
|
||||
label: '@mo-param:krbtpolicy:krbmaxticketlife:label',
|
||||
read_only: true,
|
||||
measurement_unit: 'seconds'
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user