Module: check_mk
Branch: master
Commit: b3e36e54d029d166ad5474b6357d78c14f12e9ef
URL: http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=b3e36e54d029d1…
Author: Andreas Boesl <ab(a)mathias-kettner.de>
Date: Tue Dec 6 21:30:04 2011 +0100
WATO: fixed selection in host-tag drop down menu
---
web/htdocs/htmllib.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/web/htdocs/htmllib.py b/web/htdocs/htmllib.py
index bbb770d..aeb98e1 100644
--- a/web/htdocs/htmllib.py
+++ b/web/htdocs/htmllib.py
@@ -433,7 +433,7 @@ class html:
(onchange_code, varname, varname, attributes))
for value, text in options:
if value == None: value = ""
- sel = value == current and " selected" or ""
+ sel = value.split('|')[0] == current and " selected" or ""
self.write("<option value=\"%s\"%s>%s</option>\n" % (value, sel, text))
self.write("</select>\n")
if varname:
Module: check_mk
Branch: master
Commit: 61890625dce17aaac40e0763b927459e637e2f5c
URL: http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=61890625dce17a…
Author: Mathias Kettner <mk(a)mathias-kettner.de>
Date: Tue Dec 6 15:41:55 2011 +0100
Updated bug entries #0480, #0481, #0478, #0479
---
.bugs/478 | 12 ++++++++++++
.bugs/479 | 11 +++++++++++
.bugs/480 | 11 +++++++++++
.bugs/481 | 11 +++++++++++
4 files changed, 45 insertions(+), 0 deletions(-)
diff --git a/.bugs/478 b/.bugs/478
new file mode 100644
index 0000000..a52034c
--- /dev/null
+++ b/.bugs/478
@@ -0,0 +1,12 @@
+Title: parents ruleset should only use first entry
+Component: core
+Benefit: 1
+State: open
+Cost: 2
+Date: 2011-12-06 11:46:35
+Targetversion: 1.2.0
+Class: feature
+
+Currently all rules are executed. This makes the
+configuration more complicated. Change this and
+write migration notes.
diff --git a/.bugs/479 b/.bugs/479
new file mode 100644
index 0000000..ba51093
--- /dev/null
+++ b/.bugs/479
@@ -0,0 +1,11 @@
+Title: Host tags reorder works only partially
+Component: wato
+Benefit: 1
+State: open
+Cost: 1
+Date: 2011-12-06 12:11:21
+Targetversion: 1.2.0
+Class: bug
+
+Changing the order of host tags in WATO does not
+work with the down arrow on the first tag group.
diff --git a/.bugs/480 b/.bugs/480
new file mode 100644
index 0000000..1f1c46d
--- /dev/null
+++ b/.bugs/480
@@ -0,0 +1,11 @@
+Title: Check for duplicate host tags values
+Component: wato
+Benefit: 1
+State: open
+Cost: 1
+Date: 2011-12-06 12:18:18
+Targetversion: 1.2.0
+Class: bug
+
+When editing host tags make sure that within one tag group
+each tag is unique.
diff --git a/.bugs/481 b/.bugs/481
new file mode 100644
index 0000000..ad05856
--- /dev/null
+++ b/.bugs/481
@@ -0,0 +1,11 @@
+Title: Tag group with empty tag does not show default
+Component: wato
+Benefit: 1
+State: open
+Cost: 1
+Date: 2011-12-06 12:26:37
+Targetversion: 1.2.0
+Class: bug
+
+If a tag group has an empty tag then that choice is not
+being shown in the combo box.