Added support for static ranking. Bug #174. The staticrank is enabled
[idzebra-moved-to-github.git] / test / xslt / index.xsl
index ccdec83..2fbecb3 100644 (file)
@@ -2,7 +2,7 @@
   xmlns:m="http://www.loc.gov/MARC21/slim"
   xmlns:z="http://indexdata.dk/zebra/xslt/1"
   version="1.0">
-  <!-- $Id: index.xsl,v 1.4 2005-06-24 13:45:54 adam Exp $ -->
+  <!-- $Id: index.xsl,v 1.5 2005-08-18 12:50:19 adam Exp $ -->
   <xsl:output indent="yes" method="xml" version="1.0" encoding="UTF-8"/>
   
 
@@ -10,7 +10,9 @@
 
 
   <xsl:template match="/m:record">
-    <z:record id="{normalize-space(m:controlfield[@tag='001'])}">
+    <z:record z:id="{normalize-space(m:controlfield[@tag='001'])}"
+        z:rank="{normalize-space(m:rank)}"
+       >
       <xsl:apply-templates/>
     </z:record>
   </xsl:template>
   </xsl:template>
   
   <xsl:template match="m:datafield[@tag='245']/m:subfield[@code='a']">
+    <!-- nested. does not have to be! -->
     <z:index name="title">
+      <z:index name="title" type="p">
+        <xsl:value-of select="."/>
+      </z:index>
+    </z:index>
+
+    <!-- can do. But sort register only supports numeric attributes. -->
+    <z:index name="title" type="s"> 
       <xsl:value-of select="."/>
     </z:index>
-  </xsl:template>
-  
 
+  </xsl:template>
 
 </xsl:stylesheet>