1 | <?xml version="1.0" encoding="ISO-8859-1"?> |
---|
2 | |
---|
3 | <xsl:stylesheet version="2.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 | |
---|
12 | <ibis:doc> |
---|
13 | <name>html/query/SiteSpecific</name> |
---|
14 | <summary>Provides Utah 'query' core site specific template overrides</summary> |
---|
15 | <description> |
---|
16 | Provides a query specific '_site_specific' API template |
---|
17 | implmentation of 'siteSpecific.topMenu' and default |
---|
18 | query left nav menu. |
---|
19 | </description> |
---|
20 | |
---|
21 | <author>Garth Braithwaite</author> |
---|
22 | <company>Software Technology Group/Utah Department of Health</company> |
---|
23 | <versions> |
---|
24 | <version> |
---|
25 | <number>1.3</number> |
---|
26 | <date>Feb 18, 2008</date> |
---|
27 | <who>Garth</who> |
---|
28 | <description>Renamed to _site_specific and restructured to be last xslt imported.</description> |
---|
29 | </version> |
---|
30 | <version> |
---|
31 | <number>1.0</number> |
---|
32 | <date>Mar 10, 2006</date> |
---|
33 | <who>Garth</who> |
---|
34 | <description>initial release</description> |
---|
35 | </version> |
---|
36 | </versions> |
---|
37 | </ibis:doc> |
---|
38 | |
---|
39 | |
---|
40 | <xsl:variable name="SiteSpecific.selectedMenuSectionName" select="'queryMenu'" |
---|
41 | ibis:doc="Element ID of the 'Query' top tab navigation menu element. This allows |
---|
42 | the tab to have its class set to the 'On' value thus showing the sub section of the |
---|
43 | system that the user is in." |
---|
44 | /> |
---|
45 | |
---|
46 | |
---|
47 | <xsl:template name="SiteSpecific.navigationPath" |
---|
48 | ibis:doc="core query nav path template" |
---|
49 | > |
---|
50 | <a href="{$ibis.urlPrefix}">IBIS-PH</a> > |
---|
51 | <a href="{$ibis.urlPrefix}query">Dataset Queries</a> |
---|
52 | </xsl:template> |
---|
53 | </xsl:stylesheet> |
---|
54 | <!-- ============================= End of File ============================= --> |
---|