source: nutchez-0.1/tomcat/webapps/ROOT/WEB-INF/classes/nutch-conf.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: 511 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="nutch-conf">
5<html>
6<body>
7<table border="1">
8<tr>
9 <td>name</td>
10 <td>value</td>
11 <td>description</td>
12</tr>
13<xsl:for-each select="property">
14<tr>
15  <td><xsl:value-of select="name"/></td>
16  <td><xsl:value-of select="value"/></td>
17  <td><xsl:value-of select="description"/></td>
18</tr>
19</xsl:for-each>
20</table>
21</body>
22</html>
23</xsl:template>
24</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.