summaryrefslogtreecommitdiff
path: root/doc/invocations-http-server/templates
diff options
context:
space:
mode:
Diffstat (limited to 'doc/invocations-http-server/templates')
-rw-r--r--doc/invocations-http-server/templates/invocation.html11
-rw-r--r--doc/invocations-http-server/templates/invocations.html6
2 files changed, 17 insertions, 0 deletions
diff --git a/doc/invocations-http-server/templates/invocation.html b/doc/invocations-http-server/templates/invocation.html
index b09ca0ac..bdcbb623 100644
--- a/doc/invocations-http-server/templates/invocation.html
+++ b/doc/invocations-http-server/templates/invocation.html
@@ -115,6 +115,15 @@ Inocations {{invocation | e}}
</ul>
{% if have_profile %}
+{% if analysis_errors %}
+<h2>Analysis errors</h2>
+<ul>
+ {% for error in analysis_errors %}
+ <li> <pre>{{ error | e}}</pre></li>
+ {% endfor %}
+</ul>
+{% else %}
+{% if exit_code == 1 or exit_code == 2 %}
<h2>Failed actions</h2>
{% if failed_actions %}
<ul>
@@ -141,6 +150,8 @@ In order of decreasing run time.
{% else %}
<i>(none)</i>
{% endif %}
+{% endif %}
+{% endif %}
{% else %}
<b>No profiling data available; invocation data is not (yet) complete.</b>
{% endif %}
diff --git a/doc/invocations-http-server/templates/invocations.html b/doc/invocations-http-server/templates/invocations.html
index bab67cd3..a3c6dfe2 100644
--- a/doc/invocations-http-server/templates/invocations.html
+++ b/doc/invocations-http-server/templates/invocations.html
@@ -21,6 +21,12 @@ Recent Invocations
build failed
{% elif invocation.exit_code == 2 %}
failed
+ {% elif invocation.exit_code == 8 %}
+ analysis failure
+ {% elif invocation.exit_code == 16 %}
+ build-environment failure
+ {% elif invocation.exit_code == 32 %}
+ syntax/invocation error
{% else %}
exit code {{ invocation.exit_code | e }}
{% endif %}