Remove Ubuntu karmic from build
[idzebra-moved-to-github.git] / test / xslt / index.xsl
index ba168e7..78cb6d3 100644 (file)
@@ -1,20 +1,41 @@
 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
   xmlns:m="http://www.loc.gov/MARC21/slim"
-  xmlns:z="http://indexdata.dk/zebra/indexing/1"
+  xmlns:z="http://indexdata.dk/zebra/xslt/1"
+  exclude-result-prefixes="m z"
   version="1.0">
-  <!-- $Id: index.xsl,v 1.1 2005-05-31 14:18:17 adam Exp $ -->
   <xsl:output indent="yes" method="xml" version="1.0" encoding="UTF-8"/>
   
-  <xsl:template match="/m:record/m:controlfield[@tag=001]">
-    <z:index field="control">
-      <xsl:apply-templates match="."/>
+
+  <xsl:template match="text()"/>
+
+
+  <xsl:template match="/m:record">
+    <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 match="m:controlfield[@tag='001']">
+    <z:index name="control">
+      <xsl:value-of select="normalize-space(.)"/>
     </z:index>
   </xsl:template>
   
-  <xsl:template match="/m:record/m:datafield[@tag=245]">
-    <z:index field="title">
-      <xsl:apply-templates match="."/>
+  <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:stylesheet>