Skip to content

Commit

Permalink
Rename results column in report oval details
Browse files Browse the repository at this point in the history
Signed-off-by: Edgar Aguilar <[email protected]>
  • Loading branch information
Xeicker committed Nov 28, 2023
1 parent 58c96ec commit 22e0b72
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions xsl/xccdf-report-oval-details.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ Authors:
<xsl:template mode='item-head' match='*'>
<xsl:param name="resultColumn" select="false"/>
<tr>
<xsl:if test='$resultColumn="true"'><th>Result</th></xsl:if>
<xsl:if test='$resultColumn="true"'><th>Result of item-state comparison</th></xsl:if>
<xsl:for-each select='*'>
<xsl:variable name='label' select='translate(local-name(), "_", " ")'/>
<xsl:variable name='first_letter' select='translate(substring($label,1,1), "abcdefghijklmnopqrstuvwxyz", "ABCDEFGHIJKLMNOPQRSTUVWXYZ")'/>
Expand Down Expand Up @@ -263,7 +263,7 @@ Authors:
<!-- UNIX file item visualisation -->

<xsl:template mode='item-head' match='ovalunixsc:file_item'>
<tr><th>Result</th><th>Path</th><th>Type</th><th>UID</th><th>GID</th><th>Size (B)</th><th>Permissions</th></tr>
<tr><th>Result of item-state comparison</th><th>Path</th><th>Type</th><th>UID</th><th>GID</th><th>Size (B)</th><th>Permissions</th></tr>
</xsl:template>

<xsl:template mode='item-body' match='ovalunixsc:file_item'>
Expand Down Expand Up @@ -326,7 +326,7 @@ Authors:
<!-- textfilecontent visualisation -->

<xsl:template mode='item-head' match='ovalindsc:textfilecontent_item'>
<tr><th>Result</th><th>Path</th><th>Content</th></tr>
<tr><th>Result of item-state comparison</th><th>Path</th><th>Content</th></tr>
</xsl:template>

<xsl:template mode='item-body' match='ovalindsc:textfilecontent_item'>
Expand Down

0 comments on commit 22e0b72

Please sign in to comment.