summaryrefslogtreecommitdiffstats
path: root/ipa-server/ipa-gui/ipagui/controllers.py
diff options
context:
space:
mode:
authorKevin McCarthy <kmccarth@redhat.com>2007-09-28 11:55:56 -0700
committerKevin McCarthy <kmccarth@redhat.com>2007-09-28 11:55:56 -0700
commitb02e9bfd1f666d5106816118c0e67edc98beb652 (patch)
treefd1bfc6222c4f2d54be1d320d4632ecf2277d58f /ipa-server/ipa-gui/ipagui/controllers.py
parent8323959c3c4f7a4c561b695fc8ef85c5c92918a7 (diff)
downloadfreeipa-b02e9bfd1f666d5106816118c0e67edc98beb652.tar.gz
freeipa-b02e9bfd1f666d5106816118c0e67edc98beb652.tar.xz
freeipa-b02e9bfd1f666d5106816118c0e67edc98beb652.zip
Extract the shared dynamic edit code.milestone_4
Rename groupeditsearch.kid to dynamiceditsearch.kid
Diffstat (limited to 'ipa-server/ipa-gui/ipagui/controllers.py')
-rw-r--r--ipa-server/ipa-gui/ipagui/controllers.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/ipa-server/ipa-gui/ipagui/controllers.py b/ipa-server/ipa-gui/ipagui/controllers.py
index a982cb593..45a94e023 100644
--- a/ipa-server/ipa-gui/ipagui/controllers.py
+++ b/ipa-server/ipa-gui/ipagui/controllers.py
@@ -444,13 +444,11 @@ class Root(controllers.RootController):
turbogears.flash("Group add failed: " + str(e) + "<br/>" + str(e.detail))
return dict(form=group_new_form, tg_template='ipagui.templates.groupnew')
- @expose("ipagui.templates.groupeditsearch")
+ @expose("ipagui.templates.dynamiceditsearch")
@identity.require(identity.not_anonymous())
def groupedit_search(self, **kw):
"""Searches for users+groups and displays list of results in a table.
- This method is used for the ajax search on the group edit page.
- It's not re-usable because the ajax/dom manipulation is tightly
- bound to the groupedit page"""
+ This method is used for the ajax search on the group edit page."""
client.set_krbccache(os.environ["KRB5CCNAME"])
users = []
groups = []