Commit graph

271 commits

Author SHA1 Message Date
David Fifield
4af49f0738 Add missing end-of-line commas.
Signed-off-by: Philipp Winter <phw@nymity.ch>
2017-11-01 17:31:52 -04:00
David Fifield
260d485a83 Add HTTPS for some more entries.
gking.harvard.edu
grothoff.org
hatswitch.org
www.cs.nyu.edu
www.cs.uml.edu
www.eecs.harvard.edu
www.ieee-security.org

Signed-off-by: Philipp Winter <phw@nymity.ch>
2017-11-01 17:31:33 -04:00
David Fifield
d71d7e21a6 Update URL for Lowe2007a.
Old URL is 404, as is http://cs.nyu.edu/~pcw216/.
I couldn't find another copy, so use the CensorBib URL.

Signed-off-by: Philipp Winter <phw@nymity.ch>
2017-11-01 17:31:22 -04:00
David Fifield
a3f2978069 Update URL for Chen2013a.
Old URL is 404.
http://www.ccs.neu.edu/home/cbw/ redirects to https://cbw.sh/, whence I
found the new URL.

Signed-off-by: Philipp Winter <phw@nymity.ch>
2017-11-01 17:30:58 -04:00
David Fifield
6c454d93c1 Update URL for Hahn2016a.
Old link is 404.

Signed-off-by: Philipp Winter <phw@nymity.ch>
2017-11-01 17:30:16 -04:00
David Fifield
fa0bfb65c7 Add WPES'09 paper.
Signed-off-by: Philipp Winter <phw@nymity.ch>
2017-11-01 17:28:19 -04:00
David Fifield
0561bade0c Update link for Weinberg2012a.
http://www.frankwang.org/papers/ccs2012.pdf is now 404.

Signed-off-by: Philipp Winter <phw@nymity.ch>
2017-11-01 17:28:02 -04:00
Philipp Winter
0bf7c56ba6 Add link to GitHub repository. 2017-10-29 18:00:48 -04:00
Philipp Winter
b60da5d113 Add two IMC'17 papers. 2017-10-29 17:55:03 -04:00
Philipp Winter
bdcd9b329e Add CSCW'17 paper. 2017-10-24 11:02:14 -04:00
David Fifield
326178d51a Convert some URLs from http to https.
These are some I happened to notice.

crypto.stanford.edu
cseweb.ucsd.edu
people.cs.umass.edu
static.usenix.org/event → www.usenix.org/legacy/events
www.cs.rice.edu
www.cs.toronto.edu
www.freehaven.net
www.icir.org
www-users.cs.umn.edu

Signed-off-by: Philipp Winter <phw@nymity.ch>
2017-10-17 17:57:11 -04:00
David Fifield
c290c54bf3 Fix URL for Mahdian2010a.
Use the cached PDF. mahdian.org no longer resolves.

Signed-off-by: Philipp Winter <phw@nymity.ch>
2017-10-17 17:57:10 -04:00
David Fifield
6452af8e73 Fix URL for Serjantov2002a.
Use the cached PDF. http://www.iptps.org/ is now some Japanese
law-related site.

Signed-off-by: Philipp Winter <phw@nymity.ch>
2017-10-17 17:57:06 -04:00
Philipp Winter
fc6ac97e89 Add link to corresponding onion site. 2017-10-13 23:32:48 -04:00
Philipp Winter
a863eb0fa3 Add two USENIX Security'17 papers. 2017-10-05 14:44:31 -04:00
David Fifield
205ff6cd6c Use https for censorbib.nymity.ch URLs.
Signed-off-by: Philipp Winter <phw@nymity.ch>
2017-09-09 18:19:07 -04:00
David Fifield
613a5f7829 Use https for www.degruyter.com URLs.
Signed-off-by: Philipp Winter <phw@nymity.ch>
2017-09-09 18:18:39 -04:00
David Fifield
242e038793 Run all URLs through HTTPS Everywhere.
I started with https://github.com/EFForg/https-everywhere
commit 2f387958564289e452324c63bc9d60617f432241,

then added this pull request (fixes rewriter.js):
https://github.com/EFForg/https-everywhere/pull/12487

then further applied this tiny patch to make rewriter.js process a
single file, rather than a directory:
 for (var i = 2; i < process.argv.length; i++) {
-  processDir(process.argv[i]);
+  processFile(process.argv[i]);
 }

I then ran these commands (cribbed from a comment in rewriter.js):
https-everywhere$ ./makecrx.sh
https-everywhere$ cd rewriter
https-everywhere$ npm install
https-everywhere$ node rewriter.js ~/censorbib/references.bib

