-
Notifications
You must be signed in to change notification settings - Fork 0
/
GraphQuery.xsl
35 lines (33 loc) · 1.2 KB
/
GraphQuery.xsl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<body>
<h2>Graph Query Inspection</h2>
<table border="1">
<tr>
<th>File</th>
<th>Line</th>
<th>Problem</th>
<th>Description</th>
</tr>
<xsl:for-each select="problems/problem">
<tr>
<td>
<xsl:value-of select="file"/>
</td>
<td>
<xsl:value-of select="line"/>
</td>
<td>
<xsl:value-of select="problem_class"/>
</td>
<td>
<xsl:value-of select="description"/>
</td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>