source: main/trunk/model-interfaces-dev/atea/transform/layouts/main.xsl@ 35753

Last change on this file since 35753 was 34476, checked in by davidb, 4 years ago

Added in state-keeping trick to operate in tandem with DL pages being displayed as an iframe from with WordPress install; function called is in page-core.php

File size: 847 bytes
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
5 xmlns:java="http://xml.apache.org/xslt/java"
6 xmlns:util="xalan://org.greenstone.gsdl3.util.XSLTUtil"
7 xmlns:gslib="http://www.greenstone.org/skinning"
8 xmlns:gsf="http://www.greenstone.org/greenstone3/schema/ConfigFormat"
9
10 xmlns:lxslt="http://xml.apache.org/xslt"
11 xmlns:result="http://www.example.com/results"
12 xmlns:exsl="http://exslt.org/common"
13
14 extension-element-prefixes="java util result exsl"
15 exclude-result-prefixes="util java util gsf gslib">
16
17 <xsl:template name="gs_footer">
18 <gsf:script>
19 if ((window.parent) &amp;&amp; (window.parent.DLCoreKeepState)) {
20 window.parent.DLCoreKeepState(window.location.pathname);
21 }
22 </gsf:script>
23 </xsl:template>
24
25</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.