mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-26 22:20:21 +00:00
add trailing slashes to canonical paths
This commit is contained in:
parent
6edae6a17f
commit
1ce0eca217
1 changed files with 3 additions and 3 deletions
|
@ -417,7 +417,7 @@ class Link:
|
||||||
'favicon_path': 'favicon.ico',
|
'favicon_path': 'favicon.ico',
|
||||||
'google_favicon_path': 'https://www.google.com/s2/favicons?domain={}'.format(self.domain),
|
'google_favicon_path': 'https://www.google.com/s2/favicons?domain={}'.format(self.domain),
|
||||||
'wget_path': wget_output_path(self),
|
'wget_path': wget_output_path(self),
|
||||||
'warc_path': 'warc',
|
'warc_path': 'warc/',
|
||||||
'singlefile_path': 'singlefile.html',
|
'singlefile_path': 'singlefile.html',
|
||||||
'readability_path': 'readability/content.html',
|
'readability_path': 'readability/content.html',
|
||||||
'mercury_path': 'mercury/content.html',
|
'mercury_path': 'mercury/content.html',
|
||||||
|
@ -425,8 +425,8 @@ class Link:
|
||||||
'screenshot_path': 'screenshot.png',
|
'screenshot_path': 'screenshot.png',
|
||||||
'dom_path': 'output.html',
|
'dom_path': 'output.html',
|
||||||
'archive_org_path': 'https://web.archive.org/web/{}'.format(self.base_url),
|
'archive_org_path': 'https://web.archive.org/web/{}'.format(self.base_url),
|
||||||
'git_path': 'git',
|
'git_path': 'git/',
|
||||||
'media_path': 'media',
|
'media_path': 'media/',
|
||||||
}
|
}
|
||||||
if self.is_static:
|
if self.is_static:
|
||||||
# static binary files like PDF and images are handled slightly differently.
|
# static binary files like PDF and images are handled slightly differently.
|
||||||
|
|
Loading…
Reference in a new issue