summaryrefslogtreecommitdiff
path: root/writerfilter/source/doctok/WW8xmi.xsl
blob: 894d0cff9ef106e44c7b2c44d2a9021c0c06cc34 (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
<!--
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * This file incorporates work covered by the following license notice:
 *
 *   Licensed to the Apache Software Foundation (ASF) under one or more
 *   contributor license agreements. See the NOTICE file distributed
 *   with this work for additional information regarding copyright
 *   ownership. The ASF licenses this file to you under the Apache
 *   License, Version 2.0 (the "License"); you may not use this file
 *   except in compliance with the License. You may obtain a copy of
 *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
-->
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"  
  xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:UML = 'org.omg.xmi.namespace.UML' xml:space="default" xmlns:xhtml="http://www.w3.org/1999/xhtml">
<xsl:output method="xml" indent="yes"/>

<xsl:template match="/">
<UML:Class xmi.id="dummy" name="dummy">
                    <UML:ModelElement.stereotype>
                        <UML:Stereotype xmi.idref='access'/>
                    </UML:ModelElement.stereotype>
<xsl:apply-templates select="//xhtml:body/xhtml:table"/>
</UML:Class>
</xsl:template>

<xsl:template match="xhtml:table">
<xsl:apply-templates select="xhtml:tbody/xhtml:tr[2]"/>
</xsl:template>

<xsl:template name="handleTR">
<xsl:param name="offset"/>
<xsl:param name="shift"/>
<xsl:variable name="name"><xsl:value-of select="xhtml:td[3]"/></xsl:variable>
<xsl:variable name="type">
<xsl:choose>
<xsl:when test='contains(xhtml:td[4], "[")'>
<xsl:value-of select='substring-before(xhtml:td[4], "[")'/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="xhtml:td[4]"/>
<xsl:variable name="stereotype">attribute</xsl:variable>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:variable name='stereotype'>
<xsl:choose>
<xsl:when test='contains(xhtml:td[4], "[")'>array</xsl:when>
<xsl:otherwise>attribute</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:variable name="saltype">
<xsl:choose>
  <xsl:when test="$type='U8'">sal_uInt8</xsl:when>
  <xsl:when test="$type='S8'">sal_Int8</xsl:when>
  <xsl:when test="$type='U16'">sal_uInt16</xsl:when>
  <xsl:when test="$type='S16'">sal_Int16</xsl:when>
  <xsl:when test="$type='U32'">sal_uInt32</xsl:when>
  <xsl:when test="$type='S32'">sal_Int32</xsl:when>
  <xsl:otherwise>void *</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:variable name="bits"><xsl:value-of select="xhtml:td[5]"/></xsl:variable>
<xsl:variable name="mask"><xsl:value-of select="xhtml:td[6]"/></xsl:variable>
<xsl:variable name="comment"><xsl:value-of select="xhtml:td[7]"/></xsl:variable>
					<UML:Classifier.feature>
  						<UML:Attribute><xsl:attribute name="name"><xsl:value-of select="$name"/></xsl:attribute>
    		                <UML:ModelElement.taggedValue>
                                <UML:TaggedValue>
                                    <UML:TaggedValue.dataValue><xsl:value-of select="$comment"/></UML:TaggedValue.dataValue>
                                        <UML:TaggedValue.type>
                                        <UML:TagDefinition xmi.idref = 'comment'/>
                                    </UML:TaggedValue.type>
                                </UML:TaggedValue>
		                    </UML:ModelElement.taggedValue>
    		                <UML:ModelElement.taggedValue>
                                <UML:TaggedValue>
                                    <UML:TaggedValue.dataValue><xsl:value-of select="$offset"/></UML:TaggedValue.dataValue>
                                        <UML:TaggedValue.type>
                                        <UML:TagDefinition xmi.idref = 'offset'/>
                                    </UML:TaggedValue.type>
                                </UML:TaggedValue>
		                    </UML:ModelElement.taggedValue>
    		                <UML:ModelElement.taggedValue>
                                <UML:TaggedValue>
                                    <UML:TaggedValue.dataValue><xsl:value-of select="$shift"/></UML:TaggedValue.dataValue>
                                        <UML:TaggedValue.type>
                                        <UML:TagDefinition xmi.idref = 'shift'/>
                                    </UML:TaggedValue.type>
                                </UML:TaggedValue>
		                    </UML:ModelElement.taggedValue>
    		                <UML:ModelElement.taggedValue>
                                <UML:TaggedValue>
                                    <UML:TaggedValue.dataValue><xsl:value-of select="$mask"/></UML:TaggedValue.dataValue>
                                        <UML:TaggedValue.type>
                                        <UML:TagDefinition xmi.idref = 'mask'/>
                                    </UML:TaggedValue.type>
                                </UML:TaggedValue>
		                    </UML:ModelElement.taggedValue>
    		                <UML:ModelElement.taggedValue>
                                <UML:TaggedValue>
                                    <UML:TaggedValue.dataValue><xsl:value-of select="$bits"/></UML:TaggedValue.dataValue>
                                        <UML:TaggedValue.type>
                                        <UML:TagDefinition xmi.idref = 'bits'/>
                                    </UML:TaggedValue.type>
                                </UML:TaggedValue>
		                    </UML:ModelElement.taggedValue>
    		                <UML:ModelElement.taggedValue>
                                <UML:TaggedValue>
                                    <UML:TaggedValue.dataValue>rtf:<xsl:value-of select='translate($name, "abcdefghijklmnopqrstuvwxyz", "ABCDEFGHIJKLMNOPQRSTUVWXYZ")'/></UML:TaggedValue.dataValue>
                                        <UML:TaggedValue.type>
                                        <UML:TagDefinition xmi.idref = 'attrid'/>
                                    </UML:TaggedValue.type>
                                </UML:TaggedValue>
		                    </UML:ModelElement.taggedValue>
<xsl:if test='$stereotype = "array"'>
<xsl:variable name='arraycount'><xsl:value-of select='substring-before(substring-after(xhtml:td[4], "["), "]")'/></xsl:variable>
    		                <UML:ModelElement.taggedValue>
                                <UML:TaggedValue>
                                    <UML:TaggedValue.dataValue><xsl:value-of select="$arraycount"/></UML:TaggedValue.dataValue>
                                        <UML:TaggedValue.type>
                                        <UML:TagDefinition xmi.idref = 'arraycount'/>
                                    </UML:TaggedValue.type>
                                </UML:TaggedValue>
		                    </UML:ModelElement.taggedValue>
</xsl:if>
							<UML:StructuralFeature.type>
								<UML:DataType><xsl:attribute name="xmi.idref"><xsl:value-of select="$type"/></xsl:attribute></UML:DataType>
							</UML:StructuralFeature.type>
							<UML:ModelElement.stereotype>
								<UML:Stereotype><xsl:attribute name="xmi.idref"><xsl:value-of select="$stereotype"/></xsl:attribute></UML:Stereotype>
							</UML:ModelElement.stereotype>
						</UML:Attribute>
					</UML:Classifier.feature>
</xsl:template>

<xsl:template match="xhtml:tr[./xhtml:td[position()=1]/text()]">
<xsl:variable name="offset"><xsl:value-of select="xhtml:td[2]"/></xsl:variable>
<xsl:call-template name="handleTR">
<xsl:with-param name="offset" select="$offset"/>
<xsl:with-param name="shift">0</xsl:with-param>
</xsl:call-template>
<xsl:variable name="shift1"><xsl:value-of select="substring-after(xhtml:td[5], ':')"/></xsl:variable>
<xsl:apply-templates select="following-sibling::xhtml:tr[position()=1]">
<xsl:with-param name="offset" select="$offset"/>
<xsl:with-param name="shift" select="$shift1"/>
</xsl:apply-templates>
</xsl:template>

<xsl:template match="xhtml:tr[not(./xhtml:td[position()=1]/text())]">
<xsl:param name="offset"/>
<xsl:param name="shift"/>
<xsl:call-template name="handleTR">
<xsl:with-param name="offset" select="$offset"/>
<xsl:with-param name="shift" select="$shift"/>
</xsl:call-template>
<xsl:variable name="shift1"><xsl:value-of select="$shift+substring-after(xhtml:td[5], ':')"/></xsl:variable>
<xsl:apply-templates select="following-sibling::xhtml:tr[position()=1]">
<xsl:with-param name="offset" select="$offset"/>
<xsl:with-param name="shift" select="$shift1"/>
</xsl:apply-templates>
</xsl:template>

<xsl:template match="*">
<xsl:copy-of select="."/>
</xsl:template>

</xsl:stylesheet>