summaryrefslogtreecommitdiff
path: root/doc/invocations-http-server
diff options
context:
space:
mode:
authorSascha Roloff <sascha.roloff@huawei.com>2025-05-09 12:24:40 +0200
committerSascha Roloff <sascha.roloff@huawei.com>2025-05-09 16:21:41 +0200
commit86bbe5ef247dd4c9b4fc051863b477cff3ec799a (patch)
treeb4f972fa15518997f1264975212715921112a251 /doc/invocations-http-server
parent1c4b5c63ca9c4464ac3f1b07c7f1c07ad690f582 (diff)
downloadjustbuild-86bbe5ef247dd4c9b4fc051863b477cff3ec799a.tar.gz
Invocation server: format and spelling fixes
Diffstat (limited to 'doc/invocations-http-server')
-rw-r--r--doc/invocations-http-server/templates/invocation.html18
-rw-r--r--doc/invocations-http-server/templates/invocations.html2
2 files changed, 10 insertions, 10 deletions
diff --git a/doc/invocations-http-server/templates/invocation.html b/doc/invocations-http-server/templates/invocation.html
index 816f5344..ed1c4410 100644
--- a/doc/invocations-http-server/templates/invocation.html
+++ b/doc/invocations-http-server/templates/invocation.html
@@ -85,7 +85,7 @@ Inocations {{invocation | e}}
{% endif %}
{% if repo_config %}
<li> Repository configuration:
- <a href="/blob/{{ repo_config | e }}">{{ repo_config | e}}</a></li>
+ <a href="/blob/{{ repo_config | e }}"><tt>{{ repo_config | e}}</tt></a></li>
{% endif %}
{% if target %}
<li> Target: <tt>{{ target | e }}</tt></li>
@@ -94,11 +94,11 @@ Inocations {{invocation | e}}
<li> Target configuration: <tt>{{ config | e }}</tt></li>
{% endif %}
{% if remote_address %}
- <li> remote
+ <li> Remote:
<ul>
- <li> address: <tt>{{ remote_address | e }}</tt></li>
+ <li> Address: <tt>{{ remote_address | e }}</tt></li>
{% if remote_props %}
- <li> properties:
+ <li> Properties:
<ul>
{% for prop in remote_props %}
<li> <tt>{{ prop["key"] | e }}</tt> :
@@ -108,14 +108,14 @@ Inocations {{invocation | e}}
</ul>
</li>
{% else %}
- <li> properties: <i>(none)</i>
+ <li> Properties: <i>(none)</i>
{% endif %}
- <li> dispatch: <tt>{{ remote_dispatch | e }}</tt></li>
+ <li> Dispatch: <tt>{{ remote_dispatch | e }}</tt></li>
</ul>
</li>
{% endif %}
{% if exit_code != None %}
- <li> exit code: {{ exit_code | e }}</li>
+ <li> Exit code: <tt>{{ exit_code | e }}</tt></li>
{% endif %}
{% if artifacts %}
<li>
@@ -147,8 +147,8 @@ Inocations {{invocation | e}}
{% if exit_code == 0 or exit_code == 1 or exit_code == 2 %}
<h2>Actions</h2>
<ul>
- <li> processed: {{ action_count | e }}
- <li> cached: {{ action_count_cached | e }}
+ <li> Processed: <tt>{{ action_count | e }}</tt>
+ <li> Cached: <tt>{{ action_count_cached | e }}</tt>
</ul>
<h3>Failed actions</h3>
diff --git a/doc/invocations-http-server/templates/invocations.html b/doc/invocations-http-server/templates/invocations.html
index c12b19cf..7cc27f2d 100644
--- a/doc/invocations-http-server/templates/invocations.html
+++ b/doc/invocations-http-server/templates/invocations.html
@@ -14,7 +14,7 @@ Recent Invocations
{% for invocation in invocations %}
<li> <a href="/invocations/{{invocation.name |e}}"><tt>{{ invocation.name | e }}</tt></a>
{% if invocation.subcommand %}
- {{ invocation.subcommand | e }}
+ <tt>{{ invocation.subcommand | e }}</tt>
{% endif %}
{% if invocation.remote_address %}
(on <tt>{{ invocation.remote_address | e }}@{{ invocation.remote_props | e }}</tt>)