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/query/result/SiteSpecific</name> |
---|
13 | <summary>Provides adopter 'query/result' site specific template overrides</summary> |
---|
14 | <description> |
---|
15 | Provides context menu nav items. |
---|
16 | </description> |
---|
17 | </ibis:doc> |
---|
18 | |
---|
19 | <!-- ~~~~~~~~~~~~~~~~~~~~~~~ PARAMS / VARIABLES ~~~~~~~~~~~~~~~~~~~~~~~~ --> |
---|
20 | |
---|
21 | <xsl:param name="SiteSpecific.navigationPathSelections"> |
---|
22 | <SELECTION> |
---|
23 | <TITLE>Data Sources</TITLE> |
---|
24 | <URL>/data-sources/</URL> |
---|
25 | </SELECTION> |
---|
26 | <SELECTION> |
---|
27 | <CONTENT>Build a Report</CONTENT> |
---|
28 | </SELECTION> |
---|
29 | <SELECTION> |
---|
30 | <TITLE>Measure Selection</TITLE> |
---|
31 | <LOCAL_URL><xsl:value-of select="/QUERY_MODULE/QUERY_CONFIGURATION_SELECTION/LOCAL_URL"/></LOCAL_URL> |
---|
32 | </SELECTION> |
---|
33 | <SELECTION> |
---|
34 | <CONTENT>Report</CONTENT> |
---|
35 | </SELECTION> |
---|
36 | </xsl:param> |
---|
37 | |
---|
38 | <xsl:param name="ApplyCriteria.overviewContent" |
---|
39 | ibis:doc="For some reason wrapping a call template with a param for another |
---|
40 | param with a [p] tag results in weird xml processing. Bug??? |
---|
41 | " |
---|
42 | > |
---|
43 | This option remembers your currently selected filtering criteria and display |
---|
44 | options and applies |
---|
45 | (<xsl:call-template name="Help.popup"> |
---|
46 | <xsl:with-param name="content" select="$ApplyCriteria.restrictionsHelpContent"/> |
---|
47 | </xsl:call-template> ) to all subsequent dataset query requests. |
---|
48 | |
---|
49 | This feature can help you save time and be consistent by automatically applying |
---|
50 | your defined selections to other queryable datasets you open. |
---|
51 | <div id="applyCriteriaOverviewDetailContent" style="margin-top: 1em"> |
---|
52 | <xsl:choose> |
---|
53 | <xsl:when test="$ApplyCriteria.isSet"> |
---|
54 | This feature is currently enabled. You can press the "Clear Apply Criteria" |
---|
55 | to turn this feature off. You can also press the "Set Apply Criteria" |
---|
56 | button capture your current selections to be used as your new criteria |
---|
57 | to be applied. |
---|
58 | </xsl:when> |
---|
59 | <xsl:otherwise> |
---|
60 | For example, you may always prefer to display a county map and a horizontal |
---|
61 | bar chart. You would make those initial selections, submit your selections, |
---|
62 | and then click to apply this criteria feature. From that point on, those |
---|
63 | selections will be automatically applied to all subsequent queryable datasets |
---|
64 | you open when applicable. |
---|
65 | </xsl:otherwise> |
---|
66 | </xsl:choose> |
---|
67 | </div> |
---|
68 | </xsl:param> |
---|
69 | |
---|
70 | <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ TEMPLATES ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> |
---|
71 | |
---|
72 | </xsl:stylesheet> |
---|
73 | <!-- ============================= End of File ============================= --> |
---|
74 | |
---|