source: main/trunk/greenstone3/web/interfaces/default/transform/config_format.xsl@ 26093

Last change on this file since 26093 was 26093, checked in by kjdon, 12 years ago

removed old metadata code, and fixed a couple of places where need to call getMetadataName template instead of apply-templates with a mode.

File size: 13.1 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<xsl:stylesheet version="1.0"
3 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
4 xmlns:xslt="output.xsl"
5 xmlns:java="http://xml.apache.org/xslt/java"
6 xmlns:gsf="http://www.greenstone.org/greenstone3/schema/ConfigFormat"
7 xmlns:util="xalan://org.greenstone.gsdl3.util.XSLTUtil"
8 extension-element-prefixes="java">
9 <xsl:param name="interface_name"/>
10 <xsl:param name="library_name"/>
11
12 <xsl:output method="xml"/>
13 <xsl:namespace-alias stylesheet-prefix="xslt" result-prefix="xsl"/>
14
15 <xsl:template match="format">
16 <format>
17 <xsl:apply-templates/>
18 </format>
19 </xsl:template>
20
21 <xsl:template match="gsf:template">
22 <xslt:template>
23 <xsl:copy-of select="@*"/>
24 <xsl:attribute name="priority">2</xsl:attribute>
25 <xsl:if test=".//gsf:link">
26 <xslt:param name="serviceName"/>
27 <xslt:param name="collName"/>
28 </xsl:if>
29 <xsl:apply-templates/>
30 </xslt:template>
31 </xsl:template>
32
33 <xsl:template match="gsf:variable">
34 <xslt:variable>
35 <xsl:copy-of select="@*"/>
36 <xsl:apply-templates/>
37 </xslt:variable>
38 <script type="text/javascript">
39 gs.variables.<xsl:value-of select="@name"/><xslt:text disable-output-escaping="yes"> = "</xslt:text><xsl:apply-templates/><xslt:text disable-output-escaping="yes">";</xslt:text>
40 </script>
41 </xsl:template>
42
43 <xsl:template match="gsf:defaultClassifierNode">
44 <xslt:call-template name="defaultClassifierNode"/>
45 </xsl:template>
46
47 <xsl:template match="gsf:image">
48 <xslt:variable name="metaName">
49 <xsl:choose>
50 <xsl:when test="@type = 'thumb'">Thumb</xsl:when>
51 <xsl:when test="@type = 'screen'">Screen</xsl:when>
52 <xsl:when test="@type = 'source'">SourceFile</xsl:when>
53 </xsl:choose>
54 </xslt:variable>
55 <xslt:if test="(.//metadataList)[last()]/metadata[@name = $metaName]">
56 <img>
57 <xslt:attribute name='src'>
58 <xslt:value-of disable-output-escaping="yes" select="/page/pageResponse/collection/metadataList/metadata[@name = 'httpPath']"/>
59 <xsl:text>/index/assoc/</xsl:text>
60 <xslt:value-of disable-output-escaping="yes" select="/page/pageResponse/document/metadataList/metadata[@name = 'assocfilepath']"/>
61 <xsl:text>/</xsl:text>
62 <xslt:value-of disable-output-escaping="yes" select="(.//metadataList)[last()]/metadata[@name = $metaName]"/>
63 </xslt:attribute>
64 </img>
65 </xslt:if>
66 </xsl:template>
67
68 <xsl:template match="gsf:link">
69 <xsl:choose>
70 <xsl:when test="@type='classifier'">
71 <a>
72 <xslt:attribute name='href'>
73 <xslt:value-of select='$library_name'/>
74 <xsl:text>/collection/</xsl:text>
75 <xslt:value-of select='/page/pageResponse/collection/@name'/>
76 <xsl:text>/browse/</xsl:text>
77 <xslt:value-of select='util:replace(@nodeID, ".", "/")'/>
78 </xslt:attribute>
79 <xsl:apply-templates/>
80 </a>
81 </xsl:when>
82 <xsl:when test="@type='source'">
83 <a><xslt:attribute name='href'><xslt:value-of
84 disable-output-escaping="yes" select="/page/pageResponse/collection/metadataList/metadata[@name='httpPath']" />/index/assoc/<xslt:value-of
85 disable-output-escaping="yes" select="(.//metadataList)[last()]/metadata[@name='assocfilepath']" />/<xslt:value-of
86 disable-output-escaping="yes" select="(.//metadataList)[last()]/metadata[@name='srclinkFile']" /></xslt:attribute>
87 <xsl:apply-templates/>
88 </a>
89 </xsl:when>
90 <xsl:when test="@type='web'">
91 <xslt:value-of disable-output-escaping="yes" select="metadataList/metadata[contains(@name, 'weblink')]"/>
92 <xsl:apply-templates/>
93 <xslt:value-of disable-output-escaping="yes" select="metadataList/metadata[contains(@name, '/weblink')]"/>
94 </xsl:when>
95 <xsl:when test="@type='equivdoc'">
96 <xsl:call-template name="gsf:equivlinkgs3"/>
97 </xsl:when>
98 <xsl:otherwise> <!-- a document link -->
99 <xslt:variable name="bookswitch">
100 <xslt:value-of select="/page/pageRequest/paramList/param[@name='book']/@value"/>
101 </xslt:variable>
102 <a>
103 <xslt:attribute name="href">
104 <xslt:value-of select='$library_name'/>
105 <xsl:text>/collection/</xsl:text>
106 <xslt:value-of select='/page/pageResponse/collection/@name'/>
107 <xsl:text>/document/</xsl:text>
108 <xslt:value-of select='@nodeID'/>
109 <xslt:choose>
110 <xslt:when test="$bookswitch = 'on' or $bookswitch = 'flashxml'">
111 <xsl:text>?book=on</xsl:text>
112 </xslt:when>
113 <xslt:otherwise>
114 <xslt:if test="$opt-doc-link-args">?<xslt:value-of select="$opt-doc-link-args"/></xslt:if>
115 </xslt:otherwise>
116 </xslt:choose>
117 </xslt:attribute>
118 <xsl:apply-templates/>
119 </a>
120 </xsl:otherwise>
121 </xsl:choose>
122 </xsl:template>
123
124 <xsl:template match="gsf:icon">
125 <xsl:choose>
126 <xsl:when test="@type='classifier'">
127 <img style="border:0px"><xsl:attribute name="src"><xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'bookshelf_image')"/></xsl:attribute></img>
128 </xsl:when>
129 <xsl:when test="@type='web'">
130 <xslt:value-of disable-output-escaping="yes" select="metadataList/metadata[contains(@name, 'webicon')]"/>
131 </xsl:when>
132 <xsl:when test="not(@type) or @type='document'">
133 <img style="border:0px"><xslt:attribute name="id">documentBasketBook<xslt:value-of select="/page/pageResponse/collection/@name"/>:<xslt:value-of select="@nodeID"/></xslt:attribute><xslt:attribute name="src"><xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'page_icon_image')"/></xslt:attribute></img>
134 </xsl:when>
135 </xsl:choose>
136 </xsl:template>
137
138 <!-- calls a template in gslib.xsl in order to avoid xsl vs xslt issue -->
139 <!--<xsl:template match="gsf:equivlinkgs3">
140 <xslt:call-template name="equivDocLinks">
141 <xslt:with-param name="count" select="0"/>
142 </xslt:call-template>
143 </xsl:template>-->
144
145 <!-- Another way (also works with DSpace tutorial): build all the equivalent document links for the current document in one go. No looping necessary: handled in function call. -->
146 <xsl:template match="gsf:equivlinkgs3" name="gsf:equivlinkgs3">
147 <xslt:variable name="docicon" select="metadataList/metadata[contains(@name, 'equivDocIcon')]"/>
148 <xslt:variable name="docStartlink" select="metadataList/metadata[contains(@name, 'all_*,*_equivDocLink')]"/>
149 <xslt:variable name="docEndlink" select="metadataList/metadata[contains(@name, '/equivDocLink')]"/>
150
151 <xslt:variable name="equivDocLinks" select="java:org.greenstone.gsdl3.util.XSLTUtil.getEquivDocLinks(',',$docicon, $docStartlink, $docEndlink, ' ')" />
152 <xslt:value-of disable-output-escaping="yes" select="$equivDocLinks"/>
153 </xsl:template>
154
155<!--
156In the collection's format statement, could have the following javascript+XSLT in place of
157the gsf:equivlinkgs3 element (which resolves to the XSLT in config_format.xsl and gslib.xsl).
158<xsl:text disable-output-escaping="yes">&lt;script&gt;var equivDocIcon= [ &quot;
159</xsl:text>
160<gsf:metadata name="equivDocIcon" separator="&quot;, &quot;" multiple="true"/>
161<xsl:text disable-output-escaping="yes">&quot;];var equivDocStartLink= [ &quot;
162</xsl:text>
163<gsf:metadata name="equivDocLink" separator="&quot;,&quot;" multiple="true"/>
164<xsl:text disable-output-escaping="yes">&quot;];var equivDocEndLink= [ &quot;
165</xsl:text>
166<gsf:metadata name="/equivDocLink" separator="&quot;,&quot;" multiple="true"/>
167<xsl:text disable-output-escaping="yes">&quot;];for (var i=0; i&lt;equivDocIcon.length; i++) { document.write(equivDocStartLink[i]+ equivDocIcon[i] + equivDocEndLink[i]); }&lt;/script&gt;
168</xsl:text>
169-->
170
171 <!-- gsf:cgiparam example, as used by the Enhanced PDF tutorial:
172 <a><xsl:attribute name="href"><gsf:metadata name="httpPath" type="collection"/>/index/assoc/<gsf:metadata name="archivedir"/>/<gsf:metadata name="srclinkFile"/>#search=&amp;quot;<gsf:cgi-param name="query"/>&amp;quot;</xsl:attribute>src doc link with query highlighting</a> -->
173 <xsl:template match="gsf:cgi-param">
174 <xslt:value-of disable-output-escaping="yes" select="/page/pageRequest/paramList/param[@name='s1.{@name}']/@value"/>
175 </xsl:template>
176
177 <!-- A GLI user can use a gsf:displayText element in GS3's Format Features to retrieve
178 a string defined in either collectionConfig.xml or else the interface dictionaries.
179 If the requested string occurs in neither, the request string itself will be output. -->
180 <xsl:template match="gsf:displayText">
181 <xslt:variable name="displaytext">
182 <xsl:call-template name="gsf:displayItem"/>
183 </xslt:variable>
184
185 <xslt:choose>
186 <xslt:when test="$displaytext != ''">
187 <xslt:value-of disable-output-escaping="yes" select="$displaytext"/>
188 </xslt:when>
189 <xslt:otherwise>
190 <xslt:variable name="interfacetxt">
191 <xsl:call-template name="gsf:interfaceText"/>
192 </xslt:variable>
193
194 <xslt:choose>
195 <xslt:when test="$interfacetxt != ''">
196 <xslt:value-of disable-output-escaping="yes" select="$interfacetxt"/>
197 </xslt:when>
198 <xslt:otherwise>
199 <xslt:value-of disable-output-escaping="yes" select="'{@name}'"/>
200 </xslt:otherwise>
201 </xslt:choose>
202 </xslt:otherwise>
203 </xslt:choose>
204 </xsl:template>
205
206 <!-- With gsf:displayItem, a user can request a displayItem from collectionConfig.xml -->
207 <xsl:template match="gsf:displayItem" name="gsf:displayItem">
208 <xslt:value-of disable-output-escaping="yes" select="/page/pageResponse/collection/displayItem[@name='{@name}']"/>
209 </xsl:template>
210
211 <!-- With gsf:interfaceText, a user can request a string from the interface dictionaries in the current lang -->
212 <xsl:template match="gsf:interfaceText" name="gsf:interfaceText">
213 <xslt:value-of disable-output-escaping="yes" select="util:getInterfaceText($interface_name, /page/@lang, '{@name}')"/>
214 </xsl:template>
215
216 <!-- if this gsf:metadata is a child of a document node then we want to get the metadata for that node -->
217 <xsl:template match="gsf:metadata">
218 <xsl:if test="not(@hidden = 'true')">
219 <!-- set hidden=true on a gsf:metadata so that it gets retrieved from the server but not displayed -->
220 <xsl:variable name="meta_name"><xsl:call-template name="getMetadataName"/></xsl:variable>
221 <xsl:variable name="separator"><xsl:choose><xsl:when test="@separator"><xsl:value-of disable-output-escaping='yes' select="@separator"/></xsl:when><xsl:otherwise><xsl:text>, </xsl:text></xsl:otherwise></xsl:choose></xsl:variable>
222 <xsl:variable name="postest">
223 <xsl:choose><xsl:when test="@pos = 'first'">position()=1</xsl:when><xsl:when test="@pos = 'last'">position() = last()</xsl:when><xsl:when test="@pos">position() = <xsl:value-of select="@pos"/></xsl:when><xsl:otherwise>true()</xsl:otherwise></xsl:choose>
224 </xsl:variable>
225 <xsl:variable name="multiple"><xsl:choose><xsl:when test="@pos">false()</xsl:when><xsl:otherwise>true()</xsl:otherwise></xsl:choose></xsl:variable>
226 <xslt:for-each><xsl:attribute name="select">
227 <xsl:if test="@type='collection'">/page/pageResponse/collection/</xsl:if>metadataList/metadata[@name='<xsl:value-of select="$meta_name"/>'<xsl:if test="@lang"><xsl:text> and @lang=</xsl:text><xsl:value-of select="@lang"/></xsl:if><xsl:text>]</xsl:text></xsl:attribute>
228 <xslt:if test="{$postest}">
229 <xslt:if test="{$multiple} and position()>1"><xsl:value-of select="$separator"/></xslt:if>
230 <xsl:choose>
231 <xsl:when test="@format">
232 <xslt:value-of disable-output-escaping='yes' select="util:{@format}(., /page/@lang )"/>
233 </xsl:when>
234 <xsl:otherwise>
235 <xslt:value-of disable-output-escaping='yes' select="."/>
236</xsl:otherwise>
237 </xsl:choose>
238 </xslt:if>
239 </xslt:for-each>
240 </xsl:if>
241 </xsl:template>
242
243 <xsl:template name="getMetadataName">
244 <xsl:if test='@select'>
245 <xsl:value-of select='@select'/>
246 <xsl:text>_</xsl:text>
247 </xsl:if>
248 <xsl:value-of select="@name"/>
249 </xsl:template>
250
251 <xsl:template match="gsf:text">
252 <xslt:call-template name="documentNodeText"/>
253 </xsl:template>
254
255 <xsl:template match="gsf:choose-metadata">
256 <xslt:choose>
257 <xsl:for-each select="gsf:metadata">
258 <xslt:when>
259 <xsl:attribute name="test">(.//metadataList)[last()]/metadata[@name='<xsl:call-template name="getMetadataName"/>']</xsl:attribute>
260 <xsl:apply-templates select="."/>
261 </xslt:when>
262 </xsl:for-each>
263 <xsl:if test="gsf:default">
264 <xslt:otherwise><xsl:apply-templates select="gsf:default"/></xslt:otherwise>
265 </xsl:if>
266 </xslt:choose>
267 </xsl:template>
268
269 <xsl:template match="gsf:switch">
270 <xsl:variable name="meta-name"><xsl:for-each select="gsf:metadata"><xsl:call-template name="getMetadataName"/></xsl:for-each></xsl:variable>
271 <xslt:variable name="meta"><xsl:choose><xsl:when test="@preprocess"><xslt:value-of select="util:{@preprocess}((.//metadataList)[last()]/metadata[@name='{$meta-name}'], /page/@lang )"/></xsl:when><xsl:otherwise><xslt:value-of select="(.//metadataList)[last()]/metadata[@name='{$meta-name}']"/></xsl:otherwise></xsl:choose></xslt:variable>
272 <xslt:choose>
273 <xsl:for-each select="gsf:when">
274 <xslt:when test="util:{@test}($meta, '{@test-value}')">
275 <xsl:apply-templates/>
276 </xslt:when>
277 </xsl:for-each>
278 <xsl:if test="gsf:otherwise">
279 <xslt:otherwise>
280 <xsl:apply-templates select="gsf:otherwise/node()"/>
281 </xslt:otherwise>
282 </xsl:if>
283 </xslt:choose>
284 </xsl:template>
285
286 <xsl:template match="*">
287 <xsl:copy>
288 <xsl:copy-of select="@*"/>
289 <xsl:apply-templates/>
290 </xsl:copy>
291 </xsl:template>
292
293</xsl:stylesheet>
294
295
Note: See TracBrowser for help on using the repository browser.