URLs changed to new plugin addressing scheme
svn:keywords set fixed: shutdown - delay reboot/poweroff by some seconds to finish the web page before added: format_fs - show link to umount in case of active device added: new plugin "language_selection" fixed: recently introduced syntax error in 'network' added: "volume_props" mentions encryption support via "format_fs" (including link) updated: plugin-interface.txt fixed: broken test case for date plugin (caused by twill, I guess) added: "partition" plugin - better handling of config partition
This commit is contained in:
parent
7905fe7051
commit
80337411ae
49 changed files with 259 additions and 116 deletions
|
@ -1,5 +1,5 @@
|
|||
Name = User Manager
|
||||
Link = User Manager
|
||||
Link = Manage users
|
||||
|
||||
Title {
|
||||
UserManager = Manage users
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 3.6 KiB After Width: | Height: | Size: 10 KiB |
|
@ -16,7 +16,7 @@ class unittests(WebInterfaceTestClass.WebInterfaceTestClass):
|
|||
|
||||
|
||||
def _gotoPage(self):
|
||||
url = self.URL + "plugins/user_manager"
|
||||
url = self.URL + "user_manager"
|
||||
self.register_auth(url)
|
||||
self.cmd.go(url)
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
|
||||
<h2><?cs var:html_escape(Lang.Plugins.user_manager.Title.AddUser) ?></h2>
|
||||
<p>
|
||||
<?cs call:print_form_header("add_user", "plugins/user_manager") ?>
|
||||
<?cs call:print_form_header("add_user", "user_manager") ?>
|
||||
<table>
|
||||
<tr><td class="left_column">
|
||||
<label for="new_user"><?cs var:html_escape(Lang.Plugins.user_manager.Text.NewUser) ?>:</label></td>
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
<h2><?cs var:html_escape(Lang.Plugins.user_manager.Title.ChangePassword) ?></h2>
|
||||
<p>
|
||||
<?cs call:print_form_header("change_password", "plugins/user_manager") ?>
|
||||
<?cs call:print_form_header("change_password", "user_manager") ?>
|
||||
<table>
|
||||
<tr><td class="left_column">
|
||||
<label for="chpw_user"><?cs var:html_escape(Lang.Plugins.user_manager.Text.ChangePasswordUser) ?>:</label></td>
|
||||
|
@ -68,7 +68,7 @@
|
|||
<h2><?cs var:html_escape(Lang.Plugins.user_manager.Title.DelUser) ?></h2>
|
||||
<p>
|
||||
<table><tr><td class="left_column">
|
||||
<?cs call:print_form_header("del_user", "plugins/user_manager") ?>
|
||||
<?cs call:print_form_header("del_user", "user_manager") ?>
|
||||
<label for="user"><?cs var:html_escape(Lang.Plugins.user_manager.Text.DelUser) ?>: </label><select id="user" name="user" size="0">
|
||||
<?cs each:x=Data.Plugins.user_manager.Users ?><?cs if:x != "admin" ?>
|
||||
<option><?cs var:html_escape(x) ?></option>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue