Changeset 19882 in main for trunk/ibisph-view/src/main/webapp/xslt/html/indicator/profile/summary/Page.xslt
- Timestamp:
- 02/21/20 09:22:12 (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ibisph-view/src/main/webapp/xslt/html/indicator/profile/summary/Page.xslt
r19879 r19882 11 11 <xsl:import href="../../../../json/Kendo.xslt"/> 12 12 <xsl:import href="../../../../json/LeafletMap.xslt"/> 13 <xsl:import href="../../../ Graphic.xslt"/>13 <xsl:import href="../../../DataViz.xslt"/> 14 14 <xsl:import href="../Indicator.xslt"/> 15 15 <xsl:import href="../Page.xslt"/> … … 46 46 <!-- loop for all views --> 47 47 <xsl:if test="exists($indicator/INDICATOR_VIEWS/INDICATOR_VIEW/NAME)"> 48 <xsl:call-template name=" Graphic.choroplethMapJavaScript"/>48 <xsl:call-template name="DataViz.choroplethMapJavaScript"/> 49 49 50 50 <xsl:variable name="comparisonDimensionName" select="'GeoState'"/> … … 56 56 <xsl:message select="concat('view name: ', $indicatorView/NAME, ', position: ', position(), ', count: ', count($indicator/INDICATOR_VIEWS/INDICATOR_VIEW))"/> 57 57 <xsl:variable name="showMap" ibis:doc="Exposed so that SS can access." 58 select="ibis: Graphic.showMap(58 select="ibis:DataViz.showMap( 59 59 $indicatorView/MAP_NAME, 60 60 $indicatorView/DIMENSION_USAGES/DIMENSION_USAGE[USAGE='category']/NAME, … … 63 63 )" 64 64 /> 65 <xsl:variable name="showChart" select="ibis: Graphic.showChart($indicatorView/CHART_NAME) and not($showMap)"/>65 <xsl:variable name="showChart" select="ibis:DataViz.showChart($indicatorView/CHART_NAME) and not($showMap)"/> 66 66 67 67 <xsl:variable name="recordDimensionFields"> … … 83 83 84 84 <xsl:if test="$showMap"> 85 <xsl:call-template name=" Graphic.mapContainer">85 <xsl:call-template name="DataViz.mapContainer"> 86 86 <xsl:with-param name="containerID" select="concat('map', position())"/> 87 87 <xsl:with-param name="title" select="ibis:getIndicatorViewMapTitle($indicator, $indicatorView, $Indicator.dimensions)"/> … … 90 90 </xsl:if> 91 91 <xsl:if test="$showChart"> 92 <xsl:call-template name=" Graphic.chartContainer">92 <xsl:call-template name="DataViz.chartContainer"> 93 93 <xsl:with-param name="containerID" select="concat('chart', position())"/> 94 94 <xsl:with-param name="footerContent" select="$indicatorView/CHART_NARRATIVE/text()"/> … … 114 114 <xsl:variable name="ancillaryValueNames" select="distinct-values($indicator/DATASETS/DATASET[NAME = $indicatorView/DATASET_NAMES/DATASET_NAME]/ANCILLARY_VALUE_USAGES/ANCILLARY_VALUE_USAGE/NAME)"/> 115 115 <xsl:variable name="measureValueFormatPattern" select="($Indicator.valueTypes/VALUE_TYPE[NAME = $measure/VALUE_TYPE_NAME]/XSLT_FORMAT_PATTERN)[1]"/> 116 <xsl:call-template name=" Graphic.leafletKendoScript">116 <xsl:call-template name="DataViz.leafletKendoScript"> 117 117 <xsl:with-param name="scriptContainerID" select="concat('script', position())"/> 118 118 <xsl:with-param name="dimensions" select="$Indicator.dimensions"/>
Note: See TracChangeset
for help on using the changeset viewer.