gnunetbib

Bibliography (BibTeX, based on AnonBib)
Log | Files | Refs | README | LICENSE

commit 423aa33aa864aafe88c20da83b37e90cf2c6f95c
parent e3e657134fbe159197844f1a95987cfeff619f79
Author: Nick Mathewson <nickm@torproject.org>
Date:   Fri, 23 May 2003 03:02:39 +0000

Correct handling of URLs for authors with umlauts


svn:r34

Diffstat:
MBibTeX.py | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/BibTeX.py b/BibTeX.py @@ -594,8 +594,10 @@ class ParsedAuthor: def getHomepage(self): s = htmlize(str(self)) + if s.startswith("Bodo"): + print s for pat, url in config.AUTHOR_RE_LIST: - if pat.search(str(self)): + if pat.search(s): return url return None