mirror of https://gitlab.com/bashrc2/epicyon
Merge branch 'main' of gitlab.com:bashrc2/epicyon
commit
be58603078
|
|
@ -907,7 +907,7 @@ def html_timeline(css_cache: {}, default_timeline: str,
|
||||||
' <center>\n' + \
|
' <center>\n' + \
|
||||||
' <a href="' + users_path + '/' + box_name + \
|
' <a href="' + users_path + '/' + box_name + \
|
||||||
'?page=' + str(page_number - 1) + \
|
'?page=' + str(page_number - 1) + \
|
||||||
'" accesskey="' + access_keys['Page up'] + '" ' + \
|
'#timelineposts" accesskey="' + access_keys['Page up'] + '" ' + \
|
||||||
'class="imageAnchor" tabindex="9">' + \
|
'class="imageAnchor" tabindex="9">' + \
|
||||||
'<img loading="lazy" decoding="async" class="pageicon" src="/' + \
|
'<img loading="lazy" decoding="async" class="pageicon" src="/' + \
|
||||||
'icons/pageup.png" title="' + \
|
'icons/pageup.png" title="' + \
|
||||||
|
|
@ -1020,7 +1020,7 @@ def html_timeline(css_cache: {}, default_timeline: str,
|
||||||
' <center>\n' + \
|
' <center>\n' + \
|
||||||
' <a href="' + users_path + '/' + box_name + '?page=' + \
|
' <a href="' + users_path + '/' + box_name + '?page=' + \
|
||||||
str(page_number + 1) + \
|
str(page_number + 1) + \
|
||||||
'" accesskey="' + access_keys['Page down'] + '" ' + \
|
'#timelineposts" accesskey="' + access_keys['Page down'] + '" ' + \
|
||||||
'class="imageAnchor" tabindex="9">' + \
|
'class="imageAnchor" tabindex="9">' + \
|
||||||
'<img loading="lazy" decoding="async" class="pageicon" src="/' + \
|
'<img loading="lazy" decoding="async" class="pageicon" src="/' + \
|
||||||
'icons/pagedown.png" title="' + \
|
'icons/pagedown.png" title="' + \
|
||||||
|
|
@ -1150,7 +1150,7 @@ def _html_shares_timeline(translate: {}, page_number: int, items_per_page: int,
|
||||||
' <center>\n' + \
|
' <center>\n' + \
|
||||||
' <a href="' + actor + '/tl' + sharesFileType + '?page=' + \
|
' <a href="' + actor + '/tl' + sharesFileType + '?page=' + \
|
||||||
str(page_number - 1) + \
|
str(page_number - 1) + \
|
||||||
'" class="imageAnchor" tabindex="9">' + \
|
'#timelineposts" class="imageAnchor" tabindex="9">' + \
|
||||||
'<img loading="lazy" decoding="async" ' + \
|
'<img loading="lazy" decoding="async" ' + \
|
||||||
'class="pageicon" src="/' + \
|
'class="pageicon" src="/' + \
|
||||||
'icons/pageup.png" title="' + translate['Page up'] + \
|
'icons/pageup.png" title="' + translate['Page up'] + \
|
||||||
|
|
@ -1192,7 +1192,7 @@ def _html_shares_timeline(translate: {}, page_number: int, items_per_page: int,
|
||||||
' <center>\n' + \
|
' <center>\n' + \
|
||||||
' <a href="' + actor + '/tl' + sharesFileType + '?page=' + \
|
' <a href="' + actor + '/tl' + sharesFileType + '?page=' + \
|
||||||
str(page_number + 1) + \
|
str(page_number + 1) + \
|
||||||
'" class="imageAnchor" tabindex="9">' + \
|
'#timelineposts" class="imageAnchor" tabindex="9">' + \
|
||||||
'<img loading="lazy" decoding="async" ' + \
|
'<img loading="lazy" decoding="async" ' + \
|
||||||
'class="pageicon" src="/' + \
|
'class="pageicon" src="/' + \
|
||||||
'icons/pagedown.png" title="' + translate['Page down'] + \
|
'icons/pagedown.png" title="' + translate['Page down'] + \
|
||||||
|
|
|
||||||
|
|
@ -124,8 +124,8 @@ def webfinger_handle(session, handle: str, http_prefix: str,
|
||||||
if result:
|
if result:
|
||||||
store_webfinger_in_cache(wf_handle, result, cached_webfingers)
|
store_webfinger_in_cache(wf_handle, result, cached_webfingers)
|
||||||
else:
|
else:
|
||||||
print("WARN: Unable to webfinger " + url + ' ' +
|
print("WARN: Unable to webfinger " + str(url) + ' ' +
|
||||||
'from_domain: ' + from_domain + ' ' +
|
'from_domain: ' + str(from_domain) + ' ' +
|
||||||
'nickname: ' + str(nickname) + ' ' +
|
'nickname: ' + str(nickname) + ' ' +
|
||||||
'handle: ' + str(handle) + ' ' +
|
'handle: ' + str(handle) + ' ' +
|
||||||
'wf_handle: ' + str(wf_handle) + ' ' +
|
'wf_handle: ' + str(wf_handle) + ' ' +
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue