aboutsummaryrefslogtreecommitdiff
path: root/lib/hadoop-0.20.0/contrib/hdfsproxy/conf/configuration.xsl
diff options
context:
space:
mode:
authorMatei Zaharia <matei@eecs.berkeley.edu>2011-02-01 15:11:08 -0800
committerMatei Zaharia <matei@eecs.berkeley.edu>2011-02-01 15:11:08 -0800
commite5c4cd8a5e188592f8786a265c0cd073c69ac886 (patch)
tree031c4f814372a818f7574cfac84f1fc4749bd9d3 /lib/hadoop-0.20.0/contrib/hdfsproxy/conf/configuration.xsl
parentdcfa2ce83bf884008b4e8c02e923da1e49027ba4 (diff)
downloadspark-e5c4cd8a5e188592f8786a265c0cd073c69ac886.tar.gz
spark-e5c4cd8a5e188592f8786a265c0cd073c69ac886.tar.bz2
spark-e5c4cd8a5e188592f8786a265c0cd073c69ac886.zip
Made examples and core subprojects
Diffstat (limited to 'lib/hadoop-0.20.0/contrib/hdfsproxy/conf/configuration.xsl')
-rw-r--r--lib/hadoop-0.20.0/contrib/hdfsproxy/conf/configuration.xsl24
1 files changed, 0 insertions, 24 deletions
diff --git a/lib/hadoop-0.20.0/contrib/hdfsproxy/conf/configuration.xsl b/lib/hadoop-0.20.0/contrib/hdfsproxy/conf/configuration.xsl
deleted file mode 100644
index 377cdbeb93..0000000000
--- a/lib/hadoop-0.20.0/contrib/hdfsproxy/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>