source: main/trunk/greenstone3/web/interfaces/default/transform/gli4gs3.xsl@ 23779

Last change on this file since 23779 was 23779, checked in by davidb, 13 years ago

Two new interfaces - 'default' now tries to use the client's XSLT capabilities of the web browser, falling back to the 'traditional' interface if this fails.

File size: 1.7 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:java="http://xml.apache.org/xslt/java"
5 extension-element-prefixes="java"
6 exclude-result-prefixes="java">
7
8 <!-- style includes global params interface_name, library_name -->
9 <xsl:include href="style.xsl"/>
10
11 <xsl:output method="html"/>
12
13 <!-- the main page layout template is here -->
14 <xsl:template match="page">
15 <html>
16 <head>
17 <title>
18 <!-- put a space in the title in case the actual value is missing - mozilla will not display a page with no title-->
19 <xsl:call-template name="pageTitle"/><xsl:text> </xsl:text>
20 </title>
21 <xsl:call-template name="globalStyle"/>
22 <xsl:call-template name="pageStyle"/>
23 </head>
24 <body>
25 <xsl:attribute name="dir"><xsl:call-template name="direction"/></xsl:attribute>
26 <div id="page-wrapper">
27 <xsl:call-template name="response" />
28 <xsl:call-template name="greenstoneFooter"/>
29 </div>
30 </body>
31 </html>
32 </xsl:template>
33
34 <xsl:template name="pageTitle">
35 <xsl:value-of select="pageResponse/service/applet"/>
36 </xsl:template>
37
38 <!-- page specific style goes here -->
39 <xsl:template name="pageStyle"/>
40
41 <xsl:template match="pageResponse">
42 <xsl:variable name="collName"><xsl:value-of select="../pageRequest/paramList/param[@name='c']/@value"/></xsl:variable>
43 <xsl:call-template name="standardPageBanner">
44 <xsl:with-param name="collName" select="$collName"/>
45 </xsl:call-template>
46
47 <xsl:call-template name="navigationBar">
48 <xsl:with-param name="collName" select="$collName"/>
49 </xsl:call-template>
50 <div >
51 <xsl:copy-of select="Applet"/>
52 </div>
53 </xsl:template>
54
55</xsl:stylesheet>
56
Note: See TracBrowser for help on using the repository browser.