diff options
| author | Thibaut Horel <thibaut.horel@gmail.com> | 2016-02-04 21:52:38 -0500 |
|---|---|---|
| committer | Thibaut Horel <thibaut.horel@gmail.com> | 2016-02-04 21:52:38 -0500 |
| commit | c741d95b7e5e5d82187ecb76f201ec0e5a8ec344 (patch) | |
| tree | 721d9ca8aa5bb8725c6ced44d6b38dca80ec37eb /entry.py | |
| parent | e63154721bf377ec42f1d5de39b74c7d1e1ebb2d (diff) | |
| download | anonbib-c741d95b7e5e5d82187ecb76f201ec0e5a8ec344.tar.gz | |
Remove unused function (is now an instance of ParsedAuthor)
Diffstat (limited to 'entry.py')
| -rw-r--r-- | entry.py | 9 |
1 files changed, 0 insertions, 9 deletions
@@ -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', |
