mirror of
https://git.sr.ht/~tsileo/microblog.pub
synced 2024-11-15 11:14:28 +00:00
Add stream debug option
This commit is contained in:
parent
0cc5122a87
commit
c55cfa1f8a
1 changed files with 13 additions and 5 deletions
18
app.py
18
app.py
|
@ -229,6 +229,13 @@ def _get_file_url(url, size, kind):
|
||||||
return _get_file_url(url, size, kind)
|
return _get_file_url(url, size, kind)
|
||||||
|
|
||||||
|
|
||||||
|
@app.template_filter()
|
||||||
|
def remove_mongo_id(dat):
|
||||||
|
if "_id" in dat:
|
||||||
|
del dat["_id"]
|
||||||
|
return dat
|
||||||
|
|
||||||
|
|
||||||
@app.template_filter()
|
@app.template_filter()
|
||||||
def get_actor_icon_url(url, size):
|
def get_actor_icon_url(url, size):
|
||||||
return _get_file_url(url, size, Kind.ACTOR_ICON)
|
return _get_file_url(url, size, Kind.ACTOR_ICON)
|
||||||
|
@ -244,7 +251,7 @@ def get_og_image_url(url, size=100):
|
||||||
try:
|
try:
|
||||||
return _get_file_url(url, size, Kind.OG_IMAGE)
|
return _get_file_url(url, size, Kind.OG_IMAGE)
|
||||||
except Exception:
|
except Exception:
|
||||||
return ''
|
return ""
|
||||||
|
|
||||||
|
|
||||||
@app.template_filter()
|
@app.template_filter()
|
||||||
|
@ -1526,11 +1533,12 @@ def admin_stream():
|
||||||
q = {"meta.stream": True, "meta.deleted": False}
|
q = {"meta.stream": True, "meta.deleted": False}
|
||||||
inbox_data, older_than, newer_than = paginated_query(DB.activities, q)
|
inbox_data, older_than, newer_than = paginated_query(DB.activities, q)
|
||||||
|
|
||||||
|
tpl = "stream.html"
|
||||||
|
if request.args.get("debug"):
|
||||||
|
tpl = "stream_debug.html"
|
||||||
|
|
||||||
return render_template(
|
return render_template(
|
||||||
"stream.html",
|
tpl, inbox_data=inbox_data, older_than=older_than, newer_than=newer_than
|
||||||
inbox_data=inbox_data,
|
|
||||||
older_than=older_than,
|
|
||||||
newer_than=newer_than,
|
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue