-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAllTasks.xsl
More file actions
70 lines (70 loc) · 1.25 KB
/
AllTasks.xsl
File metadata and controls
70 lines (70 loc) · 1.25 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?xml version="1.0" encoding="iso-8859-1" ?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/TaskList">
<html>
<head>
<title>
<xsl:value-of select="@name" />
</title>
</head>
<body>
<h1>
<xsl:text>All Tasks: </xsl:text>
<xsl:value-of select="@name" />
</h1>
<table border="0" cellspacing="0" cellpadding="2">
<tr>
<th>Name</th>
<th>Status</th>
<th>Type</th>
<th>Module</th>
<th>Function</th>
<th>Release</th>
<th>Priority</th>
<th>Assigned To</th>
<th>Description</th>
</tr>
<xsl:for-each select="Task">
<tr style="border: 1px solid #000000; background-color:#EEEEEE;">
<td>
<xsl:value-of select="@name" />
</td>
<td>
<xsl:value-of select="@status" />
</td>
<td>
<xsl:value-of select="@type" />
</td>
<td>
<xsl:value-of select="@module" />
</td>
<td>
<xsl:value-of select="@badFunction" />
</td>
<td>
<xsl:value-of select="@release" />
</td>
<td>
<xsl:value-of select="@priority" />
</td>
<td>
<xsl:value-of select="@assignedTo" />
</td>
<td>
<xsl:value-of select="description" />
</td>
</tr>
<tr style="border: 1px solid #000000">
<td colspan="5">
<xsl:value-of select="internalRemarks" />
</td>
<td colspan="4">
<xsl:value-of select="externalRemarks" />
</td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>