mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Book details panel: Fix url:file:// identifiers not becoming links
This commit is contained in:
parent
c1a272099c
commit
49962d34da
@ -551,10 +551,10 @@ def urls_from_identifiers(identifiers): # {{{
|
||||
ans.append((issn, 'issn', issn,
|
||||
'http://www.worldcat.org/issn/'+issn))
|
||||
for k, url in identifiers.iteritems():
|
||||
if url and re.match(r'ur[il]\d*$', k) is not None and url.startswith('http'):
|
||||
if url and re.match(r'ur[il]\d*$', k) is not None and url.partition(':')[0].lower() in {'http', 'file', 'https'}:
|
||||
url = url[:8].replace('|', ':') + url[8:].replace('|', ',')
|
||||
parts = urlparse(url)
|
||||
name = parts.netloc
|
||||
name = parts.netloc or parts.path
|
||||
ans.append((name, k, url, url))
|
||||
return ans
|
||||
# }}}
|
||||
|
Loading…
x
Reference in New Issue
Block a user