source: nutchez-0.1/webapps/static/jobconf.xsl @ 66

Last change on this file since 66 was 66, checked in by waue, 15 years ago

NutchEz - an easy way to nutch

File size: 461 bytes
Line 
1<?xml version="1.0"?>
2<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
3<xsl:output method="html"/>
4<xsl:template match="configuration">
5<table border="1" align="center" >
6<tr>
7 <th>name</th>
8 <th>value</th>
9</tr>
10<xsl:for-each select="property">
11<tr>
12  <td width="35%"><b><xsl:value-of select="name"/></b></td>
13  <td width="65%"><xsl:value-of select="value"/></td>
14</tr>
15</xsl:for-each>
16</table>
17</xsl:template>
18</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.