blob: 3e342dfb8fda4888d5bea1a1c70ce3d03a48841a (
plain)
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
|
<?xml version="1.0"?>
<xsl:stylesheet saxon:trace="no"
version="1.1"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:saxon="http://icl.com/saxon"
xmlns:xs = "http://www.w3.org/2001/XMLSchema"
xmlns:fo="http://www.w3.org/1999/XSL/Format"
xmlns:date="http://exslt.org/dates-and-times"
xmlns:math="http://exslt.org/math"
extension-element-prefixes="saxon date math"
exclude-result-prefixes="fo xs">
<xsl:output method="xml" version="4.0" omit-xml-declaration="yes" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:variable name="properties" select="document('foproperties.xml')"/>
<xsl:template match="/xs:schema">
<xsl:apply-templates select="./xs:element"/>
</xsl:template>
<xsl:template match="xs:group">
<xsl:for-each select="./xs:choice/xs:element">
<xsl:value-of select="./@ref"/>
<xsl:text>|</xsl:text>
</xsl:for-each>
<!-- Remove any Groups not implemented by FOP -->
<xsl:for-each select="./xs:choice/xs:group[substring(./@ref,string-length(./@ref) - 3) != '_Not']">
<xsl:variable name="ref">
<xsl:call-template name="strip_fo">
<xsl:with-param name="ref" select="./@ref"/>
</xsl:call-template>
</xsl:variable>
<xsl:apply-templates select="/xs:schema/xs:group[@name=$ref]"/>
</xsl:for-each>
</xsl:template>
<xsl:template match="xs:attributeGroup">
<xsl:for-each select="./xs:attribute">
<xsl:apply-templates select="."/>
</xsl:for-each>
<!-- Remove any attributeGroups not implemented by FOP -->
<xsl:for-each select="./xs:attributeGroup[substring(./@ref,string-length(./@ref) - 3) != '_Not']">
<xsl:variable name="ref">
<xsl:call-template name="strip_fo">
<xsl:with-param name="ref" select="./@ref"/>
</xsl:call-template>
</xsl:variable>
<xsl:apply-templates select="/xs:schema/xs:attributeGroup[@name = $ref]"/>
</xsl:for-each>
</xsl:template>
<xsl:template match="xs:simpleType">
<xsl:variable name="name" select="@name"/>
<xsl:for-each select="./xs:restriction/xs:enumeration">
<xsl:value-of select="./@value"/>
<xsl:text>|</xsl:text>
<xsl:message>Attribute <xsl:value-of select="./@value"/></xsl:message>
</xsl:for-each>
<xsl:variable name="unions" select="./xs:union/@memberTypes"/>
<xsl:if test="$unions">
<xsl:call-template name="splitUnion">
<xsl:with-param name="union" select="$unions"/>
</xsl:call-template>
</xsl:if>
<xsl:for-each select="./xs:annotation/xs:documentation/xs:enumeration">
<xsl:comment>
This supplies annotated list values inserted in the schema
solely for the purpose of supplying examples of valid values for a type.
</xsl:comment>
<xsl:value-of select="./@value"/>
<xsl:text>|</xsl:text>
<xsl:message>Fake Attribute <xsl:value-of select="./@value"/></xsl:message>
</xsl:for-each>
</xsl:template>
<xsl:template name="splitUnion">
<xsl:param name="union"/>
<xsl:variable name="type">
<xsl:call-template name="strip_fo">
<xsl:with-param name="ref">
<xsl:if test="not(substring-before($union,' '))">
<xsl:value-of select="$union"/>
</xsl:if>
<xsl:value-of select="substring-before($union,' ')"/>
</xsl:with-param>
</xsl:call-template>
</xsl:variable>
<xsl:message>Calling <xsl:value-of select="$type"/></xsl:message>
<xsl:apply-templates select="/xs:schema/xs:simpleType[@name = $type]"/>
<xsl:if test="substring-after($union,' ')">
<xsl:call-template name="splitUnion">
<xsl:with-param name="union" select="substring-after($union,' ')"/>
</xsl:call-template>
</xsl:if>
</xsl:template>
<xsl:template match="xs:element">
<xsl:text disable-output-escaping="yes"><element name="fo:</xsl:text>
<xsl:value-of select="./@name"/>
<xsl:text>"
content="</xsl:text>
<xsl:choose>
<xsl:when test="( not(./xs:complexType/xs:sequence) and not(./xs:complexType/xs:choice) )">
<xsl:text>EMPTY</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:text>(</xsl:text>
<xsl:if test="./xs:complexType/@mixed = 'true'">
<xsl:text>#PCDATA|</xsl:text>
</xsl:if>
<xsl:for-each select="./xs:complexType/xs:sequence|./xs:complexType/xs:choice">
<xsl:for-each select="./xs:element">
<xsl:value-of select="./@ref"/>
<xsl:text>|</xsl:text>
</xsl:for-each>
<xsl:for-each select="./xs:group">
<xsl:variable name="ref">
<xsl:call-template name="strip_fo">
<xsl:with-param name="ref" select="./@ref"/>
</xsl:call-template>
</xsl:variable>
<xsl:apply-templates select="/xs:schema/xs:group[@name=$ref]"/>
</xsl:for-each>
</xsl:for-each>
<xsl:text>)</xsl:text>
</xsl:otherwise>
</xsl:choose>
<xsl:text disable-output-escaping="yes">">
</xsl:text>
<xsl:for-each select="./xs:complexType/xs:attribute">
<xsl:apply-templates select="."/>
</xsl:for-each>
<xsl:for-each select="./xs:complexType/xs:attributeGroup">
<xsl:variable name="ref">
<xsl:call-template name="strip_fo">
<xsl:with-param name="ref" select="./@ref"/>
</xsl:call-template>
</xsl:variable>
<xsl:apply-templates select="/xs:schema/xs:attributeGroup[@name = $ref]"/>
</xsl:for-each>
<xsl:text disable-output-escaping="yes">
</element>
</xsl:text>
</xsl:template>
<xsl:template match="xs:attribute">
<xsl:variable name="attributeName" select="./@name"/>
<xsl:variable name="type">
<xsl:call-template name="strip_fo">
<xsl:with-param name="ref" select="./@type"/>
</xsl:call-template>
</xsl:variable>
<xsl:message>Processing type = <xsl:value-of select="$type"/></xsl:message>
<attribute name="{$attributeName}">
<xsl:attribute name="type">
<xsl:variable name="content">
<xsl:choose>
<xsl:when test="$properties/property-list/generic-property-list/property[name = $attributeName]/enumeration">
<!-- Get the valid values from FOP -->
<xsl:for-each select="$properties/property-list/generic-property-list/property[name = $attributeName]/enumeration/value">
<xsl:value-of select="."/><xsl:text>|</xsl:text>
</xsl:for-each>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates select="/xs:schema/xs:simpleType[@name = $type]"/>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:choose>
<xsl:when test="$content != ''">
<xsl:text>(</xsl:text>
<xsl:value-of select="$content"/>
<xsl:text>)</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:text>CDATA</xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:attribute>
</attribute>
</xsl:template>
<xsl:template name="strip_fo">
<xsl:param name="ref"/>
<xsl:choose>
<xsl:when test="substring($ref,1,3) = 'fo:'">
<xsl:value-of select="substring($ref,4)"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$ref"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>
|