summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjasplin <qt-info@nokia.com>2010-05-12 11:52:24 +0200
committerjasplin <qt-info@nokia.com>2010-05-12 11:52:24 +0200
commit7610b1e0a37766f8a9675e089d523749e33e54b5 (patch)
tree7dc57e1374f66fec7dfdc4fff902b8f8c61791de
parent72cb555cc27ef37ce8d8a810d0554ba2610d1f25 (diff)
Updated online documentation.
-rw-r--r--src/bm/bmrequest.cpp10
-rw-r--r--src/bmweb/indexsection.js3
2 files changed, 8 insertions, 5 deletions
diff --git a/src/bm/bmrequest.cpp b/src/bm/bmrequest.cpp
index 52bacdb..c4412fd 100644
--- a/src/bm/bmrequest.cpp
+++ b/src/bm/bmrequest.cpp
@@ -7438,7 +7438,7 @@ struct RHStats {
bool im; // improved
// Conditions for being unstable:
- bool zr; // zero existence
+ bool zr; // existence of zeros
bool fp; // 'from' position to low (i.e. no data before the 'from' time)
bool sf; // stability fraction too low
bool lf; // unique level fraction too low
@@ -7691,7 +7691,8 @@ void BMRequest_ASFStatsGetValues::handleReply_HTML(const QStringList &args) cons
reply += "<br /><b>Categories of instabilities:</b>";
reply += QString("<table style=\"text-align:right; background-color:%1\">\n").arg(usColor);
reply += QString(
- "<tr><td>Zero existence:</td><td>%1</td><td>%2 %</td></tr>\n")
+ "<tr><td>Existence of zeros within the [from,&nbsp;to] time range:</td>"
+ "<td>%1</td><td>%2 %</td></tr>\n")
.arg(usZeroCount).arg(QString().setNum(100 * (usZeroCount / qreal(unstable)), 'f', 2));
reply += QString("<tr><td>No data before 'from' time:</td><td>%1</td><td>%2 %</td></tr>\n")
.arg(usLowFromPosCount)
@@ -7705,7 +7706,8 @@ void BMRequest_ASFStatsGetValues::handleReply_HTML(const QStringList &args) cons
.arg(usLowLFCount)
.arg(QString().setNum(100 * (usLowLFCount / qreal(unstable)), 'f', 2));
reply += QString(
- "<tr><td>Max level difference too high:</td><td>%1</td><td>%2 %</td></tr>\n")
+ "<tr><td>Max level difference too high within the [from,&nbsp;to] time range:</td>"
+ "<td>%1</td><td>%2 %</td></tr>\n")
.arg(usHighMaxLDCount)
.arg(QString().setNum(100 * (usHighMaxLDCount / qreal(unstable)), 'f', 2));
reply += "</table>\n";
@@ -7727,7 +7729,7 @@ void BMRequest_ASFStatsGetValues::handleReply_HTML(const QStringList &args) cons
reply += "<tr><td style=\"text-align:right\">RG:</td><td>Regressed</td></tr>";
reply += "<tr><td style=\"text-align:right\">UC:</td><td>Unchanged</td></tr>";
reply += "<tr><td style=\"text-align:right\">IM:</td><td>Improved</td></tr>";
- reply += "<tr><td style=\"text-align:right\">ZR:</td><td>Zero existence</td></tr>";
+ reply += "<tr><td style=\"text-align:right\">ZR:</td><td>Existence of zeros</td></tr>";
reply += "<tr><td style=\"text-align:right\">FP:</td>"
"<td>'From' position to low (i.e. no data before the 'from' time)</td></tr>";
reply += "<tr><td style=\"text-align:right\">SF:</td><td>Stability fraction too low</td></tr>";
diff --git a/src/bmweb/indexsection.js b/src/bmweb/indexsection.js
index f808964..8dfd074 100644
--- a/src/bmweb/indexsection.js
+++ b/src/bmweb/indexsection.js
@@ -813,7 +813,8 @@ function IndexSection()
td = tr.insertCell(2);
td.innerHTML = "The percentage of subsequence levels that are unique.";
td.innerHTML =
- "The maximum allowed relative difference between any two levels in a result history "
+ "The maximum allowed relative difference between any two levels within the "
+ + "[from, to] timestamp range in a result history "
+ "for it to be considered stable.";
td.setAttribute("style", "background-color:#eeeeee");