changed to respect correct index instructions in new DOM filter
[idzebra-moved-to-github.git] / test / xslt / dom-index-element.xsl
1 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
2   xmlns:m="http://www.loc.gov/MARC21/slim"
3   xmlns:z="http://indexdata.com/zebra-2.0"
4   exclude-result-prefixes="m z"
5   version="1.0">
6   <!-- $Id: dom-index-element.xsl,v 1.2 2007-02-15 15:41:16 marc Exp $ -->
7   <xsl:output indent="yes" method="xml" version="1.0" encoding="UTF-8"/>
8   
9
10   <xsl:template match="text()"/>
11
12
13   <xsl:template match="/m:record">
14     <z:record z:id="{normalize-space(m:controlfield[@tag='001'])}"
15         z:rank="{normalize-space(m:rank)}">
16       <xsl:apply-templates/>
17     </z:record>
18   </xsl:template>
19
20   <xsl:template match="m:controlfield[@tag='001']">
21     <z:index name="control">
22       <xsl:value-of select="normalize-space(.)"/>
23     </z:index>
24   </xsl:template>
25   
26   <xsl:template match="m:datafield[@tag='245']/m:subfield[@code='a']">
27     <z:index name="title:w title:p title:s any:w">
28       <xsl:value-of select="."/>
29     </z:index>
30   </xsl:template>
31
32 </xsl:stylesheet>