aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2003-05-23 20:39:38 +0000
committerRoger Dingledine <arma@torproject.org>2003-05-23 20:39:38 +0000
commit01b7beabff5b63111a286e64e2a9f9b6ba1ef9d0 (patch)
treeba9efa60273f7e3b47493f35f3c3598797512fa2
parentaa2c05c993c680c5d2456e3d73ca224122f4001d (diff)
downloadanonbib-01b7beabff5b63111a286e64e2a9f9b6ba1ef9d0.tar.gz
more entries
sort by date within topic svn:r39
-rw-r--r--config.py1
-rw-r--r--writeHTML.py2
2 files changed, 2 insertions, 1 deletions
diff --git a/config.py b/config.py
index 7d51936..c3a4d77 100644
--- a/config.py
+++ b/config.py
@@ -22,6 +22,7 @@ AUTHOR_URLS = {
'Douceur' : 'http://research.microsoft.com/~johndo/',
'Michael.*Freedman' : 'http://www.scs.cs.nyu.edu/~mfreed/',
'Ian.*Goldberg' : 'http://www.cs.berkeley.edu/~iang/',
+ 'Christian.*Grothoff' : 'http://www.ovmj.org/~grothoff/',
'D.*Hopwood' : 'http://www.users.zetnet.co.uk/hopwood/',
'Jakobsson' : 'http://www.cs.ucsd.edu/users/markus/',
'K.*Kurosawa' : 'http://kuro.cis.ibaraki.ac.jp/~kurosawa/',
diff --git a/writeHTML.py b/writeHTML.py
index e5d0816..85b1aa3 100644
--- a/writeHTML.py
+++ b/writeHTML.py
@@ -82,7 +82,7 @@ entries = BibTeX.splitSortedEntriesBy(entries, "www_section")
if entries[-1][0].startswith("<span class='bad'>"):
entries[-1] = ("Miscellaneous", entries[-1][1])
-entries = [ (s, BibTeX.sortEntriesByAuthor(ents))
+entries = [ (s, BibTeX.sortEntriesByDate(ents))
for s, ents in entries
]