1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- $Id: zeerex2index.xsl,v 1.14 2007-04-27 14:04:40 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 xmlns:i="http://indexdata.com/irspy/1.0"
9 <xsl:variable name="lcletters">abcdefghijklmnopqrstuvwxyz</xsl:variable>
10 <xsl:variable name="ucletters">ABCDEFGHIJKLMNOPQRSTUVWXYZ</xsl:variable>
11 <xsl:output indent="yes" method="xml" version="1.0" encoding="UTF-8"/>
12 <!-- Disable all default text node output -->
13 <xsl:template match="text()"/>
14 <!-- Match on ZeeRex XML record -->
15 <xsl:template match="//e:explain">
16 <xsl:variable name="id"><xsl:value-of select="concat(
17 e:serverInfo/@protocol, ':',
18 e:serverInfo/e:host, ':',
19 e:serverInfo/e:port, '/',
20 e:serverInfo/e:database)"/></xsl:variable>
21 <z:record id="{$id}" type="update">
23 <!-- Well, not quite _anywhere_. Only textual fields are indexed -->
24 <z:index name="cql:anywhere" type="w">
25 <xsl:value-of select="e:serverInfo/e:host"/>
26 <xsl:text> </xsl:text>
27 <xsl:value-of select="e:serverInfo/e:port"/>
28 <xsl:text> </xsl:text>
29 <xsl:value-of select="e:serverInfo/e:database"/>
30 <xsl:text> </xsl:text>
31 <xsl:value-of select="e:databaseInfo/e:title"/>
32 <xsl:text> </xsl:text>
33 <xsl:value-of select="e:databaseInfo/e:description"/>
34 <xsl:text> </xsl:text>
35 <xsl:value-of select="e:databaseInfo/e:author"/>
38 <z:index name="rec:authorityIndicator" type="0">
39 <xsl:value-of select="@authoritative"/>
42 <z:index name="rec:id" type="u">
43 <xsl:value-of select="$id"/>
47 <z:index name="net:protocol" type="w">
48 <xsl:value-of select="e:serverInfo/@protocol"/>
50 <z:index name="net:version" type="0">
51 <xsl:value-of select="e:serverInfo/@version"/>
53 <z:index name="net:method" type="w">
54 <xsl:value-of select="e:serverInfo/@method"/>
56 <z:index name="net:host" type="0">
57 <xsl:value-of select="e:serverInfo/e:host"/>
59 <z:index name="net:host" type="s">
60 <xsl:value-of select="e:serverInfo/e:host"/>
62 <z:index name="net:port" type="0">
63 <xsl:value-of select="e:serverInfo/e:port"/>
65 <z:index name="net:port" type="s">
66 <xsl:value-of select="e:serverInfo/e:port"/>
68 <z:index name="net:path" type="0">
69 <xsl:value-of select="e:serverInfo/e:database"/>
71 <z:index name="net:path" type="s">
72 <xsl:value-of select="e:serverInfo/e:database"/>
74 <z:index name="dc:date" type="d">
75 <xsl:value-of select="e:serverInfo/e:database/@lastUpdate"/>
77 <z:index name="zeerex:numberOfRecords" type="n">
78 <xsl:value-of select="e:serverInfo/e:database/@numRecs"/>
82 <z:index name="dc:title" type="w">
83 <xsl:value-of select="e:databaseInfo/e:title"/>
85 <z:index name="dc:title" type="s">
86 <xsl:value-of select="e:databaseInfo/e:title"/>
88 <z:index name="dc:description" type="w">
89 <xsl:value-of select="e:databaseInfo/e:description"/>
91 <z:index name="dc:creator" type="w">
92 <xsl:value-of select="e:databaseInfo/e:author"/>
94 <z:index name="dc:creator" type="s">
95 <xsl:value-of select="e:databaseInfo/e:author"/>
97 <z:index name="dc:language" type="w">
98 <xsl:value-of select="e:databaseInfo/e:langUsage"/>
102 <z:index name="rec:lastModificationDate" type="d">
103 <!-- ### Can Zebra handle this ISO-format date? -->
104 <xsl:value-of select="e:metaInfo/e:dateModified"/>
107 <!-- ### indexInfo -->
110 <z:index name="zeerex:recordSyntax" type="0">
111 <xsl:value-of select="e:recordInfo/e:recordSyntax/@name"/>
112 <!-- ### But @identifier is an OID for Z39.50 -->
116 <z:index name="zeerex:schema" type="0">
117 <xsl:value-of select="e:schemaInfo/e:schema/@identifier"/>
118 <!-- ### Really? Identifier? -->
121 <!-- supportsInfo -->
122 <xsl:for-each select="e:configInfo/e:supports[@type='relationModifier']">
123 <z:index name="zeerex:supports_relationModifier" type="0">
124 <xsl:value-of select="."/>
127 <xsl:for-each select="e:configInfo/e:supports[@type='booleanModifier']">
128 <z:index name="zeerex:supports_booleanModifier" type="0">
129 <xsl:value-of select="."/>
132 <xsl:for-each select="e:configInfo/e:supports[@type='maskingCharacter']">
133 <z:index name="zeerex:supports_maskingCharacter" type="0">
134 <xsl:value-of select="."/>
137 <!-- Many more could be added as required -->
140 <z:index name="zeerex:libType" type="0">
141 <xsl:value-of select="i:status/i:libraryType"/>
143 <z:index name="zeerex:country" type="0">
144 <xsl:value-of select="i:status/i:country"/>