diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1999-09-25 16:54:11 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1999-09-25 16:54:11 +0000 |
commit | 1daa514dfaae67490934259ad41b86de628b5a0f (patch) | |
tree | ed01acf17eff13950a0c442cdf74828a3585fc9a /growthplot | |
parent | 39b74d2335b8c08e6d1945a59ba02fdec3aa7ae8 (diff) | |
download | fetchmail-1daa514dfaae67490934259ad41b86de628b5a0f.tar.gz fetchmail-1daa514dfaae67490934259ad41b86de628b5a0f.tar.bz2 fetchmail-1daa514dfaae67490934259ad41b86de628b5a0f.zip |
We can plot with the new format now, but no size arc yet.
svn path=/trunk/; revision=2606
Diffstat (limited to 'growthplot')
-rwxr-xr-x | growthplot | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -22,7 +22,7 @@ EOF ( echo "count=0" echo "breakheight=510" - while read version friends announce total days date + while read version size friends announce total days date do if [ "$version" = '%' ] then @@ -49,7 +49,7 @@ EOF # OK, now write the major-release labels ( - while read version friends announce total days date + while read version size friends announce total days date do echo "set arrow from $days, $total - 80 to $days, $total - 30 head" echo "set label '$version' at $days - 5, $total - 90" @@ -57,17 +57,17 @@ EOF ) </tmp/growthmajors$$ >>/tmp/growthimage$$ cat >>/tmp/growthimage$$ <<EOF -plot [] [0:] '/tmp/growthnumbers$$' using 5:4 \ +plot [] [0:] '/tmp/growthnumbers$$' using 6:5 \ title "Both lists" with points 3, \ - '/tmp/growthannounce$$' using 5:3 \ + '/tmp/growthannounce$$' using 6:4 \ title "fetchmail-announce" with points 4, \ - '/tmp/growthannounce$$' using 5:2 \ + '/tmp/growthannounce$$' using 6:3 \ title "fetchmail-friends" with points 2 EOF # The gnuplot driver for PNG doesn't do color gnuplot /tmp/growthimage$$ >growth.gif -gif2png -s -d -qq growth.gif +gif2png -s -d growth.gif rm -f /tmp/growth* |