source: main/trunk/ibisph-view/src/main/webapp/xslt/html/secure/query/module/builder/SiteSpecific.xslt @ 20582

Last change on this file since 20582 was 20582, checked in by GarthBraithwaite_STG, 3 years ago

view - implemented community and ip base paths to make adding dataportal easier.

File size: 1.4 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2
3<xsl:stylesheet version="3.0" 
4        xmlns:xsl ="http://www.w3.org/1999/XSL/Transform" 
5        xmlns:ibis="http://www.ibisph.org"
6
7        exclude-result-prefixes="ibis"
8>
9        <xsl:import href="../SiteSpecific.xslt"/>
10
11        <ibis:doc>
12                <name>html/secure/query/module/builder/SiteSpecific</name>
13                <summary>Provides 'secure/query/module' site specific template overrides</summary>
14                <description>
15                        Provides an overridden 'siteSpecific.siteNavigationMenu' API template
16                        call, prefs popup, script init, etc.
17                </description>
18        </ibis:doc>
19
20        <xsl:param name="Page.queryDefinitionFromBuilderPath" select="'secure/query/definition/from/builder'"/>
21
22        <xsl:param name="Page.submitFormURL" 
23                select="concat($ibis.baseRequestPath, 'secure/query/submit/', /QUERY_MODULE/REQUEST/CONFIGURATION_PATH, '.html')"
24                ibis:doc="Mechanism implemented so secure query can have a different result page."
25        />
26
27        <xsl:param name="SiteSpecific.navigationPathSelections">
28                <SELECTION>
29                        <TITLE>Secure</TITLE>
30                        <LOCAL_URL>secure</LOCAL_URL>
31                </SELECTION>
32                <SELECTION>
33                        <TITLE>Index</TITLE>
34                        <LOCAL_URL>secure/selection/Index.html</LOCAL_URL>
35                </SELECTION>
36                <SELECTION>
37                        <TITLE>Selection</TITLE>
38                        <LOCAL_URL>/QUERY_MODULE/QUERY_CONFIGURATION_SELECTION/LOCAL_URL</LOCAL_URL>
39                </SELECTION>
40        </xsl:param>
41
42</xsl:stylesheet>
43<!-- ============================= End of File ============================= -->
44
Note: See TracBrowser for help on using the repository browser.