aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/patches/nyx-show-header-stats-with-python3.patch
blob: 5b20f180f7c036f05d94fbf150f341ae15a59e46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
From: Tobias Geerinckx-Rice <me@tobias.gr>
Date: Fri, 22 Jun 2018 02:56:39 +0200
Subject: nyx: Show header stats.

The following patch was taken verbatim from the upstream repository and
will be included in the next release.
---
commit 3494111cc81ad4985e81d0c1ea5e451d8f7a2bcc
Author: Damian Johnson <atagar@torproject.org>
Date:   Mon Feb 5 20:07:40 2018 -0800

    Header stats missing with python3
    
    Ick! took me a while to find this. Python3 changed division from providing ints
    to floats. This in turn caused our header panel to call addstr with float x/y
    coordinates, which made that funciton fail silently. End result is that when
    the header panel showed two columns of stats the right column was missing.
    
    Caught thanks to Stijn.

diff --git a/nyx/panel/header.py b/nyx/panel/header.py
index 09e3838..fb6f2f7 100644
--- a/nyx/panel/header.py
+++ b/nyx/panel/header.py
@@ -155,7 +155,7 @@ class HeaderPanel(nyx.panel.DaemonPanel):
     # space available for content
 
     interface = nyx_interface()
-    left_width = max(subwindow.width / 2, 77) if is_wide else subwindow.width
+    left_width = max(subwindow.width // 2, 77) if is_wide else subwindow.width
     right_width = subwindow.width - left_width
 
     _draw_platform_section(subwindow, 0, 0, left_width, vals)
diff --git a/web/changelog/index.html b/web/changelog/index.html
index 333fa84..196d82b 100644
--- a/web/changelog/index.html
+++ b/web/changelog/index.html
@@ -74,6 +74,12 @@
           </ul>
         </li>
 
+        <li><span class="component">Header</span>
+          <ul>
+            <li>Right column of stats missing when using python 3.x</li>
+          </ul>
+        </li>
+
         <li><span class="component">Connections</span>
           <ul>
             <li>Geoip information unavailable for inbound connections</li>
diff --git a/web/changelog/legacy.html b/web/changelog/legacy.html
index a380806..02d405f 100644
--- a/web/changelog/legacy.html
+++ b/web/changelog/legacy.html
@@ -137,13 +137,13 @@
           </ul>
         </li>
 
-        <li><span class="component">Startup</span>
+        <li><span class="component">Graph</span>
           <ul>
             <li>Crash when pausing if we showed accounting stats</li>
           </ul>
         </li>
 
-        <li><span class="component">Startup</span>
+        <li><span class="component">Logging</span>
           <ul>
             <li>Skip reading from malformed tor log files</li>
             <li>Unable to log GUARD events</li>