commit b594488d4f9d3a7bc76b437b469637798b5ecde4
parent bfc6b4a5c9f880e07a068a6e1723566345ecbf72
Author: Roger Dingledine <arma@torproject.org>
Date: Fri, 23 May 2003 20:39:38 +0000
more entries
sort by date within topic
svn:r39
Diffstat:
3 files changed, 18 insertions(+), 1 deletion(-)
diff --git a/anonbib.bib b/anonbib.bib
@@ -40,6 +40,7 @@
www_section = mix,
www_txt_url = {http://www.eskimo.com/~weidai/mix-net.txt},
www_html_url = {http://world.std.com/~franl/crypto/chaum-acm-1981.html},
+ www_pdf_url = {http://www.ovmj.org/GNUnet/papers/p84-chaum.pdf},
www_important = {1},
% www_remarks = {Chaum's paper that has all the big ideas.}
}
@@ -181,6 +182,7 @@
month = February,
publisher = {IEEE},
www_section = traffic,
+ www_ps_url = "http://www.cs.umass.edu/~mwright/wright-degrade.ps",
}
@InProceedings{mixminion,
@@ -256,6 +258,7 @@
year = {1998},
www_section = pub,
www_html_url = "http://www.firstmonday.dk/issues/issue3_4/goldberg/",
+ www_ps_url = "http://www.ovmj.org/GNUnet/papers/goldberg97taz.ps",
}
@InProceedings{mix-acc,
@@ -472,6 +475,7 @@
editor = {Roger Dingledine and Paul Syverson},
publisher = {Springer-Verlag, LNCS 2482},
www_section = traffic,
+ www_pdf_url = "http://www.inf.fu-berlin.de/~berthold/publ/BeLa_02.pdf",
}
@InProceedings{disad-free-routes,
@@ -889,6 +893,17 @@
www_ps_url = "http://www.ovmj.org/GNUnet/download/aff.ps",
}
+@article{ ebe2003,
+ author = {Christian Grothoff},
+ title = {{An Excess-Based Economic Model for Resource Allocation in Peer-to-Peer Networks}},
+ journal = "Wirtschaftsinformatik",
+ publisher = "Springer-Verlag",
+ year = "2003"
+ month = "June",
+ www_section = economics,
+ www_ps_url = "http://www.ovmj.org/GNUnet/download/ebe.ps",
+}
+
@InProceedings{pet2003-kugler,
author = {Dennis K\"ugler},
title = {{An Analysis of GNUnet and the Implications for Anonymous, Censorship-Resistant Networks}},
@@ -921,6 +936,7 @@
year = "1996",
www_section = pub,
www_important = {1},
+ www_ps_url = "http://www.ovmj.org/GNUnet/papers/eternity.ps",
www_html_url = "http://www.cl.cam.ac.uk/users/rja14/eternity/eternity.html",
}
diff --git 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
@@ -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
]