Module: check_mk
Branch: master
Commit: 45016930c504dfc65b313e2b3e6d056a2239f851
URL: http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=45016930c504df…
Author: Mathias Kettner <mk(a)mathias-kettner.de>
Date: Sat Mar 3 14:08:43 2012 +0100
Fix URL parsing: last occurrance of a variable as precedence
---
web/htdocs/index.py | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/web/htdocs/index.py b/web/htdocs/index.py
index 7079202..3c75de6 100644
--- a/web/htdocs/index.py
+++ b/web/htdocs/index.py
@@ -69,8 +69,10 @@ def read_get_vars(req):
req.listvars[varname].append(value)
else:
req.listvars[varname] = [ req.vars[varname], value ]
- else:
- req.vars[varname] = value
+ # In the single-value-store the last occurrance of a variable
+ # has precedence. That makes appending variables to the current
+ # URL simpler.
+ req.vars[varname] = value
def read_cookies(req):
req.cookies = Cookie.get_cookies(req)
Module: check_mk
Branch: master
Commit: a625ee9775402d455c9e90d355b44f43143938a7
URL: http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=a625ee9775402d…
Author: Lars Michelsen <lm(a)mathias-kettner.de>
Date: Fri Mar 2 14:17:57 2012 +0100
Updated bug entries #0688, #0687
---
.bugs/687 | 9 +++++++++
.bugs/688 | 8 ++++++++
2 files changed, 17 insertions(+), 0 deletions(-)
diff --git a/.bugs/687 b/.bugs/687
new file mode 100644
index 0000000..507ae99
--- /dev/null
+++ b/.bugs/687
@@ -0,0 +1,9 @@
+Title: Hide Roles/Users (depending on own permissions)
+Component: wato
+State: open
+Date: 2012-03-02 14:15:14
+Targetversion: 1.2.0
+Class: feature
+
+It is neccessary to hide some roles and users from others. For example some admins which are only allowed
+to administrate a small part of the system and only some users/roles must not see e.g. the super-admins.
diff --git a/.bugs/688 b/.bugs/688
new file mode 100644
index 0000000..61dd010
--- /dev/null
+++ b/.bugs/688
@@ -0,0 +1,8 @@
+Title: Add permissions to controll the single host/folder actions
+Component: wato
+State: open
+Date: 2012-03-02 14:17:03
+Targetversion: 1.2.0
+Class: feature
+
+It is needed to disable single actions like "move to" or "inventory" for single roles/users.