aboutsummaryrefslogtreecommitdiff
path: root/config.py
blob: 8de6c9687d145de2c1bbdfd5e6c8614a8b356345 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import re

MASTER_BIB = "./anonbib.bib"

OUTPUT_DIR = "."

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',
    'Michael.*Freedman' : 'http://www.scs.cs.nyu.edu/~mfreed/',
    
    }

INITIAL_STRINGS = {
    # MONTHS
     'jan' : 'January',         'feb' : 'February',
     'mar' : 'March',           'apr' : 'April',
     'may' : 'May',             'jun' : 'June',
     'jul' : 'July',            'aug' : 'August',
     'sep' : 'September',       'oct' : 'October',
     'nov' : 'November',        'dec' : 'December',

    # SECTIONS
     'sec_mix' : "Mix Networks: Design",
     'sec_mixattacks' : "Mix Networks: Attacks",
     'sec_stream' : "Stream-based anonymity",
     'sec_traffic' : "Traffic analysis",
     'sec_pub' : "Anonymous publication",
     'sec_nym' : "Pseudonymity"
}

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.items()
    ]