From bfdeb85104770527eb455712ab2ca65730d722fd Mon Sep 17 00:00:00 2001 From: Klaus Aehlig Date: Tue, 22 Apr 2025 12:26:20 +0200 Subject: Add simple http server allowing to browse an invocation-log directory Being able to browse through past invocations of the build tool can actually be useful and doing so in the browser is a way many users prefer. Therefore, add a small WSGI application (written in python, using werkzeug and jinja) serving a directory of invocation logs via http. --- doc/invocations-http-server/templates/blob.html | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 doc/invocations-http-server/templates/blob.html (limited to 'doc/invocations-http-server/templates/blob.html') diff --git a/doc/invocations-http-server/templates/blob.html b/doc/invocations-http-server/templates/blob.html new file mode 100644 index 00000000..2a64d064 --- /dev/null +++ b/doc/invocations-http-server/templates/blob.html @@ -0,0 +1,10 @@ +{% extends "base.html" %} +{% block heading %} +Blob {{ name | e }} +{% endblock %} + +{% block content %} +

Blob {{ name | e }}

+ +
{{ data | e}}
+{% endblock %} -- cgit v1.2.3