summaryrefslogtreecommitdiff
path: root/doc/invocations-http-server/templates/blob.html
diff options
context:
space:
mode:
authorKlaus Aehlig <klaus.aehlig@huawei.com>2025-04-22 12:26:20 +0200
committerKlaus Aehlig <klaus.aehlig@huawei.com>2025-04-23 17:33:42 +0200
commitbfdeb85104770527eb455712ab2ca65730d722fd (patch)
treec04e26cd358d4c2bd67708e83bb34ac115c78b0e /doc/invocations-http-server/templates/blob.html
parent1173ce9021c36629a6f4d7b86eef848295b074ab (diff)
downloadjustbuild-bfdeb85104770527eb455712ab2ca65730d722fd.tar.gz
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.
Diffstat (limited to 'doc/invocations-http-server/templates/blob.html')
-rw-r--r--doc/invocations-http-server/templates/blob.html10
1 files changed, 10 insertions, 0 deletions
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 %}
+<h1>Blob {{ name | e }}</h1>
+
+<pre>{{ data | e}}</pre>
+{% endblock %}