Module: check_mk
Branch: master
Commit: a583807b5fd0e6efd3a0a36d0796d48678ca3830
URL: http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=a583807b5fd0e6…
Author: Mathias Kettner <mk(a)mathias-kettner.de>
Date: Fri Feb 4 10:28:51 2011 +0100
Updated bug entries
---
.bugs/121 | 11 +++++++++++
1 files changed, 11 insertions(+), 0 deletions(-)
diff --git a/.bugs/121 b/.bugs/121
new file mode 100644
index 0000000..9c0a887
--- /dev/null
+++ b/.bugs/121
@@ -0,0 +1,11 @@
+Title: Adding more than one column at once fails
+Component: multisite
+Benefit: 2
+State: open
+Cost: 1
+Date: 2011-02-04 10:06:44
+Class: bug
+
+In view editor if you add more than one column in one turn
+without saving in between the first added column will be
+erased.
Module: check_mk
Branch: master
Commit: 131244ebde8eeaaf9699edbc61ef7f1e4e200071
URL: http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=131244ebde8eea…
Author: Lars Michelsen <lm(a)mathias-kettner.de>
Date: Thu Feb 3 14:42:37 2011 +0100
Fixed servicegroup search in quicksearch snapin
Servicegroups can be searched with the quicksearch snapin using the 'sg:' prefix again
Signed-off-by: Lars Michelsen <lm(a)mathias-kettner.de>
---
ChangeLog | 5 +++++
web/htdocs/js/search.js | 2 +-
2 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index f8ed2bb..dfa1fbf 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+1.1.9i8
+ Multisite:
+ * Bugfix: Servicegroups can be searched with the quicksearch snapin using
+ the 'sg:' prefix again
+
1.1.9i7:
Core, Setup, etc.:
* Fix crash on Python 2.4 (e.g. RedHat) with fake_file
diff --git a/web/htdocs/js/search.js b/web/htdocs/js/search.js
index 4340be0..f3af39f 100644
--- a/web/htdocs/js/search.js
+++ b/web/htdocs/js/search.js
@@ -334,7 +334,7 @@ function mkSearchGetUrl(objType, objName, objSite, numMatches) {
// FIXME: not correct. Need a page where the name parameter can be a part match
return 'view.py?view_name=hostgroup&hostgroup=' + objName + '&site=' + objSite;
else if(objType == 'sg')
- if(single)
+ if(numMatches == 1)
return 'view.py?view_name=servicegroup&servicegroup=' + objName + '&site=' + objSite;
else
// FIXME: not correct. Need a page where the name parameter can be a part match
Module: check_mk
Branch: master
Commit: 50cfab0988ba0ec77547457f21fe3834cb6378d6
URL: http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=50cfab0988ba0e…
Author: Mathias Kettner <mk(a)mathias-kettner.de>
Date: Thu Feb 3 10:23:32 2011 +0100
Updated bug entries
---
.bugs/98 | 10 +++++++---
1 files changed, 7 insertions(+), 3 deletions(-)
diff --git a/.bugs/98 b/.bugs/98
index 71ab2a2..2d91ae1 100644
--- a/.bugs/98
+++ b/.bugs/98
@@ -1,10 +1,11 @@
Title: Restart of Nagios makes Multisite murk
Component: multisite
+State: done
+Class: bug
+Date: 2011-01-22 14:20:58
Benefit: 2
-State: open
Cost: 2
-Date: 2011-01-22 14:20:58
-Class: bug
+Fun: 0
When Nagios is restarted (e.g. via WATO), then for a short time the
Livestatus socket is gone. This leads to error messages in various
@@ -14,3 +15,6 @@ errors.
We need to find a solution for a cleaner handling of this. Couldn't
be a site in the state "restarting". If yes - how can we detect such
a state. The livestatus socket is missing in such a case.
+
+2011-02-03 10:23:30: changed state open -> done
+jQuery was removed - the window is gone.