comparison src/de/mpiwg/dwinter/fulltextSearchServer/xsl/processRestPathOfDocumentToHTML.xsl @ 0:db87c1b7eb6d

initial
author dwinter
date Wed, 03 Nov 2010 12:18:46 +0100
parents
children 83e9a828e794
comparison
equal deleted inserted replaced
-1:000000000000 0:db87c1b7eb6d
1 <?xml version="1.0" encoding="UTF-8"?>
2 <xsl:stylesheet version="1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:dc="http://dublincore.org/documents/dcmi-namespace/">
3 <xsl:output method="html"></xsl:output>
4 <xsl:template match="/">
5
6 <xsl:for-each select="//hitsOnPage">
7 <div class="foundPage">
8 <a><xsl:attribute name="href"><xsl:value-of select="./@xlink:href"/></xsl:attribute>
9 <xsl:value-of select="//pageFileName"/></a></div>
10 </xsl:for-each>
11 </xsl:template>
12 </xsl:stylesheet>