source: trunk/gsdl3/web/interfaces/nzdl/transform/help.xsl@ 4273

Last change on this file since 4273 was 4151, checked in by kjdon, 21 years ago

the beginnings of an nzdl interface

  • Property svn:keywords set to Author Date Id Revision
File size: 860 bytes
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
5 <xsl:include href="style.xsl"/>
6 <!--<xsl:include href="help_text.xsl"/>-->
7 <xsl:include href="page_common.xsl"/>
8
9 <xsl:output method="html"/>
10
11 <xsl:template name="pageHead">
12 <head>
13 <title>Help</title>
14 </head>
15 <xsl:call-template name="headScript"/>
16 </xsl:template>
17
18 <xsl:template match="pageResponse">
19 <xsl:variable name="collName" select="ancestor::page/pageRequest/paramList/param[@name='c']/@value"/>
20 <center>
21 <xsl:call-template name="collectionPageBanner">
22 <xsl:with-param name="collName" select="$collName"/>
23 <xsl:with-param name="pageType">help</xsl:with-param>
24 </xsl:call-template>
25 <p />Help text to go here!!
26 </center>
27 </xsl:template>
28
29
30</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.