Project

General

Profile

1
<?xml version="1.0"?>
2
<!--
3
  * resultset.xsl
4
  *
5
  *      Authors: Matt Jones
6
  *    Copyright: 2000 Regents of the University of California and the 
7
  *               National Center for Ecological Analysis and Synthesis
8
  *  For Details: http://www.nceas.ucsb.edu/
9
  *      Created: 2000 April 5
10
  *    File Info: '$Id: resultset.xsl 98 2000-05-13 01:29:51Z jones $'
11
  *
12
  * This is an XSLT (http://www.w3.org/TR/xslt) stylesheet designed to
13
  * convert an XML file showing the resultset of a query
14
  * into an HTML format suitable for rendering with modern web browsers.
15
-->
16
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
17

    
18
  <xsl:output method="html"/>
19

    
20
  <xsl:template match="/">
21
    <html>
22
      <head>
23
	<link rel="stylesheet" type="text/css" href="/xmltodb/rowcol.css" />
24
      </head>
25
      <body class="emlbody">
26
	<center>
27
          <h1>Query Results</h1>
28
          <h3>for querystring <xsl:value-of select="resultset/query"/>
29
          </h3>
30
        </center>
31
        
32
        <form action="/servlets/MetaCatServlet" method="POST">
33
        <input type="hidden" name="action" value="getdocument"/>
34

    
35
        <xsl:text>Output Format: </xsl:text>
36
        <select name="qformat">
37
          <option value="html">HTML</option>
38
          <option value="xml">XML</option>
39
        </select>
40

    
41
        <table width="100%">
42
        <tr class="rowodd">
43
        <th>&nbsp;</th>
44
        <th><xsl:text>Document</xsl:text></th>
45
        <th><xsl:text>Document Type</xsl:text></th>
46
        <th><xsl:text>Title</xsl:text></th>
47
        </tr>
48

    
49
        <xsl:for-each select="resultset/document">
50
          <tr valign="top">
51
            <xsl:attribute name="class">
52
              <xsl:choose>
53
                <xsl:when test="position() mod 2 = 1">rowwhite</xsl:when>
54
                <xsl:when test="position() mod 2 = 0">rowlight</xsl:when>
55
              </xsl:choose>
56
            </xsl:attribute>
57

    
58
          <td>
59
              <input type="radio" name="docid">
60
                <xsl:attribute name="value">
61
                  <xsl:value-of select="./docid"/>
62
                </xsl:attribute>
63
              </input>
64
              <input type="submit" value="Display"/>
65
       <!--
66
              <a>
67
              <xsl:attribute name="href">
68
              /servlets/MetaCatServlet?action=getdocument&amp;docid=<xsl:value-of select="./docid"/>
69
              </xsl:attribute>
70
              <xsl:text>Document </xsl:text><xsl:value-of select="./docid"/>
71
              </a>
72
        -->
73
          </td>
74
          <td>
75
              <xsl:value-of select="./docname"/> 
76
              <xsl:text> </xsl:text>
77
              <xsl:value-of select="./docid"/>
78
          </td>
79
          <td><xsl:value-of select="./doctype"/></td>
80
          <td><xsl:value-of select="./doctitle"/></td>
81
          </tr>
82
        </xsl:for-each>
83
        </table>
84
        </form>
85

    
86
      </body>
87
    </html>
88
  </xsl:template>
89

    
90
</xsl:stylesheet>
(4-4/5)