www.ir.bbn.com doesn't even resolve anymore; www.bbn.com just redirects
to https://www.raytheon.com/ourcompany/bbn/.
Signed-off-by: Philipp Winter <phw@nymity.ch>
He appeared four times; three with è and one with é. Even though the PDF
for this paper has é, according to http://wpage.unina.it/pescape/ è is
correct.
Signed-off-by: Philipp Winter <phw@nymity.ch>
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>
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>
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>
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>