From: Don Armstrong Date: Mon, 4 Dec 2017 01:32:19 +0000 (-0800) Subject: Switch the documentation to match the current default gnuplot colors X-Git-Url: https://git.donarmstrong.com/?p=bugscan.git;a=commitdiff_plain;h=e3a6541c0aed15b79158efd93ac3a064cc475bf8 Switch the documentation to match the current default gnuplot colors --- diff --git a/bugreport b/bugreport index 1fe0ffa..25e293a 100755 --- a/bugreport +++ b/bugreport @@ -159,13 +159,13 @@ sub MakeStatistics { } if ($html) { - print "Total number of release-critical bugs: $bugcount
\n"; + print "Total number of release-critical bugs: $bugcount
\n"; printf("Number that have a patch: %d
\n", $patchtotal); printf("Number that have a fix prepared and waiting to upload: %d
\n", $pendingtotal); printf("Number that are being ignored: %d
\n", $ignoretotal); - printf("Number concerning the current stable release: %d
\n", $stabletotal); - printf("Number concerning the next release: %d

\n", $worrytotal); - printf("Number concerning the previous stable release: %d

\n", $oldstabletotal); + printf("Number concerning the current stable release: %d
\n", $stabletotal); + printf("Number concerning the next release: %d

\n", $worrytotal); + printf("Number concerning the previous stable release: %d

\n", $oldstabletotal); } else { print "Total number of release-critical bugs: $bugcount\n"; printf("Number that have a patch: %d\n", $patchtotal); diff --git a/dograph b/dograph index ba6b822..3af59ab 100755 --- a/dograph +++ b/dograph @@ -38,6 +38,16 @@ set yrange [0:] #set xtics 2678400 #set nomxtics set output "/org/bugs.debian.org/www/bugscan/graph.png" +set linetype 1 lc rgb "dark-violet" lw 1 +set linetype 2 lc rgb "#009e73" lw 1 +set linetype 3 lc rgb "#56b4e9" lw 1 +set linetype 4 lc rgb "#e69f00" lw 1 +set linetype 5 lc rgb "#f0e442" lw 1 +set linetype 6 lc rgb "#0072b2" lw 1 +set linetype 7 lc rgb "#e51e10" lw 1 +set linetype 8 lc rgb "black" lw 1 +set linetype 9 lc rgb "gray50" lw 1 +set linetype cycle 9 plot "$tmp" using 1:2 with lines, "$tmp2" using 1:2 with lines, "$tmp3" using 1:2 with lines set xrange ["$previous_release":] set output "/org/bugs.debian.org/www/bugscan/graph-release.png" diff --git a/dohtml b/dohtml index aa8041e..a205ad0 100755 --- a/dohtml +++ b/dohtml @@ -156,11 +156,11 @@ EOF

- The red line graphs all bugs with release-critical severities; the green - line graphs the number of bugs that are actually a concern for the next + The dark-violet line graphs all bugs with release-critical severities; + the dark green line graphs the number of bugs that are actually a concern for the next release (excluding ignored bugs, bugs on packages not in testing, and bugs whose tags and/or versioning information indicate that they don't apply to - testing), and the blue line graphs the number of bugs that are a concern + testing), and the cyan line graphs the number of bugs that are a concern for the current stable release.