diff options
author | Ted Trask <ttrask01@yahoo.com> | 2008-10-22 18:50:22 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2008-10-22 18:50:22 +0000 |
commit | 8997f1f6dc27262042a30c35266a95672e4406d4 (patch) | |
tree | 548e8a666a7aa8f6e39e76e47b0c150d44dd92f1 /app/acf-util/roles-viewroles-html.lsp | |
parent | 7106e09511f1b873eaae17d2a6ae8bf008d06446 (diff) | |
download | acf-core-8997f1f6dc27262042a30c35266a95672e4406d4.tar.bz2 acf-core-8997f1f6dc27262042a30c35266a95672e4406d4.tar.xz |
Modified viewfunctions to split displayform, creating displayformstart and displayformend, to provide flexibility while still using the library. Also added support for hidden fields - including a common redir field. Removed redirectOnSuccess from controllerfunctions handle_form, and replaced it with the redir field. Removed redirectOnSuccess from controllers that used it and added handlecommandresults and redir entries to links and forms throughout many views. This will cause a redirect to the originating view when a form is successfully completed. acf_www-controller now includes orig_action in page_info to report the original action launched by the user.
git-svn-id: svn://svn.alpinelinux.org/acf/core/trunk@1560 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'app/acf-util/roles-viewroles-html.lsp')
-rw-r--r-- | app/acf-util/roles-viewroles-html.lsp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/app/acf-util/roles-viewroles-html.lsp b/app/acf-util/roles-viewroles-html.lsp index f5ca4d5..8b9a10f 100644 --- a/app/acf-util/roles-viewroles-html.lsp +++ b/app/acf-util/roles-viewroles-html.lsp @@ -5,11 +5,12 @@ io.write(html.cfe_unpack(view)) --]] %> -<% displaycommandresults({"deleterole"}, session) %> +<% displaycommandresults({"newrole", "editrole", "deleterole"}, session) %> <H1>Roles</H1> <H2>Create new role</H2> <form action="<%= page_info.script .. page_info.prefix .. page_info.controller %>/newrole" method="POST"> +<input class="hidden" type="hidden" name="redir" value="<%= page_info.orig_action %>" > <dl><dt></dt><dd><input class="submit" type="submit" value="New Role"></dd></dl> </form> @@ -31,7 +32,7 @@ <dt><img src='/static/tango/16x16/apps/system-users.png' height='16' width='16'> <%= role %></dt> <dd> [<a href='viewroleperms?role=<%= role %>'>View this role</a>] - [<a href='editrole?role=<%= role %>'>Edit this role</a>] + [<a href='editrole?role=<%= role %>&redir=<%= page_info.orig_action %>'>Edit this role</a>] [<a href='deleterole?role=<%= role %>'>Delete this role</a>] </dd> <% end %> |