Signed-off-by: Philipp Winter <phw@nymity.ch>
2017-09-09 18:18:10 -04:00
David Fifield
7c97c8395c "Wukan" needs to be capitalized.
Signed-off-by: Philipp Winter <phw@nymity.ch>
2017-08-29 12:16:56 -04:00
David Fifield
9549cb241e Fix the accented names int Aase2012a.
The "\~{n}" sequence was meant to represent 'ñ', but instead was
breaking the name (maybe it was interpreted as a nonbreaking space?).
CensorBib was rendering "Jorge Oca\~{n}a Molinero" as
	Jorge Oca Molinero
and BibTeX (with IEEEtranS.bst) as
	J. O. na Molinero

"\'{A}lvaro D\'{i}az" was for some reason not being split into a first
and last name. CensorBib had just
	Díaz
and BibTeX had
	Álvaro Díaz
(note the non-use of a first initial in the BibTeX case; after the fix
it becomes "Á. Díaz").

Putting the braces on the outside fixes both cases.
http://www.tex.ac.uk/FAQ-bibaccent.html

Actually only "\'{A}" and "\~{n}" needed the change, but do "\'{i}" too
for consistency.

Signed-off-by: Philipp Winter <phw@nymity.ch>
2017-08-29 12:16:36 -04:00
David Fifield
44d79cf7b3 Change "{Web}" to "Web" in Dornseif2003a for consistency.
Signed-off-by: Philipp Winter <phw@nymity.ch>
2017-08-29 12:16:14 -04:00
Philipp Winter
38cba305ee Add TMA'17 paper. 2017-08-28 13:29:54 -04:00
David Fifield
a08b688ac8 Add FOCI 2017 papers.
Signed-off-by: Philipp Winter <phw@nymity.ch>
2017-08-22 10:54:36 -04:00
Philipp Winter
cd3cb78128 Add three PETS'17 papers. 2017-06-27 15:10:49 -04:00
Philipp Winter
d7590738cf Add S&P'17 paper. 2017-05-22 13:53:30 -04:00
Philipp Winter
ac33440aa6 Update URL.
Thanks, David!
2017-05-21 14:37:36 -04:00
Philipp Winter
d17d77e798 Add recent IEEE journal paper. 2017-03-27 14:02:39 -04:00
Philipp Winter
beb2c0492c Add two techreports and one Euro S&P paper. 2017-03-26 13:08:33 -04:00
Philipp Winter
6276c8e912 Add NDSS'17 paper. 2017-01-21 10:09:22 -05:00
Philipp Winter
972f233063 Add paper from DFN-Arbeitstagung 2003.
Thanks, David!
2016-11-02 14:42:11 -04:00
Philipp Winter
4833f2108f Add WPES'16 paper. 2016-10-28 15:00:32 -04:00
Philipp Winter
8c6af7616a Add CCS'16 papers. 2016-09-16 14:16:37 -04:00
Philipp Winter
57821d1cf9 Add FOCI'16 papers. 2016-08-09 14:20:02 -05:00
Philipp Winter
76bfa308b0 Harmonise capitalisation of names. 2016-07-20 11:26:19 -04:00
Philipp Winter
49337a8d3c Add remaining PETS'16 papers.
Also, harmonise the URLs of the existing PETS papers.
2016-07-20 11:05:44 -04:00
Philipp Winter
302de9f9a2 Add ATC'16 paper. 2016-07-06 16:05:55 -04:00
Philipp Winter
53ead2b31f Add RTSI'16 paper.
Thanks, Antonio!
2016-07-04 19:56:14 -04:00
Philipp Winter
783b689f32 Add missing author. 2016-07-01 17:58:57 -04:00
Philipp Winter
80db02a180 Add ISC'16 paper.
Thanks, David!
2016-07-01 17:45:43 -04:00
Philipp Winter
491051b67f Add EuroS&P'16 paper. 2016-06-02 15:17:29 -04:00
Philipp Winter
3bfa6bdf3e Add paper from Local Computer Networks 2015.
Thanks, David!
2016-05-24 18:14:49 -04:00
Philipp Winter
84f2fb3f4f Add two PETS'16 papers. 2016-05-20 11:22:38 -04:00
Philipp Winter
30a7619918 Fix volume number for PETS articles.
Apparently volume numbers are based on years.
2016-05-20 11:15:58 -04:00
Philipp Winter
b452d146ab Replace name as requested. 2016-04-05 08:12:16 -04:00
Philipp Winter
db3b99c3a7 Add ASIA CCS'16 paper. 2016-03-22 23:35:08 -04:00
Philipp Winter
fcc68a1b25 Add ICWSM'15 paper. 2016-03-14 09:34:17 -04:00
Philipp Winter
ed63375325 Add article from Media and Communication journal. 2016-03-14 09:25:08 -04:00
Philipp Winter
3b593e6dcd Extend Open Access explanation. 2016-03-13 22:48:04 -04:00
Philipp Winter
4df0e53740 Add Oakland'16 paper. 2016-03-13 22:35:09 -04:00
Philipp Winter
32a96b951d Remove HTTP links. 2015-12-18 11:09:41 -05:00