source: main/branches/64_bit_Greenstone/greenstone3/web/interfaces/default/transform/system.xsl@ 24007

Last change on this file since 24007 was 24007, checked in by sjm84, 13 years ago

Updating this branch to match the latest Greenstone3 changes

  • Property svn:keywords set to Author Date Id Revision
File size: 1.3 KB
RevLine 
[4102]1<?xml version="1.0" encoding="ISO-8859-1"?>
2<xsl:stylesheet version="1.0"
[4712]3 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
4 xmlns:java="http://xml.apache.org/xslt/java"
5 extension-element-prefixes="java">
[4102]6
[17017]7 <!-- style includes global params interface_name, library_name -->
[4102]8 <xsl:include href="style.xsl"/>
9
[17017]10 <!-- the main page layout template is here -->
11 <xsl:template match="page">
[18316]12 <html>
13 <head>
14 <title>
15 <!-- put a space in the title in case the actual value is missing - mozilla will not display a page with no title-->
[24007]16 <xsl:text> </xsl:text>
[18316]17 </title>
18 <xsl:call-template name="globalStyle"/>
19 <xsl:call-template name="pageStyle"/>
20 </head>
21 <body>
[18388]22 <xsl:attribute name="dir"><xsl:call-template name="direction"/></xsl:attribute>
23 <div id="page-wrapper">
[18316]24 <xsl:call-template name="response" />
25 <xsl:call-template name="greenstoneFooter"/>
[24007]26 <xsl:call-template name="pageTitle"/>
[18316]27 </div>
28 </body>
29 </html>
[17017]30 </xsl:template>
31
[18316]32 <xsl:template name="pageTitle">
[24007]33 <span class="getTextFor null document.title.gsdl">&amp;nbsp;</span>
[4102]34 </xsl:template>
[18316]35
[8526]36 <!-- page specific style goes here -->
37 <xsl:template name="pageStyle"/>
[18316]38
[4102]39 <xsl:template match="pageResponse">
40 <xsl:value-of select="status"/>
41 </xsl:template>
42
43</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.