Skip to content
Snippets Groups Projects
Commit d28996c4 authored by Eva Schiffer's avatar Eva Schiffer
Browse files

fixing documentation and links inside summary report

parent f48836f5
No related branches found
No related tags found
No related merge requests found
......@@ -1720,8 +1720,9 @@ def main():
Note: If you provided one or two directory paths and those paths included more than one set of files
that Glance is able to generate reports for, those reports will be placed in the output path in
separate temporarily directories. These directories are only labeled numerically and with the name of
the A file. In future we hope to have a summary report available for the run.
separate temporarily directories. These directories are labeled numerically and with the name of
the A file. A "summary.html" summary report for the run will be created in the top level output
directory when comparing files (when simply inspecting files no summary report will be created).
If you would prefer to generate reports without images, use the --reportonly option. This option will
generate the html report but omit the images. This may be significantly faster, depending on your system,
......
......@@ -34,7 +34,7 @@ Copyright (c) 2021 University of Wisconsin SSEC. All rights reserved.
## info on which comparison this was
## a header with where our report is
<h3>${report_dir}</h3>
<h3><a href="./${report_dir}/index.html">${report_dir}</a></h3>
<p>
${len(passed_vars)} / ${len(passed_vars) + len(failed_vars)} variables passed comparison
......@@ -59,7 +59,7 @@ Copyright (c) 2021 University of Wisconsin SSEC. All rights reserved.
% for varKey in sorted(failed_vars) :
<tr>
<td>
<a href="./${varKey}/index.html">${varKey}</a>
<a href="./${report_dir}/${varKey}/index.html">${varKey}</a>
</td>
<td>
${var_stats[varKey]["Numerical Comparison Statistics"]["diff_outside_epsilon_count"]}
......@@ -103,7 +103,7 @@ Copyright (c) 2021 University of Wisconsin SSEC. All rights reserved.
<%
isFirst = False
%>
<a href="./${varKey}/index.html">${varKey}</a>
<a href="./${report_dir}/${varKey}/index.html">${varKey}</a>
% endfor
</p>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment