Module: check_mk
Branch: master
Commit: 51b117e90d8b2481238fcafeede430e381102f0d
URL: http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=51b117e90d8b24…
Author: Mathias Kettner <mk(a)mathias-kettner.de>
Date: Tue Jan 31 14:50:57 2012 +0100
nexus_temp: first version of new check
---
ChangeLog | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index b7ec9c5..c425394 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -44,6 +44,7 @@
"Temperature %s", in order to be consistent with the other checks.
* mounts: exclude changes of the commit option (might change on laptops),
make only switch to ro critical, other changes warning.
+ * nexus_temp: new check for Cisco NEXUS temperature sensors (first version)
Multisite:
* Improve transaction handling and reload detection: user can have
Module: check_mk
Branch: master
Commit: 2774d0679b60426d711df9bc728e58af348d2e78
URL: http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=2774d0679b6042…
Author: Lars Michelsen <lm(a)mathias-kettner.de>
Date: Tue Jan 31 13:24:59 2012 +0100
Updated bug entries #0604, #0606
---
.bugs/604 | 7 +++++--
.bugs/606 | 7 +++++--
2 files changed, 10 insertions(+), 4 deletions(-)
diff --git a/.bugs/604 b/.bugs/604
index 4136895..c0dcae8 100644
--- a/.bugs/604
+++ b/.bugs/604
@@ -1,10 +1,13 @@
Title: User cannot select "unlocalized", i.e. English
Component: multisite
-State: open
+Class: bug
+State: done
Date: 2012-01-25 10:02:10
Targetversion: 1.2.0
-Class: bug
If you create one language "de" then the user cannot
select the language in his properties (default language is
also set to "de").
+
+2012-01-31 13:17:55: changed state open -> done
+Has been implemented.
diff --git a/.bugs/606 b/.bugs/606
index d60e149..1b4b3bd 100644
--- a/.bugs/606
+++ b/.bugs/606
@@ -1,9 +1,9 @@
Title: Language selection of user: Default is missing
Component: multisite
-State: open
+Class: bug
+State: done
Date: 2012-01-25 18:41:17
Targetversion: 1.1.13i1
-Class: bug
Wenn man als Benutzer seine Sprache umstellen will, bekommt
man in der Liste keine Auswahl für Englisch. Es muss so
@@ -25,3 +25,6 @@ ist.
Das Verhalten muss dann im user_profile.py und bei der
Benutzervewaltung genau gleich sein.
+
+2012-01-31 13:18:04: changed state open -> done
+Has been implemented.
Module: check_mk
Branch: master
Commit: 36cedb8e6b3291fe1a2025b0024a4b69d145a059
URL: http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=36cedb8e6b3291…
Author: Lars Michelsen <lm(a)mathias-kettner.de>
Date: Tue Jan 31 12:24:48 2012 +0100
FIX: Fixed duplicate custom columns in WATO after switching languages
---
ChangeLog | 1 +
web/htdocs/wato.py | 5 +++--
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index bed1b08..064a472 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -96,6 +96,7 @@
contactgroup in host edit dialog
* FIX: Fixed wrong folder contacgroup related permissions in auth.php api
* FIX: Fixed not up-to-date role permission data in roles_saved hook
+ * FIX: Fixed duplicate custom columns in WATO after switching languages
BI:
* improve doc/treasures/check_bi_local.py: local check that creates
diff --git a/web/htdocs/wato.py b/web/htdocs/wato.py
index 6e9e7ee..3c63fdb 100644
--- a/web/htdocs/wato.py
+++ b/web/htdocs/wato.py
@@ -3737,7 +3737,6 @@ class ContactGroupsAttribute(Attribute):
# Declare an attribute for each host tag configured in multisite.mk
# Also make sure that the tags are reconfigured as soon as the
# configuration of the tags has changed.
-configured_host_tags = None
def declare_host_tag_attributes():
global configured_host_tags
global host_attributes
@@ -9764,8 +9763,10 @@ def load_plugins():
loaded_with_language = current_language
# Reset global vars
- global extra_buttons
+ global extra_buttons, configured_host_tags, host_attributes
extra_buttons = []
+ configured_host_tags = None
+ host_attributes = []
# Declare WATO-specific permissions
config.declare_permission_section("wato", _("WATO - Check_MK's Web Administration Tool"))