File size: 6,532 Bytes
6d12932
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<?xml version="1.0" encoding="UTF-8"?>
<!--

  - This is a cleanup script that does a few things:

  - - ensures that the 'root' page is the generated "toc.xml" page

  - - ensures that somewhere in the list of pages is the generated "artifacts.xml" page

  - - places a list of all artifacts (ordered by order of table of contents) as pages beneath artifacts.xml

  - - strips the igpublisher-spreadsheet extensions, if any

  - If dealing with a multi-version IG, it will be run against both IG versions.

  -->
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:html="http://www.w3.org/1999/xhtml" xmlns="http://www.w3.org/1999/xhtml" xmlns:f="http://hl7.org/fhir" exclude-result-prefixes="html f">
  <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes" omit-xml-declaration="yes"/>
  <xsl:variable name="noRootToc" select="/f:ImplementationGuide/f:definition/f:parameter[f:code/@value='noRootToc']/f:value/@value"/>
  <xsl:variable name="artifactsOnRoot" select="/f:ImplementationGuide/f:definition/f:parameter[f:code/@value='artifactsOnRoot']/f:value/@value"/>
  <xsl:template match="@*|node()">
    <xsl:copy>
      <xsl:apply-templates select="@*|node()"/>
    </xsl:copy>
  </xsl:template>
  <xsl:template match="f:extension[@url='http://hl7.org/fhir/StructureDefinition/igpublisher-spreadsheet']"/>
  <xsl:template match="f:grouping">
    <xsl:if test="parent::f:definition/f:resource/f:groupingId[@value=current()/@id]">
      <xsl:copy>
        <xsl:apply-templates select="@*|node()"/>
      </xsl:copy>
    </xsl:if>
  </xsl:template>
  <xsl:template match="f:definition">
    <!-- If we've defined the groups, then we sort based on the groups, then alphabetically -->
    <xsl:choose>
      <xsl:when test="f:grouping[starts-with(@id, '-')] or groups/f:grouping[starts-with(@id, '-')]">
        <xsl:copy>
          <xsl:apply-templates select="node()[not(self::f:resource or self::f:page or self::f:parameter or self::f:template)]"/>
          <xsl:for-each select="f:grouping">
            <xsl:choose>
              <xsl:when test="starts-with(@id, '-')">
                <xsl:for-each select="parent::f:definition/f:resource[f:groupingId/@value=current()/@id]">
                  <xsl:sort select="f:extension[@url='http://hl7.org/fhir/tools/StructureDefinition/resource-sort']/f:valueInteger/@value"/>
                  <xsl:sort select="f:name/@value"/>
                  <xsl:sort select="f:reference/f:reference/@value"/>
                  <xsl:apply-templates select="."/>
                </xsl:for-each>
              </xsl:when>
              <xsl:otherwise>
                <xsl:for-each select="parent::f:definition/f:resource[f:groupingId/@value=current()/@id]">
                  <xsl:apply-templates select="."/>
                </xsl:for-each>
              </xsl:otherwise>
            </xsl:choose>
          </xsl:for-each>
          <xsl:apply-templates select="f:resource[not(f:groupingId)]"/>
          <xsl:apply-templates select="f:page|f:parameter|f:template"/>
        </xsl:copy>
      </xsl:when>
      <xsl:otherwise>
        <xsl:copy>
          <xsl:apply-templates select="@*|node()"/>
        </xsl:copy>
      </xsl:otherwise>
    </xsl:choose>
  </xsl:template>
  <xsl:template match="f:ImplementationGuide/f:definition/f:page">
    <xsl:copy>
      <xsl:choose>
        <xsl:when test="$noRootToc='true' or (f:nameUrl/@value='toc.html' and f:generation/@value='html')">
          <xsl:apply-templates select="@*|node()"/>
        </xsl:when>
        <xsl:otherwise>
          <nameUrl xmlns="http://hl7.org/fhir" value="toc.html"/>
          <title xmlns="http://hl7.org/fhir" value="Table of Contents"/>
          <generation xmlns="http://hl7.org/fhir" value="html"/>
          <page xmlns="http://hl7.org/fhir">
            <xsl:apply-templates select="@*|node()[not(self::f:page)]"/>
          </page>
          <xsl:apply-templates select="f:page"/>
        </xsl:otherwise>
      </xsl:choose>
      <xsl:choose>
        <xsl:when test="$artifactsOnRoot='true'">
          <xsl:call-template name="artifactPages"/>
        </xsl:when>
        <xsl:otherwise>
          <xsl:if test="not(descendant-or-self::f:page[f:nameUrl/@value='artifacts.html'])">
            <page xmlns="http://hl7.org/fhir">
              <nameUrl value="artifacts.html"/>
              <title value="Artifacts Summary"/>
              <generation value="html"/>
              <xsl:call-template name="artifactPages"/>
            </page>
          </xsl:if>
        </xsl:otherwise>
      </xsl:choose>      
    </xsl:copy>
  </xsl:template>
  <xsl:template match="f:page[f:nameUrl/@value='artifacts.html']">
    <xsl:copy>
      <xsl:apply-templates select="@*|node()"/>
      <xsl:if test="not($artifactsOnRoot='true')">
        <xsl:call-template name="artifactPages"/>
      </xsl:if>
    </xsl:copy>
  </xsl:template>
  <xsl:template name="artifactPages">
    <xsl:for-each select="/f:ImplementationGuide/f:definition/f:grouping">
      <xsl:if test="not(following-sibling::f:grouping[@id=current()/@id])">
        <xsl:for-each select="parent::f:definition/f:resource[f:extension[@url='http://hl7.org/fhir/StructureDefinition/implementationguide-page']][f:groupingId/@value=current()/@id]">
          <xsl:variable name="id" select="substring-after(f:reference/f:reference/@value, '/')"/>
          <page xmlns="http://hl7.org/fhir">
            <nameUrl value="{f:extension[@url='http://hl7.org/fhir/StructureDefinition/implementationguide-page']/f:valueUri/@value}"/>
            <title value="{f:name/@value}"/>
            <generation value="generated"/>
            <xsl:for-each select="f:extension[@url='http://hl7.org/fhir/tools/StructureDefinition/contained-resource-information']">
              <page xmlns="http://hl7.org/fhir">
                <xsl:variable name="url" select="concat(f:extension[@url='type']/f:valueCode/@value, '-', $id, '_', f:extension[@url='id']/f:valueId/@value, '.html')"/>
                <nameUrl value="{$url}"/>
                <xsl:for-each select="f:extension[@url='title']/f:valueString">
                  <title value="{@value}"/>
                </xsl:for-each>
                <generation value="generated"/>
              </page>
            </xsl:for-each>
          </page>      
        </xsl:for-each>
      </xsl:if>
    </xsl:for-each>
  </xsl:template>
</xsl:stylesheet>