aboutsummaryrefslogtreecommitdiff
path: root/lib/hadoop-0.20.0/webapps/static/jobconf.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'lib/hadoop-0.20.0/webapps/static/jobconf.xsl')
-rw-r--r--lib/hadoop-0.20.0/webapps/static/jobconf.xsl18
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/hadoop-0.20.0/webapps/static/jobconf.xsl b/lib/hadoop-0.20.0/webapps/static/jobconf.xsl
new file mode 100644
index 0000000000..f3c2e33cef
--- /dev/null
+++ b/lib/hadoop-0.20.0/webapps/static/jobconf.xsl
@@ -0,0 +1,18 @@
+<?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">
+<table border="1" align="center" >
+<tr>
+ <th>name</th>
+ <th>value</th>
+</tr>
+<xsl:for-each select="property">
+<tr>
+ <td width="35%"><b><xsl:value-of select="name"/></b></td>
+ <td width="65%"><xsl:value-of select="value"/></td>
+</tr>
+</xsl:for-each>
+</table>
+</xsl:template>
+</xsl:stylesheet>