Skip to content

Commit 9ce5e7c

Browse files
committed
fixed denan function to handle the number 1 and strings starting with 1
1 parent d15d1dc commit 9ce5e7c

File tree

9 files changed

+11952
-12323
lines changed

9 files changed

+11952
-12323
lines changed

CHANGES

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
0.10.4 2024-04-23 14:53:48 +0200 Tobias Oetiker <[email protected]>
2+
3+
- denan should properly handle 1 and strings starting with 1 RT#57346
4+
15
0.10.3 2023-03-07 11:15:27 +0100 Tobias Oetiker <[email protected]>
26

37
- if default_user is set and openid_url, only accept users

COPYRIGHT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
extopus - the monitoring aggregator
22
a web app to integrate results from a wide array of monitoring applications
33

4-
Copyright (c) 2023-2023 Tobias Oetiker and the other people listed in the
4+
Copyright (c) 2024-2024 Tobias Oetiker and the other people listed in the
55
AUTHORS file.
66

77
All rights reserved.

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.10.3
1+
0.10.4

cpanfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ requires 'JSON::XS';
66
requires 'YAML';
77
requires 'Params::Validate';
88
requires 'SIAM';
9+
requires 'DBI';
910
requires 'DBD::SQLite';
1011
requires 'Excel::Writer::XLSX';
1112
requires 'Spreadsheet::WriteExcel';

frontend/Manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
},
2323
"$schema": "https://qooxdoo.org/schema/Manifest-2-0-0.json",
2424
"requires": {
25-
"@qooxdoo/framework": "^7.1.0",
25+
"@qooxdoo/framework": "^7.7.0",
2626
"oetiker/CanvasCell": "^1.0.4",
2727
"oetiker/QxD3": "^0.4.1",
2828
"oposs/qx-iconfont-tabler": "^0.1.0"

frontend/package-lock.json

Lines changed: 11940 additions & 12316 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "",
55
"main": "index.js",
66
"dependencies": {
7-
"@qooxdoo/framework": "^7.1.0"
7+
"@qooxdoo/framework": "^7.7.0"
88
},
99
"scripts": {
1010
"test": "echo \"Error: no test specified\" && exit 1"

lib/EP/Visualizer/TorrusData.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ sub denan {
137137
my $nan = 0.0+"NaN";
138138
no warnings; # don't get your undies in a twist when we look at a text bit
139139
return [
140-
map { defined $nan <=> $_ ? $_ : undef } @$in
140+
map { $_ == 1 || defined $nan <=> $_ ? $_ : undef } @$in
141141
]
142142
}
143143

share/messages.pot

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
#, fuzzy
77
msgid ""
88
msgstr ""
9-
"Project-Id-Version: ep 0.10.3\n"
9+
"Project-Id-Version: ep 0.10.4\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2023-03-07 11:24+0100\n"
11+
"POT-Creation-Date: 2024-04-23 14:55+0200\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1414
"Language-Team: LANGUAGE <[email protected]>\n"

0 commit comments

Comments
 (0)