aboutsummaryrefslogtreecommitdiffstats
path: root/history.html
Commit message (Expand)AuthorAgeFilesLines
* Enable Date replacement.Matthias Andree2005-08-281-2/+2
* Rename design-notes.html to esrs-design-notes.html. Remove ~esr/ path from li...Matthias Andree2005-07-201-4/+0
* Link rot has struck.Eric S. Raymond2003-12-091-16/+2
* Bring us up to date with gnuplot 1.37.Eric S. Raymond2002-09-091-4/+4
* XML headers everywhere.Eric S. Raymond2002-07-301-2/+3
* XML conversionEric S. Raymond2002-07-281-72/+105
* Cleanup.Eric S. Raymond2002-07-281-39/+40
* Updated URL.Eric S. Raymond2001-03-011-3/+3
* *** empty log message ***Eric S. Raymond1999-12-201-4/+8
* Label fixes.Eric S. Raymond1999-09-281-4/+4
* Added related links.Eric S. Raymond1999-09-281-3/+14
* *** empty log message ***Eric S. Raymond1999-09-261-6/+6
* PNG warning.Eric S. Raymond1999-09-261-6/+8
* Initial revisionEric S. Raymond1999-09-261-0/+91
color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
#!/usr/bin/env python
#
# Collect statistics on current release.

import commands, string, ftplib

# Get version and date
date = commands.getoutput("date")
ln = commands.getoutput("co -p RCS/*.[chly],v 2>/dev/null | wc -l")
vers = commands.getoutput("sed -n -e '/VERSION/s/VERSION *= *\\(.*\\)/\\1/p' <Makefile")
print "fetchmail-" + vers + " (" + date + "), " + string.strip(ln) + " lines:"

# Use local listsize command to grab list statistics
friends = commands.getoutput("listsize friends").strip()
announce = commands.getoutput("listsize announce").strip()
print "There are %s people on fetchmail-friends and %s on fetchmail-announce."% (friends, announce)

# getstats.py