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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
# Copyright 2003-2004, Nick Mathewson. See LICENSE for licensing info.
import re
# Our input filename.
MASTER_BIB = "./anonbib.bib"
# Where do we put generated HTML?
OUTPUT_DIR = "."
# Where do we put cached papers (relative to OUTPUT_DIR)
CACHE_DIR = "cache"
# Timeout when downloading from a server while caching, in seconds.
DOWNLOAD_CONNECT_TIMEOUT = 15
# Map from author name regex to author homepage.
AUTHOR_URLS = {
'Ross.*Anderson' : 'http://www.cl.cam.ac.uk/users/rja14/',
'Alessandro.*Acquisti' : 'http://www.sims.berkeley.edu/~acquisti/',
'Adam.*Back' : 'http://www.cypherspace.org/~adam/',
'Berthold' : 'http://page.inf.fu-berlin.de/~berthold/',
'Miguel.*Castro' : 'http://research.microsoft.com/users/mcastro/',
'Chaum' : 'http://www.chaum.com/',
'J.*Claessens' : 'http://www.esat.kuleuven.ac.be/~joclaess/',
'R.*Clayton' : 'http://www.cl.cam.ac.uk/~rnc1/',
'Danezis' : 'http://www.cl.cam.ac.uk/~gd216/',
'Claudia.*Diaz' : 'http://www.esat.kuleuven.ac.be/~cdiaz/',
'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/',
'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.rsasecurity.com/rsalabs/staff/bios/mjakobsson/',
'Juels' : 'http://www.rsasecurity.com/rsalabs/staff/bios/ajuels/',
'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',
'M.*Waidner' : 'http://www.zurich.ibm.com/~wmi/',
'David.*Wagner' : 'http://www.cs.berkeley.edu/~daw/',
'M.*Waldman' : 'http://cs1.cs.nyu.edu/~waldman/',
'M.*Wright' : 'http://www.cs.umass.edu/~mwright/',
}
# List of paterns for author names _not_ to do an initial-tolerant
# match on when building section list. E.g., if "J\\. Smith" is in
# this list, he won't be folded into "John Smith".
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.
# This keeps 'Zero Knowledge Systems' from getting alphabetized as "Systems,
# Zero Knowledge."
ALPHABETIZE_AUTHOR_AS = {
"Zero.*Knowledge.*Systems": "Zero Knowledge Systems",
}
# Map of strings to initialzie BibTeX parsing with.
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"
}
# Don't put in any entries of this type.
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()
]
NO_COLLAPSE_AUTHORS_RE_LIST = [
re.compile(pat, re.I) for pat in NO_COLLAPSE_AUTHORS
]
ALPHABETIZE_AUTHOR_AS_RE_LIST = [
(re.compile(k, re.I), v,) for k,v in ALPHABETIZE_AUTHOR_AS.items()
]
|