summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin McCarthy <kmccarth@redhat.com>2007-09-26 13:08:29 -0700
committerKevin McCarthy <kmccarth@redhat.com>2007-09-26 13:08:29 -0700
commit1a7ef0d1354b94ae6bd3acf5a9c29090742f56b9 (patch)
tree1389d91a50283e06c9d16f817c7ad07627187778
parent313f9bc4a0b62d4a7c703bdb30b19e2cf7f60071 (diff)
downloadfreeipa-1a7ef0d1354b94ae6bd3acf5a9c29090742f56b9.tar.gz
freeipa-1a7ef0d1354b94ae6bd3acf5a9c29090742f56b9.tar.xz
freeipa-1a7ef0d1354b94ae6bd3acf5a9c29090742f56b9.zip
patch queue: helptext.patch
-rw-r--r--ipa-server/ipa-gui/ipagui/templates/grouplist.kid17
-rw-r--r--ipa-server/ipa-gui/ipagui/templates/userlist.kid17
-rw-r--r--ipa-server/ipa-gui/ipagui/templates/welcome.kid14
3 files changed, 48 insertions, 0 deletions
diff --git a/ipa-server/ipa-gui/ipagui/templates/grouplist.kid b/ipa-server/ipa-gui/ipagui/templates/grouplist.kid
index 464208d20..a63beb824 100644
--- a/ipa-server/ipa-gui/ipagui/templates/grouplist.kid
+++ b/ipa-server/ipa-gui/ipagui/templates/grouplist.kid
@@ -39,5 +39,22 @@
<div py:if='(groups != None) and (len(groups) == 0)'>
<h2>No results found for "${criteria}"</h2>
</div>
+ <div py:if='groups == None'>
+ <p>
+ Search automatically looks across multiple fields. If you want to find
+ Joe in Finance, try typing "joe finance" into the search box.
+ </p>
+ <p>
+ Exact matches are listed first, followed by partial matches. If your search
+ is too broad, you will get a warning that the search returned too many
+ results. Try being more specific.
+ </p>
+ <p>
+ The results that come back are sortable. Simply click on a column
+ header to sort on that header. A triangle will indicate the sorted
+ column, along with its direction. Clicking and dragging between headers
+ will allow you to resize the header.
+ </p>
+ </div>
</body>
</html>
diff --git a/ipa-server/ipa-gui/ipagui/templates/userlist.kid b/ipa-server/ipa-gui/ipagui/templates/userlist.kid
index 1c244d05c..be73c67f2 100644
--- a/ipa-server/ipa-gui/ipagui/templates/userlist.kid
+++ b/ipa-server/ipa-gui/ipagui/templates/userlist.kid
@@ -68,5 +68,22 @@
<div py:if='(users != None) and (len(users) == 0)'>
<h2>No results found for "${uid}"</h2>
</div>
+ <div py:if='users == None'>
+ <p>
+ Search automatically looks across multiple fields. If you want to find
+ Joe in Finance, try typing "joe finance" into the search box.
+ </p>
+ <p>
+ Exact matches are listed first, followed by partial matches. If your search
+ is too broad, you will get a warning that the search returned too many
+ results. Try being more specific.
+ </p>
+ <p>
+ The results that come back are sortable. Simply click on a column
+ header to sort on that header. A triangle will indicate the sorted
+ column, along with its direction. Clicking and dragging between headers
+ will allow you to resize the header.
+ </p>
+ </div>
</body>
</html>
diff --git a/ipa-server/ipa-gui/ipagui/templates/welcome.kid b/ipa-server/ipa-gui/ipagui/templates/welcome.kid
index 402468be7..0e0ad8601 100644
--- a/ipa-server/ipa-gui/ipagui/templates/welcome.kid
+++ b/ipa-server/ipa-gui/ipagui/templates/welcome.kid
@@ -10,6 +10,20 @@
<div id="status_block" py:if="value_of('tg_flash', None)"
py:content="XML(tg_flash)"></div>
<h1>Welcome to Free IPA</h1>
+
+ <p>
+ IPA is used to manage Identity, Policy, and Auditing for your
+ organization.
+ </p>
+ <p>
+ To get started, you can use the search box in the top right to find
+ users or groups you need to work on. Search automatically looks
+ across multiple fields. If you want to find Joe in Finance, try typing
+ "joe finance" into the search box.
+ </p>
+ <p>
+ Alternatively, select a task from the left sidebar.
+ </p>
</div>
</body>