aboutsummaryrefslogtreecommitdiff
path: root/core/lib/hadoop-0.20.0/webapps/static/jobconf.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 /core/lib/hadoop-0.20.0/webapps/static/jobconf.xsl
parentdcfa2ce83bf884008b4e8c02e923da1e49027ba4 (diff)
downloadspark-e5c4cd8a5e188592f8786a265c0cd073c69ac886.tar.gz
spark-e5c4cd8a5e188592f8786a265c0cd073c69ac886.tar.bz2
spark-e5c4cd8a5e188592f8786a265c0cd073c69ac886.zip
Made examples and core subprojects
Diffstat (limited to 'core/lib/hadoop-0.20.0/webapps/static/jobconf.xsl')
-rw-r--r--core/lib/hadoop-0.20.0/webapps/static/jobconf.xsl18
1 files changed, 18 insertions, 0 deletions
diff --git a/core/lib/hadoop-0.20.0/webapps/static/jobconf.xsl b/core/lib/hadoop-0.20.0/webapps/static/jobconf.xsl
new file mode 100644
index 0000000000..f3c2e33cef
--- /dev/null
+++ b/core/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>