diff options
author | Sascha Roloff <sascha.roloff@huawei.com> | 2025-05-14 19:27:25 +0200 |
---|---|---|
committer | Sascha Roloff <sascha.roloff@huawei.com> | 2025-05-15 14:32:54 +0200 |
commit | aa0d8efe37dd4a0a8105a28323b561b74a135bfe (patch) | |
tree | ad28e0f1822e59e4b6c7527880df64956209e03c /doc | |
parent | bdd379a5cdbe84fd176c545bf11a319324c5c193 (diff) | |
download | justbuild-aa0d8efe37dd4a0a8105a28323b561b74a135bfe.tar.gz |
Invocation server: add missing HTML-escape filters in templates
Diffstat (limited to 'doc')
-rw-r--r-- | doc/invocations-http-server/templates/invocation.html | 4 | ||||
-rw-r--r-- | doc/invocations-http-server/templates/invocations.html | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/doc/invocations-http-server/templates/invocation.html b/doc/invocations-http-server/templates/invocation.html index 12ff2736..8dd075e2 100644 --- a/doc/invocations-http-server/templates/invocation.html +++ b/doc/invocations-http-server/templates/invocation.html @@ -129,7 +129,7 @@ Inocations {{invocation | e}} <ul> {% for prop in remote_props %} <li> <tt>{{ prop["key"] | e }}</tt> : - <a href="/filterinvocations/remote/prop/{{ prop["key_hex"] | e }}/{{ prop["value_hex"] }}"><tt>{{ prop["value"] | e }}</tt></a> + <a href="/filterinvocations/remote/prop/{{ prop["key_hex"] | e }}/{{ prop["value_hex"] | e }}"><tt>{{ prop["value"] | e }}</tt></a> </li> {% endfor %} </ul> @@ -146,7 +146,7 @@ Inocations {{invocation | e}} <ul> {% for entry in context %} <li> <tt>{{ entry["key"] | e }}</tt> : - <a href="/filterinvocations/context/{{ entry["key_hex"] | e }}/{{ entry["value_hex"] }}"><tt>{{ entry["value"] | e }}</tt></a> + <a href="/filterinvocations/context/{{ entry["key_hex"] | e }}/{{ entry["value_hex"] | e }}"><tt>{{ entry["value"] | e }}</tt></a> </li> {% endfor %} </ul> diff --git a/doc/invocations-http-server/templates/invocations.html b/doc/invocations-http-server/templates/invocations.html index 62085417..dc518e4a 100644 --- a/doc/invocations-http-server/templates/invocations.html +++ b/doc/invocations-http-server/templates/invocations.html @@ -19,7 +19,7 @@ Filter by: {% if loop.index > 1 %} , {% endif %} - <a href="/filterinvocations/context/{{ entry["key_hex"] | e }}/{{ value["value_hex"] }}"><tt>{{ value["value"] | e }}</tt></a> + <a href="/filterinvocations/context/{{ entry["key_hex"] | e }}/{{ value["value_hex"] | e }}"><tt>{{ value["value"] | e }}</tt></a> {% endfor %}<br> {% endfor %} </details> @@ -33,7 +33,7 @@ Filter by: {% if loop.index > 1 %} , {% endif %} - <a href="/filterinvocations/remote/prop/{{ entry["key_hex"] | e }}/{{ value["value_hex"] }}"><tt>{{ value["value"] | e }}</tt></a> + <a href="/filterinvocations/remote/prop/{{ entry["key_hex"] | e }}/{{ value["value_hex"] | e }}"><tt>{{ value["value"] | e }}</tt></a> {% endfor %}<br> {% endfor %} </details> |