[onionoo/master] Be more precise about leaving out non-null values.

commit da05cefbb3f360d00d20cf5becbd6f06963f7d7b Author: Karsten Loesing <karsten.loesing@gmx.net> Date: Thu Mar 6 16:10:35 2014 +0100 Be more precise about leaving out non-null values. The specification said that we're only including non-null values for series of at least two subsequent data points. But that's not true. We're not including histories if there are not at least two subsequent non-null values. But those histories may contain single non-null values with null values previous and next to them. --- web/index.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/web/index.html b/web/index.html index f6e749a..88745af 100644 --- a/web/index.html +++ b/web/index.html @@ -1391,8 +1391,8 @@ Array of normalized bandwidth values in bytes per second. May contain null values if the relay did not provide any bandwidth data or only data for less than 20% of a given time period. -Only includes non-null values for series of at least two subsequent data -points to enable drawing of line graphs. +Contains at least two subsequent non-null values to enable drawing of line +graphs. </p> </li> @@ -1618,8 +1618,8 @@ Can also be derived from the number of elements in the subsequent array. Array of normalized weights values. May contain null values if the relay was running less than 20% of a given time period. -Only includes non-null values for series of at least two subsequent data -points to enable drawing of line graphs. +Contains at least two subsequent non-null values to enable drawing of line +graphs. </p> </li>
participants (1)
-
karsten@torproject.org