forked from joysenlong/freemind-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpatterns_updater.xslt
151 lines (145 loc) · 4.24 KB
/
patterns_updater.xslt
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
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template
match="/ | node() | @* | comment() | processing-instruction()">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="node">
<xsl:choose>
<xsl:when test="@background_color">
<xsl:element name="pattern_node_background_color">
<xsl:attribute name="value"><xsl:value-of select="@background_color"/></xsl:attribute>
</xsl:element>
</xsl:when>
<xsl:otherwise>
<pattern_node_background_color/>
</xsl:otherwise>
</xsl:choose>
<xsl:choose>
<xsl:when test="@color">
<xsl:element name="pattern_node_color">
<xsl:attribute name="value"><xsl:value-of select="@color"/></xsl:attribute>
</xsl:element>
</xsl:when>
<xsl:otherwise>
<pattern_node_color/>
</xsl:otherwise>
</xsl:choose>
<xsl:choose>
<xsl:when test="@style">
<xsl:element name="pattern_node_style">
<xsl:attribute name="value"><xsl:value-of select="@style"/></xsl:attribute>
</xsl:element>
</xsl:when>
<xsl:otherwise>
<pattern_node_style/>
</xsl:otherwise>
</xsl:choose>
<!-- <xsl:choose>
<xsl:when test="@text">
<xsl:element name="pattern_node_text">
<xsl:attribute name="value"><xsl:value-of select="@text"/></xsl:attribute>
</xsl:element>
</xsl:when>
<xsl:otherwise>
<pattern_node_text/>
</xsl:otherwise>
</xsl:choose>-->
<xsl:apply-templates select="font"/>
<xsl:choose>
<xsl:when test="@icon and @icon != 'none'">
<xsl:element name="pattern_icon">
<xsl:attribute name="value"><xsl:value-of select="@icon"/></xsl:attribute>
</xsl:element>
</xsl:when>
<xsl:when test="@icon = 'none'">
<pattern_icon/>
</xsl:when>
<xsl:otherwise>
</xsl:otherwise>
</xsl:choose>
<xsl:apply-templates select="edge"/>
<xsl:apply-templates select="child"/>
</xsl:template>
<xsl:template match="edge">
<xsl:choose>
<xsl:when test="@color">
<xsl:element name="pattern_edge_color">
<xsl:attribute name="value"><xsl:value-of select="@color"/></xsl:attribute>
</xsl:element>
</xsl:when>
<xsl:otherwise>
<pattern_edge_color/>
</xsl:otherwise>
</xsl:choose>
<xsl:choose>
<xsl:when test="@style">
<xsl:element name="pattern_edge_style">
<xsl:attribute name="value"><xsl:value-of select="@style"/></xsl:attribute>
</xsl:element>
</xsl:when>
<xsl:otherwise>
<pattern_edge_style/>
</xsl:otherwise>
</xsl:choose>
<xsl:choose>
<xsl:when test="@width">
<xsl:element name="pattern_edge_width">
<xsl:attribute name="value"><xsl:value-of select="@width"/></xsl:attribute>
</xsl:element>
</xsl:when>
<xsl:otherwise>
<pattern_edge_width/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template match="font">
<xsl:choose>
<xsl:when test="@name">
<xsl:element name="pattern_node_font_name">
<xsl:attribute name="value"><xsl:value-of select="@name"/></xsl:attribute>
</xsl:element>
</xsl:when>
<xsl:otherwise>
<pattern_node_font_name/>
</xsl:otherwise>
</xsl:choose>
<xsl:choose>
<xsl:when test="@bold">
<xsl:element name="pattern_node_font_bold">
<xsl:attribute name="value"><xsl:value-of select="@bold"/></xsl:attribute>
</xsl:element>
</xsl:when>
<xsl:otherwise>
<pattern_node_font_bold/>
</xsl:otherwise>
</xsl:choose>
<xsl:choose>
<xsl:when test="@italic">
<xsl:element name="pattern_node_font_italic">
<xsl:attribute name="value"><xsl:value-of select="@italic"/></xsl:attribute>
</xsl:element>
</xsl:when>
<xsl:otherwise>
<pattern_node_font_italic/>
</xsl:otherwise>
</xsl:choose>
<xsl:choose>
<xsl:when test="@size">
<xsl:element name="pattern_node_font_size">
<xsl:attribute name="value"><xsl:value-of select="@size"/></xsl:attribute>
</xsl:element>
</xsl:when>
<xsl:otherwise>
<pattern_node_font_size/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template match="child">
<xsl:element name="pattern_child">
<xsl:attribute name="value"><xsl:value-of select="@pattern"/></xsl:attribute>
</xsl:element>
</xsl:template>
</xsl:stylesheet>