aboutsummaryrefslogtreecommitdiffstats
path: root/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'config.py')
-rw-r--r--config.py42
1 files changed, 42 insertions, 0 deletions
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()
+ ]