Web UI: configurable SID blacklists

Added blacklists section, with ipantsidblacklistincoming and
ipantsidblacklistoutgoing multivalued textbox fields, into trust details page.

https://fedorahosted.org/freeipa/ticket/3289
This commit is contained in:
Petr Vobornik
2013-02-08 15:09:44 +01:00
parent 99421026f6
commit dc5fcc2969
3 changed files with 16 additions and 0 deletions

View File

@@ -60,6 +60,20 @@ IPA.trust.entity = function(spec) {
name: 'trusttype',
label: IPA.messages.objects.trust.trusttype
}
]
},
{
name: 'blacklists',
label: IPA.messages.objects.trust.blacklists,
fields: [
{
type: 'multivalued',
name: 'ipantsidblacklistincoming'
},
{
type: 'multivalued',
name: 'ipantsidblacklistoutgoing'
}
// trust status not supported by show command at the moment
// {
// name: 'truststatus',

View File

@@ -447,6 +447,7 @@
"trust": {
"account": "Account",
"admin_account": "Administrative account",
"name": "SID blacklists",
"details": "Trust Settings",
"domain": "Domain",
"establish_using": "Establish using",

View File

@@ -586,6 +586,7 @@ class i18n_messages(Command):
"trust": {
"account": _("Account"),
"admin_account": _("Administrative account"),
"blacklists": _("SID blacklists"),
"details": _("Trust Settings"),
"domain": _("Domain"),
"establish_using": _("Establish using"),