aboutsummaryrefslogtreecommitdiff
path: root/core/lib/hadoop-0.20.0/conf/configuration.xsl
diff options
context:
space:
mode:
authorMatei Zaharia <matei@eecs.berkeley.edu>2011-02-10 16:17:44 -0800
committerMatei Zaharia <matei@eecs.berkeley.edu>2011-03-01 10:27:48 -0800
commit447debb771ef7a42d9ac398dd1beeb5ca7f5f792 (patch)
tree3508482dab31f2de0b57e2472dc37cff23eeb234 /core/lib/hadoop-0.20.0/conf/configuration.xsl
parentdc24aecd8fc8b5d9b19c10e8301dbe1107412c8a (diff)
downloadspark-447debb771ef7a42d9ac398dd1beeb5ca7f5f792.tar.gz
spark-447debb771ef7a42d9ac398dd1beeb5ca7f5f792.tar.bz2
spark-447debb771ef7a42d9ac398dd1beeb5ca7f5f792.zip
Updated Hadoop to 0.20.2 to include some bug fixes
Diffstat (limited to 'core/lib/hadoop-0.20.0/conf/configuration.xsl')
-rw-r--r--core/lib/hadoop-0.20.0/conf/configuration.xsl24
1 files changed, 0 insertions, 24 deletions
diff --git a/core/lib/hadoop-0.20.0/conf/configuration.xsl b/core/lib/hadoop-0.20.0/conf/configuration.xsl
deleted file mode 100644
index 377cdbeb93..0000000000
--- a/core/lib/hadoop-0.20.0/conf/configuration.xsl
+++ /dev/null
@@ -1,24 +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">
-<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>