Add 4=3 to BIB-1 map of Record identifier index.
[irspy-moved-to-github.git] / zebra / zeerex2index.xsl
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- $Id: zeerex2index.xsl,v 1.3 2006-05-17 16:15:32 mike Exp $ -->
3 <!-- See the ZeeRex profile at http://srw.cheshire3.org/profiles/ZeeRex/ -->
4 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
5                 xmlns:z="http://indexdata.dk/zebra/xslt/1"
6                 xmlns:e="http://explain.z3950.org/dtd/2.0/"
7                 version="1.0">
8  <xsl:output indent="yes" method="xml" version="1.0" encoding="UTF-8"/>
9  <!-- disable all default text node output -->
10  <xsl:template match="text()"/>
11  <!-- match on alvis xml record -->
12  <xsl:template match="//e:explain">
13   <z:record id="{concat(
14                 e:serverInfo/e:host, ':',
15                 e:serverInfo/e:port, '/',
16                 e:serverInfo/e:database)}"
17             type="update">
18
19    <!-- ### define "cql:anywhere" -->
20
21    <z:index name="rec:authorityIndicator" type="0">
22     <xsl:value-of select="@authoritative"/>
23    </z:index>
24
25    <z:index name="rec:id" type="0">
26     <xsl:value-of select="concat(
27                           e:serverInfo/e:host, ':',
28                           e:serverInfo/e:port, '/',
29                           e:serverInfo/e:database)"/>
30    </z:index>
31
32    <!-- serverInfo -->
33    <z:index name="net:protocol" type="w">
34     <xsl:value-of select="e:serverInfo/@protocol"/>
35    </z:index>
36    <z:index name="net:version" type="0">
37     <xsl:value-of select="e:serverInfo/@version"/>
38    </z:index>
39    <z:index name="net:method" type="w">
40     <xsl:value-of select="e:serverInfo/@method"/>
41    </z:index>
42    <z:index name="net:host" type="0">
43     <xsl:value-of select="e:serverInfo/e:host"/>
44    </z:index>
45    <z:index name="net:port" type="0">
46     <xsl:value-of select="e:serverInfo/e:port"/>
47    </z:index>
48    <z:index name="net:path" type="w"><!-- "w" for case-insensitivity -->
49     <xsl:value-of select="e:serverInfo/e:database"/>
50    </z:index>
51    <z:index name="dc:date" type="d">
52     <xsl:value-of select="e:serverInfo/e:database/@lastUpdate"/>
53    </z:index>
54    <z:index name="zeerex:numberOfRecords" type="n">
55     <xsl:value-of select="e:serverInfo/e:database/@numRecs"/>
56    </z:index>
57
58    <!-- databaseInfo -->
59    <z:index name="dc:title" type="w">
60     <xsl:value-of select="e:databaseInfo/e:title"/>
61    </z:index>
62    <z:index name="dc:description" type="w">
63     <xsl:value-of select="e:databaseInfo/e:description"/>
64    </z:index>
65    <z:index name="dc:creator" type="w">
66     <xsl:value-of select="e:databaseInfo/e:author"/>
67    </z:index>
68    <z:index name="dc:language" type="w">
69     <xsl:value-of select="e:databaseInfo/e:langUsage"/>
70    </z:index>
71
72    <!-- metaInfo -->
73    <z:index name="rec:lastModificationDate" type="d">
74     <!-- ### Can Zebra handle this ISO-format date? -->
75     <xsl:value-of select="e:metaInfo/e:dateModified"/>
76    </z:index>
77
78    <!-- ### indexInfo -->
79
80    <!-- recordInfo -->
81    <z:index name="zeerex:recordSyntax" type="0">
82     <xsl:value-of select="e:recordInfo/e:recordSyntax/@identifier"/>
83     <!-- ### But @identifier is an OID for Z39.50 -->
84    </z:index>
85
86    <!-- schemaInfo -->
87    <z:index name="zeerex:schema" type="0">
88     <xsl:value-of select="e:schemaInfo/e:schema/@identifier"/>
89     <!-- ### Really?  Identifier? -->
90    </z:index>
91
92    <!-- supportsInfo -->
93    <xsl:for-each select="e:configInfo/e:supports[@type='relationModifier']">
94     <z:index name="zeerex:supports_relationModifier" type="0">
95      <xsl:value-of select="."/>
96     </z:index>
97    </xsl:for-each>
98    <xsl:for-each select="e:configInfo/e:supports[@type='booleanModifier']">
99     <z:index name="zeerex:supports_booleanModifier" type="0">
100      <xsl:value-of select="."/>
101     </z:index>
102    </xsl:for-each>
103    <xsl:for-each select="e:configInfo/e:supports[@type='maskingCharacter']">
104     <z:index name="zeerex:supports_maskingCharacter" type="0">
105      <xsl:value-of select="."/>
106     </z:index>
107    </xsl:for-each>
108    <!-- Many more could be added as required -->
109
110   </z:record>
111  </xsl:template>
112 </xsl:stylesheet>