aboutsummaryrefslogtreecommitdiffstats
path: root/COPYING
Commit message (Expand)AuthorAgeFilesLines
* Add OpenSSL acknowledgment.Matthias Andree2010-07-081-0/+4
* Update copyright years.Matthias Andree2010-01-281-5/+6
* Update Matthias Andree's copyright; summarize external licenses.Matthias Andree2008-05-051-7/+11
* Spell out Rob Funk's name.Matthias Andree2007-06-101-1/+1
* Update Matthias Andree's copyright.Matthias Andree2007-02-181-1/+1
* Update.Matthias Andree2006-01-141-6/+11
* Update.Matthias Andree2005-09-251-1/+2
* Large protocol independence patch.Matthias Andree2005-08-281-0/+6
* Cleanup: Drop inner_connect and ipv6-connect.c.Matthias Andree2005-08-011-4/+0
* Get rid of alloca() in fetchmail.Matthias Andree2005-07-311-1/+1
* Update licenses.Matthias Andree2005-07-111-2/+19
* Re-add the m4-local directory, in case we need to add more macros in the futu...Graham Wilson2004-11-121-2/+2
* Kill m4-local directory, move the two files to top-level directory.Matthias Andree2004-06-261-2/+2
* Fix HESIOD compile failure on FreeBSD 5-CURRENT,Matthias Andree2004-06-201-0/+6
* Collective work copyright asserted.Eric S. Raymond2002-09-151-4/+3
* License fix.Eric S. Raymond2002-04-011-0/+3
* More license cleanup.Eric S. Raymond2001-09-301-2/+4
* Include results of license audit.Eric S. Raymond2001-09-301-5/+12
* Got rid of BSD-classic licenses.Eric S. Raymond2001-09-301-3/+4
* Deal with the license-incompatibility problem.Eric S. Raymond2001-09-181-1/+1
* Ready to ship a gold version.Eric S. Raymond2000-11-261-13/+2
* Minor update.Eric S. Raymond2000-07-231-1/+1
* Add comment on MD5 license.Eric S. Raymond1997-09-041-0/+3
* Copyright cleanup.Eric S. Raymond1997-06-131-1/+1
* Put anti-GPV at the top.Eric S. Raymond1996-10-111-22/+18
* Added anti-GPV clause.Eric S. Raymond1996-10-111-0/+24
* Initial revisionEric S. Raymond1996-10-111-0/+278
$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; 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' set ylabel 'Participants' set y2label 'Lines of code' set ytics nomirror set y2tics set tics out set autoscale y set y2range [5000:50000] set key bottom right box set terminal png EOF # OK, now write the event labels ( count=0 lastday=0 breakheight=510 while read version legend do if [ "$version" = '%' ] then echo "# Associate $lastday to '$legend'" count=$((count+1)) lastday=$(($lastday-5)) endy=$((breakheight+50+count*50)) if ((endy>lasttotal)) then # Label over curve hanging right, arrow down arrowhead=$((lasttotal+50)) echo "set label '$legend' at $lastday-10, $endy+15" else # Label under curve hanging left, arrow up arrowhead=$((lasttotal-5)) strlen=`python -c "print len('$legend')"` lablen=$((strlen*22)) echo "set label '$legend' at $lastday-$lablen+10, $endy-15" fi echo set arrow \ from $lastday, $endy \ to $lastday, $arrowhead \ head else set -- $legend size=$1 friends=$2 announce=$3 total=$4 days=$5 date=$6 lastday=$days lasttotal=$total fi done ) <$tmp/growthplot$$ >>$tmp/growthimage$$ # OK, now write the major-release labels ( while read version size friends announce total days date do echo "set arrow from $days, $total - 55 to $days, $total - 15 head" echo "set label '$version' at $days - 5, $total - 65" done ) <$tmp/growthmajors$$ >>$tmp/growthimage$$ cat >>$tmp/growthimage$$ <<EOF plot [] [0:] '$tmp/growthnumbers$$' using 6:5 \ title "Both lists" with points $blue_boxes, \ '$tmp/growthannounce$$' using 6:4 \ title "fetchmail-announce" with points $cyan_diamonds, \ '$tmp/growthannounce$$' using 6:3 \ title "fetchmail-friends" with points $green_crosses, \ '$tmp/growthnumbers$$' using 6:2 axes x1y2 \ title "Lines of code" with points $brown_triangles EOF gnuplot $tmp/growthimage$$ >growth.png rm -f $tmp/growth* rmdir $tmp # growthplot ends here