diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2002-09-09 07:24:37 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2002-09-09 07:24:37 +0000 |
commit | 1c17765a80be0d8e0e19c19c4020c4ede99d64bb (patch) | |
tree | edcf4b042085fbc4acdeed2a58fe587831b90ea5 | |
parent | c6ad31f9ae1f2e71c01e634b8b3112599b520d9a (diff) | |
download | fetchmail-1c17765a80be0d8e0e19c19c4020c4ede99d64bb.tar.gz fetchmail-1c17765a80be0d8e0e19c19c4020c4ede99d64bb.tar.bz2 fetchmail-1c17765a80be0d8e0e19c19c4020c4ede99d64bb.zip |
Bring us up to date with gnuplot 1.37.
svn path=/trunk/; revision=3705
-rwxr-xr-x | growthplot | 15 | ||||
-rw-r--r-- | history.html | 8 |
2 files changed, 15 insertions, 8 deletions
@@ -9,6 +9,13 @@ grep "^[0-9]" /tmp/growthplot$$ >/tmp/growthnumbers$$ grep "^[0-9.]*.[05].0 " /tmp/growthplot$$ >/tmp/growthmajors$$ sed '/^4.2.9/,$d' </tmp/growthnumbers$$ >/tmp/growthannounce$$ +# gnuplot line styles. These occasionally change (like beteween 3.5 and 3.7); +# use "echo "set terminal png color; test" | gnuplot | display - to check. +blue_boxes=3 +green_crosses=2 +cyan_diamonds=37 # Once purple triangles, but we can't do that anymore +brown_triangles=23 + cat >/tmp/growthimage$$ <<EOF set title "Fetchmail project growth history" set xlabel 'Days since baseline' @@ -78,13 +85,13 @@ EOF cat >>/tmp/growthimage$$ <<EOF plot [] [0:] '/tmp/growthnumbers$$' using 6:5 \ - title "Both lists" with points 3, \ + title "Both lists" with points $blue_boxes, \ '/tmp/growthannounce$$' using 6:4 \ - title "fetchmail-announce" with points 5, \ + title "fetchmail-announce" with points $cyan_diamonds, \ '/tmp/growthannounce$$' using 6:3 \ - title "fetchmail-friends" with points 2, \ + title "fetchmail-friends" with points $green_crosses, \ '/tmp/growthnumbers$$' using 6:2 axes x1y2 \ - title "Lines of code" with points 7 + title "Lines of code" with points $brown_triangles EOF gnuplot /tmp/growthimage$$ >growth.png diff --git a/history.html b/history.html index 856f3144..d55ce867 100644 --- a/history.html +++ b/history.html @@ -11,7 +11,7 @@ content="Fetchmail participation statistics" /> <style type="text/css"> /*<![CDATA[*/ span.c6 {color: brown} - span.c5 {color: purple} + span.c5 {color: red} span.c4 {color: lime} span.c3 {color: blue} div.c2 {text-align: center} @@ -24,7 +24,7 @@ content="Fetchmail participation statistics" /> <tr> <td width="30%">Back to <a href="/~esr">Eric's Home Page</a></td> <td width="30%" align="center">Up to <a href="/~esr/sitemap.html">Site Map</a></td> -<td width="30%" align="right">$Date: 2002/07/30 13:31:18 $</td> +<td width="30%" align="right">$Date: 2002/09/09 07:24:37 $</td> </tr> </table> @@ -58,7 +58,7 @@ don't have numbers on this).</p> <p>The <span class="c3">blue scatter of squares</span> is total participants. The <span class="c4">green scatter of crosses</span> is the count of people on fetchmail-friends after I split the list. -The <span class="c5">violet scatter of triangles</span> is the +The <span class="c5">cyan scatter of diamonds</span> is the population of fetchmail-announce after the split.</p> <p>The <span class="c6">brown scatter of diamonds</span> tracks @@ -131,7 +131,7 @@ on the vocabulary of the Linux kernel.</p> <tr> <td width="30%">Back to <a href="/~esr">Eric's Home Page</a></td> <td width="30%" align="center">Up to <a href="/~esr/sitemap.html">Site Map</a></td> -<td width="30%" align="right">$Date: 2002/07/30 13:31:18 $</td> +<td width="30%" align="right">$Date: 2002/09/09 07:24:37 $</td> </tr> </table> |