1 | <?xml version="1.0" encoding="utf-8" standalone="no"?>
|
---|
2 | <!--
|
---|
3 | | LICENSE: This file is part of the DITA Open Toolkit project hosted on
|
---|
4 | | Sourceforge.net. See the accompanying license.txt file for
|
---|
5 | | applicable licenses.
|
---|
6 | *-->
|
---|
7 | <!--
|
---|
8 | | (C) Copyright IBM Corporation 2006. All Rights Reserved.
|
---|
9 | *-->
|
---|
10 | <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:gsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
---|
11 |
|
---|
12 | <!--= = = ELEMENT OUTPUT RULES = = = = = = = = = =-->
|
---|
13 |
|
---|
14 | <xsl:template match="*" mode="ui-d.menucascade.in">
|
---|
15 | <xsl:param name="container"/>
|
---|
16 | <xsl:param name="isRequired" select="'no'"/>
|
---|
17 | <xsl:call-template name="check.unsupplied.input">
|
---|
18 | <xsl:with-param name="container" select="$container"/>
|
---|
19 | <xsl:with-param name="isRequired" select="$isRequired"/>
|
---|
20 | <xsl:with-param name="input" select="' ui-d/menucascade '"/>
|
---|
21 | </xsl:call-template>
|
---|
22 | </xsl:template>
|
---|
23 |
|
---|
24 | <xsl:template match="*" mode="ui-d.menucascade.out">
|
---|
25 | <menucascade>
|
---|
26 | <xsl:apply-templates select="." mode="ui-d.menucascade.atts.in"/>
|
---|
27 | <xsl:apply-templates select="." mode="ui-d.menucascade.content.in"/>
|
---|
28 | </menucascade>
|
---|
29 | </xsl:template>
|
---|
30 |
|
---|
31 | <xsl:template match="*" mode="ui-d.screen.in">
|
---|
32 | <xsl:param name="container"/>
|
---|
33 | <xsl:param name="isRequired" select="'no'"/>
|
---|
34 | <xsl:call-template name="check.unsupplied.input">
|
---|
35 | <xsl:with-param name="container" select="$container"/>
|
---|
36 | <xsl:with-param name="isRequired" select="$isRequired"/>
|
---|
37 | <xsl:with-param name="input" select="' ui-d/screen '"/>
|
---|
38 | </xsl:call-template>
|
---|
39 | </xsl:template>
|
---|
40 |
|
---|
41 | <xsl:template match="*" mode="ui-d.screen.out">
|
---|
42 | <screen>
|
---|
43 | <xsl:apply-templates select="." mode="ui-d.screen.atts.in"/>
|
---|
44 | <xsl:apply-templates select="." mode="ui-d.screen.content.in"/>
|
---|
45 | </screen>
|
---|
46 | </xsl:template>
|
---|
47 |
|
---|
48 | <xsl:template match="*" mode="ui-d.shortcut.in">
|
---|
49 | <xsl:param name="container"/>
|
---|
50 | <xsl:param name="isRequired" select="'no'"/>
|
---|
51 | <xsl:call-template name="check.unsupplied.input">
|
---|
52 | <xsl:with-param name="container" select="$container"/>
|
---|
53 | <xsl:with-param name="isRequired" select="$isRequired"/>
|
---|
54 | <xsl:with-param name="input" select="' ui-d/shortcut '"/>
|
---|
55 | </xsl:call-template>
|
---|
56 | </xsl:template>
|
---|
57 |
|
---|
58 | <xsl:template match="*" mode="ui-d.shortcut.out">
|
---|
59 | <shortcut>
|
---|
60 | <xsl:apply-templates select="." mode="ui-d.shortcut.atts.in"/>
|
---|
61 | <xsl:apply-templates select="." mode="ui-d.shortcut.content.in"/>
|
---|
62 | </shortcut>
|
---|
63 | </xsl:template>
|
---|
64 |
|
---|
65 | <xsl:template match="*" mode="ui-d.uicontrol.in">
|
---|
66 | <xsl:param name="container"/>
|
---|
67 | <xsl:param name="isRequired" select="'no'"/>
|
---|
68 | <xsl:call-template name="check.unsupplied.input">
|
---|
69 | <xsl:with-param name="container" select="$container"/>
|
---|
70 | <xsl:with-param name="isRequired" select="$isRequired"/>
|
---|
71 | <xsl:with-param name="input" select="' ui-d/uicontrol '"/>
|
---|
72 | </xsl:call-template>
|
---|
73 | </xsl:template>
|
---|
74 |
|
---|
75 | <xsl:template match="*" mode="ui-d.uicontrol.out">
|
---|
76 | <uicontrol>
|
---|
77 | <xsl:apply-templates select="." mode="ui-d.uicontrol.atts.in"/>
|
---|
78 | <xsl:apply-templates select="." mode="ui-d.uicontrol.content.in"/>
|
---|
79 | </uicontrol>
|
---|
80 | </xsl:template>
|
---|
81 |
|
---|
82 | <xsl:template match="*" mode="ui-d.wintitle.in">
|
---|
83 | <xsl:param name="container"/>
|
---|
84 | <xsl:param name="isRequired" select="'no'"/>
|
---|
85 | <xsl:call-template name="check.unsupplied.input">
|
---|
86 | <xsl:with-param name="container" select="$container"/>
|
---|
87 | <xsl:with-param name="isRequired" select="$isRequired"/>
|
---|
88 | <xsl:with-param name="input" select="' ui-d/wintitle '"/>
|
---|
89 | </xsl:call-template>
|
---|
90 | </xsl:template>
|
---|
91 |
|
---|
92 | <xsl:template match="*" mode="ui-d.wintitle.out">
|
---|
93 | <wintitle>
|
---|
94 | <xsl:apply-templates select="." mode="ui-d.wintitle.atts.in"/>
|
---|
95 | <xsl:apply-templates select="." mode="ui-d.wintitle.content.in"/>
|
---|
96 | </wintitle>
|
---|
97 | </xsl:template>
|
---|
98 |
|
---|
99 |
|
---|
100 | <!--= = = DEFAULT ELEMENT INPUT RULES = = = = = = =-->
|
---|
101 |
|
---|
102 | <xsl:template match="*" mode="ui-d.menucascade.atts.in">
|
---|
103 | <xsl:apply-templates select="." mode="ui-d.menucascade.univ.atts.in"/>
|
---|
104 | <xsl:apply-templates select="." mode="ui-d.menucascade.keyref.att.in"/>
|
---|
105 | <xsl:apply-templates select="." mode="ui-d.menucascade.outputclass.att.in"/>
|
---|
106 | </xsl:template>
|
---|
107 |
|
---|
108 | <xsl:template match="*" mode="ui-d.menucascade.univ.atts.in">
|
---|
109 | <xsl:apply-templates select="." mode="ui-d.menucascade.id.atts.in"/>
|
---|
110 | <xsl:apply-templates select="." mode="ui-d.menucascade.select.atts.in"/>
|
---|
111 | </xsl:template>
|
---|
112 |
|
---|
113 | <xsl:template match="*" mode="ui-d.menucascade.id.atts.in">
|
---|
114 | <xsl:apply-templates select="." mode="ui-d.menucascade.id.att.in"/>
|
---|
115 | <xsl:apply-templates select="." mode="ui-d.menucascade.conref.att.in"/>
|
---|
116 | </xsl:template>
|
---|
117 |
|
---|
118 | <xsl:template match="*" mode="ui-d.menucascade.id.att.in">
|
---|
119 | <xsl:apply-templates select="." mode="id.att.in">
|
---|
120 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
121 | </xsl:apply-templates>
|
---|
122 | </xsl:template>
|
---|
123 |
|
---|
124 | <xsl:template match="*" mode="ui-d.menucascade.conref.att.in">
|
---|
125 | <xsl:apply-templates select="." mode="conref.att.in">
|
---|
126 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
127 | </xsl:apply-templates>
|
---|
128 | </xsl:template>
|
---|
129 |
|
---|
130 | <xsl:template match="*" mode="ui-d.menucascade.select.atts.in">
|
---|
131 | <xsl:apply-templates select="." mode="ui-d.menucascade.platform.att.in"/>
|
---|
132 | <xsl:apply-templates select="." mode="ui-d.menucascade.product.att.in"/>
|
---|
133 | <xsl:apply-templates select="." mode="ui-d.menucascade.audience.att.in"/>
|
---|
134 | <xsl:apply-templates select="." mode="ui-d.menucascade.otherprops.att.in"/>
|
---|
135 | <xsl:apply-templates select="." mode="ui-d.menucascade.rev.att.in"/>
|
---|
136 | <xsl:apply-templates select="." mode="ui-d.menucascade.importance.att.in"/>
|
---|
137 | <xsl:apply-templates select="." mode="ui-d.menucascade.status.att.in"/>
|
---|
138 | </xsl:template>
|
---|
139 |
|
---|
140 | <xsl:template match="*" mode="ui-d.menucascade.platform.att.in">
|
---|
141 | <xsl:apply-templates select="." mode="platform.att.in">
|
---|
142 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
143 | </xsl:apply-templates>
|
---|
144 | </xsl:template>
|
---|
145 |
|
---|
146 | <xsl:template match="*" mode="ui-d.menucascade.product.att.in">
|
---|
147 | <xsl:apply-templates select="." mode="product.att.in">
|
---|
148 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
149 | </xsl:apply-templates>
|
---|
150 | </xsl:template>
|
---|
151 |
|
---|
152 | <xsl:template match="*" mode="ui-d.menucascade.audience.att.in">
|
---|
153 | <xsl:apply-templates select="." mode="audience.att.in">
|
---|
154 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
155 | </xsl:apply-templates>
|
---|
156 | </xsl:template>
|
---|
157 |
|
---|
158 | <xsl:template match="*" mode="ui-d.menucascade.otherprops.att.in">
|
---|
159 | <xsl:apply-templates select="." mode="otherprops.att.in">
|
---|
160 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
161 | </xsl:apply-templates>
|
---|
162 | </xsl:template>
|
---|
163 |
|
---|
164 | <xsl:template match="*" mode="ui-d.menucascade.rev.att.in">
|
---|
165 | <xsl:apply-templates select="." mode="rev.att.in">
|
---|
166 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
167 | </xsl:apply-templates>
|
---|
168 | </xsl:template>
|
---|
169 |
|
---|
170 | <xsl:template match="*" mode="ui-d.menucascade.importance.att.in">
|
---|
171 | <xsl:apply-templates select="." mode="importance.att.in">
|
---|
172 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
173 | </xsl:apply-templates>
|
---|
174 | </xsl:template>
|
---|
175 |
|
---|
176 | <xsl:template match="*" mode="ui-d.menucascade.status.att.in">
|
---|
177 | <xsl:apply-templates select="." mode="status.att.in">
|
---|
178 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
179 | </xsl:apply-templates>
|
---|
180 | </xsl:template>
|
---|
181 |
|
---|
182 | <xsl:template match="*" mode="ui-d.menucascade.keyref.att.in">
|
---|
183 | <xsl:apply-templates select="." mode="keyref.att.in">
|
---|
184 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
185 | </xsl:apply-templates>
|
---|
186 | </xsl:template>
|
---|
187 |
|
---|
188 | <xsl:template match="*" mode="ui-d.menucascade.outputclass.att.in">
|
---|
189 | <xsl:apply-templates select="." mode="outputclass.att.in">
|
---|
190 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
191 | </xsl:apply-templates>
|
---|
192 | </xsl:template>
|
---|
193 |
|
---|
194 | <xsl:template match="*" mode="ui-d.menucascade.content.in">
|
---|
195 | <xsl:apply-templates select="." mode="ui-d.menucascade.ui-d.uicontrol.in"/>
|
---|
196 | </xsl:template>
|
---|
197 |
|
---|
198 | <xsl:template match="*" mode="ui-d.menucascade.ui-d.uicontrol.in">
|
---|
199 | <xsl:apply-templates select="." mode="ui-d.uicontrol.in">
|
---|
200 | <xsl:with-param name="isRequired" select="'yes'"/>
|
---|
201 | <xsl:with-param name="container" select="' ui-d/menucascade '"/>
|
---|
202 | </xsl:apply-templates>
|
---|
203 | </xsl:template>
|
---|
204 |
|
---|
205 | <xsl:template match="*" mode="ui-d.screen.atts.in">
|
---|
206 | <xsl:apply-templates select="." mode="ui-d.screen.univ.atts.in"/>
|
---|
207 | <xsl:apply-templates select="." mode="ui-d.screen.display.atts.in"/>
|
---|
208 | <xsl:apply-templates select="." mode="ui-d.screen.spectitle.att.in"/>
|
---|
209 | <xsl:apply-templates select="." mode="ui-d.screen.outputclass.att.in"/>
|
---|
210 | </xsl:template>
|
---|
211 |
|
---|
212 | <xsl:template match="*" mode="ui-d.screen.univ.atts.in">
|
---|
213 | <xsl:apply-templates select="." mode="ui-d.screen.id.atts.in"/>
|
---|
214 | <xsl:apply-templates select="." mode="ui-d.screen.select.atts.in"/>
|
---|
215 | </xsl:template>
|
---|
216 |
|
---|
217 | <xsl:template match="*" mode="ui-d.screen.id.atts.in">
|
---|
218 | <xsl:apply-templates select="." mode="ui-d.screen.id.att.in"/>
|
---|
219 | <xsl:apply-templates select="." mode="ui-d.screen.conref.att.in"/>
|
---|
220 | </xsl:template>
|
---|
221 |
|
---|
222 | <xsl:template match="*" mode="ui-d.screen.id.att.in">
|
---|
223 | <xsl:apply-templates select="." mode="id.att.in">
|
---|
224 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
225 | </xsl:apply-templates>
|
---|
226 | </xsl:template>
|
---|
227 |
|
---|
228 | <xsl:template match="*" mode="ui-d.screen.conref.att.in">
|
---|
229 | <xsl:apply-templates select="." mode="conref.att.in">
|
---|
230 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
231 | </xsl:apply-templates>
|
---|
232 | </xsl:template>
|
---|
233 |
|
---|
234 | <xsl:template match="*" mode="ui-d.screen.select.atts.in">
|
---|
235 | <xsl:apply-templates select="." mode="ui-d.screen.platform.att.in"/>
|
---|
236 | <xsl:apply-templates select="." mode="ui-d.screen.product.att.in"/>
|
---|
237 | <xsl:apply-templates select="." mode="ui-d.screen.audience.att.in"/>
|
---|
238 | <xsl:apply-templates select="." mode="ui-d.screen.otherprops.att.in"/>
|
---|
239 | <xsl:apply-templates select="." mode="ui-d.screen.rev.att.in"/>
|
---|
240 | <xsl:apply-templates select="." mode="ui-d.screen.importance.att.in"/>
|
---|
241 | <xsl:apply-templates select="." mode="ui-d.screen.status.att.in"/>
|
---|
242 | </xsl:template>
|
---|
243 |
|
---|
244 | <xsl:template match="*" mode="ui-d.screen.platform.att.in">
|
---|
245 | <xsl:apply-templates select="." mode="platform.att.in">
|
---|
246 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
247 | </xsl:apply-templates>
|
---|
248 | </xsl:template>
|
---|
249 |
|
---|
250 | <xsl:template match="*" mode="ui-d.screen.product.att.in">
|
---|
251 | <xsl:apply-templates select="." mode="product.att.in">
|
---|
252 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
253 | </xsl:apply-templates>
|
---|
254 | </xsl:template>
|
---|
255 |
|
---|
256 | <xsl:template match="*" mode="ui-d.screen.audience.att.in">
|
---|
257 | <xsl:apply-templates select="." mode="audience.att.in">
|
---|
258 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
259 | </xsl:apply-templates>
|
---|
260 | </xsl:template>
|
---|
261 |
|
---|
262 | <xsl:template match="*" mode="ui-d.screen.otherprops.att.in">
|
---|
263 | <xsl:apply-templates select="." mode="otherprops.att.in">
|
---|
264 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
265 | </xsl:apply-templates>
|
---|
266 | </xsl:template>
|
---|
267 |
|
---|
268 | <xsl:template match="*" mode="ui-d.screen.rev.att.in">
|
---|
269 | <xsl:apply-templates select="." mode="rev.att.in">
|
---|
270 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
271 | </xsl:apply-templates>
|
---|
272 | </xsl:template>
|
---|
273 |
|
---|
274 | <xsl:template match="*" mode="ui-d.screen.importance.att.in">
|
---|
275 | <xsl:apply-templates select="." mode="importance.att.in">
|
---|
276 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
277 | </xsl:apply-templates>
|
---|
278 | </xsl:template>
|
---|
279 |
|
---|
280 | <xsl:template match="*" mode="ui-d.screen.status.att.in">
|
---|
281 | <xsl:apply-templates select="." mode="status.att.in">
|
---|
282 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
283 | </xsl:apply-templates>
|
---|
284 | </xsl:template>
|
---|
285 |
|
---|
286 | <xsl:template match="*" mode="ui-d.screen.display.atts.in">
|
---|
287 | <xsl:apply-templates select="." mode="ui-d.screen.scale.att.in"/>
|
---|
288 | <xsl:apply-templates select="." mode="ui-d.screen.frame.att.in"/>
|
---|
289 | <xsl:apply-templates select="." mode="ui-d.screen.expanse.att.in"/>
|
---|
290 | </xsl:template>
|
---|
291 |
|
---|
292 | <xsl:template match="*" mode="ui-d.screen.scale.att.in">
|
---|
293 | <xsl:apply-templates select="." mode="scale.att.in">
|
---|
294 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
295 | </xsl:apply-templates>
|
---|
296 | </xsl:template>
|
---|
297 |
|
---|
298 | <xsl:template match="*" mode="ui-d.screen.frame.att.in">
|
---|
299 | <xsl:apply-templates select="." mode="frame.att.in">
|
---|
300 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
301 | </xsl:apply-templates>
|
---|
302 | </xsl:template>
|
---|
303 |
|
---|
304 | <xsl:template match="*" mode="ui-d.screen.expanse.att.in">
|
---|
305 | <xsl:apply-templates select="." mode="expanse.att.in">
|
---|
306 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
307 | </xsl:apply-templates>
|
---|
308 | </xsl:template>
|
---|
309 |
|
---|
310 | <xsl:template match="*" mode="ui-d.screen.spectitle.att.in">
|
---|
311 | <xsl:apply-templates select="." mode="spectitle.att.in">
|
---|
312 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
313 | </xsl:apply-templates>
|
---|
314 | </xsl:template>
|
---|
315 |
|
---|
316 | <xsl:template match="*" mode="ui-d.screen.outputclass.att.in">
|
---|
317 | <xsl:apply-templates select="." mode="outputclass.att.in">
|
---|
318 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
319 | </xsl:apply-templates>
|
---|
320 | </xsl:template>
|
---|
321 |
|
---|
322 | <xsl:template match="*" mode="ui-d.screen.content.in">
|
---|
323 | <xsl:apply-templates select="*|text()" mode="ui-d.screen.child"/>
|
---|
324 | </xsl:template>
|
---|
325 |
|
---|
326 | <xsl:template match="*|text()" mode="ui-d.screen.child">
|
---|
327 | <xsl:param name="isRequired" select="'no'"/>
|
---|
328 | <xsl:apply-templates select="." mode="child">
|
---|
329 | <xsl:with-param name="container" select="' ui-d/screen '"/>
|
---|
330 | <xsl:with-param name="isRequired" select="$isRequired"/>
|
---|
331 | </xsl:apply-templates>
|
---|
332 | </xsl:template>
|
---|
333 |
|
---|
334 | <xsl:template match="*" mode="ui-d.shortcut.atts.in">
|
---|
335 | <xsl:apply-templates select="." mode="ui-d.shortcut.univ.atts.in"/>
|
---|
336 | <xsl:apply-templates select="." mode="ui-d.shortcut.keyref.att.in"/>
|
---|
337 | <xsl:apply-templates select="." mode="ui-d.shortcut.outputclass.att.in"/>
|
---|
338 | </xsl:template>
|
---|
339 |
|
---|
340 | <xsl:template match="*" mode="ui-d.shortcut.univ.atts.in">
|
---|
341 | <xsl:apply-templates select="." mode="ui-d.shortcut.id.atts.in"/>
|
---|
342 | <xsl:apply-templates select="." mode="ui-d.shortcut.select.atts.in"/>
|
---|
343 | </xsl:template>
|
---|
344 |
|
---|
345 | <xsl:template match="*" mode="ui-d.shortcut.id.atts.in">
|
---|
346 | <xsl:apply-templates select="." mode="ui-d.shortcut.id.att.in"/>
|
---|
347 | <xsl:apply-templates select="." mode="ui-d.shortcut.conref.att.in"/>
|
---|
348 | </xsl:template>
|
---|
349 |
|
---|
350 | <xsl:template match="*" mode="ui-d.shortcut.id.att.in">
|
---|
351 | <xsl:apply-templates select="." mode="id.att.in">
|
---|
352 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
353 | </xsl:apply-templates>
|
---|
354 | </xsl:template>
|
---|
355 |
|
---|
356 | <xsl:template match="*" mode="ui-d.shortcut.conref.att.in">
|
---|
357 | <xsl:apply-templates select="." mode="conref.att.in">
|
---|
358 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
359 | </xsl:apply-templates>
|
---|
360 | </xsl:template>
|
---|
361 |
|
---|
362 | <xsl:template match="*" mode="ui-d.shortcut.select.atts.in">
|
---|
363 | <xsl:apply-templates select="." mode="ui-d.shortcut.platform.att.in"/>
|
---|
364 | <xsl:apply-templates select="." mode="ui-d.shortcut.product.att.in"/>
|
---|
365 | <xsl:apply-templates select="." mode="ui-d.shortcut.audience.att.in"/>
|
---|
366 | <xsl:apply-templates select="." mode="ui-d.shortcut.otherprops.att.in"/>
|
---|
367 | <xsl:apply-templates select="." mode="ui-d.shortcut.rev.att.in"/>
|
---|
368 | <xsl:apply-templates select="." mode="ui-d.shortcut.importance.att.in"/>
|
---|
369 | <xsl:apply-templates select="." mode="ui-d.shortcut.status.att.in"/>
|
---|
370 | </xsl:template>
|
---|
371 |
|
---|
372 | <xsl:template match="*" mode="ui-d.shortcut.platform.att.in">
|
---|
373 | <xsl:apply-templates select="." mode="platform.att.in">
|
---|
374 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
375 | </xsl:apply-templates>
|
---|
376 | </xsl:template>
|
---|
377 |
|
---|
378 | <xsl:template match="*" mode="ui-d.shortcut.product.att.in">
|
---|
379 | <xsl:apply-templates select="." mode="product.att.in">
|
---|
380 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
381 | </xsl:apply-templates>
|
---|
382 | </xsl:template>
|
---|
383 |
|
---|
384 | <xsl:template match="*" mode="ui-d.shortcut.audience.att.in">
|
---|
385 | <xsl:apply-templates select="." mode="audience.att.in">
|
---|
386 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
387 | </xsl:apply-templates>
|
---|
388 | </xsl:template>
|
---|
389 |
|
---|
390 | <xsl:template match="*" mode="ui-d.shortcut.otherprops.att.in">
|
---|
391 | <xsl:apply-templates select="." mode="otherprops.att.in">
|
---|
392 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
393 | </xsl:apply-templates>
|
---|
394 | </xsl:template>
|
---|
395 |
|
---|
396 | <xsl:template match="*" mode="ui-d.shortcut.rev.att.in">
|
---|
397 | <xsl:apply-templates select="." mode="rev.att.in">
|
---|
398 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
399 | </xsl:apply-templates>
|
---|
400 | </xsl:template>
|
---|
401 |
|
---|
402 | <xsl:template match="*" mode="ui-d.shortcut.importance.att.in">
|
---|
403 | <xsl:apply-templates select="." mode="importance.att.in">
|
---|
404 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
405 | </xsl:apply-templates>
|
---|
406 | </xsl:template>
|
---|
407 |
|
---|
408 | <xsl:template match="*" mode="ui-d.shortcut.status.att.in">
|
---|
409 | <xsl:apply-templates select="." mode="status.att.in">
|
---|
410 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
411 | </xsl:apply-templates>
|
---|
412 | </xsl:template>
|
---|
413 |
|
---|
414 | <xsl:template match="*" mode="ui-d.shortcut.keyref.att.in">
|
---|
415 | <xsl:apply-templates select="." mode="keyref.att.in">
|
---|
416 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
417 | </xsl:apply-templates>
|
---|
418 | </xsl:template>
|
---|
419 |
|
---|
420 | <xsl:template match="*" mode="ui-d.shortcut.outputclass.att.in">
|
---|
421 | <xsl:apply-templates select="." mode="outputclass.att.in">
|
---|
422 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
423 | </xsl:apply-templates>
|
---|
424 | </xsl:template>
|
---|
425 |
|
---|
426 | <xsl:template match="*" mode="ui-d.shortcut.content.in">
|
---|
427 | <xsl:apply-templates select="*|text()" mode="ui-d.shortcut.child"/>
|
---|
428 | </xsl:template>
|
---|
429 |
|
---|
430 | <xsl:template match="*|text()" mode="ui-d.shortcut.child">
|
---|
431 | <xsl:param name="isRequired" select="'no'"/>
|
---|
432 | <xsl:apply-templates select="." mode="child">
|
---|
433 | <xsl:with-param name="container" select="' ui-d/shortcut '"/>
|
---|
434 | <xsl:with-param name="isRequired" select="$isRequired"/>
|
---|
435 | </xsl:apply-templates>
|
---|
436 | </xsl:template>
|
---|
437 |
|
---|
438 | <xsl:template match="*" mode="ui-d.uicontrol.atts.in">
|
---|
439 | <xsl:apply-templates select="." mode="ui-d.uicontrol.univ.atts.in"/>
|
---|
440 | <xsl:apply-templates select="." mode="ui-d.uicontrol.keyref.att.in"/>
|
---|
441 | <xsl:apply-templates select="." mode="ui-d.uicontrol.outputclass.att.in"/>
|
---|
442 | </xsl:template>
|
---|
443 |
|
---|
444 | <xsl:template match="*" mode="ui-d.uicontrol.univ.atts.in">
|
---|
445 | <xsl:apply-templates select="." mode="ui-d.uicontrol.id.atts.in"/>
|
---|
446 | <xsl:apply-templates select="." mode="ui-d.uicontrol.select.atts.in"/>
|
---|
447 | </xsl:template>
|
---|
448 |
|
---|
449 | <xsl:template match="*" mode="ui-d.uicontrol.id.atts.in">
|
---|
450 | <xsl:apply-templates select="." mode="ui-d.uicontrol.id.att.in"/>
|
---|
451 | <xsl:apply-templates select="." mode="ui-d.uicontrol.conref.att.in"/>
|
---|
452 | </xsl:template>
|
---|
453 |
|
---|
454 | <xsl:template match="*" mode="ui-d.uicontrol.id.att.in">
|
---|
455 | <xsl:apply-templates select="." mode="id.att.in">
|
---|
456 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
457 | </xsl:apply-templates>
|
---|
458 | </xsl:template>
|
---|
459 |
|
---|
460 | <xsl:template match="*" mode="ui-d.uicontrol.conref.att.in">
|
---|
461 | <xsl:apply-templates select="." mode="conref.att.in">
|
---|
462 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
463 | </xsl:apply-templates>
|
---|
464 | </xsl:template>
|
---|
465 |
|
---|
466 | <xsl:template match="*" mode="ui-d.uicontrol.select.atts.in">
|
---|
467 | <xsl:apply-templates select="." mode="ui-d.uicontrol.platform.att.in"/>
|
---|
468 | <xsl:apply-templates select="." mode="ui-d.uicontrol.product.att.in"/>
|
---|
469 | <xsl:apply-templates select="." mode="ui-d.uicontrol.audience.att.in"/>
|
---|
470 | <xsl:apply-templates select="." mode="ui-d.uicontrol.otherprops.att.in"/>
|
---|
471 | <xsl:apply-templates select="." mode="ui-d.uicontrol.rev.att.in"/>
|
---|
472 | <xsl:apply-templates select="." mode="ui-d.uicontrol.importance.att.in"/>
|
---|
473 | <xsl:apply-templates select="." mode="ui-d.uicontrol.status.att.in"/>
|
---|
474 | </xsl:template>
|
---|
475 |
|
---|
476 | <xsl:template match="*" mode="ui-d.uicontrol.platform.att.in">
|
---|
477 | <xsl:apply-templates select="." mode="platform.att.in">
|
---|
478 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
479 | </xsl:apply-templates>
|
---|
480 | </xsl:template>
|
---|
481 |
|
---|
482 | <xsl:template match="*" mode="ui-d.uicontrol.product.att.in">
|
---|
483 | <xsl:apply-templates select="." mode="product.att.in">
|
---|
484 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
485 | </xsl:apply-templates>
|
---|
486 | </xsl:template>
|
---|
487 |
|
---|
488 | <xsl:template match="*" mode="ui-d.uicontrol.audience.att.in">
|
---|
489 | <xsl:apply-templates select="." mode="audience.att.in">
|
---|
490 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
491 | </xsl:apply-templates>
|
---|
492 | </xsl:template>
|
---|
493 |
|
---|
494 | <xsl:template match="*" mode="ui-d.uicontrol.otherprops.att.in">
|
---|
495 | <xsl:apply-templates select="." mode="otherprops.att.in">
|
---|
496 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
497 | </xsl:apply-templates>
|
---|
498 | </xsl:template>
|
---|
499 |
|
---|
500 | <xsl:template match="*" mode="ui-d.uicontrol.rev.att.in">
|
---|
501 | <xsl:apply-templates select="." mode="rev.att.in">
|
---|
502 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
503 | </xsl:apply-templates>
|
---|
504 | </xsl:template>
|
---|
505 |
|
---|
506 | <xsl:template match="*" mode="ui-d.uicontrol.importance.att.in">
|
---|
507 | <xsl:apply-templates select="." mode="importance.att.in">
|
---|
508 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
509 | </xsl:apply-templates>
|
---|
510 | </xsl:template>
|
---|
511 |
|
---|
512 | <xsl:template match="*" mode="ui-d.uicontrol.status.att.in">
|
---|
513 | <xsl:apply-templates select="." mode="status.att.in">
|
---|
514 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
515 | </xsl:apply-templates>
|
---|
516 | </xsl:template>
|
---|
517 |
|
---|
518 | <xsl:template match="*" mode="ui-d.uicontrol.keyref.att.in">
|
---|
519 | <xsl:apply-templates select="." mode="keyref.att.in">
|
---|
520 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
521 | </xsl:apply-templates>
|
---|
522 | </xsl:template>
|
---|
523 |
|
---|
524 | <xsl:template match="*" mode="ui-d.uicontrol.outputclass.att.in">
|
---|
525 | <xsl:apply-templates select="." mode="outputclass.att.in">
|
---|
526 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
527 | </xsl:apply-templates>
|
---|
528 | </xsl:template>
|
---|
529 |
|
---|
530 | <xsl:template match="*" mode="ui-d.uicontrol.content.in">
|
---|
531 | <xsl:apply-templates select="*|text()" mode="ui-d.uicontrol.child"/>
|
---|
532 | </xsl:template>
|
---|
533 |
|
---|
534 | <xsl:template match="*|text()" mode="ui-d.uicontrol.child">
|
---|
535 | <xsl:param name="isRequired" select="'no'"/>
|
---|
536 | <xsl:apply-templates select="." mode="child">
|
---|
537 | <xsl:with-param name="container" select="' ui-d/uicontrol '"/>
|
---|
538 | <xsl:with-param name="isRequired" select="$isRequired"/>
|
---|
539 | </xsl:apply-templates>
|
---|
540 | </xsl:template>
|
---|
541 |
|
---|
542 | <xsl:template match="*" mode="ui-d.wintitle.atts.in">
|
---|
543 | <xsl:apply-templates select="." mode="ui-d.wintitle.univ.atts.in"/>
|
---|
544 | <xsl:apply-templates select="." mode="ui-d.wintitle.keyref.att.in"/>
|
---|
545 | <xsl:apply-templates select="." mode="ui-d.wintitle.outputclass.att.in"/>
|
---|
546 | </xsl:template>
|
---|
547 |
|
---|
548 | <xsl:template match="*" mode="ui-d.wintitle.univ.atts.in">
|
---|
549 | <xsl:apply-templates select="." mode="ui-d.wintitle.id.atts.in"/>
|
---|
550 | <xsl:apply-templates select="." mode="ui-d.wintitle.select.atts.in"/>
|
---|
551 | </xsl:template>
|
---|
552 |
|
---|
553 | <xsl:template match="*" mode="ui-d.wintitle.id.atts.in">
|
---|
554 | <xsl:apply-templates select="." mode="ui-d.wintitle.id.att.in"/>
|
---|
555 | <xsl:apply-templates select="." mode="ui-d.wintitle.conref.att.in"/>
|
---|
556 | </xsl:template>
|
---|
557 |
|
---|
558 | <xsl:template match="*" mode="ui-d.wintitle.id.att.in">
|
---|
559 | <xsl:apply-templates select="." mode="id.att.in">
|
---|
560 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
561 | </xsl:apply-templates>
|
---|
562 | </xsl:template>
|
---|
563 |
|
---|
564 | <xsl:template match="*" mode="ui-d.wintitle.conref.att.in">
|
---|
565 | <xsl:apply-templates select="." mode="conref.att.in">
|
---|
566 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
567 | </xsl:apply-templates>
|
---|
568 | </xsl:template>
|
---|
569 |
|
---|
570 | <xsl:template match="*" mode="ui-d.wintitle.select.atts.in">
|
---|
571 | <xsl:apply-templates select="." mode="ui-d.wintitle.platform.att.in"/>
|
---|
572 | <xsl:apply-templates select="." mode="ui-d.wintitle.product.att.in"/>
|
---|
573 | <xsl:apply-templates select="." mode="ui-d.wintitle.audience.att.in"/>
|
---|
574 | <xsl:apply-templates select="." mode="ui-d.wintitle.otherprops.att.in"/>
|
---|
575 | <xsl:apply-templates select="." mode="ui-d.wintitle.rev.att.in"/>
|
---|
576 | <xsl:apply-templates select="." mode="ui-d.wintitle.importance.att.in"/>
|
---|
577 | <xsl:apply-templates select="." mode="ui-d.wintitle.status.att.in"/>
|
---|
578 | </xsl:template>
|
---|
579 |
|
---|
580 | <xsl:template match="*" mode="ui-d.wintitle.platform.att.in">
|
---|
581 | <xsl:apply-templates select="." mode="platform.att.in">
|
---|
582 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
583 | </xsl:apply-templates>
|
---|
584 | </xsl:template>
|
---|
585 |
|
---|
586 | <xsl:template match="*" mode="ui-d.wintitle.product.att.in">
|
---|
587 | <xsl:apply-templates select="." mode="product.att.in">
|
---|
588 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
589 | </xsl:apply-templates>
|
---|
590 | </xsl:template>
|
---|
591 |
|
---|
592 | <xsl:template match="*" mode="ui-d.wintitle.audience.att.in">
|
---|
593 | <xsl:apply-templates select="." mode="audience.att.in">
|
---|
594 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
595 | </xsl:apply-templates>
|
---|
596 | </xsl:template>
|
---|
597 |
|
---|
598 | <xsl:template match="*" mode="ui-d.wintitle.otherprops.att.in">
|
---|
599 | <xsl:apply-templates select="." mode="otherprops.att.in">
|
---|
600 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
601 | </xsl:apply-templates>
|
---|
602 | </xsl:template>
|
---|
603 |
|
---|
604 | <xsl:template match="*" mode="ui-d.wintitle.rev.att.in">
|
---|
605 | <xsl:apply-templates select="." mode="rev.att.in">
|
---|
606 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
607 | </xsl:apply-templates>
|
---|
608 | </xsl:template>
|
---|
609 |
|
---|
610 | <xsl:template match="*" mode="ui-d.wintitle.importance.att.in">
|
---|
611 | <xsl:apply-templates select="." mode="importance.att.in">
|
---|
612 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
613 | </xsl:apply-templates>
|
---|
614 | </xsl:template>
|
---|
615 |
|
---|
616 | <xsl:template match="*" mode="ui-d.wintitle.status.att.in">
|
---|
617 | <xsl:apply-templates select="." mode="status.att.in">
|
---|
618 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
619 | </xsl:apply-templates>
|
---|
620 | </xsl:template>
|
---|
621 |
|
---|
622 | <xsl:template match="*" mode="ui-d.wintitle.keyref.att.in">
|
---|
623 | <xsl:apply-templates select="." mode="keyref.att.in">
|
---|
624 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
625 | </xsl:apply-templates>
|
---|
626 | </xsl:template>
|
---|
627 |
|
---|
628 | <xsl:template match="*" mode="ui-d.wintitle.outputclass.att.in">
|
---|
629 | <xsl:apply-templates select="." mode="outputclass.att.in">
|
---|
630 | <xsl:with-param name="isRequired" select="'no'"/>
|
---|
631 | </xsl:apply-templates>
|
---|
632 | </xsl:template>
|
---|
633 |
|
---|
634 | <xsl:template match="*" mode="ui-d.wintitle.content.in">
|
---|
635 | <xsl:apply-templates select="*|text()" mode="ui-d.wintitle.child"/>
|
---|
636 | </xsl:template>
|
---|
637 |
|
---|
638 | <xsl:template match="*|text()" mode="ui-d.wintitle.child">
|
---|
639 | <xsl:param name="isRequired" select="'no'"/>
|
---|
640 | <xsl:apply-templates select="." mode="child">
|
---|
641 | <xsl:with-param name="container" select="' ui-d/wintitle '"/>
|
---|
642 | <xsl:with-param name="isRequired" select="$isRequired"/>
|
---|
643 | </xsl:apply-templates>
|
---|
644 | </xsl:template>
|
---|
645 |
|
---|
646 |
|
---|
647 |
|
---|
648 | </xsl:stylesheet>
|
---|