From f7d54242e562eb3dd8e3551b863d3f099d4a5062 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Fri, 23 May 2003 04:27:27 +0000 Subject: Add urls for all www_important papers and most of their authors; resolve j.f. to jean-francois svn:r36 --- config.py | 43 +++++++++++++++++++++++++++++++++++++++---- 1 file changed, 39 insertions(+), 4 deletions(-) (limited to 'config.py') diff --git a/config.py b/config.py index e6eacda..3176120 100644 --- a/config.py +++ b/config.py @@ -6,27 +6,48 @@ MASTER_BIB = "./anonbib.bib" OUTPUT_DIR = "." AUTHOR_URLS = { + 'Ross.*Anderson' : 'http://www.cl.cam.ac.uk/users/rja14/', + 'Alessandro.*Acquisti' : 'http://www.sims.berkeley.edu/~acquisti/', 'Berthold' : 'http://page.inf.fu-berlin.de/~berthold/', 'Miguel.*Castro' : 'http://research.microsoft.com/users/mcastro/', 'Chaum' : 'http://www.chaum.org', + 'J.*Claessens' : 'http://www.esat.kuleuven.ac.be/~joclaess/', 'Danezis' : 'http://www.cl.cam.ac.uk/~gd216/', + 'Claudia.*Diaz' : ('http://www.esat.kuleuven.ac.be/sista-cosic-docarch/' + 'template.php?page=person&view=0&id1=67&id2=0&id3=0'), 'Dingledine' : 'http://www.freehaven.net/~arma/cv.html', 'Desmedt' : 'http://www.cs.fsu.edu/~desmedt/', + 'Douceur' : 'http://research.microsoft.com/~johndo/', + 'Michael.*Freedman' : 'http://www.scs.cs.nyu.edu/~mfreed/', + '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/', + 'H.*Langos' : 'http://www.wh9.tu-dresden.de/~heinrich/', 'B.*Liskov' : 'http://www.pmg.lcs.mit.edu/barbara_liskov.html', 'Mathewson' : 'http://www.wangafu.net/~nickm/', 'Mazières' : 'http://www.scs.cs.nyu.edu/~dm/', + 'B.*Möller' : ('http://www.informatik.tu-darmstadt.de/TI/' + 'Mitarbeiter/moeller.html'), + 'U.*Möller' : 'http://www.ulfm.de/', + 'D.*Molnar' : 'http://hcs.harvard.edu/~dmolnar/papers.html', + 'R.*Morris' : 'http://www.pdos.lcs.mit.edu/~rtm/', 'A.*Pfitzmann' : 'http://dud.inf.tu-dresden.de/~pfitza/', 'B.*Pfitzmann' : 'http://www.zurich.ibm.com/~bpf/', + 'B.*Preneel' : 'http://www.esat.kuleuven.ac.be/~preneel/', + 'Daniel.*Simon' : 'http://research.microsoft.com/crypto/dansimon/me.htm', + 'Rackoff' : 'http://www.cs.toronto.edu/DCS/People/Faculty/rackoff.html', + 'Jean F' : 'http://www.geocities.com/j_f_raymond/', + 'M.*Rennhard' : 'http://www.tik.ee.ethz.ch/~rennhard/', + 'M.*Reiter' : 'http://www.ece.cmu.edu/~reiter/', 'Rivest' : 'http://theory.lcs.mit.edu/~rivest/', + 'Avi.*Rubin' : 'http://avirubin.com/', 'Serjantov' : 'http://www.cl.cam.ac.uk/users/aas23/', + 'S.*Seys' : 'http://www.esat.kuleuven.ac.be/~sseys/', + 'Shoup' : 'http://www.shoup.net/', 'Syverson' : 'http://www.syverson.org/', + 'Tsudik' : 'http://www.ics.uci.edu/~gts/c.html', 'David.*Wagner' : 'http://www.cs.berkeley.edu/~daw/', - 'Shoup' : 'http://www.shoup.net/', - 'B.*Möller' : 'http://www.informatik.tu-darmstadt.de/TI/Mitarbeiter/moeller.html', - 'Michael.*Freedman' : 'http://www.scs.cs.nyu.edu/~mfreed/', - + 'M.*Waldman' : 'http://cs1.cs.nyu.edu/~waldman/', } # List of paterns for author names _not_ to do an initial-tolerant @@ -36,6 +57,16 @@ NO_COLLAPSE_AUTHORS = [ ] +# Map from LaTeX-style name of author to collapse to canonical name. +COLLAPSE_AUTHORS = { + "Nicholas Mathewson": "Nick Mathewson", + } + +# Map from author pattern to collation key. +ALPHEBETIZE_AUTHOR_AS = { + "Zero.*Knowledge.*Systems": "Zero Knowledge Systems", + } + INITIAL_STRINGS = { # MONTHS 'jan' : 'January', 'feb' : 'February', @@ -66,3 +97,7 @@ AUTHOR_RE_LIST = [ NO_COLLAPSE_AUTHORS_RE_LIST = [ re.compile(pat, re.I) for pat in NO_COLLAPSE_AUTHORS ] + +ALPHEBETIZE_AUTHOR_AS_RE_LIST = [ + (re.compile(k, re.I), v,) for k,v in ALPHEBETIZE_AUTHOR_AS.items() + ] -- cgit v1.2.3-70-g09d2