source: main/trunk/greenstone3/web/interfaces/default/transform/layouts/header.xsl@ 31239

Last change on this file since 31239 was 31239, checked in by kjdon, 7 years ago

split up the home-help-prefs template into multiple templates for ease of customization

  • Property svn:executable set to *
File size: 34.0 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<xsl:stylesheet version="1.0"
3 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
4 xmlns:java="http://xml.apache.org/xslt/java"
5 xmlns:util="xalan://org.greenstone.gsdl3.util.XSLTUtil"
6 xmlns:gslib="http://www.greenstone.org/skinning"
7 xmlns:gsf="http://www.greenstone.org/greenstone3/schema/ConfigFormat"
8 extension-element-prefixes="java util"
9 exclude-result-prefixes="java util gsf">
10
11 <xsl:include href="../query-common.xsl"/>
12 <xsl:include href="../javascript-global-setup.xsl"/>
13
14 <!-- If the c parameter is empty then use the p.c parameter for the collection name-->
15 <xsl:variable name="collNameChecked">
16 <xsl:choose>
17 <xsl:when test="$collName = '' and /page/pageRequest/paramList/param[@name='p.c']/@value">
18 <xsl:value-of select="/page/pageRequest/paramList/param[@name='p.c']/@value"/>
19 </xsl:when>
20 <xsl:otherwise>
21 <xsl:value-of select="$collName"/>
22 </xsl:otherwise>
23 </xsl:choose>
24 </xsl:variable>
25
26 <!-- Creates a header for the html page -->
27 <xsl:template name="create-html-header">
28 <base>
29 <xsl:attribute name="href">
30 <xsl:choose>
31 <xsl:when test="/page/pageResponse/metadataList/metadata[@name = 'siteURL']">
32 <xsl:value-of select="/page/pageResponse/metadataList/metadata[@name = 'siteURL']"/>
33 </xsl:when>
34 <xsl:when test="/page/pageRequest/@baseURL">
35 <xsl:value-of select="/page/pageRequest/@baseURL"/>
36 </xsl:when>
37 </xsl:choose>
38 </xsl:attribute>
39 </base>
40 <xsl:comment>[if lte IE 6]&gt;&lt;/base&gt;&lt;![endif]</xsl:comment>
41
42 <title><xsl:call-template name="pageTitle"/> :: <xsl:call-template name="siteName"/></title>
43
44 <xsl:if test="/page/pageRequest/@action ='d'">
45
46 <xsl:variable name="myMetadataHeader" select="/page/pageResponse/format/gsf:headMetaTags/gsf:metadata"/>
47 <xsl:for-each select="$myMetadataHeader">
48 <xsl:variable name="metaname" select="@name"/>
49
50 <xsl:variable name="metavals"
51 select="/page/pageResponse/document/metadataList/metadata[@name = $metaname]|/page/pageResponse/document/documentNode/metadataList/metadata[@name = $metaname]"/>
52 <xsl:for-each select="$metavals">
53 <META NAME="{$metaname}" CONTENT="{.}"/>
54 </xsl:for-each>
55 </xsl:for-each>
56
57 </xsl:if>
58
59 <xsl:choose>
60 <xsl:when test="/page/pageResponse/interfaceOptions/option[@name = 'cssTheme']/@value">
61 <!-- Get the theme from the interfaceConfig.xml file -->
62 <link rel="stylesheet" href="{/page/pageResponse/interfaceOptions/option[@name = 'cssTheme']/@value}" type="text/css"/>
63 </xsl:when>
64 <xsl:otherwise>
65 <link rel="stylesheet" href="interfaces/{$interface_name}/style/themes/main/jquery-ui-1.8.16.custom.css" type="text/css"/>
66 </xsl:otherwise>
67 </xsl:choose>
68 <link rel="stylesheet" href="interfaces/{$interface_name}/style/core.css" type="text/css"/>
69 <link rel="shortcut icon" href="interfaces/{$interface_name}/images/favicon.ico"/>
70
71 <script type="text/javascript" src="interfaces/{$interface_name}/js/jquery.min.js"><xsl:text> </xsl:text></script>
72 <script type="text/javascript" src="interfaces/{$interface_name}/js/jquery-ui-1.10.2.custom/js/jquery-ui-1.10.2.custom.min.js"><xsl:text> </xsl:text></script>
73 <script type="text/javascript" src="interfaces/{$interface_name}/js/jquery.blockUI.js"><xsl:text> </xsl:text></script>
74 <script type="text/javascript" src="interfaces/{$interface_name}/js/ace/ace.js"><xsl:text> </xsl:text></script>
75
76 <script type="text/javascript" src="interfaces/{$interface_name}/js/zoomer.js"><xsl:text> </xsl:text></script>
77
78 <xsl:if test="/page/pageResponse/format[@type='display' or @type='browse' or @type='search']/gsf:option[@name='mapEnabled']/@value = 'true'">
79 <xsl:call-template name="map-scripts"/>
80 </xsl:if>
81
82 <xsl:if test="/page/pageResponse/format/gsf:option[@name='mapEnabledOpenLayers']/@value = 'true'">
83 <xsl:call-template name="openlayers-map-scripts"/>
84 </xsl:if>
85
86
87 <xsl:if test="/page/pageResponse/format/gsf:option[@name='panoramaViewerEnabled']/@value = 'true'">
88 <xsl:call-template name="panoramaViewer-scripts"/>
89 </xsl:if>
90
91 <xsl:if test="/page/pageRequest/userInformation and /page/pageRequest/userInformation/@editEnabled = 'true' and (util:contains(/page/pageRequest/userInformation/@groups, 'administrator') or util:contains(/page/pageRequest/userInformation/@groups, 'all-collections-editor') or util:contains(/page/pageRequest/userInformation/@groups, $thisCollectionEditor))">
92 <xsl:if test="/page/pageRequest/paramList/param[(@name='docEdit') and (@value='on' or @value='true' or @value='1')]">
93 <script type="text/javascript" src="interfaces/{$interface_name}/js/ckeditor/ckeditor.js" defer="true"><xsl:text> </xsl:text></script>
94 <!-- <xsl:call-template name="init-direct-edit"/> -->
95 </xsl:if>
96 <script type="text/javascript" src="interfaces/{$interface_name}/js/debug_scripts.js"><xsl:text> </xsl:text></script>
97 <script type="text/javascript" src="interfaces/{$interface_name}/js/visual-xml-editor.js"><xsl:text> </xsl:text></script>
98 </xsl:if>
99
100 <xsl:call-template name="setup-gs-variable"/>
101 <xsl:if test="/page/pageRequest/@action ='p' and /page/pageRequest/@subaction='pref'">
102 <script type="text/javascript">
103 <xsl:value-of disable-output-escaping="yes" select="util:getInterfaceStringsAsJavascript($interface_name, /page/@lang, 'pref')"/>
104 </script>
105 <script type="text/javascript" src="interfaces/{$interface_name}/js/jquery.themeswitcher.min.js"><xsl:text> </xsl:text></script>
106 </xsl:if>
107 <xsl:call-template name="define-js-macro-variables"/>
108
109 <xsl:call-template name="additionalHeaderContent"/>
110 </xsl:template>
111
112 <!-- This template allows for extra header content to be added by interface, site and collection. -->
113 <xsl:template name="additionalHeaderContent">
114 <xsl:call-template name="additionalHeaderContent-interface"/>
115 <xsl:call-template name="additionalHeaderContent-site"/>
116 <xsl:call-template name="additionalHeaderContent-collection"/>
117 </xsl:template>
118 <!-- This template should be overridden in header.xsl of a new interface file if you want to add extra header content -->
119 <xsl:template name="additionalHeaderContent-interface">
120 </xsl:template>
121 <!-- This template should be overridden in the header.xsl file in a site's transform directory if you want to add site specific headers -->
122 <xsl:template name="additionalHeaderContent-site">
123 </xsl:template>
124 <!-- This template should be overridden in the collectionConfig.xml file if you want to add extra header content -->
125 <xsl:template name="additionalHeaderContent-collection">
126 </xsl:template>
127
128 <xsl:template name="init-direct-edit">
129 <!-- might be worth moving loading the JS file to earlier, to give time to load -->
130 <script type="text/javascript" src="interfaces/{$interface_name}/js/direct-edit.js"><xsl:text> </xsl:text></script>
131 <script type="text/javascript">
132 <xsl:text disable-output-escaping="yes">
133 $(document).ready(function() {
134 de.onready(function()
135 {
136 try
137 {
138 de.init();
139 }
140 catch (err)
141 {
142 alert("Seaweed failed to initialise: " + err.message);
143 }
144 });
145 });
146 </xsl:text>
147 </script>
148 </xsl:template>
149
150
151 <!-- ***** HEADER LAYOUT TEMPLATE ***** -->
152 <xsl:template name="create-banner">
153 <div id="gs_banner" class="ui-widget-header ui-corner-bottom">
154 <div id="titlesearchcontainer">
155 <xsl:call-template name="page-title-area"/>
156 <xsl:call-template name="quick-search-area"/>
157 <div style="clear:both;"><xsl:text> </xsl:text></div>
158 </div>
159 <xsl:call-template name="browsing-tabs"/>
160 </div>
161 </xsl:template>
162
163 <xsl:template name="additionalNavTabs">
164 <xsl:for-each select="/page/pageResponse/collection[@name=$collNameChecked]/extraInfo/navigationTab">
165 <li>
166 <xsl:choose>
167 <!-- if we are in frame type and this is the current page, colour it differently-->
168 <xsl:when test="@type='frame' and /page/pageRequest[@subaction='html'] and /page/pageRequest/paramList/param[@name='url']/@value = @url">
169 <xsl:attribute name='class'>ui-state-default ui-corner-top ui-tabs-selected ui-state-active</xsl:attribute>
170 </xsl:when>
171 <xsl:otherwise>
172 <xsl:attribute name="class">ui-state-default ui-corner-top</xsl:attribute>
173 </xsl:otherwise>
174 </xsl:choose>
175 <a>
176 <xsl:if test="displayItem[@name='description']">
177 <xsl:attribute name='title'><xsl:value-of select="displayItem[@name='description']"/></xsl:attribute>
178 </xsl:if>
179 <xsl:choose>
180 <xsl:when test="@type='external-link'">
181 <xsl:attribute name="href"><xsl:value-of select="@url"/></xsl:attribute>
182 </xsl:when>
183 <xsl:when test="@type='frame'">
184 <xsl:attribute name="href"><xsl:value-of select="$library_name"/>/collection/<xsl:value-of select="/page/pageResponse/collection[@name=$collNameChecked]/@name"/>/page/html?url=<xsl:value-of select="@url"/></xsl:attribute>
185 </xsl:when>
186 </xsl:choose>
187 <xsl:choose>
188 <xsl:when test="displayItem[@name='name']">
189 <xsl:value-of select="displayItem[@name='name']"/>
190 </xsl:when>
191 <xsl:otherwise>link</xsl:otherwise>
192 </xsl:choose>
193 </a>
194 </li>
195 </xsl:for-each>
196
197 </xsl:template>
198 <!-- ***** BROWSING TABS ***** -->
199 <xsl:template name="browsing-tabs">
200 <xsl:if test="/page/pageResponse/collection[@name=$collNameChecked]/serviceList/service or /page/pageResponse/collection[@name=$collNameChecked]/extraInfo/navigationTab">
201 <ul id="gs-nav">
202 <!-- if this collection has additional tabs, add them here -->
203 <xsl:call-template name="additionalNavTabs"/>
204 <!-- If this collection has a ClassifierBrowse service then add a tab for each classifier-->
205 <xsl:if test="/page/pageResponse/collection[@name=$collNameChecked]/serviceList/service[@type='browse' and @name='ClassifierBrowse']">
206 <!-- Loop through each classifier -->
207 <xsl:for-each select="/page/pageResponse/collection[@name=$collNameChecked]/serviceList/service[@name='ClassifierBrowse']/classifierList/classifier">
208 <li>
209 <xsl:choose>
210 <!-- If this tab is selected then colour it differently -->
211 <xsl:when test="util:contains(/page/pageRequest/paramList/param[@name = 'cl' and /page/pageRequest/@action = 'b']/@value, @name)">
212 <xsl:attribute name='class'>ui-state-default ui-corner-top ui-tabs-selected ui-state-active</xsl:attribute>
213 </xsl:when>
214 <xsl:otherwise>
215 <xsl:attribute name='class'>ui-state-default ui-corner-top</xsl:attribute>
216 </xsl:otherwise>
217 </xsl:choose>
218
219 <a>
220 <!-- Add a title element to the <a> tag if a description exists for this classifier -->
221 <xsl:if test="displayItem[@name='description']">
222 <xsl:attribute name='title'><xsl:value-of select="displayItem[@name='description']"/></xsl:attribute>
223 </xsl:if>
224
225 <!-- Add the href element to the <a> tag -->
226 <xsl:choose>
227 <xsl:when test="@name">
228 <xsl:attribute name="href"><xsl:value-of select="$library_name"/>/collection/<xsl:value-of select="/page/pageResponse/collection[@name=$collNameChecked]/@name"/>/browse/<xsl:value-of select="@name"/></xsl:attribute>
229 </xsl:when>
230 <xsl:otherwise>
231 <xsl:attribute name="href"><xsl:value-of select="$library_name"/>/collection/<xsl:value-of select="/page/pageResponse/collection[@name=$collNameChecked]/@name"/>/browse/1</xsl:attribute>
232 </xsl:otherwise>
233 </xsl:choose>
234
235 <!-- Add the actual text of the <a> tag -->
236 <xsl:value-of select="displayItem[@name='name']"/>
237 </a>
238 </li>
239 </xsl:for-each>
240 </xsl:if>
241
242 <!-- PhindApplet. Need something similar for the Collage applet too, probably -->
243 <xsl:for-each select="/page/pageResponse/collection[@name=$collNameChecked]/serviceList/service[@name='PhindApplet']">
244 <li>
245 <xsl:choose>
246 <!-- If this tab is selected then colour it differently -->
247 <xsl:when test="/page/pageRequest[@action='a']">
248 <xsl:attribute name='class'>ui-state-default ui-corner-top ui-tabs-selected ui-state-active</xsl:attribute>
249 </xsl:when>
250 <xsl:otherwise>
251 <xsl:attribute name='class'>ui-state-default ui-corner-top</xsl:attribute>
252 </xsl:otherwise>
253 </xsl:choose>
254
255 <a>
256 <xsl:if test="displayItem[@name='description']">
257 <xsl:attribute name="title">
258 <xsl:value-of select="displayItem[@name='description']"/>
259 </xsl:attribute>
260 </xsl:if>
261 <xsl:attribute name="href"><xsl:value-of select="$library_name"/>?a=a&amp;rt=d&amp;s=<xsl:value-of select="@name"/>&amp;c=<xsl:value-of select="/page/pageResponse/collection/@name"/></xsl:attribute>
262 <xsl:value-of select="displayItem[@name='name']"/>
263 </a>
264 </li>
265 </xsl:for-each>
266
267 <!-- all other services -->
268 <xsl:for-each select="/page/pageResponse/collection[@name=$collNameChecked]/serviceList/service[not(@type='query') and not(@type='browse') and not (@name='PhindApplet')]">
269 <xsl:call-template name="navigationTab"/>
270 </xsl:for-each>
271 </ul>
272 <div style="clear:both;"><xsl:text> </xsl:text></div>
273 </xsl:if>
274 </xsl:template>
275
276 <!-- ***** HOME HELP PREFERENCES LOGIN ***** -->
277 <xsl:template name="home-help-preferences">
278 <ul id="bannerLinks">
279 <li><xsl:call-template name="RSSLink"/></li>
280 <li><xsl:call-template name="PrefsLink"/></li>
281 <li><xsl:call-template name="HelpLink"/></li>
282 <li id="userMenuButton"><xsl:call-template name="LoginoutLink"/></li>
283 <li><xsl:call-template name="DebugLink"/></li>
284 <xsl:call-template name="buttonStyling"/>
285 </ul>
286 </xsl:template>
287
288 <xsl:template name="RSSLink">
289 <!-- RSS feed link can appear in a global format statement (where it has no type attribute)
290 or in section specific format statements, such as browse, search, display.
291 If it's present in any format statement, display the RSS link in the bannerlinks section. -->
292 <xsl:if test="/page/pageResponse/format[@type='display' or @type='browse' or @type='search' or not(@type)]/gsf:option[@name='RSS']/@value = 'true'">
293 <gsf:link type="rss"><gsf:icon file="rssicon.png"/></gsf:link>
294 </xsl:if>
295 </xsl:template>
296
297 <xsl:template name="PrefsLink">
298 <a href="{$library_name}/collection/{$collNameChecked}/page/pref">
299 <xsl:attribute name="title"><xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'pref_tip')"/></xsl:attribute>
300 <span id="preferencesButton"><xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'pref_b')"/></span>
301 <script type="text/javascript">
302 <xsl:text disable-output-escaping="yes">
303 //$("#preferencesButton").button({icons:{primary:"ui-icon-wrench"}});
304 //$("#preferencesButton .ui-button-text").css({"padding-top":"0px", "padding-bottom":"3px"});
305 </xsl:text>
306 </script>
307 </a>
308 </xsl:template>
309
310 <xsl:template name="HelpLink">
311 <a href="{$library_name}/collection/{$collNameChecked}/page/help">
312 <xsl:attribute name="title"><xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'help_tip')"/></xsl:attribute>
313 <span id="helpButton"><xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'help_b')"/></span>
314 <script type="text/javascript">
315 <xsl:text disable-output-escaping="yes">
316 //$("#helpButton").button({icons:{primary:"ui-icon-help"}});
317 //$("#helpButton .ui-button-text").css({"padding-top":"0px", "padding-bottom":"3px"});
318 </xsl:text>
319 </script>
320 </a>
321 </xsl:template>
322
323 <xsl:template name="toggleUserMenuScript">
324 <script type="text/javascript">
325 <xsl:text disable-output-escaping="yes">
326 function toggleUserMenu()
327 {
328 var button = $("#userMenuButton");
329 var menu;
330
331 if(button.data("userMenu"))
332 {
333 menu = button.data("userMenu");
334 if(menu.css("display") == "block")
335 {
336 menu.hide();
337 }
338 else
339 {
340 menu.show();
341 }
342 }
343 else
344 {
345 menu = $("&lt;UL&gt;")
346 .css("position", "absolute")
347 .css("display", "block")
348 .css("z-index", "100")
349 .css("list-style", "none outside none")
350 .css("margin", "0px")
351 .css("padding", "0px")
352 .css("font-size", "90%");
353
354 menu.attr("id", "userMenu");
355
356 button.data("userMenu", menu);
357
358 var settingsLink = $("&lt;a&gt;")
359 .attr("href", gs.xsltParams.library_name + "/admin/AccountSettings?s1.username=</xsl:text><xsl:value-of select="/page/pageRequest/userInformation/@username"/><xsl:text disable-output-escaping="yes">");
360 var settingsButton = $("&lt;LI&gt;")
361 .css("padding", "3px")
362 .html("</xsl:text><xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'menu.account_settings')"/><xsl:text disable-output-escaping="yes">")
363 .addClass("ui-state-default");
364 settingsLink.append(settingsButton);
365
366 var editingLink = $("&lt;a&gt;")
367 .attr("href", "javascript:;");
368 var editingButton = $("&lt;LI&gt;")
369 .css("padding", "3px")
370 .html((gs.userInformation.editEnabled == "true") ? "</xsl:text><xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'menu.disable_edit_mode')"/><xsl:text disable-output-escaping="yes">" : "</xsl:text><xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'menu.enable_edit_mode')"/><xsl:text disable-output-escaping="yes">")
371 .addClass("ui-state-default")
372 .click(function()
373 {
374 var url = gs.xsltParams.library_name + "?a=g&amp;rt=ro&amp;s=ChangeUserEditMode&amp;s1.username=" + gs.userInformation.username + "&amp;s1.enabled=" + ((gs.userInformation.editEnabled == "true") ? "false" : "true");
375 $.ajax(url)
376 .success(function(response)
377 {
378 location.reload();
379 });
380 });
381 editingLink.append(editingButton);
382
383 var url = document.URL;
384 var hasQueryString = (url.indexOf("?") != -1);
385 var hashIndex = url.indexOf("#");
386
387 var hashPart;
388 if(hashIndex != -1)
389 {
390 hashPart = url.substring(hashIndex);
391 url = url.substring(0, hashIndex);
392 }
393
394 var logoutLink = $("&lt;a&gt;")
395 .attr("href", url + (hasQueryString ? "&amp;" : "?") + "logout=" + (hashPart ? hashPart : ""));
396 var logoutButton = $("&lt;LI&gt;")
397 .css("padding", "3px")
398 .html("</xsl:text><xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'menu.logout')"/><xsl:text disable-output-escaping="yes">")
399 .addClass("ui-state-default");
400 logoutLink.append(logoutButton);
401
402 menu.append(settingsLink);
403 menu.append(editingLink);
404 menu.append(logoutLink);
405
406 var buttonLeft = button.offset().left;
407 var buttonTop = button.offset().top;
408
409 var buttonHeight = button.height();
410
411 menu.offset({top: buttonTop + buttonHeight + 4, left: buttonLeft});
412 $("#topArea").append(menu);
413 }
414 }
415 </xsl:text>
416 </script>
417
418 </xsl:template>
419 <xsl:template name="generateLoginURL">
420 <xsl:value-of select="$library_name"/>
421 <xsl:text>?a=p&amp;sa=login&amp;redirectURL=</xsl:text>
422 <xsl:value-of select="$library_name"/>
423 <xsl:text>%3F</xsl:text>
424 <xsl:if test="/page/pageRequest/@action">
425 <xsl:text>a=</xsl:text>
426 <xsl:value-of select="/page/pageRequest/@action"/>
427 </xsl:if>
428 <xsl:if test="/page/pageRequest/@subaction">
429 <xsl:text>%26sa=</xsl:text>
430 <xsl:value-of select="/page/pageRequest/@subaction"/>
431 </xsl:if>
432 <xsl:for-each select="/page/pageRequest/paramList/param">
433 <xsl:if test="@name != 'password' and @name != 's1.password' and @name != 's1.newPassword' and @name != 's1.oldPassword'">
434 <xsl:text>%26</xsl:text>
435 <xsl:value-of select="@name"/>
436 <xsl:text>=</xsl:text>
437 <xsl:value-of select="@value"/>
438 </xsl:if>
439 </xsl:for-each>
440
441 </xsl:template>
442
443 <xsl:template name="LoginoutLink">
444 <!-- login/logout -->
445 <xsl:choose>
446 <xsl:when test="/page/pageRequest/userInformation/@username">
447 <a>
448 <xsl:attribute name="href">javascript:toggleUserMenu();</xsl:attribute>
449 <xsl:call-template name="toggleUserMenuScript"/>
450 <span id="loginButton"><xsl:value-of select="/page/pageRequest/userInformation/@username"/></span>
451 <script type="text/javascript">
452 <xsl:text disable-output-escaping="yes">
453 //$("#loginButton").button({icons:{primary:"ui-icon-unlocked"}});
454 //$("#loginButton .ui-button-text").css({"padding-top":"0px", "padding-bottom":"3px"});
455 </xsl:text>
456 </script>
457 </a>
458 </xsl:when>
459 <xsl:otherwise>
460 <a>
461 <xsl:attribute name="href"><xsl:call-template name="generateLoginURL"/>
462 </xsl:attribute>
463 <xsl:attribute name="title"><xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'login_tip')"/></xsl:attribute>
464 <span id="loginButton"><xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'login_b')"/></span>
465 <script type="text/javascript">
466 <xsl:text disable-output-escaping="yes">
467 //$("#loginButton").button({icons:{primary:"ui-icon-locked"}});
468 //$("#loginButton .ui-button-text").css({"padding-top":"0px", "padding-bottom":"3px"});
469 </xsl:text>
470 </script>
471 </a>
472 </xsl:otherwise>
473 </xsl:choose>
474 </xsl:template>
475
476 <xsl:template name="DebugLink">
477 <!-- debuginfo (doesn't use class="ui-state-error" since the text is not legible due to inherited text-colour) -->
478 <xsl:if test="/page/pageRequest/paramList/param[(@name='debug') and (@value='on' or @value='true' or @value='1' or @value='yes')]">
479 <a href="{$library_name}/collection/{$collNameChecked}/page/debug">
480 <xsl:attribute name="title"><xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'debuginfo_tip')"/></xsl:attribute>
481 <span id="debugButton"><xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'debuginfo_b')"/></span>
482 <script type="text/javascript">
483 <xsl:text disable-output-escaping="yes">
484 //$("#debugButton").button({icons:{primary:"ui-icon-info"}});
485 //$("#debugButton .ui-button-text").css({"padding-top":"0px", "padding-bottom":"3px"});
486 </xsl:text>
487 </script>
488 </a>
489 </xsl:if>
490 </xsl:template>
491
492 <xsl:template name="buttonStyling">
493 <script type="text/javascript">
494 <xsl:text disable-output-escaping="yes">
495 $("#preferencesButton").button({icons:{primary:"ui-icon-wrench"}});
496 $("#preferencesButton .ui-button-text").css({"padding-top":"0px", "padding-bottom":"3px"});
497 $("#helpButton").button({icons:{primary:"ui-icon-help"}});
498 $("#helpButton .ui-button-text").css({"padding-top":"0px", "padding-bottom":"3px"});
499 $("#debugButton").button({icons:{primary:"ui-icon-info"}});
500 $("#debugButton .ui-button-text").css({"padding-top":"0px", "padding-bottom":"3px"});
501 </xsl:text>
502 <xsl:choose>
503 <xsl:when test="/page/pageRequest/userInformation/@username">
504 <xsl:text disable-output-escaping="yes">$("#loginButton").button({icons:{primary:"ui-icon-unlocked"}});</xsl:text>
505 </xsl:when>
506 <xsl:otherwise>
507 <xsl:text disable-output-escaping="yes">$("#loginButton").button({icons:{primary:"ui-icon-locked"}});</xsl:text>
508 </xsl:otherwise>
509 </xsl:choose>
510 <xsl:text disable-output-escaping="yes">
511 $("#loginButton .ui-button-text").css({"padding-top":"0px", "padding-bottom":"3px"});
512 </xsl:text>
513 </script>
514
515 </xsl:template>
516 <!-- ***** PAGE TITLE ***** -->
517 <xsl:template name="page-title-area">
518 <xsl:variable name="pageTitleVar"><xsl:call-template name="pageTitle"/></xsl:variable>
519 <div id="titlearea">
520 <h2>
521 <!-- Resize the title based on how long it is (There's probably a better way to do this) -->
522 <xsl:attribute name="style">
523 <xsl:choose>
524 <xsl:when test="string-length($pageTitleVar) &lt; 20">
525 <xsl:text>font-size: 1.5em;</xsl:text>
526 </xsl:when>
527 <xsl:when test="string-length($pageTitleVar) &lt; 30">
528 <xsl:text>font-size: 1.4em;</xsl:text>
529 </xsl:when>
530 <xsl:when test="string-length($pageTitleVar) &lt; 40">
531 <xsl:text>font-size: 1.3em;</xsl:text>
532 </xsl:when>
533 <xsl:when test="string-length($pageTitleVar) &lt; 50">
534 <xsl:text>font-size: 1.2em;</xsl:text>
535 </xsl:when>
536 <xsl:when test="string-length($pageTitleVar) &lt; 60">
537 <xsl:text>font-size: 1.1em;</xsl:text>
538 </xsl:when>
539 <xsl:when test="string-length($pageTitleVar) &lt; 70">
540 <xsl:text>font-size: 1em;</xsl:text>
541 </xsl:when>
542 <xsl:when test="string-length($pageTitleVar) &lt; 80">
543 <xsl:text>font-size: 0.9em;</xsl:text>
544 </xsl:when>
545 <xsl:when test="string-length($pageTitleVar) &lt; 90">
546 <xsl:text>font-size: 0.8em;</xsl:text>
547 </xsl:when>
548 <xsl:otherwise>
549 <xsl:text>font-size: 0.7em;</xsl:text>
550 </xsl:otherwise>
551 </xsl:choose>
552 </xsl:attribute>
553 <!--<xsl:value-of select="string-length($pageTitleVar)" />-->
554 <xsl:value-of select="$pageTitleVar" />
555 </h2><xsl:text> </xsl:text>
556 </div>
557 </xsl:template>
558
559 <!-- ***** QUICK SEARCH AREA ***** -->
560 <!-- Search form should only appear if there's a search (query) service AND it has an index.
561 By default, all collections end up with some query service (default is MGPP) even when they have
562 no search indexes, which is why the extra test for the presence of an index/fq-something is necessary. -->
563 <xsl:template name="quick-search-area">
564 <xsl:if test="/page/pageResponse/collection[@name=$collNameChecked]/serviceList/service[@type='query']">
565 <xsl:variable name="subaction" select="/page/pageRequest/@subaction"/>
566 <div id="quicksearcharea">
567 <xsl:if test="/page/pageResponse/collection[@name=$collNameChecked]/serviceList/service[@name='TextQuery']">
568 <xsl:choose>
569 <xsl:when test="not(page/pageRequest[@action='q']) or /page/pageRequest/paramList/param[@name='qs']/@value = '1'">
570 <form action="{$library_name}/collection/{$collNameChecked}/search/TextQuery">
571 <!-- This parameter says that we have come from the quick search area -->
572 <input type="hidden" name="qs" value="1"/>
573 <input type="hidden" name="rt" value="rd"/>
574 <input type="hidden" name="s1.level">
575 <xsl:attribute name="value">
576 <xsl:value-of select="/page/pageResponse/collection/serviceList/service[@name='TextQuery']/paramList/param[@name = 'level']/@default"/>
577 </xsl:attribute>
578 </input>
579 <xsl:choose>
580 <xsl:when test="/page/pageResponse/service[@name = 'TextQuery']/paramList/param[@name = 'startPage']">
581 <input type="hidden" name="s1.startPage" value="1"/>
582 </xsl:when>
583 <xsl:otherwise>
584 <input type="hidden" name="startPage" value="1"/>
585 </xsl:otherwise>
586 </xsl:choose>
587
588 <!-- The query text box -->
589 <span class="querybox">
590 <xsl:variable name="qs">
591 <xsl:apply-templates select="/page/pageResponse/collection[@name=$collNameChecked]/serviceList/service[@name='TextQuery']/paramList/param[@name='query']" mode="calculate-default"/>
592 </xsl:variable>
593 <nobr>
594 <xsl:apply-templates select="/page/pageResponse/collection[@name=$collNameChecked]/serviceList/service[@name='TextQuery']/paramList/param[@name='query']">
595<!--
596 <xsl:with-param name="default" select="java:org.greenstone.gsdl3.util.XSLTUtil.tidyWhitespace($qs, /page/@lang)"/>
597 -->
598 <xsl:with-param name="default" select="normalize-space($qs)"/>
599
600 </xsl:apply-templates>
601 </nobr>
602 </span>
603 <!-- The index selection list -->
604 <xsl:if test="/page/pageResponse/collection[@name=$collNameChecked]/serviceList/service[@name='TextQuery']/paramList/param[@name='index']/@type = 'enum_single'">
605 <span class="textselect">
606 <xsl:apply-templates select="/page/pageResponse/collection[@name=$collNameChecked]/serviceList/service[@name='TextQuery']/paramList/param[@name='index']">
607 <xsl:with-param name="default">
608 <xsl:apply-templates select="/page/pageResponse/collection[@name=$collNameChecked]/serviceList/service[@name='TextQuery']/paramList/param[@name='index']" mode="calculate-default"/>
609 </xsl:with-param>
610 <xsl:with-param name="hideSingle">false</xsl:with-param>
611 <xsl:with-param name="quickSearch">true</xsl:with-param>
612 </xsl:apply-templates>
613 </span>
614 </xsl:if>
615 <!-- The partition selection list -->
616 <xsl:if test="/page/pageResponse/collection[@name=$collNameChecked]/serviceList/service[@name='TextQuery']/paramList/param[@name='indexSubcollection']/@type = 'enum_single'">
617 <span class="textselect">
618 <xsl:apply-templates select="/page/pageResponse/collection[@name=$collNameChecked]/serviceList/service[@name='TextQuery']/paramList/param[@name='indexSubcollection']">
619 <xsl:with-param name="default">
620 <xsl:apply-templates select="/page/pageResponse/collection[@name=$collNameChecked]/serviceList/service[@name='TextQuery']/paramList/param[@name='indexSubcollection']" mode="calculate-default"/>
621 </xsl:with-param>
622 <xsl:with-param name="hideSingle">true</xsl:with-param>
623 <xsl:with-param name="quickSearch">true</xsl:with-param>
624 </xsl:apply-templates>
625 </span>
626 </xsl:if>
627 <!-- The language selection list -->
628 <xsl:if test="/page/pageResponse/collection[@name=$collNameChecked]/serviceList/service[@name='TextQuery']/paramList/param[@name='indexLanguage']/@type = 'enum_single'">
629 <span class="textselect">
630 <xsl:apply-templates select="/page/pageResponse/collection[@name=$collNameChecked]/serviceList/service[@name='TextQuery']/paramList/param[@name='indexLanguage']">
631 <xsl:with-param name="default">
632 <xsl:apply-templates select="/page/pageResponse/collection[@name=$collNameChecked]/serviceList/service[@name='TextQuery']/paramList/param[@name='indexLanguage']" mode="calculate-default"/>
633 </xsl:with-param>
634 <xsl:with-param name="hideSingle">true</xsl:with-param>
635 <xsl:with-param name="quickSearch">true</xsl:with-param>
636 </xsl:apply-templates>
637 </span>
638 </xsl:if>
639 <!-- The submit button (for TextQuery) -->
640 <xsl:if test="/page/pageResponse/collection[@name=$collNameChecked]/serviceList/service[@name='TextQuery']">
641 <input type="submit" id="quickSearchSubmitButton">
642 <xsl:attribute name="value">
643 <xsl:value-of select="/page/pageResponse/collection[@name=$collNameChecked]/serviceList/service[@name='TextQuery']/displayItem[@name='submit']"/>
644 </xsl:attribute>
645 </input>
646 <br/>
647 </xsl:if>
648 </form>
649 </xsl:when>
650 <xsl:otherwise><br/></xsl:otherwise>
651 </xsl:choose>
652 </xsl:if>
653 <!-- The list of other search types -->
654 <ul>
655 <xsl:for-each select="/page/pageResponse/collection[@name=$collNameChecked]/serviceList/service[@type='query']">
656 <li>
657 <xsl:choose>
658 <xsl:when test="@name = /page/pageRequest/paramList/param[@name='s']/@value and not(/page/pageRequest/paramList/param[@name='qs']/@value = 1)">
659 <xsl:attribute name="class">ui-state-default ui-corner-all ui-state-active</xsl:attribute>
660 </xsl:when>
661 <xsl:otherwise>
662 <xsl:attribute name="class">ui-state-default ui-corner-all</xsl:attribute>
663 </xsl:otherwise>
664 </xsl:choose>
665 <a>
666 <xsl:attribute name="href">
667 <xsl:value-of select="$library_name"/>/collection/<xsl:value-of select="$collNameChecked"/>/search/<xsl:value-of select="@name"/>
668 </xsl:attribute>
669 <xsl:value-of select="displayItem[@name='name']"/>
670 </a>
671 </li>
672 </xsl:for-each>
673 </ul>
674 </div>
675 </xsl:if>
676 </xsl:template>
677
678 <xsl:template name="map-scripts">
679 <meta content="initial-scale=1.0, user-scalable=no" name="viewport"/>
680 <script src="http://maps.googleapis.com/maps/api/js?key=AIzaSyCofVTps3xHfMvIcTMHqYMMxe3xXfkAxnI" type="text/javascript"><xsl:text> </xsl:text></script>
681 <script src="interfaces/{$interface_name}/js/map-scripts.js" type="text/javascript"><xsl:text> </xsl:text></script>
682 <script type="text/javascript">$(window).load(initializeMapScripts);</script>
683 </xsl:template>
684
685 <xsl:template name="openlayers-map-scripts">
686 <script src="interfaces/{interface_name}/js/OpenLayers.js" type="text/javascript"><xsl:text> </xsl:text></script>
687 </xsl:template>
688
689 <xsl:template name="panoramaViewer-scripts">
690 <script src="interfaces/{$interface_name}/js/three45.min.js" type="text/javascript"><xsl:text> </xsl:text></script>
691 <script src="interfaces/{$interface_name}/js/Tween.js" type="text/javascript"><xsl:text> </xsl:text></script>
692 <script src="interfaces/{$interface_name}/js/Detector.js" type="text/javascript"><xsl:text> </xsl:text></script>
693 <script src="interfaces/{$interface_name}/js/RequestAnimationFrame.js" type="text/javascript"><xsl:text> </xsl:text></script>
694 <script src="interfaces/{$interface_name}/js/panoramaMarker.js" type="text/javascript"><xsl:text> </xsl:text></script>
695 <script src="interfaces/{$interface_name}/js/panoramaViewer.js" type="text/javascript"><xsl:text> </xsl:text></script>
696 <script type="text/javascript">$(window).load(initPanoramaViewer);$(window).load(_animate);</script>
697 </xsl:template>
698
699 <xsl:template name="choose-title">
700 <gsf:choose-metadata>
701 <gsf:metadata name="dc.Title"/>
702 <gsf:metadata name="exp.Title"/>
703 <gsf:metadata name="ex.dc.Title"/>
704 <gsf:metadata name="Title"/>
705 <gsf:default>Untitled</gsf:default>
706 </gsf:choose-metadata>
707 </xsl:template>
708</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.