[pkg-nagios-changes] [Git][nagios-team/pkg-nagvis][master] 5 commits: New upstream version 1.9.28
Bas Couwenberg (@sebastic)
gitlab at salsa.debian.org
Sat Nov 27 17:07:22 GMT 2021
Bas Couwenberg pushed to branch master at Debian Nagios Maintainer Group / pkg-nagvis
Commits:
38db5282 by Bas Couwenberg at 2021-11-27T17:54:51+01:00
New upstream version 1.9.28
- - - - -
c66d7c67 by Bas Couwenberg at 2021-11-27T17:54:59+01:00
Update upstream source from tag 'upstream/1.9.28'
Update to upstream version '1.9.28'
with Debian dir f64d06585f94a0973d667e977d71757cea633371
- - - - -
8009728d by Bas Couwenberg at 2021-11-27T17:55:24+01:00
New upstream release.
- - - - -
e05d48c1 by Bas Couwenberg at 2021-11-27T18:02:43+01:00
Update lintian overrides.
- - - - -
15ab4bd0 by Bas Couwenberg at 2021-11-27T18:02:43+01:00
Set distribution to unstable.
- - - - -
9 changed files:
- ChangeLog
- debian/changelog
- debian/nagvis.lintian-overrides
- debian/source/lintian-overrides
- docs/en_US/extending/iconsets.html
- share/frontend/nagvis-js/js/ElementLine.js
- share/server/core/classes/GlobalCore.php
- share/server/core/defines/global.php
- share/userfiles/templates/default.css
Changes:
=====================================
ChangeLog
=====================================
@@ -1,3 +1,9 @@
+1.9.28
+Frontend
+ * Add support for svg image based icon sets (#298 Thanks to itsul)
+ * FIX: Fix off-screen text input boxes in popups (#300 Thanks to jacobbaungard)
+ * FIX: Fix weathermap lines handling "Bit" of Checkmk checks (#296 Thanks to BlackFlash5)
+
1.9.27
Core
* FIX: Fix PHP 7 (or older) incompatibilities introduced with 1.9.26
=====================================
debian/changelog
=====================================
@@ -1,12 +1,14 @@
-nagvis (1:1.9.27-2) UNRELEASED; urgency=medium
+nagvis (1:1.9.28-1) unstable; urgency=medium
* Team upload.
+ * New upstream release.
* Bump Standards-Version to 4.6.0, no changes.
* Update Swedish debconf translation.
(closes: #994686)
* Update watch file to use tags instead of releases.
+ * Update lintian overrides.
- -- Bas Couwenberg <sebastic at debian.org> Sat, 23 Oct 2021 18:55:07 +0200
+ -- Bas Couwenberg <sebastic at debian.org> Sat, 27 Nov 2021 17:56:31 +0100
nagvis (1:1.9.27-1) unstable; urgency=medium
=====================================
debian/nagvis.lintian-overrides
=====================================
@@ -1,8 +1,8 @@
# ignoring apache2 warning
# this is actually not a problem, because the handling is backwards compatible
-apache2-reverse-dependency-calls-invoke-rc.d postrm
-apache2-reverse-dependency-calls-wrapper-script postinst a2enmod
-apache2-reverse-dependency-calls-invoke-rc.d postinst
+apache2-reverse-dependency-calls-invoke-rc.d postrm:*
+apache2-reverse-dependency-calls-wrapper-script postinst:* a2enmod
+apache2-reverse-dependency-calls-invoke-rc.d postinst:*
# user and group
spelling-error-in-readme-debian nagios nagios (duplicate word) nagios
=====================================
debian/source/lintian-overrides
=====================================
@@ -1,2 +1,2 @@
# see share/frontend/nagvis-js/js/ExtLeaflet-src.js
-source-is-missing share/frontend/nagvis-js/js/ExtLeaflet.js line length is 32126 characters (>512)
+source-is-missing share/frontend/nagvis-js/js/ExtLeaflet.js
=====================================
docs/en_US/extending/iconsets.html
=====================================
@@ -16,7 +16,8 @@
<h3>Solution</h3>
<p>Build your own iconset.</p>
<h2>What is an iconset?</h2>
- <p>A complete iconset consists of a number of files. These files are png images which are named like this:</p>
+ <p>A complete iconset consists of a number of files. These files are
+ png, svg, gif or jpg images which are named like this:</p>
<table>
<tbody>
<tr>
=====================================
share/frontend/nagvis-js/js/ElementLine.js
=====================================
@@ -822,7 +822,7 @@ var ElementLine = Element.extend({
// Check_MK if/if64 checks support switching between bytes/bits.
var display_bits = false;
- if (output.match('In: [0-9].*bit/s.*Out: [0-9]+')) {
+ if (output.match('In: [0-9].*[Bit|bit]/s.*Out: [0-9]+')) {
display_bits=true;
}
=====================================
share/server/core/classes/GlobalCore.php
=====================================
@@ -378,7 +378,7 @@ class GlobalCore {
foreach(Array(path('sys', 'local', 'icons'),
path('sys', 'global', 'icons')) AS $path)
if(file_exists($path))
- foreach(Array('png', 'gif', 'jpg') AS $ext)
+ foreach(Array('png', 'gif', 'jpg', 'svg') AS $ext)
if(file_exists($path . $iconset . '_ok.'.$ext))
return $ext;
=====================================
share/server/core/defines/global.php
=====================================
@@ -23,7 +23,7 @@
*****************************************************************************/
// NagVis Version
-define('CONST_VERSION', '1.9.27');
+define('CONST_VERSION', '1.9.28');
// Set PHP error handling to standard level
// Different levels for php versions below 5.1 because PHP 5.1 reports
=====================================
share/userfiles/templates/default.css
=====================================
@@ -403,7 +403,6 @@ div#popupWindow h1 {
#popupWindowContent table.mytable td.tdfield {
overflow: hidden;
text-overflow: ellipsis;
- white-space: nowrap;
}
#popupWindowContent input[type="radio"] {
vertical-align: middle;
@@ -411,7 +410,6 @@ div#popupWindow h1 {
#popupWindowContent table.mytable tr td.tdlabel input {
width: 140x;
}
-#popupWindowContent table.mytable tr td.tdfield input,
#popupWindowContent table.mytable tr td.tdfield textarea,
#popupWindowContent table.mytable tr td.tdfield select {
width: 99%;
View it on GitLab: https://salsa.debian.org/nagios-team/pkg-nagvis/-/compare/a36ef52bd3af173392e29b15e48bf94138e990f1...15ab4bd0470b58725ba4e8f2d23c57a616f859d8
--
View it on GitLab: https://salsa.debian.org/nagios-team/pkg-nagvis/-/compare/a36ef52bd3af173392e29b15e48bf94138e990f1...15ab4bd0470b58725ba4e8f2d23c57a616f859d8
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-nagios-changes/attachments/20211127/a66a8352/attachment-0001.htm>
More information about the pkg-nagios-changes
mailing list