diff options
author | Adam Young <ayoung@redhat.com> | 2010-12-04 00:29:05 -0500 |
---|---|---|
committer | Endi Sukma Dewata <edewata@redhat.com> | 2010-12-06 12:52:47 -0500 |
commit | 10f3c0825bfdffa6035e78066001eb3bdc759143 (patch) | |
tree | e1a2ddef0846e12275cd661752217e461a204b7c /install/static/details.js | |
parent | 37f48c0019c64f20bfc24b021442b643eaf86aab (diff) | |
download | freeipa.git-10f3c0825bfdffa6035e78066001eb3bdc759143.tar.gz freeipa.git-10f3c0825bfdffa6035e78066001eb3bdc759143.tar.xz freeipa.git-10f3c0825bfdffa6035e78066001eb3bdc759143.zip |
entity i18n
Updated the user,group,host, hostgroup, netgroup, service, and all policy
entities to use the newer framework functions, in order to
replaced the old array style definitions which did not support i18n.
update a few of the newer framerwork functions to get the lables from the
meta data.
Fixed the unit tests which were expecting a details facet for users,
no longer automatically created
Diffstat (limited to 'install/static/details.js')
-rw-r--r-- | install/static/details.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/install/static/details.js b/install/static/details.js index a3f1b2a5..5e3cd8d6 100644 --- a/install/static/details.js +++ b/install/static/details.js @@ -338,7 +338,7 @@ function ipa_details_list_section(spec){ } }; - // Deprecated: Used for backward compatibility only. + // This is to allow declarative style programming for details function input(spec){ that.create_field(spec); return that; @@ -349,7 +349,7 @@ function ipa_details_list_section(spec){ return that; } -// Deprecated: Used for backward compatibility only. +// shorthand notation used for declarative definitions of details pages function ipa_stanza(spec) { return ipa_details_list_section(spec); } |