c94ff0f240
git-svn-id: https://svn.apache.org/repos/asf/hadoop/core/branches/HADOOP-4687/core@776175 13f79535-47bb-0310-9956-ffa450edef68
25 lines
535 B
XML
25 lines
535 B
XML
<?xml version="1.0"?>
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
|
<xsl:output method="html"/>
|
|
<xsl:template match="configuration">
|
|
<html>
|
|
<body>
|
|
<table border="1">
|
|
<tr>
|
|
<td>name</td>
|
|
<td>value</td>
|
|
<td>description</td>
|
|
</tr>
|
|
<xsl:for-each select="property">
|
|
<tr>
|
|
<td><a name="{name}"><xsl:value-of select="name"/></a></td>
|
|
<td><xsl:value-of select="value"/></td>
|
|
<td><xsl:value-of select="description"/></td>
|
|
</tr>
|
|
</xsl:for-each>
|
|
</table>
|
|
</body>
|
|
</html>
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|