|
1 <?xml version="1.0"?> |
|
2 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" |
|
3 xmlns:exslt="http://exslt.org/common" exclude-result-prefixes="exslt"> |
|
4 <!--Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). |
|
5 All rights reserved. |
|
6 This component and the accompanying materials are made available |
|
7 under the terms of the License "Eclipse Public License v1.0" |
|
8 which accompanies this distribution, and is available |
|
9 at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
10 |
|
11 Initial Contributors: |
|
12 Nokia Corporation - initial contribution. |
|
13 Contributors: |
|
14 Description: |
|
15 XSLT module which contains the logic to join a system definition file |
|
16 --> |
|
17 <!-- save SF namespace as a constant to avoid the risk of typos--> |
|
18 <xsl:variable name="defaultns">http://www.symbian.org/system-definition</xsl:variable> |
|
19 |
|
20 <!-- create a stand-alone sysdef from a linked set of fragments --> |
|
21 |
|
22 <xsl:template match="/*" mode="join"> |
|
23 <xsl:param name="filename"/> |
|
24 <xsl:message terminate="yes">ERROR: Cannot process this document<xsl:if test="$filename !=''"> (<xsl:value-of select="$filename"/>)</xsl:if> |
|
25 <xsl:choose> |
|
26 <xsl:when test="self::SystemDefinition/@schema">. Unrecognised syntax schema="<xsl:value-of select="@schema"/>"</xsl:when> |
|
27 <xsl:when test="self::SystemDefinition">. Missing schema</xsl:when> |
|
28 <xsl:otherwise>. Invalid file type: <xsl:value-of select="name()"/></xsl:otherwise> |
|
29 </xsl:choose> |
|
30 </xsl:message> |
|
31 </xsl:template> |
|
32 |
|
33 <!-- anything in schemas 3.0.x won't add new functional attributes that need processing here, just blindly copy them--> |
|
34 |
|
35 <xsl:template match="/SystemDefinition[starts-with(@schema,'3.0.') and count(*)=1]" mode="join"> |
|
36 <xsl:param name="origin" select="/.."/> |
|
37 <xsl:param name="root"/> |
|
38 <xsl:param name="filename"/> |
|
39 <xsl:param name="namespaces"/> |
|
40 <xsl:param name="data" select="/.."/> |
|
41 <xsl:choose> |
|
42 <xsl:when test="$origin"> <!-- this sysdef fragment was linked from a parent sysdef --> |
|
43 <xsl:for-each select="*"> <!-- can be only one --> |
|
44 <xsl:variable name="upid"><xsl:apply-templates select="$origin/@id" mode="my-id"/></xsl:variable> <!-- namespaceless ID of this in parent doc --> |
|
45 <xsl:variable name="id"><xsl:apply-templates select="@id" mode="my-id"/></xsl:variable> <!-- namespaceless ID of this here --> |
|
46 <xsl:variable name="upns"><xsl:apply-templates select="$origin/@id" mode="my-namespace"/></xsl:variable> <!-- ID's namespace in parent doc --> |
|
47 <xsl:variable name="ns"><xsl:apply-templates select="@id" mode="my-namespace"/></xsl:variable> <!-- ID's namespace --> |
|
48 <xsl:if test="$id!=$upid or $ns!=$upns"> |
|
49 <xsl:message terminate="yes">ERROR: Linked ID "<xsl:value-of select="$id"/>" (<xsl:value-of select="$ns"/>) must match linking document "<xsl:value-of select="$upid"/>" (<xsl:value-of select="$upns"/>)</xsl:message> |
|
50 </xsl:if> |
|
51 <!-- copy any attributes not already defined (parent doc overrides child doc)--> |
|
52 <xsl:for-each select="@*"> |
|
53 <xsl:variable name="n" select="name()"/> |
|
54 <xsl:choose> |
|
55 <xsl:when test="$n='id'"/> <!-- never copy this, always set --> |
|
56 <xsl:when test="$origin/@*[name()=$n]"> <!-- don't copy if already set --> |
|
57 <xsl:message>Note: Cannot set "<xsl:value-of select="$n"/>", already set on <xsl:value-of select="$origin/@id"/>. Ignoring linked value</xsl:message> |
|
58 </xsl:when> |
|
59 <xsl:when test="$n='before' or $n='replace'"> |
|
60 <!-- ensure ns is correct (if any future attribtues will ever use an ID, process it here too)--> |
|
61 <xsl:apply-templates select="." mode="join"> |
|
62 <xsl:with-param name="namespaces" select="$namespaces"/> |
|
63 </xsl:apply-templates> |
|
64 </xsl:when> |
|
65 <xsl:otherwise><xsl:copy-of select="."/></xsl:otherwise> <!-- just copy anything else --> |
|
66 </xsl:choose> |
|
67 </xsl:for-each> |
|
68 <xsl:copy-of select="../namespace::*[not(.=$namespaces)]"/> <!-- set any namespaces not already set (they should all alreayd be, but some XSLT processors are quirky) --> |
|
69 <xsl:apply-templates select="$data" mode="overlay-attributes"> |
|
70 <xsl:with-param name="item" select="current()"/> |
|
71 </xsl:apply-templates> |
|
72 <xsl:variable name="content"> |
|
73 <xsl:apply-templates select="*|comment()" mode="join"> |
|
74 <xsl:with-param name="root" select="$root"/> |
|
75 <xsl:with-param name="filename" select="$filename"/> |
|
76 <xsl:with-param name="data" select="$data"/> |
|
77 <xsl:with-param name="namespaces" select="$namespaces | ../namespace::*[not(.=$namespaces)]"/> |
|
78 </xsl:apply-templates> |
|
79 </xsl:variable> |
|
80 <xsl:apply-templates select="." mode="is-content-filtered"> <!-- optionally add filtered="yes" if some content has been removed --> |
|
81 <xsl:with-param name="content" select="$content"/> |
|
82 </xsl:apply-templates> |
|
83 <xsl:apply-templates select="$data" mode="overlay-meta"> |
|
84 <xsl:with-param name="item" select="current()"/> |
|
85 </xsl:apply-templates> |
|
86 <xsl:copy-of select="$content"/> |
|
87 </xsl:for-each> |
|
88 </xsl:when> |
|
89 <xsl:when test="function-available('exslt:node-set')"> <!-- this is the root element of a root sysdef --> |
|
90 <!--try to put all namespaces in root element --> |
|
91 <xsl:variable name="nss"> |
|
92 <!-- contains node set of namespaces to add to root element. |
|
93 May panic if there are too many single-letter namespaces and this can't create a new one --> |
|
94 <xsl:call-template name="needed-namespaces"> |
|
95 <xsl:with-param name="foundns"> |
|
96 <xsl:apply-templates select="//*[(self::component or self::collection or self::package or self::layer) and @href]" mode="scan-for-namespaces"/> |
|
97 </xsl:with-param> |
|
98 </xsl:call-template> |
|
99 </xsl:variable> |
|
100 <xsl:variable name="ns" select="@id-namespace | namespace::* | exslt:node-set($nss)/*"/> |
|
101 <xsl:copy><xsl:copy-of select="@*[name()!='schema']"/><xsl:call-template name="set-schema"/> |
|
102 <xsl:apply-templates select="self::*[not(@id-namespace)]" mode="add-id-ns"/> |
|
103 <xsl:for-each select="exslt:node-set($nss)/*"> <!-- add namespace definitions --> |
|
104 <xsl:attribute name="xmlns:{name()}"> |
|
105 <xsl:value-of select="."/> |
|
106 </xsl:attribute> |
|
107 </xsl:for-each> |
|
108 <!-- no need to call is-content-filtered, it never will be from this element --> |
|
109 <xsl:apply-templates select="*|comment()" mode="join"> |
|
110 <xsl:with-param name="namespaces" select="$ns"/> |
|
111 <xsl:with-param name="root" select="$root"/> |
|
112 <xsl:with-param name="data" select="$data"/> |
|
113 <xsl:with-param name="filename" select="$filename"/> |
|
114 </xsl:apply-templates> |
|
115 </xsl:copy> |
|
116 </xsl:when> |
|
117 <xsl:otherwise> <!-- can't handle node-set() so put the namespaces in the document instead of the root element--> |
|
118 <xsl:variable name="ns" select="@id-namespace | namespace::*"/> |
|
119 <xsl:copy><xsl:copy-of select="@*[name()!='schema']"/><xsl:call-template name="set-schema"/> |
|
120 <!-- no need to call is-content-filtered, it never will be from this element --> |
|
121 <xsl:apply-templates select="*|comment()" mode="join"> |
|
122 <xsl:with-param name="namespaces" select="$ns"/> |
|
123 <xsl:with-param name="root" select="$root"/> |
|
124 <xsl:with-param name="data" select="$data"/> |
|
125 <xsl:with-param name="filename" select="$filename"/> |
|
126 </xsl:apply-templates> |
|
127 </xsl:copy> |
|
128 </xsl:otherwise> |
|
129 </xsl:choose> |
|
130 </xsl:template> |
|
131 |
|
132 <xsl:template match="*" mode="scan-for-namespaces"/> <!-- just in case of errors, consider replacing by terminate --> |
|
133 <xsl:template match="*[@href and not(self::meta)]" mode="scan-for-namespaces"> |
|
134 <!-- produce a list of namespace-prefix namespace pairs separated by newlines, in reverse order found in documents |
|
135 reverse order so we can try to use the first namespace prefix defined if it's available--> |
|
136 <xsl:variable name="linked" select="document(@href,.)/*"/> |
|
137 <xsl:for-each select="$linked"> |
|
138 <xsl:apply-templates select="//*[(self::component or self::collection or self::package or self::layer) and @href]" mode="scan-for-namespaces"/> |
|
139 <xsl:for-each select="//namespace::* | @id-namespace"> |
|
140 <xsl:value-of select="concat(name(),' ',.,'
')"/> |
|
141 </xsl:for-each> |
|
142 </xsl:for-each> |
|
143 <xsl:if test="not($linked)"> |
|
144 <xsl:message>Note: The link to <xsl:value-of select="@href"/> from <xsl:value-of select="concat(name(),' ',@id)"/> could not be resolved. Perhaps there's an error in the XML?</xsl:message> |
|
145 </xsl:if> |
|
146 </xsl:template> |
|
147 |
|
148 <xsl:template name="needed-namespaces"> |
|
149 <xsl:param name="foundns"/> |
|
150 <xsl:param name="usedpre"/> |
|
151 |
|
152 <xsl:if test="$foundns!=''"> |
|
153 <xsl:variable name="line" select="substring-before($foundns,'
')"/> <!-- always has trailing newline --> |
|
154 <xsl:variable name="name" select="substring-after($line,' ')"/> <!-- namespace prefix --> |
|
155 <xsl:variable name="remainder" select="substring-after($foundns,'
')"/> |
|
156 <xsl:variable name="newprefix"> |
|
157 <xsl:if test="not(contains(concat('
',$remainder),concat('
',$line,'
'))) and |
|
158 not(//namespace::*[.=$name] or @id-namespace[.=$name] or (not(@id-namespace) and $defaultns=$name))"> |
|
159 <xsl:apply-templates select="." mode="ns-prefix"> |
|
160 <xsl:with-param name="ns" select="$name"/> |
|
161 <xsl:with-param name="pre" select="substring-before($line,' ')"/> |
|
162 <xsl:with-param name="dontuse" select="$usedpre"/> |
|
163 </xsl:apply-templates> |
|
164 </xsl:if> |
|
165 </xsl:variable> |
|
166 <xsl:if test="$newprefix!=''"> |
|
167 <!-- can treat this as if it were a namespace node --> |
|
168 <xsl:element name="{$newprefix}"> |
|
169 <xsl:value-of select="$name"/> |
|
170 </xsl:element> |
|
171 </xsl:if> |
|
172 <xsl:if test="$remainder!=''"> |
|
173 <xsl:call-template name="needed-namespaces"> |
|
174 <xsl:with-param name="foundns" select="$remainder"/> |
|
175 <xsl:with-param name="usedpre" select="concat($usedpre,' ',$newprefix,' ')"/> |
|
176 </xsl:call-template> |
|
177 </xsl:if> |
|
178 </xsl:if> |
|
179 </xsl:template> |
|
180 |
|
181 <xsl:template match="/SystemDefinition" mode="ns-prefix"> |
|
182 <!-- should be able to replace this with mechanism that uses the XSLT processor's own ability to generate namespaces --> |
|
183 <xsl:param name="ns"/> |
|
184 <xsl:param name="pre"/> |
|
185 <xsl:param name="dontuse"/> |
|
186 <xsl:param name="chars">ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz</xsl:param> |
|
187 <xsl:variable name="name" select="substring(substring-after($ns,'http://www.'),1,1)"/> |
|
188 <xsl:choose> |
|
189 <xsl:when test="$pre!='' and $pre!='id-namespace' and not(//namespace::*[name()=$pre]) and not(contains($dontuse,concat(' ',$pre,' ')))"> |
|
190 <xsl:value-of select="$pre"/> |
|
191 </xsl:when> |
|
192 <xsl:when test="$ns='' and $chars=''"> |
|
193 <xsl:message terminate="yes">ERROR: Cannot create namespace prefix for downstream default namespace in <xsl:value-of select="*/@id"/></xsl:message> |
|
194 </xsl:when> |
|
195 <xsl:when test="$name!='' and not(contains($dontuse,concat(' ',$name,' ')))"><xsl:value-of select="$name"/></xsl:when> |
|
196 <xsl:when test="namespace::*[name()=substring($chars,1,1)] or contains($dontuse,concat(' ',substring($chars,1,1),' '))"> |
|
197 <xsl:apply-templates mode="ns-prefix"> |
|
198 <xsl:with-param name="chars" select="substring($chars,2)"/> |
|
199 </xsl:apply-templates> |
|
200 </xsl:when> |
|
201 <xsl:otherwise> |
|
202 <xsl:value-of select="substring($chars,1,1)"/> |
|
203 </xsl:otherwise> |
|
204 </xsl:choose> |
|
205 </xsl:template> |
|
206 |
|
207 |
|
208 <!-- schema handling --> |
|
209 |
|
210 <xsl:template name="set-schema"> |
|
211 <xsl:attribute name="schema"> |
|
212 <xsl:apply-templates mode="my-schema" select="/SystemDefinition"/> |
|
213 </xsl:attribute> |
|
214 </xsl:template> |
|
215 |
|
216 <xsl:template name="compare-versions"><xsl:param name="v1"/><xsl:param name="v2"/> |
|
217 <xsl:choose> |
|
218 <xsl:when test="$v1=$v2"><xsl:value-of select="$v1"/></xsl:when> |
|
219 <xsl:when test="substring-before($v1,'.') > substring-before($v2,'.')"><xsl:value-of select="$v1"/></xsl:when> |
|
220 <xsl:when test="substring-before($v1,'.') < substring-before($v2,'.')"><xsl:value-of select="$v2"/></xsl:when> |
|
221 <xsl:when test="substring-before(substring-after($v1,'.'),'.') > substring-before(substring-after($v2,'.'),'.')"><xsl:value-of select="$v1"/></xsl:when> |
|
222 <xsl:when test="substring-before(substring-after($v1,'.'),'.') < substring-before(substring-after($v2,'.'),'.')"><xsl:value-of select="$v2"/></xsl:when> |
|
223 <xsl:when test="substring-after(substring-after($v1,'.'),'.') > substring-after(substring-after($v2,'.'),'.')"><xsl:value-of select="$v1"/></xsl:when> |
|
224 <xsl:when test="substring-after(substring-after($v1,'.'),'.') < substring-after(substring-after($v2,'.'),'.')"><xsl:value-of select="$v2"/></xsl:when> |
|
225 <xsl:otherwise><xsl:value-of select="$v1"/></xsl:otherwise> |
|
226 </xsl:choose> |
|
227 </xsl:template> |
|
228 |
|
229 <xsl:template name="compare-version-list"><xsl:param name="list"/> |
|
230 <xsl:variable name="cur" select="substring-before($list,' ')"/> |
|
231 <xsl:variable name="remaining" select="substring-after($list,' ')"/> |
|
232 <xsl:choose> |
|
233 <xsl:when test="$remaining=''"><xsl:value-of select="$cur"/></xsl:when> |
|
234 <xsl:otherwise> |
|
235 <xsl:variable name="nextbig"> |
|
236 <xsl:call-template name="compare-version-list"> |
|
237 <xsl:with-param name="list" select="$remaining"/> |
|
238 </xsl:call-template> |
|
239 </xsl:variable> |
|
240 <xsl:call-template name="compare-versions"> |
|
241 <xsl:with-param name="v1" select="$cur"/> |
|
242 <xsl:with-param name="v2" select="$nextbig"/> |
|
243 </xsl:call-template> |
|
244 </xsl:otherwise> |
|
245 </xsl:choose> |
|
246 </xsl:template> |
|
247 |
|
248 <xsl:template match="/SystemDefinition" mode="my-schema"><xsl:param name="biggest" select="@schema"/> |
|
249 <xsl:variable name="linked" select="//*[(self::component or self::collection or self::package or self::layer) and @href]"/> |
|
250 <xsl:choose> |
|
251 <xsl:when test="not($linked)"> <!-- no need to go further --> |
|
252 <xsl:call-template name="compare-versions"> |
|
253 <xsl:with-param name="v1" select="@schema"/> |
|
254 <xsl:with-param name="v2" select="$biggest"/> |
|
255 </xsl:call-template> |
|
256 </xsl:when> |
|
257 <xsl:otherwise> |
|
258 <xsl:call-template name="compare-version-list"> |
|
259 <xsl:with-param name="list"> |
|
260 <xsl:for-each select="$linked"> |
|
261 <xsl:call-template name="compare-versions"> |
|
262 <xsl:with-param name="v1"> |
|
263 <xsl:apply-templates mode="my-schema" select="document(@href,.)/*"/> |
|
264 </xsl:with-param> |
|
265 <xsl:with-param name="v2" select="$biggest"/> |
|
266 </xsl:call-template> |
|
267 <xsl:text> </xsl:text> |
|
268 </xsl:for-each> |
|
269 </xsl:with-param> |
|
270 </xsl:call-template> |
|
271 </xsl:otherwise> |
|
272 </xsl:choose> |
|
273 </xsl:template> |
|
274 |
|
275 |
|
276 <xsl:template match="unit" mode="join"> <xsl:param name="root"/><xsl:param name="filename"/><xsl:param name="data"/> |
|
277 <xsl:variable name="display"> |
|
278 <xsl:apply-templates select="$data" mode="filter"> |
|
279 <xsl:with-param name="item" select="current()"/> |
|
280 </xsl:apply-templates> |
|
281 </xsl:variable> |
|
282 |
|
283 <xsl:if test="$display != 'hide' "> <!-- if hide, remove completely from the output--> |
|
284 <xsl:element name="{name()}"> |
|
285 <xsl:apply-templates select="@*" mode="join"> |
|
286 <xsl:with-param name="root" select="$root"/> |
|
287 <xsl:with-param name="filename" select="$filename"/> |
|
288 </xsl:apply-templates> |
|
289 </xsl:element> |
|
290 </xsl:if> |
|
291 </xsl:template> |
|
292 |
|
293 <!-- override mode="meta" to translate metadata sections. By default, include --> |
|
294 <xsl:template match="meta" priority="2" mode="join"><xsl:param name="data"/> |
|
295 <xsl:variable name="display"> |
|
296 <xsl:apply-templates select="$data" mode="filter"> |
|
297 <xsl:with-param name="item" select="current()"/> |
|
298 </xsl:apply-templates> |
|
299 </xsl:variable> |
|
300 |
|
301 <xsl:if test="$display != 'hide' "> <!-- if hide, remove completely from the output--> |
|
302 <xsl:apply-templates select="." mode="meta"> |
|
303 <xsl:with-param name="display" select="$display"/> |
|
304 <xsl:with-param name="data" select="$data"/> |
|
305 </xsl:apply-templates> |
|
306 </xsl:if> |
|
307 </xsl:template> |
|
308 |
|
309 <xsl:template match="meta[@rel='link-mapping']" priority="3" mode="join"/> <!--these are only used in the joining process, so remove from output --> |
|
310 |
|
311 |
|
312 <xsl:template match="*" mode="join"> |
|
313 <xsl:param name="root"/><xsl:param name="filename"/><xsl:param name="namespaces"/><xsl:param name="data"/> |
|
314 <!-- get attribtues from overlay --> |
|
315 <!-- test for presence, if filtered out, just return --> |
|
316 <!-- test for children, if it has some, but they're filtered out, either return or leave as empty, dependening on filter rule |
|
317 if had items and now has none, options: |
|
318 still has meta: keep / delete |
|
319 still has comments: keep / delete |
|
320 --> |
|
321 <xsl:variable name="display"> |
|
322 <xsl:apply-templates select="$data" mode="filter"> |
|
323 <xsl:with-param name="item" select="current()"/> |
|
324 </xsl:apply-templates> |
|
325 </xsl:variable> |
|
326 |
|
327 <xsl:if test="$display != 'hide' "> <!-- if hide, remove completely from the output--> |
|
328 <xsl:variable name="href"> |
|
329 <xsl:apply-templates select="." mode="link"> |
|
330 <xsl:with-param name="data" select="$data"/> |
|
331 </xsl:apply-templates> |
|
332 </xsl:variable> |
|
333 |
|
334 <xsl:element name="{name()}"> <!-- use this instead of <copy> so xalan doesn't add extra wrong namespaces --> |
|
335 <xsl:apply-templates select="@*" mode="join"> |
|
336 <xsl:with-param name="namespaces" select="$namespaces"/> |
|
337 </xsl:apply-templates> |
|
338 <xsl:if test="$display != '' "> |
|
339 <!-- custom attribute to indicate how this is to be represented. Blank indicates normal, hide removes from the output (see above), anything else is put in the attribute --> |
|
340 <xsl:attribute name="display"><xsl:value-of select="$display"/></xsl:attribute> |
|
341 </xsl:if> |
|
342 <xsl:apply-templates select="$data" mode="overlay-attributes"> |
|
343 <xsl:with-param name="item" select="current()"/> |
|
344 </xsl:apply-templates> |
|
345 <xsl:choose> |
|
346 <xsl:when test="$href !='' "> |
|
347 <xsl:variable name="prefixmap" select="ancestor::SystemDefinition/*/meta[@rel='link-mapping']/map-prefix[starts-with($href,@link)]"/> |
|
348 <xsl:variable name="origin" select="."/> |
|
349 <xsl:apply-templates select="document($href,.)/*" mode="join"> |
|
350 <xsl:with-param name="origin" select="$origin"/> |
|
351 <xsl:with-param name="data" select="$data"/> |
|
352 <xsl:with-param name="namespaces" select="$namespaces"/> |
|
353 <xsl:with-param name="filename"> |
|
354 <xsl:call-template name="joinpath"> |
|
355 <xsl:with-param name="file" select="$filename"/> |
|
356 <xsl:with-param name="rel"> |
|
357 <xsl:choose> |
|
358 <xsl:when test="$prefixmap"> |
|
359 <xsl:value-of select="$prefixmap/@to"/> |
|
360 <xsl:value-of select="substring-after($href,$prefixmap/@link)"/> |
|
361 </xsl:when> |
|
362 <xsl:otherwise> |
|
363 <xsl:value-of select="$href"/> |
|
364 </xsl:otherwise> |
|
365 </xsl:choose> |
|
366 </xsl:with-param> |
|
367 </xsl:call-template> |
|
368 </xsl:with-param> |
|
369 <xsl:with-param name="root"> |
|
370 <xsl:value-of select="$root"/>/<xsl:call-template name="lastbefore"> |
|
371 <xsl:with-param name="string" select="$href"/> |
|
372 </xsl:call-template> |
|
373 </xsl:with-param> |
|
374 </xsl:apply-templates> |
|
375 </xsl:when> |
|
376 <xsl:otherwise> |
|
377 <xsl:variable name="content"> |
|
378 <xsl:apply-templates select="*|comment()" mode="join"> |
|
379 <xsl:with-param name="root" select="$root"/> |
|
380 <xsl:with-param name="filename" select="$filename"/> |
|
381 <xsl:with-param name="namespaces" select="$namespaces"/> |
|
382 <xsl:with-param name="data" select="$data"/> |
|
383 </xsl:apply-templates> |
|
384 </xsl:variable> |
|
385 <xsl:apply-templates select="." mode="is-content-filtered"> <!-- add filtered="yes" if some content has been removed --> |
|
386 <xsl:with-param name="content" select="$content"/> |
|
387 </xsl:apply-templates> |
|
388 <xsl:apply-templates select="$data" mode="overlay-meta"> |
|
389 <xsl:with-param name="item" select="current()"/> |
|
390 </xsl:apply-templates> |
|
391 <xsl:copy-of select="$content"/> |
|
392 </xsl:otherwise> |
|
393 </xsl:choose> |
|
394 </xsl:element> |
|
395 </xsl:if> |
|
396 </xsl:template> |
|
397 |
|
398 <!-- By default, do nothing. Can override template to add filtered="yes" if need to track what's a placeholder and what's been filtered |
|
399 implement with param name="content" |
|
400 --> |
|
401 <xsl:template mode="is-content-filtered" match="*" priority="-2"/> |
|
402 |
|
403 |
|
404 <xsl:template match="@mrp[starts-with(.,'/')] | @bldFile[starts-with(.,'/')] | @base[starts-with(.,'/')]" mode="join"> |
|
405 <xsl:copy-of select="."/> |
|
406 </xsl:template> |
|
407 |
|
408 |
|
409 <xsl:template match="@mrp|@bldFile|@base" mode="join"> <xsl:param name="root"/><xsl:param name="filename"/> |
|
410 <xsl:attribute name="{name()}"> |
|
411 <xsl:call-template name="joinpath"> |
|
412 <xsl:with-param name="file" select="$filename"/> |
|
413 <xsl:with-param name="rel" select="."/> |
|
414 </xsl:call-template> |
|
415 </xsl:attribute> |
|
416 </xsl:template> |
|
417 |
|
418 |
|
419 <xsl:template match="@href" mode="join"/> <!--never copy this into the generated doc, that's the whole point of this module --> |
|
420 |
|
421 <xsl:template match="@*" mode="my-namespace"> <!-- the namespace of an ID --> |
|
422 <xsl:choose> |
|
423 <xsl:when test="contains(.,':')"> |
|
424 <xsl:value-of select="ancestor::*/namespace::*[name()=substring-before(current(),':')]"/> |
|
425 </xsl:when> |
|
426 <xsl:when test="/SystemDefinition/@id-namespace"> |
|
427 <xsl:value-of select="/SystemDefinition/@id-namespace"/> |
|
428 </xsl:when> |
|
429 <xsl:otherwise> |
|
430 <xsl:value-of select="$defaultns"/> |
|
431 </xsl:otherwise> |
|
432 </xsl:choose> |
|
433 </xsl:template> |
|
434 |
|
435 |
|
436 <xsl:template match="@*" mode="my-id"> <!-- the ID with namespace prefix removed --> |
|
437 <xsl:choose> |
|
438 <xsl:when test="contains(.,':')"> |
|
439 <xsl:value-of select="substring-after(.,':')"/> |
|
440 </xsl:when> |
|
441 <xsl:otherwise> |
|
442 <xsl:value-of select="."/> |
|
443 </xsl:otherwise> |
|
444 </xsl:choose> |
|
445 </xsl:template> |
|
446 |
|
447 <xsl:template match="*" mode="err-path"> |
|
448 <xsl:if test="../@id"> |
|
449 <xsl:apply-templates select=".." mode="err-path"/>/</xsl:if> |
|
450 <xsl:value-of select="@id"/> |
|
451 </xsl:template> |
|
452 |
|
453 |
|
454 <xsl:template match="@id|@before|@replace" mode="join"> |
|
455 <xsl:param name="namespaces"/> |
|
456 <!-- this will change the namespace prefixes for all IDs to match the root document --> |
|
457 <xsl:variable name="ns"> |
|
458 <xsl:apply-templates select="." mode="my-namespace"/> |
|
459 </xsl:variable> |
|
460 <xsl:if test="$ns=''"> |
|
461 <xsl:message terminate="yes">ERROR: Could not find namespace for <xsl:value-of select="name()"/> "<xsl:value-of select="."/>" in <xsl:apply-templates select="../.." mode="err-path"/> |
|
462 <xsl:text>
</xsl:text> |
|
463 </xsl:message> |
|
464 </xsl:if> |
|
465 <xsl:variable name="prefix" select="name($namespaces[.=$ns])"/> |
|
466 <xsl:attribute name="{name()}"> |
|
467 <xsl:choose> |
|
468 <xsl:when test="$prefix = 'id-namespace' or (not($namespaces[name()='id-namespace']) and $ns=$defaultns)"/> <!-- it's the default namespace, no prefix --> |
|
469 <xsl:when test="$prefix='' and contains(.,':')"> |
|
470 <!-- complex: copy id and copy namespace (namespace should be copied already)--> |
|
471 <xsl:value-of select="."/> |
|
472 </xsl:when> |
|
473 <xsl:when test="$prefix='' and $ns=$defaultns"/> <!-- no prefix and it's the default --> |
|
474 <xsl:when test="$prefix!=''"> <!-- just change the prefix --> |
|
475 <xsl:value-of select="concat($prefix,':')"/> |
|
476 </xsl:when> |
|
477 <xsl:otherwise> |
|
478 <xsl:message terminate="yes">ERROR: Joining error in resolving namespace for <xsl:value-of select="name()"/> "<xsl:value-of select="."/>" in <xsl:apply-templates select="../.." mode="err-path"/> |
|
479 <xsl:text>
</xsl:text></xsl:message> |
|
480 </xsl:otherwise> |
|
481 </xsl:choose> |
|
482 <xsl:apply-templates select="." mode="my-id"/> |
|
483 </xsl:attribute> |
|
484 </xsl:template> |
|
485 |
|
486 |
|
487 |
|
488 <xsl:template match="@*|comment()" mode="join"><xsl:copy-of select="."/></xsl:template> |
|
489 |
|
490 |
|
491 <xsl:include href="path-module.xsl"/> |
|
492 |
|
493 <!-- overridable templates follow --> |
|
494 |
|
495 |
|
496 <xsl:template match="*" mode="filter" priority="-9"/> <!-- by default show --> |
|
497 <xsl:template match="*" mode="overlay-attributes" priority="-9"/> <!-- by default do nothing --> |
|
498 <xsl:template match="*" mode="overlay-meta" priority="-9"/> <!-- by default do nothing --> |
|
499 <xsl:template match="/SystemDefinition" mode="add-id-ns" priority="-9"/> <!-- some tools may have an easier job if this were always present, but, by default, assume it can just stay implied --> |
|
500 |
|
501 <xsl:template match="*" mode="link" priority="-1"> <!-- can be overriden to allow custom changes to href values --> |
|
502 <xsl:value-of select="@href"/> |
|
503 </xsl:template> |
|
504 |
|
505 |
|
506 <xsl:template match="*" mode="meta" priority="-9"><xsl:param name="data"/><xsl:param name="display"/> |
|
507 <xsl:element name="{name()}"> |
|
508 <xsl:copy-of select="@*[name()!='href']"/> <!-- copy all attributes as is, always drop href --> |
|
509 <xsl:choose> |
|
510 <xsl:when test="$display='local' and @href and contains(@href,':') and not(starts-with(@href,'file:'))"> |
|
511 <!-- non-local URL: only want local URLs, so keep href as is--> |
|
512 <xsl:copy-of select="@href"/> |
|
513 </xsl:when> |
|
514 <xsl:when test="@href"> |
|
515 <xsl:copy-of select="document(@href,.)/*"/> |
|
516 </xsl:when> |
|
517 <xsl:otherwise> |
|
518 <xsl:copy-of select="*|comment()"/> |
|
519 </xsl:otherwise> |
|
520 </xsl:choose> |
|
521 </xsl:element> |
|
522 </xsl:template> |
|
523 |
|
524 |
|
525 </xsl:stylesheet> |