summaryrefslogtreecommitdiff
blob: 2078d95d941b8ba1b0cd8ae2536faaec4b470dbd (plain)
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">

<xsl:template match="issue">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <title><xsl:value-of select="title"/></title>
  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  <link href="styles.css" rel="stylesheet" type="text/css" />
  <style type="text/css">
  <!--
  -->
  </style>
</head>
<body>

<h1><xsl:value-of select="title"/></h1>

<xsl:apply-templates />
</body>
</html>

</xsl:template>

<xsl:template match="synopsis">

<h2>Synopsis</h2>

<xsl:apply-templates />

</xsl:template>

<xsl:template match="environment">

<h2>Environment</h2>

<xsl:apply-templates />

</xsl:template>

<xsl:template match="analysis">

<h2>Analysis</h2>

<xsl:apply-templates />

</xsl:template>

<xsl:template match="solution">

<h2>Solution</h2>

<xsl:apply-templates />

</xsl:template>

<xsl:template match="p">
<p>
<xsl:apply-templates />
</p>
</xsl:template>

<xsl:template match="e">
<em><xsl:apply-templates/></em>
</xsl:template>

<xsl:template match="uri">
<a href="{@link}"><xsl:value-of select="."/></a>
</xsl:template>

<xsl:template match="pre">
<pre>
<xsl:apply-templates/>
</pre>
</xsl:template>

<xsl:template match="maintainers">
<p>
<b>Maintainers:</b> <xsl:apply-templates/>
</p>
</xsl:template>

<xsl:template match="keywords">
<p>
<b>Keywords:</b> <xsl:apply-templates/>
</p>
</xsl:template>

<xsl:template match="title"/>

</xsl:stylesheet>