summaryrefslogtreecommitdiffstats
path: root/install/ui/hbactest.js
diff options
context:
space:
mode:
authorPetr Vobornik <pvoborni@redhat.com>2011-12-05 16:23:38 +0100
committerEndi S. Dewata <edewata@redhat.com>2011-12-08 02:10:34 +0000
commit0e8b57b08988f0121348e30a6d8aafe2aad07759 (patch)
treec688516c09e1488de22212cc4e5c4a037296e9d3 /install/ui/hbactest.js
parentc1d0f72c20f5ae09c9872fa4434ba5040248b6b3 (diff)
downloadfreeipa-0e8b57b08988f0121348e30a6d8aafe2aad07759.tar.gz
freeipa-0e8b57b08988f0121348e30a6d8aafe2aad07759.tar.xz
freeipa-0e8b57b08988f0121348e30a6d8aafe2aad07759.zip
Search facets show translated boolean values
Created format method for getting translated messages for boolean values - IPA.boolean_format. Used in hosts, sudo rules, hbac rules and hbac test. https://fedorahosted.org/freeipa/ticket/2027
Diffstat (limited to 'install/ui/hbactest.js')
-rw-r--r--install/ui/hbactest.js19
1 files changed, 14 insertions, 5 deletions
diff --git a/install/ui/hbactest.js b/install/ui/hbactest.js
index 57ded45ba..d9a854f11 100644
--- a/install/ui/hbactest.js
+++ b/install/ui/hbactest.js
@@ -61,7 +61,8 @@ IPA.hbac.test_entity = function(spec) {
'description',
{
name: 'has_keytab',
- label: IPA.messages.objects.host.enrolled
+ label: IPA.messages.objects.host.enrolled,
+ format: IPA.boolean_format
}
]
}).
@@ -89,7 +90,8 @@ IPA.hbac.test_entity = function(spec) {
'description',
{
name: 'has_keytab',
- label: IPA.messages.objects.host.enrolled
+ label: IPA.messages.objects.host.enrolled,
+ format: IPA.boolean_format
}
]
}).
@@ -102,7 +104,10 @@ IPA.hbac.test_entity = function(spec) {
facet_group: 'default',
columns: [
'cn',
- 'ipaenabledflag',
+ {
+ name: 'ipaenabledflag',
+ format: IPA.boolean_format
+ },
'description'
]
}).
@@ -118,9 +123,13 @@ IPA.hbac.test_entity = function(spec) {
'cn',
{
name: 'matched',
- label: IPA.messages.objects.hbactest.matched
+ label: IPA.messages.objects.hbactest.matched,
+ format: IPA.boolean_format
+ },
+ {
+ name: 'ipaenabledflag',
+ format: IPA.boolean_format
},
- 'ipaenabledflag',
'description'
]
});