Remove 'commit' in the footer
This commit is contained in:
parent
3afb09d5f6
commit
f528cdb46c
4 changed files with 0 additions and 33 deletions
21
main.py
21
main.py
|
@ -7,13 +7,6 @@ import html2text
|
||||||
h2t = html2text.HTML2Text()
|
h2t = html2text.HTML2Text()
|
||||||
h2t.ignore_links = True
|
h2t.ignore_links = True
|
||||||
|
|
||||||
commit = "not found"
|
|
||||||
with open(".git/refs/heads/main") as file:
|
|
||||||
for line in file:
|
|
||||||
commit = line
|
|
||||||
# we only expect one line
|
|
||||||
break
|
|
||||||
|
|
||||||
# Wrapper, only containing information that's important for us, and in some cases provides simplified ways to get information
|
# Wrapper, only containing information that's important for us, and in some cases provides simplified ways to get information
|
||||||
class VideoWrapper:
|
class VideoWrapper:
|
||||||
def __init__(self, a, quality):
|
def __init__(self, a, quality):
|
||||||
|
@ -112,7 +105,6 @@ app = Quart(__name__)
|
||||||
async def main():
|
async def main():
|
||||||
return await render_template(
|
return await render_template(
|
||||||
"index.html",
|
"index.html",
|
||||||
commit=commit,
|
|
||||||
)
|
)
|
||||||
|
|
||||||
@app.route("/search", methods = ["POST"])
|
@app.route("/search", methods = ["POST"])
|
||||||
|
@ -126,7 +118,6 @@ async def simpleer_search(query, page):
|
||||||
results = peertube.sepia_search(query, (page - 1) * 10)
|
results = peertube.sepia_search(query, (page - 1) * 10)
|
||||||
return await render_template(
|
return await render_template(
|
||||||
"simpleer_search_results.html",
|
"simpleer_search_results.html",
|
||||||
commit=commit,
|
|
||||||
|
|
||||||
|
|
||||||
results = results,
|
results = results,
|
||||||
|
@ -151,7 +142,6 @@ async def instance_videos_local(domain, page):
|
||||||
"instance/local.html",
|
"instance/local.html",
|
||||||
domain=domain,
|
domain=domain,
|
||||||
instance_name=get_instance_name(domain),
|
instance_name=get_instance_name(domain),
|
||||||
commit=commit,
|
|
||||||
|
|
||||||
videos = vids,
|
videos = vids,
|
||||||
|
|
||||||
|
@ -169,7 +159,6 @@ async def instance_videos_trending(domain, page):
|
||||||
"instance/trending.html",
|
"instance/trending.html",
|
||||||
domain=domain,
|
domain=domain,
|
||||||
instance_name=get_instance_name(domain),
|
instance_name=get_instance_name(domain),
|
||||||
commit=commit,
|
|
||||||
|
|
||||||
videos = vids,
|
videos = vids,
|
||||||
|
|
||||||
|
@ -188,7 +177,6 @@ async def instance_videos_most_liked(domain, page):
|
||||||
"instance/most-liked.html",
|
"instance/most-liked.html",
|
||||||
domain=domain,
|
domain=domain,
|
||||||
instance_name=get_instance_name(domain),
|
instance_name=get_instance_name(domain),
|
||||||
commit=commit,
|
|
||||||
|
|
||||||
videos = vids,
|
videos = vids,
|
||||||
|
|
||||||
|
@ -207,7 +195,6 @@ async def instance_videos_recently_added(domain, page):
|
||||||
"instance/recently-added.html",
|
"instance/recently-added.html",
|
||||||
domain=domain,
|
domain=domain,
|
||||||
instance_name=get_instance_name(domain),
|
instance_name=get_instance_name(domain),
|
||||||
commit=commit,
|
|
||||||
|
|
||||||
videos = vids,
|
videos = vids,
|
||||||
|
|
||||||
|
@ -234,7 +221,6 @@ async def search(domain, term, page):
|
||||||
"search_results.html",
|
"search_results.html",
|
||||||
domain=domain,
|
domain=domain,
|
||||||
instance_name=get_instance_name(domain),
|
instance_name=get_instance_name(domain),
|
||||||
commit=commit,
|
|
||||||
|
|
||||||
results=results,
|
results=results,
|
||||||
search_term=term,
|
search_term=term,
|
||||||
|
@ -272,7 +258,6 @@ async def video(domain, id):
|
||||||
return await render_template(
|
return await render_template(
|
||||||
"video.html",
|
"video.html",
|
||||||
domain=domain,
|
domain=domain,
|
||||||
commit=commit,
|
|
||||||
instance_name=get_instance_name(domain),
|
instance_name=get_instance_name(domain),
|
||||||
|
|
||||||
video=vid,
|
video=vid,
|
||||||
|
@ -300,7 +285,6 @@ async def account__video_channels(domain, name, page):
|
||||||
return await render_template(
|
return await render_template(
|
||||||
"accounts/video_channels.html",
|
"accounts/video_channels.html",
|
||||||
domain=domain,
|
domain=domain,
|
||||||
commit=commit,
|
|
||||||
instance_name=get_instance_name(domain),
|
instance_name=get_instance_name(domain),
|
||||||
|
|
||||||
name = name,
|
name = name,
|
||||||
|
@ -320,7 +304,6 @@ async def account__videos(domain, name, page):
|
||||||
return await render_template(
|
return await render_template(
|
||||||
"accounts/videos.html",
|
"accounts/videos.html",
|
||||||
domain=domain,
|
domain=domain,
|
||||||
commit=commit,
|
|
||||||
instance_name=get_instance_name(domain),
|
instance_name=get_instance_name(domain),
|
||||||
|
|
||||||
name = name,
|
name = name,
|
||||||
|
@ -338,7 +321,6 @@ async def account__about(domain, name):
|
||||||
return await render_template(
|
return await render_template(
|
||||||
"accounts/about.html",
|
"accounts/about.html",
|
||||||
domain=domain,
|
domain=domain,
|
||||||
commit=commit,
|
|
||||||
instance_name=get_instance_name(domain),
|
instance_name=get_instance_name(domain),
|
||||||
|
|
||||||
name = name,
|
name = name,
|
||||||
|
@ -359,7 +341,6 @@ async def video_channels__videos(domain, name, page):
|
||||||
return await render_template(
|
return await render_template(
|
||||||
"video_channels/videos.html",
|
"video_channels/videos.html",
|
||||||
domain=domain,
|
domain=domain,
|
||||||
commit=commit,
|
|
||||||
instance_name=get_instance_name(domain),
|
instance_name=get_instance_name(domain),
|
||||||
|
|
||||||
name = name,
|
name = name,
|
||||||
|
@ -377,7 +358,6 @@ async def video_channels__video_playlists(domain, name, page):
|
||||||
return await render_template(
|
return await render_template(
|
||||||
"video_channels/video_playlists.html",
|
"video_channels/video_playlists.html",
|
||||||
domain=domain,
|
domain=domain,
|
||||||
commit=commit,
|
|
||||||
instance_name=get_instance_name(domain),
|
instance_name=get_instance_name(domain),
|
||||||
|
|
||||||
name = name,
|
name = name,
|
||||||
|
@ -394,7 +374,6 @@ async def video_channels__about(domain, name):
|
||||||
return await render_template(
|
return await render_template(
|
||||||
"video_channels/about.html",
|
"video_channels/about.html",
|
||||||
domain=domain,
|
domain=domain,
|
||||||
commit=commit,
|
|
||||||
instance_name=get_instance_name(domain),
|
instance_name=get_instance_name(domain),
|
||||||
|
|
||||||
name = name,
|
name = name,
|
||||||
|
|
|
@ -61,8 +61,5 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<footer>
|
|
||||||
<a href="https://git.sr.ht/~metalune/simpleweb_peertube/tree/{{ commit }}">Commit: {{ commit }}</a>
|
|
||||||
</footer>
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -14,11 +14,6 @@
|
||||||
<input size="45" type="text" name="query" id="query" placeholder="SepiaSearch"/>
|
<input size="45" type="text" name="query" id="query" placeholder="SepiaSearch"/>
|
||||||
<button type="submit">Search</button>
|
<button type="submit">Search</button>
|
||||||
</form>
|
</form>
|
||||||
<br>
|
|
||||||
<br>
|
|
||||||
<footer>
|
|
||||||
<a href="https://codeberg.org/simple-web/peertube/src/commit/{{ commit }}">Commit: {{ commit }}</a>
|
|
||||||
</footer>
|
|
||||||
</center>
|
</center>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -59,9 +59,5 @@
|
||||||
<a href="/search/{{ query }}/{{ page + 1}}">Next</a>
|
<a href="/search/{{ query }}/{{ page + 1}}">Next</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
<footer>
|
|
||||||
<a href="https://codeberg.org/simple-web/peertube/src/commit/{{ commit }}">Commit: {{ commit }}</a>
|
|
||||||
</footer>
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in a new issue