eclair/analyze_delta_index_html.sh: Filter out spurious reports

When performing cumulative analysis over multiple disparate codebase
configurations, and then delta reporting against 2 such analyses, there're
some spurious reports produced, which don't directy related to the changes
in a patch being delta-analysed. Among these:

1. Informational reports.
2. MC3R1.R5.9: (advisory) Identifiers that define objects or functions with
internal linkage should be unique
3. MC3R1.R8.3: (required) All declarations of an object or function shall
use the same names and type qualifiers

These reports are "summary", and list multiple locations across the codebase
where an issue occurs. And somehow for delta reporting, some of these
locations are different, causes the reports to appear in the delta report.
These differences across locations could be explained by different configuration
options used to build different codebases (so, parts of code could be ifdef'ed,
and even whole files included/excluded). Of course the expectation would be
that these should be consisten for original codebase vs codebase with the
patch applied, but apparently ECLAIR delta algorithm is not completely perfect
to match these up.

These reports also apparently wouldn't appear if the underlying codebase didn't
have them, but those reports are relativeluy benign, and fixing them right away
is clearly out of scope. So, as a stopgap measure to get delta reporting into
a deployable state, let's just filter these (and on reporting, not analysis,
level).

Signed-off-by: Paul Sokolovsky <paul.sokolovsky@linaro.org>
Change-Id: I5e76d2145e24722d3c2ddfdec811a23e902d1e35
diff --git a/eclair/analyze_delta_index_html.sh b/eclair/analyze_delta_index_html.sh
index 0c4679f..dd5538b 100755
--- a/eclair/analyze_delta_index_html.sh
+++ b/eclair/analyze_delta_index_html.sh
@@ -18,8 +18,8 @@
 
 <li><a href="misra_delta.txt">Cumulative TXT report</a>
 <li><a href="diff_output/">Per MISRA rule TXT reports</a>
-<li><a href="new_issues_html/by_service.html#first_file/service&kind">New issues, groupped per file changed (HTML).</a>
-<li><a href="resolved_issues_html/by_service.html#first_file/service&kind">Resolved issues, groupped per file changed (HTML).</a>
+<li><a href="new_issues_html/by_service.html#first_file/service&kind{"select":true,"selection":{"hiddenAreaKinds":[],"hiddenSubareaKinds":[],"show":false,"selector":{"enabled":true,"negated":false,"kind":2,"children":[{"enabled":true,"negated":false,"kind":0,"domain":"kind","inputs":[{"enabled":true,"text":"information"}]},{"enabled":true,"negated":false,"kind":0,"domain":"service","inputs":[{"enabled":true,"text":"MC3R1.R5.9"}]},{"enabled":true,"negated":false,"kind":0,"domain":"service","inputs":[{"enabled":true,"text":"MC3R1.R8.3"}]}]}}}">New issues, groupped per file changed (HTML).</a>
+<li><a href="resolved_issues_html/by_service.html#first_file/service&kind{"select":true,"selection":{"hiddenAreaKinds":[],"hiddenSubareaKinds":[],"show":false,"selector":{"enabled":true,"negated":false,"kind":2,"children":[{"enabled":true,"negated":false,"kind":0,"domain":"kind","inputs":[{"enabled":true,"text":"information"}]},{"enabled":true,"negated":false,"kind":0,"domain":"service","inputs":[{"enabled":true,"text":"MC3R1.R5.9"}]},{"enabled":true,"negated":false,"kind":0,"domain":"service","inputs":[{"enabled":true,"text":"MC3R1.R8.3"}]}]}}}">Resolved issues, groupped per file changed (HTML).</a>
 </body>
 </html>
 EOF