source: proiecte/HadoopJUnit/hadoop-0.20.1/src/test/org/apache/hadoop/cli/testConf.xsl @ 120

Last change on this file since 120 was 120, checked in by (none), 14 years ago

Added the mail files for the Hadoop JUNit Project

  • Property svn:executable set to *
File size: 905 bytes
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2
3<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
4 
5  <xsl:template match="/">
6    <html>
7      <body>
8        <h2>Hadoop DFS command-line tests</h2>
9        <table border="1">
10          <tr bgcolor="#9acd32">
11            <th align="left">ID</th>
12            <th align="left">Command</th>
13            <th align="left">Description</th>
14          </tr>
15          <xsl:for-each select="configuration/tests/test">
16            <!-- <xsl:sort select="description"/> -->
17            <tr>
18              <td><xsl:value-of select="position()"/></td>
19              <td><xsl:value-of select="substring-before(description,':')"/></td>
20              <td><xsl:value-of select="substring-after(description,':')"/></td>
21            </tr>
22          </xsl:for-each>
23        </table>
24      </body>
25    </html>
26  </xsl:template>
27 
28</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.