Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Michael Black
OpenXG-RAN
Commits
2e215b09
Commit
2e215b09
authored
Feb 02, 2023
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unnecessary file
parent
ea1be527
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
65 deletions
+0
-65
ci-scripts/template.xsl
ci-scripts/template.xsl
+0
-65
No files found.
ci-scripts/template.xsl
deleted
100644 → 0
View file @
ea1be527
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet
version=
"2.0"
xmlns:xsl=
"http://www.w3.org/1999/XSL/Transform"
>
<xsl:output
method=
"html"
version=
"4"
encoding=
"UTF-8"
indent=
"no"
omit-xml-declaration=
"yes"
/>
<!-- main body -->
<xsl:template
match=
"/"
>
<html>
<body>
<h3>
TEMPLATE Results Summary
</h3>
<table
border=
"1"
>
<tr
bgcolor=
"lightcyan"
>
<!--Header only so select first row to get headers-->
<th>
Hostname
</th>
<th>
Nb Tests
</th>
<th>
Failures
</th>
<th>
Timestamp
</th>
</tr>
<!--Get all the other rows-->
<xsl:for-each
select=
"testsuites/testsuite"
>
<tr>
<td>
<xsl:value-of
select=
"@hostname"
/>
</td>
<td>
<xsl:value-of
select=
"@tests"
/>
</td>
<td>
<xsl:value-of
select=
"@failures"
/>
</td>
<td>
<xsl:value-of
select=
"@timestamp"
/>
</td>
</tr>
</xsl:for-each>
</table>
<h4>
Details
</h4>
<table
border=
"1"
>
<tr
bgcolor=
"lightcyan"
>
<!--Header only so select first row to get headers-->
<th>
Test Name
</th>
<th>
Result
</th>
<th>
Time
</th>
<th>
Description
</th>
</tr>
<!--Get all the other rows-->
<xsl:for-each
select=
"testsuites/testsuite/testcase"
>
<tr>
<td>
<xsl:value-of
select=
"@name"
/>
</td>
<td>
<xsl:value-of
select=
"@RESULT"
/>
</td>
<td>
<xsl:value-of
select=
"@time"
/>
</td>
<td>
<xsl:value-of
select=
"@description"
/>
</td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment