source: greenstone3/trunk/web/interfaces/default/transform/util.xsl@ 19902

Last change on this file since 19902 was 19902, checked in by kjdon, 15 years ago

oops, last commit to this file had a mistake.

File size: 12.4 KB
RevLine 
[18482]1<?xml version="1.0" encoding="UTF-8"?>
2<xsl:stylesheet version="1.0"
[19895]3 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
4 xmlns:gslib="http://www.greenstone.org/XSL/Library"
5 xmlns:util="http://org.greenstone.gsdl3.util.XSLTUtil"
6 exclude-result-prefixes="util gslib gsf xslt">
7
8 <!-- some global parameters - these are set by whoever is invoking the transformation -->
[18482]9 <xsl:param name="interface_name"/>
10 <xsl:param name="library_name"/>
11
[19895]12 <!-- every pages ................................................. -->
[18482]13
[19895]14 <xsl:variable name="a"><xsl:value-of select="/page/pageRequest/paramList/param[@name='a']/@value"/></xsl:variable>
15 <xsl:variable name="collections" select="/page/pageResponse/collectionList/collection"/>
[18482]16
17
[19895]18 <xsl:template name="textDirectionAttribute">
19 <xsl:attribute name="dir">
[18482]20 <xsl:choose>
[19895]21 <xsl:when test="/page/@lang='ar' or /page/@lang='fa' or /page/@lang='he' or /page/@lang='ur' or /page/@lang='ps' or /page/@lang='prs'">rtl</xsl:when>
22 <xsl:otherwise>ltr</xsl:otherwise>
23 </xsl:choose>
24 </xsl:attribute>
25 </xsl:template>
26
27
28 <xsl:template name="defaultDividerBar">
29 <xsl:param name='text'/>
30 <xsl:choose>
[18482]31 <xsl:when test="$text">
[19895]32 <div class="divbar"><xsl:value-of select="$text"/></div>
[18482]33 </xsl:when>
34 <xsl:otherwise>
[19895]35 <div class="divbar"><xsl:text disable-output-escaping="yes">&amp;nbsp;</xsl:text></div>
[18482]36 </xsl:otherwise>
37 </xsl:choose>
[19895]38 </xsl:template>
[18482]39
40
[19895]41 <xsl:template match="error">
[18482]42 Error: <xsl:value-of select="."/>
[19895]43 </xsl:template>
[18482]44
45
[19895]46 <xsl:template name="displayErrorsIfAny">
47 <xsl:if test="descendant::error">
[18482]48 <script language="Javascript">
49 <xsl:text disable-output-escaping="yes">
50 function removeAllChildren(node) {
[19895]51 while (node.hasChildNodes()) {
52 node.removeChild(node.firstChild);
[18482]53 }
[19895]54 }
[18482]55
56 function toggleHideError(obj) {
[19895]57 if (obj.style.display == "none") {
58 obj.style.display = "";
59 hide_link = document.getElementById("hide");
60 removeAllChildren(hide_link);
61 hide_link.appendChild(document.createTextNode("</xsl:text><xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'hide_error')"/><xsl:text disable-output-escaping="yes">"));
62 } else {
63 obj.style.display = "none";
64 hide_link = document.getElementById("hide");
65 removeAllChildren(hide_link);
66 hide_link.appendChild(document.createTextNode("</xsl:text><xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'show_error')"/><xsl:text disable-output-escaping="yes">"));
67 }
[18482]68 }
69 </xsl:text>
70 </script>
71 <p align='right'><a id="hide" href="javascript:toggleHideError(error);"><xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'show_error')"/></a></p>
72 <div id="error" style="display: none;">
73 <xsl:apply-templates select="descendant::error"/>
74 </div>
75 </xsl:if>
[19895]76 </xsl:template>
[18482]77
78
[19895]79 <xsl:template name="noTextBar">
80 <xsl:text disable-output-escaping="yes">&amp;nbsp;</xsl:text>
[18482]81 </xsl:template>
82
83
[19895]84 <xsl:template name="poweredByGS3TextBar">
85 <xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'gs3power')"/>
86 </xsl:template>
87
88
89 <!-- site home ...................................................... -->
[18482]90
[19895]91 <xsl:template name="siteHomePageTitle">
92 <!-- put a space in the title in case the actual value is missing - mozilla will not display a page with no title-->
93 <xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'gsdl')"/><xsl:text> </xsl:text>
94 </xsl:template>
[18482]95
96
[19895]97 <xsl:template name="selectACollectionTextBar">
98 <xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'home.select_a_collection')"/>
[18482]99 </xsl:template>
100
101
[19902]102 <xsl:template name="crossCollectionQuickSearchForm">
103 <xsl:apply-templates select="serviceList/service[@name='TextQuery']" mode="quicksearch"/>
[19895]104 </xsl:template>
105
[19896]106 <xsl:template match="service[@name='TextQuery']" mode="quicksearch">
[19895]107 <form name="QuickSearch" method="get" action="{$library_name}">
108 <input type="hidden" name="a" value="q"/>
109 <input type="hidden" name="rt" value="rd"/>
110 <input type="hidden" name="s" value="{@name}"/>
111 <input type="hidden" name="s1.collection" value="all"/>
112 <input type="text" name="s1.query" size="20"/>
113 <input type="submit"><xsl:attribute name="value"><xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'home.quick_search')"/></xsl:attribute></input>
114 </form>
[18482]115 </xsl:template>
116
117
[19895]118 <xsl:template name="collectionLinkWithImage">
119 <xsl:choose>
120 <xsl:when test="displayItem[@name='icon']">
121 <a href="{$library_name}?a=p&amp;sa=about&amp;c={@name}">
122 <img>
123 <xsl:attribute name="src">
124 <xsl:value-of select="metadataList/metadata[@name='httpPath']"/>/images/<xsl:value-of select="displayItem[@name='icon']"/>
125 </xsl:attribute>
126 <xsl:attribute name="alt">
127 <xsl:value-of select="displayItem[@name='name']"/>
128 </xsl:attribute>
129 </img>
130 </a>
131 </xsl:when>
132 <xsl:otherwise>
133 <a class="noimage" href="{$library_name}?a=p&amp;sa=about&amp;c={@name}">
134 <xsl:value-of select="displayItem[@name='name']"/>
135 </a>
136 </xsl:otherwise>
137 </xsl:choose>
138 </xsl:template>
[18482]139
140
[19895]141 <xsl:template name="serviceClusterList">
142 <xsl:apply-templates select="serviceClusterList"/>
143 </xsl:template>
144
145 <xsl:template match="serviceClusterList">
146 <xsl:for-each select="serviceCluster">
147 <a href="{$library_name}?a=p&amp;sa=about&amp;c={@name}"><xsl:value-of select='@name'/><xsl:value-of select="displayItem[@name='name']"/></a>
148 </xsl:for-each>
149 </xsl:template>
[18482]150
[19895]151
152 <xsl:template name="serviceLink">
153 <a href="{$library_name}?a=q&amp;rt=d&amp;s={@name}"><xsl:value-of select="displayItem[@name='name']"/></a><xsl:value-of select="displayItem[@name='description']"/>
154 </xsl:template>
[18482]155
[19895]156
157 <xsl:template name="authenticationLink">
158 <xsl:for-each select="serviceList/service[@type='authen']">
[18482]159 <li><a href="{$library_name}?a=g&amp;rt=r&amp;sa=authen&amp;s={@name}&amp;s1.aup=Login&amp;s1.un=&amp;s1.asn="><xsl:value-of select="displayItem[@name='name']"/></a><xsl:value-of select="displayItem[@name='description']"/></li></xsl:for-each>
160 </xsl:template>
161
162
[19895]163 <xsl:template name="libraryInterfaceLink">
164 <li><a href="{$library_name}?a=p&amp;sa=gli4gs3"><xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'home.librarian_interface')"/></a></li>
[18482]165 </xsl:template>
166
167
[19895]168 <xsl:template name="greenstoneLogoAlternateText">
169 <xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'gsdl')"/>
170 </xsl:template>
[18482]171
[19895]172 <!-- about page - collection home ......................... -->
173 <xsl:variable name="collName" select="/page/pageRequest/paramList/param[@name='c']/@value"/>
174 <xsl:param name="collName" select="/page/pageRequest/paramList/param[@name='c']/@value"/>
175 <xsl:param name="pageType"/>
176 <xsl:variable name="this-element" select="/page/pageResponse/collection|/page/pageResponse/serviceCluster"/>
177 <xsl:variable name="this-service" select="/page/pageResponse/service/@name"/>
[18482]178
179
[19895]180 <xsl:template name="aboutCollectionPageTitle">
181 <!-- put a space in the title in case the actual value is missing - mozilla will not display a page with no title-->
182 <xsl:value-of select="/page/pageResponse/*/displayItem[@name='name']"/><xsl:text> </xsl:text>
183 </xsl:template>
[18482]184
[19895]185
186 <xsl:template name="collectionHomeLinkWithLogoIfAvailable">
187 <a href="{$library_name}?a=p&amp;sa=about&amp;c={$collName}">
188 <xsl:choose>
189 <xsl:when test="$this-element/displayItem[@name='icon']">
190 <img border="0">
191 <xsl:attribute name="src">
192 <xsl:value-of select="$this-element/metadataList/metadata[@name='httpPath']"/>/images/<xsl:value-of select="$this-element/displayItem[@name='icon']"/>
193 </xsl:attribute>
194 <xsl:attribute name="alt">
[18595]195 <xsl:value-of select="$this-element/displayItem[@name='name']"/>
[19895]196 </xsl:attribute>
197 <xsl:attribute name="title">
198 <xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'aboutpage')"/>
199 </xsl:attribute>
200 </img>
201 </xsl:when>
202 <xsl:otherwise>
203 <xsl:value-of select="$this-element/displayItem[@name='name']"/>
204 </xsl:otherwise>
205 </xsl:choose>
206 </a>
207 </xsl:template>
[18482]208
[18595]209
[19895]210 <xsl:template name="homeButtonTop">
211 <a href="{$library_name}?a=p&amp;sa=home"><xsl:attribute name="title"><xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'home_tip')"/></xsl:attribute>
212 <xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'home_b')"/></a>
213 </xsl:template>
[18595]214
215
[19895]216 <xsl:template name="helpButtonTop">
[18595]217 <xsl:choose>
218 <xsl:when test="$pageType='help'">
219 <li><a><xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'help_b')"/></a></li>
220 </xsl:when>
221 <xsl:otherwise>
222 <li><a href="{$library_name}?a=p&amp;sa=help&amp;c={$collName}"><xsl:attribute name="title"><xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'help_tip')"/></xsl:attribute>
223 <xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'help_b')"/>
224 </a></li>
225 </xsl:otherwise>
226 </xsl:choose>
[19895]227 </xsl:template>
[18595]228
229
[19895]230 <xsl:template name="preferencesButtonTop">
[18595]231 <xsl:choose>
232 <xsl:when test="$pageType='pref'">
233 <li><a><xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'pref_b')"/></a></li>
234 </xsl:when>
235 <xsl:otherwise>
236 <li><a href="{$library_name}?a=p&amp;sa=pref&amp;c={$collName}"><xsl:attribute name="title"><xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'pref_tip')"/></xsl:attribute>
237 <xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'pref_b')"/>
238 </a></li>
239 </xsl:otherwise>
240 </xsl:choose>
[19895]241 </xsl:template>
[18595]242
[19895]243 <xsl:template name="servicesNavigationBar">
244 <xsl:for-each select="$this-element/serviceList/service">
245 <xsl:variable name="action"><xsl:choose>
246 <xsl:when test="@name=$this-service">CURRENT</xsl:when>
247 <xsl:when test="@type='query'">q</xsl:when>
248 <xsl:when test="@type='browse'">b</xsl:when>
249 <xsl:when test="@type='process'">pr</xsl:when>
250 <xsl:when test="@type='applet'">a</xsl:when>
251 <xsl:otherwise>DO_NOT_DISPLAY</xsl:otherwise>
252 </xsl:choose></xsl:variable>
253 <xsl:choose>
254 <xsl:when test="$action='CURRENT'">
255 <li><a><xsl:value-of select="displayItem[@name='name']"/></a></li>
256 </xsl:when>
257 <xsl:when test="$action !='DO_NOT_DISPLAY'">
258 <li><a href="{$library_name}?a={$action}&amp;rt=d&amp;s={@name}&amp;c={$collName}"><xsl:if test="displayItem[@name='description']"><xsl:attribute name='title'><xsl:value-of select="displayItem[@name='description']"/></xsl:attribute></xsl:if><xsl:value-of select="displayItem[@name='name']"/></a></li>
259 </xsl:when>
260 </xsl:choose>
261 </xsl:for-each>
262 </xsl:template>
[18595]263
264
[19895]265 <xsl:template name="collectionDescriptionTextAndServicesLinks">
266 <xsl:apply-templates select="pageResponse/collection|serviceCluster"/>
267 </xsl:template>
[18595]268
[19895]269 <xsl:template match="collection|serviceCluster">
270 <xsl:value-of select="displayItem[@name='description']" disable-output-escaping="yes"/>
271
272 <xsl:apply-templates select="serviceList">
273 <xsl:with-param name="collName" select="$collName"/>
274 </xsl:apply-templates>
275 </xsl:template>
[18595]276
277
[19895]278 <xsl:template match="serviceList">
[18595]279 <xsl:param name="collName"/>
280 <h3><xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'about.services')"/></h3>
281 <xsl:choose>
282 <xsl:when test="service">
283 <xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'about.servicehelp')"/>
284 </xsl:when>
285 <xsl:otherwise>
286 <xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'about.noservices')"/>
287 </xsl:otherwise>
288 </xsl:choose>
289
[19895]290
[18595]291 <xsl:if test="service">
292 <ul id="servicelist">
293 <xsl:for-each select="service">
294 <xsl:variable name="action"><xsl:choose>
295 <xsl:when test="@type='query'">q</xsl:when>
296 <xsl:when test="@type='browse'">b</xsl:when>
297 <xsl:when test="@type='process'">pr</xsl:when>
298 <xsl:when test="@type='applet'">a</xsl:when>
299 <xsl:otherwise>DO_NOT_DISPLAY</xsl:otherwise>
300 </xsl:choose></xsl:variable>
301 <xsl:if test="$action !='DO_NOT_DISPLAY'">
302 <li><a href="{$library_name}?a={$action}&amp;rt=d&amp;s={@name}&amp;c={$collName}"><xsl:value-of select="displayItem[@name='name']"/></a><xsl:value-of select="displayItem[@name='description']"/></li>
303 </xsl:if>
304 </xsl:for-each>
305 </ul>
306 </xsl:if>
307 </xsl:template>
308
[19895]309</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.