From 4361cd02422d8a6b30d67bb6869af9c67f7ec9c0 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Thu, 20 Jan 2011 15:07:43 -0500 Subject: Rename INTERNAL to NO_CLI for commands we hide from the cli. Also make i18n_messages and json_metadata NO_CLI. ticket 821 --- ipalib/plugins/aci.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'ipalib/plugins/aci.py') diff --git a/ipalib/plugins/aci.py b/ipalib/plugins/aci.py index 17649538..7f9b0f21 100644 --- a/ipalib/plugins/aci.py +++ b/ipalib/plugins/aci.py @@ -356,7 +356,7 @@ class aci(Object): """ ACI object. """ - INTERNAL = True + NO_CLI = True label = _('ACIs') @@ -428,7 +428,7 @@ class aci_add(crud.Create): """ Create new ACI. """ - INTERNAL = True + NO_CLI = True msg_summary = _('Created ACI "%(value)s"') takes_options = ( @@ -482,7 +482,7 @@ class aci_del(crud.Delete): """ Delete ACI. """ - INTERNAL = True + NO_CLI = True has_output = output.standard_boolean msg_summary = _('Deleted ACI "%(value)s"') @@ -523,7 +523,7 @@ class aci_mod(crud.Update): """ Modify ACI. """ - INTERNAL = True + NO_CLI = True has_output_params = ( Str('aci', label=_('ACI'), @@ -594,7 +594,7 @@ class aci_find(crud.Search): have ipausers as a memberof. There may be other ACIs that apply to members of that group indirectly. """ - INTERNAL = True + NO_CLI = True msg_summary = ngettext('%(count)d ACI matched', '%(count)d ACIs matched', 0) def execute(self, term, **kw): @@ -752,7 +752,7 @@ class aci_show(crud.Retrieve): """ Display a single ACI given an ACI name. """ - INTERNAL = True + NO_CLI = True has_output_params = ( Str('aci', @@ -792,7 +792,7 @@ class aci_rename(crud.Update): """ Rename an ACI. """ - INTERNAL = True + NO_CLI = True has_output_params = ( Str('aci', label=_('ACI'), -- cgit