annotate 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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
db87c1b7eb6d initial
dwinter
parents:
diff changeset
1 <?xml version="1.0" encoding="UTF-8"?>
db87c1b7eb6d initial
dwinter
parents:
diff changeset
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/">
db87c1b7eb6d initial
dwinter
parents:
diff changeset
3 <xsl:output method="html"></xsl:output>
db87c1b7eb6d initial
dwinter
parents:
diff changeset
4 <xsl:template match="/">
db87c1b7eb6d initial
dwinter
parents:
diff changeset
5
db87c1b7eb6d initial
dwinter
parents:
diff changeset
6 <xsl:for-each select="//hitsOnPage">
db87c1b7eb6d initial
dwinter
parents:
diff changeset
7 <div class="foundPage">
db87c1b7eb6d initial
dwinter
parents:
diff changeset
8 <a><xsl:attribute name="href"><xsl:value-of select="./@xlink:href"/></xsl:attribute>
db87c1b7eb6d initial
dwinter
parents:
diff changeset
9 <xsl:value-of select="//pageFileName"/></a></div>
db87c1b7eb6d initial
dwinter
parents:
diff changeset
10 </xsl:for-each>
db87c1b7eb6d initial
dwinter
parents:
diff changeset
11 </xsl:template>
db87c1b7eb6d initial
dwinter
parents:
diff changeset
12 </xsl:stylesheet>