-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(Result Details): Adding tabs to result details.
Added the ability to view result details as either source code or a list of rules. Including tables with the top most rules.
- Loading branch information
Portugal, Marcelo
authored and
Portugal, Marcelo
committed
Nov 20, 2016
1 parent
40cba43
commit f7ff04d
Showing
9 changed files
with
767 additions
and
140 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,11 @@ | ||
<tr style="display:none" class="f-<%= parentIndex %>"> | ||
<td colspan="4"> | ||
<table class="source-code"> | ||
<thead> | ||
<tr> | ||
<th>Line</th> | ||
<th>Source</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<%= sourceCode %> | ||
</tbody> | ||
</table> | ||
</td> | ||
</tr> | ||
<table class="source-code"> | ||
<thead> | ||
<tr> | ||
<th>Line</th> | ||
<th>Source</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<%= sourceCode %> | ||
</tbody> | ||
</table> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<tr class="issue"> | ||
<td><strong class="text-<%= severity %>"><%= severityName %><strong></td> | ||
<td> | ||
Column <%= column %>: "<%= message %>" | ||
Row <%= lineNumber %>, Column <%= column %>: "<%= message %>" | ||
<a href="<%= ruleLink %>" target="_blank"><%= ruleId %></a> | ||
</td> | ||
</tr> |
Oops, something went wrong.