From 71f934348095df57c3fc8f02c5e8eacc929c7354 Mon Sep 17 00:00:00 2001 From: Petr Voborník Date: Mon, 16 Jan 2012 14:17:46 +0100 Subject: Added refresh button for UI Web UI is caching records. Currently only possible ways how to display updated record which was changed elsewhere - ie. in CLI are: * refresh page in browser (takes really long on slow vpns) * search facet: change filter, find, change filter back, find * entity details: go to search, select other entry, go back to search, select original entry * association facet: same as entity details These are unconvenient methods. This patch adds Refresh button to search, details and association facet. This button executes facets refresh method. https://fedorahosted.org/freeipa/ticket/2051 --- ipalib/plugins/internal.py | 1 + 1 file changed, 1 insertion(+) (limited to 'ipalib/plugins/internal.py') diff --git a/ipalib/plugins/internal.py b/ipalib/plugins/internal.py index 05fb9687..3e60f41b 100644 --- a/ipalib/plugins/internal.py +++ b/ipalib/plugins/internal.py @@ -187,6 +187,7 @@ class i18n_messages(Command): "get": _("Get"), "issue": _("Issue"), "ok": _("OK"), + "refresh": _("Refresh"), "remove": _("Delete"), "reset": _("Reset"), "restore": _("Restore"), -- cgit