Changeset 19882 in main for trunk/ibisph-view/src/main/webapp/xslt/html/indicator/profile/complete_profile/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/complete_profile/Page.xslt
r19781 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"/> … … 53 53 54 54 <xsl:if test="exists($indicator/INDICATOR_VIEWS/INDICATOR_VIEW/NAME)"> 55 <xsl:call-template name=" Graphic.choroplethMapJavaScript"/>55 <xsl:call-template name="DataViz.choroplethMapJavaScript"/> 56 56 57 57 <xsl:variable name="comparisonDimensionName" select="'GeoState'"/> … … 63 63 64 64 <xsl:variable name="showMap" ibis:doc="Exposed so that SS can access." 65 select="ibis: Graphic.showMap(65 select="ibis:DataViz.showMap( 66 66 $indicatorView/MAP_NAME, 67 67 $indicatorView/DIMENSION_USAGES/DIMENSION_USAGE[USAGE='category']/NAME, … … 70 70 )" 71 71 /> 72 <xsl:variable name="showChart" select="ibis: Graphic.showChart($indicatorView/CHART_NAME)"/>72 <xsl:variable name="showChart" select="ibis:DataViz.showChart($indicatorView/CHART_NAME)"/> 73 73 74 74 <xsl:variable name="recordDimensionFields"> … … 90 90 91 91 <xsl:if test="$showMap"> 92 <xsl:call-template name=" Graphic.mapContainer">92 <xsl:call-template name="DataViz.mapContainer"> 93 93 <xsl:with-param name="containerID" select="concat('map', position())"/> 94 94 <xsl:with-param name="title" select="ibis:getIndicatorViewMapTitle($indicator, $indicatorView, $Indicator.dimensions)"/> … … 98 98 99 99 <xsl:if test="$showChart"> 100 <xsl:call-template name=" Graphic.chartContainer">100 <xsl:call-template name="DataViz.chartContainer"> 101 101 <xsl:with-param name="containerID" select="concat('chart', position())"/> 102 102 <xsl:with-param name="footerContent" select="$indicatorView/CHART_NARRATIVE/text()"/> … … 119 119 <xsl:variable name="ancillaryValueNames" select="distinct-values($indicator/DATASETS/DATASET[NAME = $indicatorView/DATASET_NAMES/DATASET_NAME]/ANCILLARY_VALUE_USAGES/ANCILLARY_VALUE_USAGE/NAME)"/> 120 120 <xsl:variable name="measureValueFormatPattern" select="($Indicator.valueTypes/VALUE_TYPE[NAME = $measure/VALUE_TYPE_NAME]/XSLT_FORMAT_PATTERN)[1]"/> 121 <xsl:call-template name=" Graphic.leafletKendoScript">121 <xsl:call-template name="DataViz.leafletKendoScript"> 122 122 <xsl:with-param name="scriptContainerID" select="concat('script', position())"/> 123 123 <xsl:with-param name="dimensions" select="$Indicator.dimensions"/>
Note: See TracChangeset
for help on using the changeset viewer.