source: trunk/gsdl3/web/interfaces/classic/transform/help.xsl@ 8568

Last change on this file since 8568 was 8568, checked in by nzdl, 19 years ago

the title uses help_tip string rather than help string which is missing

  • Property svn:keywords set to Author Date Id Revision
File size: 1.2 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 xmlns:util="xalan://org.greenstone.gsdl3.util.XSLTUtil"
6 extension-element-prefixes="java util"
7 exclude-result-prefixes="java util">
8
9 <xsl:include href="style.xsl"/>
10 <!--<xsl:include href="help-text.xsl"/>-->
11 <xsl:include href="page-common.xsl"/>
12
13 <xsl:output method="html"/>
14
15 <xsl:template name="pageTitle">
16 <xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'help_tip')"/>
17 </xsl:template>
18
19 <!-- page specific style goes here -->
20 <xsl:template name="pageStyle"/>
21
22
23 <xsl:template match="pageResponse">
24 <xsl:variable name="collName" select="/page/pageRequest/paramList/param[@name='c']/@value"/>
25 <center>
26 <xsl:call-template name="standardPageBanner">
27 <xsl:with-param name="collName" select="$collName"/>
28 <xsl:with-param name="pageType">help</xsl:with-param>
29 </xsl:call-template>
30 <xsl:call-template name="navigationBar">
31 <xsl:with-param name="collName" select="$collName"/>
32 </xsl:call-template>
33 <p />Help text to go here!!
34 </center>
35 </xsl:template>
36
37
38</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.