aboutsummaryrefslogtreecommitdiffstats
path: root/entry.py
diff options
context:
space:
mode:
Diffstat (limited to 'entry.py')
-rw-r--r--entry.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/entry.py b/entry.py
index 4ad7b86..4d8933f 100644
--- a/entry.py
+++ b/entry.py
@@ -19,15 +19,6 @@ PROCEEDINGS_RE = re.compile(
r'((?:proceedings|workshop record) of(?: the)? )(.*)',
re.I)
-
-def author_url(author):
- """Given an author's name, return a URL for his/her homepage."""
- for pat, url in config.AUTHOR_RE_LIST:
- if pat.search(author):
- return url
- return None
-
-
# List of fields that appear when we display the entries as BibTeX.
DISPLAYED_FIELDS = ['title', 'author', 'journal', 'booktitle',
'school', 'institution', 'organization', 'volume',