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, 0 insertions, 18 deletions
diff --git a/lib/hadoop-0.20.0/webapps/static/jobconf.xsl b/lib/hadoop-0.20.0/webapps/static/jobconf.xsl
deleted file mode 100644
index f3c2e33cef..0000000000
--- a/lib/hadoop-0.20.0/webapps/static/jobconf.xsl
+++ /dev/null
@@ -1,18 +0,0 @@
-<?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>