From c07e917777582ff1e70e8b57345397ef977d684e Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Sat, 17 May 2003 07:44:15 +0000 Subject: Work on HTML generation svn:r8 --- config.py | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 config.py (limited to 'config.py') diff --git a/config.py b/config.py new file mode 100644 index 0000000..cf7a4b2 --- /dev/null +++ b/config.py @@ -0,0 +1,42 @@ + +import re + +AUTHOR_URLS = { + 'Berthold' : 'http://page.inf.fu-berlin.de/~berthold/', + 'Miguel.*Castro' : 'http://research.microsoft.com/users/mcastro/', + 'Chaum' : 'http://www.chaum.org', + 'Danezis' : 'http://www.cl.cam.ac.uk/~gd216/', + 'Dingledine' : 'http://www.freehaven.net/~arma/cv.html', + 'Desmedt' : 'http://www.cs.fsu.edu/~desmedt/', + 'Jakobsson' : 'http://www.cs.ucsd.edu/users/markus/', + 'K.*Kurosawa' : 'http://kuro.cis.ibaraki.ac.jp/~kurosawa/', + '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/', + 'A.*Pfitzmann' : 'http://dud.inf.tu-dresden.de/~pfitza/', + 'B.*Pfitzmann' : 'http://www.zurich.ibm.com/~bpf/', + 'Rivest' : 'http://theory.lcs.mit.edu/~rivest/', + 'Serjantov' : 'http://www.cl.cam.ac.uk/users/aas23/', + 'Syverson' : 'http://www.syverson.org/', + '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', + + } + +INITIAL_STRINGS = { + 'jan' : 'January', 'feb' : 'February', + 'mar' : 'March', 'apr' : 'April', + 'may' : 'May', 'jun' : 'June', + 'jul' : 'July', 'aug' : 'August', + 'sep' : 'September', 'oct' : 'October', + 'nov' : 'November', 'dec' : 'December' + } + +OMIT_ENTRIES = ("proceedings", "journal") + +### Don't edit below this line + +AUTHOR_RE_LIST = [ + (re.compile(k, re.I), v,) for k, v in AUTHOR_URLS.iteritems() + ] -- cgit v1.2.3-70-g09d2