summaryrefslogtreecommitdiff
path: root/example/view.xsl
blob: af0e09080883a185cbc286ae0b34d107361e0345 (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
<?xml version="1.0" encoding="UTF-8"?>

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                xmlns:xhtml="http://www.w3.org/1999/xhtml"
                xmlns="http://www.w3.org/1999/xhtml"
                version="1.0">
  <xsl:output method="xml" indent="yes"/>
  <xsl:include href="common.xsl"/>

  <xsl:template match="table/row">
    <a href="list.xhtml?q=select%20bug_search(%27%27,%20%27%27,%2010,%200)">back to listing</a>
    <dl>
      <dt>ID</dt>
      <dd><xsl:copy-of select="id/text()" /></dd>
      <dt>Reported</dt>
      <dd><xsl:copy-of select="reported/text()" /></dd>
      <dt>Reporter</dt>
      <dd><xsl:copy-of select="reporter/text()" /></dd>
      <dt>Project</dt>
      <dd><xsl:copy-of select="project/text()" /></dd>
      <dt>Description</dt>
      <dd><pre><xsl:copy-of select="description/text()" /></pre></dd>
    </dl>
  </xsl:template>

</xsl:stylesheet>