Avoid confusing terminology

merge-requests/30/head
Bob Mottram 2022-12-28 09:37:43 +00:00
parent 3b145a7ac4
commit e3abcd99fe
2 changed files with 55 additions and 55 deletions

View File

@ -221,7 +221,7 @@ from webapp_suspended import html_suspended
from webapp_tos import html_terms_of_service from webapp_tos import html_terms_of_service
from webapp_confirm import html_confirm_follow from webapp_confirm import html_confirm_follow
from webapp_confirm import html_confirm_unfollow from webapp_confirm import html_confirm_unfollow
from webapp_post import html_conversation_thread from webapp_post import html_conversation_view
from webapp_post import html_emoji_reaction_picker from webapp_post import html_emoji_reaction_picker
from webapp_post import html_post_replies from webapp_post import html_post_replies
from webapp_post import html_individual_post from webapp_post import html_individual_post
@ -11834,7 +11834,7 @@ class PubServer(BaseHTTPRequestHandler):
if self.server.bold_reading.get(nickname): if self.server.bold_reading.get(nickname):
bold_reading = True bold_reading = True
conv_str = \ conv_str = \
html_conversation_thread(post_id, self.server.translate, html_conversation_view(post_id, self.server.translate,
base_dir, base_dir,
http_prefix, http_prefix,
nickname, nickname,

View File

@ -2924,7 +2924,7 @@ def html_emoji_reaction_picker(recent_posts_cache: {}, max_recent_posts: int,
return header_str + reacted_to_post_str + emoji_picks_str + html_footer() return header_str + reacted_to_post_str + emoji_picks_str + html_footer()
def html_conversation_thread(post_id: str, def html_conversation_view(post_id: str,
translate: {}, base_dir: str, translate: {}, base_dir: str,
http_prefix: str, http_prefix: str,
nickname: str, domain: str, nickname: str, domain: str,