mirror of https://gitlab.com/bashrc2/epicyon
Tidying
parent
a42c884256
commit
9ac555580d
|
@ -3245,7 +3245,11 @@ def daemon_http_get(self) -> None:
|
||||||
self.server.dogwhistles,
|
self.server.dogwhistles,
|
||||||
self.server.buy_sites,
|
self.server.buy_sites,
|
||||||
self.server.auto_cw_cache,
|
self.server.auto_cw_cache,
|
||||||
self.server.fitness)
|
self.server.fitness,
|
||||||
|
self.server.iconsCache,
|
||||||
|
self.server.account_timezone,
|
||||||
|
self.server.bold_reading,
|
||||||
|
self.server.min_images_for_accounts)
|
||||||
self.server.getreq_busy = False
|
self.server.getreq_busy = False
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
|
@ -80,7 +80,11 @@ def announce_button(self, calling_domain: str, path: str,
|
||||||
dogwhistles: {},
|
dogwhistles: {},
|
||||||
buy_sites: [],
|
buy_sites: [],
|
||||||
auto_cw_cache: {},
|
auto_cw_cache: {},
|
||||||
fitness: {}) -> None:
|
fitness: {},
|
||||||
|
icons_cache: {},
|
||||||
|
account_timezone: {},
|
||||||
|
bold_reading_nicknames: {},
|
||||||
|
min_images_for_accounts: int) -> None:
|
||||||
"""The announce/repeat button was pressed on a post
|
"""The announce/repeat button was pressed on a post
|
||||||
"""
|
"""
|
||||||
page_number = 1
|
page_number = 1
|
||||||
|
@ -191,8 +195,8 @@ def announce_button(self, calling_domain: str, path: str,
|
||||||
announce_json, 'outbox')
|
announce_json, 'outbox')
|
||||||
|
|
||||||
# clear the icon from the cache so that it gets updated
|
# clear the icon from the cache so that it gets updated
|
||||||
if self.server.iconsCache.get('repeat.png'):
|
if icons_cache.get('repeat.png'):
|
||||||
del self.server.iconsCache['repeat.png']
|
del icons_cache['repeat.png']
|
||||||
|
|
||||||
# send out the announce within a separate thread
|
# send out the announce within a separate thread
|
||||||
post_to_outbox(self, announce_json,
|
post_to_outbox(self, announce_json,
|
||||||
|
@ -222,18 +226,17 @@ def announce_button(self, calling_domain: str, path: str,
|
||||||
self.post_to_nickname, domain)
|
self.post_to_nickname, domain)
|
||||||
show_repeats = not is_dm(announce_json)
|
show_repeats = not is_dm(announce_json)
|
||||||
timezone = None
|
timezone = None
|
||||||
if self.server.account_timezone.get(self.post_to_nickname):
|
if account_timezone.get(self.post_to_nickname):
|
||||||
timezone = \
|
timezone = account_timezone.get(self.post_to_nickname)
|
||||||
self.server.account_timezone.get(self.post_to_nickname)
|
|
||||||
mitm = False
|
mitm = False
|
||||||
if os.path.isfile(announce_filename.replace('.json', '') +
|
if os.path.isfile(announce_filename.replace('.json', '') +
|
||||||
'.mitm'):
|
'.mitm'):
|
||||||
mitm = True
|
mitm = True
|
||||||
bold_reading = False
|
bold_reading = False
|
||||||
if self.server.bold_reading.get(self.post_to_nickname):
|
if bold_reading_nicknames.get(self.post_to_nickname):
|
||||||
bold_reading = True
|
bold_reading = True
|
||||||
minimize_all_images = False
|
minimize_all_images = False
|
||||||
if self.post_to_nickname in self.server.min_images_for_accounts:
|
if self.post_to_nickname in min_images_for_accounts:
|
||||||
minimize_all_images = True
|
minimize_all_images = True
|
||||||
individual_post_as_html(signing_priv_key_pem, False,
|
individual_post_as_html(signing_priv_key_pem, False,
|
||||||
recent_posts_cache,
|
recent_posts_cache,
|
||||||
|
|
Loading…
Reference in New Issue