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="../Page.xslt"/> |
---|
10 | <xsl:import href="../Indicator.xslt"/> |
---|
11 | |
---|
12 | |
---|
13 | <ibis:doc> |
---|
14 | <name>html/indicator/profile/available_services/Page</name> |
---|
15 | <summary>Default core code that produces the indicator profile available services page</summary> |
---|
16 | <description> |
---|
17 | Specific XSLT used to create the indicator profile available |
---|
18 | services page. |
---|
19 | </description> |
---|
20 | </ibis:doc> |
---|
21 | |
---|
22 | <xsl:param name="Page.pageTitle" ibis:doc="Page's title text based on the 'INDICATOR/TITLE' element."> |
---|
23 | Health Indicator Report Available Services - <xsl:value-of select="ibis:getIndicatorTitle($indicator)"/> |
---|
24 | </xsl:param> |
---|
25 | <xsl:param name="Page.contentTitle" ibis:doc="Page's content block title text based on the 'INDICATOR/TITLE' element."> |
---|
26 | Available Services for <xsl:value-of select="ibis:getIndicatorTitle($indicator)"/> |
---|
27 | </xsl:param> |
---|
28 | |
---|
29 | |
---|
30 | <xsl:template name="Page.contentBody" |
---|
31 | ibis:doc="Main page content template which lists the available |
---|
32 | services 'INDICATOR/SERVICES_AVAILABLE_TO_PUBLIC' element field. |
---|
33 | This template also attempts to insert a series of HTML 'br' tags to |
---|
34 | adjust the page size to compensate for services text." |
---|
35 | > |
---|
36 | <xsl:call-template name="Page.contentOptions"> |
---|
37 | <xsl:with-param name="title">Indicator Available Services Options</xsl:with-param> |
---|
38 | <xsl:with-param name="pageType" select="'services'"/> |
---|
39 | </xsl:call-template> |
---|
40 | |
---|
41 | <!-- Available Services Text --> |
---|
42 | <xsl:call-template name="ContentContainer.contentBlock"> |
---|
43 | <xsl:with-param name="content" select="$indicator/SERVICES_AVAILABLE_TO_PUBLIC"/> |
---|
44 | <xsl:with-param name="addWikiAttribute" select="true()"/> |
---|
45 | </xsl:call-template> |
---|
46 | <br/> |
---|
47 | </xsl:template> |
---|
48 | |
---|
49 | </xsl:stylesheet> |
---|
50 | <!-- ============================= End of File ============================= --> |
---|