Module: check_mk
Branch: master
Commit: 24442ada466e4d5467a3622b3ff17905a6b7fb40
URL: http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=24442ada466e4d…
Author: Lars Michelsen <lm(a)mathias-kettner.de>
Date: Thu Oct 29 15:18:02 2015 +0100
Unified sidebar snapin titles
---
web/plugins/sidebar/shipped.py | 48 ++++++++++++++++++++++++----------------
1 file changed, 29 insertions(+), 19 deletions(-)
diff --git a/web/plugins/sidebar/shipped.py b/web/plugins/sidebar/shipped.py
index 9a5fa8f..2d663a1 100644
--- a/web/plugins/sidebar/shipped.py
+++ b/web/plugins/sidebar/shipped.py
@@ -48,7 +48,8 @@ def render_about():
sidebar_snapins["about"] = {
"title" : _("About Check_MK"),
- "description" : _("Version information and Links to Documentation, Homepage and Download of Check_MK"),
+ "description" : _("Version information and Links to Documentation, "
+ "Homepage and Download of Check_MK"),
"render" : render_about,
"allowed" : [ "admin", "user", "guest" ],
}
@@ -212,14 +213,14 @@ def render_groups(what):
html.write('</ul>')
sidebar_snapins["hostgroups"] = {
- "title" : _("Hostgroups"),
+ "title" : _("Host Groups"),
"description" : _("Directs links to all host groups"),
"render" : lambda: render_groups("host"),
"restart": True,
"allowed" : [ "user", "admin", "guest" ]
}
sidebar_snapins["servicegroups"] = {
- "title" : _("Servicegroups"),
+ "title" : _("Service Groups"),
"description" : _("Direct links to all service groups"),
"render" : lambda: render_groups("service"),
"restart": True,
@@ -305,8 +306,9 @@ snapin_allhosts_styles = """
"""
sidebar_snapins["hosts"] = {
- "title" : _("All hosts"),
- "description" : _("A summary state of each host with a link to the view showing its services"),
+ "title" : _("All Hosts"),
+ "description" : _("A summary state of each host with a link to the view "
+ "showing its services"),
"render" : lambda: render_hosts("hosts"),
"allowed" : [ "user", "admin", "guest" ],
"refresh" : True,
@@ -314,8 +316,9 @@ sidebar_snapins["hosts"] = {
}
sidebar_snapins["summary_hosts"] = {
- "title" : _("Summary hosts"),
- "description" : _("A summary state of all summary hosts (summary hosts hold aggregated service states and are a feature of Check_MK)"),
+ "title" : _("Summary Hosts"),
+ "description" : _("A summary state of all summary hosts (summary hosts hold "
+ "aggregated service states and are a feature of Check_MK)"),
"render" : lambda: render_hosts("summary"),
"allowed" : [ "user", "admin", "guest" ],
"refresh" : True,
@@ -323,8 +326,9 @@ sidebar_snapins["summary_hosts"] = {
}
sidebar_snapins["problem_hosts"] = {
- "title" : _("Problem hosts"),
- "description" : _("A summary state of all hosts that have a problem, with links to problems of those hosts"),
+ "title" : _("Problem Hosts"),
+ "description" : _("A summary state of all hosts that have a problem, with "
+ "links to problems of those hosts"),
"render" : lambda: render_hosts("problems"),
"allowed" : [ "user", "admin", "guest" ],
"refresh" : True,
@@ -471,8 +475,9 @@ def render_sitestatus():
sidebar_snapins["sitestatus"] = {
- "title" : _("Site status"),
- "description" : _("Connection state of each site and button for enabling and disabling the site connection"),
+ "title" : _("Site Status"),
+ "description" : _("Connection state of each site and button for enabling "
+ "and disabling the site connection"),
"render" : render_sitestatus,
"allowed" : [ "user", "admin" ],
"refresh" : True,
@@ -657,7 +662,7 @@ def render_performance():
html.write("</table>\n")
sidebar_snapins["performance"] = {
- "title" : _("Server performance"),
+ "title" : _("Server Performance"),
"description" : _("Live monitor of the overall performance of all monitoring servers"),
"refresh" : True,
"render" : render_performance,
@@ -838,7 +843,7 @@ def render_current_time():
html.write("<div class=time>%s</div>" % time.strftime("%H:%M"))
sidebar_snapins["time"] = {
- "title" : _("Server time"),
+ "title" : _("Server Time"),
"description" : _("A large clock showing the current time of the web server"),
"refresh" : True,
"render" : render_current_time,
@@ -921,7 +926,8 @@ def render_nagios():
sidebar_snapins["nagios_legacy"] = {
"title" : _("Old Nagios GUI"),
- "description" : _("The classical sidebar of Nagios 3.2.0 with links to your local Nagios instance (no multi site support)"),
+ "description" : _("The classical sidebar of Nagios 3.2.0 with links to "
+ "your local Nagios instance (no multi site support)"),
"render" : render_nagios,
"allowed" : [ "user", "admin", "guest", ],
}
@@ -976,8 +982,9 @@ def render_master_control():
html.end_foldable_container()
sidebar_snapins["master_control"] = {
- "title" : _("Master control"),
- "description" : _("Buttons for switching globally states such as enabling checks and notifications"),
+ "title" : _("Master Control"),
+ "description" : _("Buttons for switching globally states such as enabling "
+ "checks and notifications"),
"render" : render_master_control,
"allowed" : [ "admin", ],
"styles" : """
@@ -1346,7 +1353,9 @@ def render_custom_links():
sidebar_snapins["custom_links"] = {
"title" : _("Custom Links"),
- "description" : _("This snapin contains custom links which can be configured via the configuration variable <tt>custom_links</tt> in <tt>multisite.mk</tt>"),
+ "description" : _("This snapin contains custom links which can be "
+ "configured via the configuration variable "
+ "<tt>custom_links</tt> in <tt>multisite.mk</tt>"),
"render" : render_custom_links,
"allowed" : [ "user", "admin", "guest" ],
"styles" : """
@@ -1807,8 +1816,9 @@ def render_tag_tree():
sidebar_snapins["tag_tree"] = {
"title" : _("Virtual Host Tree"),
- "description" : _("This snapin shows tree views of your hosts based on their tag classifications. You "
- "can configure which tags to use in your global settings of Multisite."),
+ "description" : _("This snapin shows tree views of your hosts based on their tag "
+ "classifications. You can configure which tags to use in your "
+ "global settings of Multisite."),
"render" : render_tag_tree,
"refresh" : True,
"allowed" : [ "admin", "user", "guest" ],
Module: check_mk
Branch: master
Commit: 250fde17924dc97928a6e65749866266b1fa85fe
URL: http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=250fde17924dc9…
Author: Lars Michelsen <lm(a)mathias-kettner.de>
Date: Thu Oct 29 16:16:06 2015 +0100
Updated bug entries #2320
---
.bugs/2320 | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/.bugs/2320 b/.bugs/2320
new file mode 100644
index 0000000..9bb2ea4
--- /dev/null
+++ b/.bugs/2320
@@ -0,0 +1,9 @@
+Title: Interval configured in "regular service discovery" is handled differently in cores
+Component: core
+State: open
+Date: 2015-10-29 16:07:59
+Targetversion: 1.2.6
+Class: bug
+
+The global settings interval is used only as normal interval on cmc(?) and
+e.g. with nagios core this is handled differently.