]> git.donarmstrong.com Git - dactyl.git/blob - common/content/help.xsl
Import 1.0rc1 supporting Firefox up to 11.*
[dactyl.git] / common / content / help.xsl
1 <?xml version="1.0" encoding="utf-8"?>
2 <!DOCTYPE stylesheet SYSTEM "dactyl://content/dtd">
3
4 <!-- Header {{{1 -->
5 <xsl:stylesheet version="1.0"
6     xmlns="http://www.w3.org/1999/xhtml"
7     xmlns:html="http://www.w3.org/1999/xhtml"
8     xmlns:dactyl="http://vimperator.org/namespaces/liberator"
9     xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
10     xmlns:exsl="http://exslt.org/common"
11     xmlns:regexp="http://exslt.org/regular-expressions"
12     xmlns:str="http://exslt.org/strings"
13     extension-element-prefixes="exsl regexp str">
14
15     <xsl:output method="xml" indent="no"/>
16
17     <!-- Variable Definitions {{{1 -->
18
19
20     <!-- Process Overlays {{{1 -->
21
22     <xsl:template name="splice-overlays">
23         <xsl:param name="elem"/>
24         <xsl:param name="tag"/>
25         <xsl:for-each select="ancestor::*/dactyl:overlay/*[@insertbefore=$tag]">
26             <xsl:apply-templates select="." mode="overlay"/>
27         </xsl:for-each>
28         <xsl:choose>
29             <xsl:when test="ancestor::*/dactyl:overlay/*[@replace=$tag] and not($elem[@replace])">
30                 <xsl:for-each select="ancestor::*/dactyl:overlay/*[@replace=$tag]">
31                     <xsl:apply-templates select="." mode="overlay-2"/>
32                 </xsl:for-each>
33             </xsl:when>
34             <xsl:otherwise>
35                 <xsl:for-each select="$elem">
36                     <xsl:apply-templates select="." mode="overlay-2"/>
37                 </xsl:for-each>
38             </xsl:otherwise>
39         </xsl:choose>
40         <xsl:for-each select="ancestor::*/dactyl:overlay/*[@insertafter=$tag]">
41             <xsl:apply-templates select="." mode="overlay"/>
42         </xsl:for-each>
43     </xsl:template>
44
45     <xsl:template match="dactyl:tags[parent::dactyl:document]|dactyl:tag" mode="overlay">
46         <xsl:call-template name="splice-overlays">
47             <xsl:with-param name="tag" select="substring-before(concat(., ' '), ' ')"/>
48             <xsl:with-param name="elem" select="self::node()"/>
49         </xsl:call-template>
50     </xsl:template>
51     <xsl:template match="*[dactyl:tags]" mode="overlay">
52         <xsl:call-template name="splice-overlays">
53             <xsl:with-param name="tag" select="substring-before(concat(dactyl:tags, ' '), ' ')"/>
54             <xsl:with-param name="elem" select="self::node()"/>
55         </xsl:call-template>
56     </xsl:template>
57     <xsl:template match="dactyl:*[@tag and not(@replace)]" mode="overlay">
58         <xsl:call-template name="splice-overlays">
59             <xsl:with-param name="tag" select="substring-before(concat(@tag, ' '), ' ')"/>
60             <xsl:with-param name="elem" select="self::node()"/>
61         </xsl:call-template>
62     </xsl:template>
63
64     <!-- Process Inclusions {{{1 -->
65
66     <xsl:template name="include">
67         <xsl:param name="root-node" select="."/>
68         <xsl:param name="overlay" select="concat('dactyl://help-overlay/', $root-node/@name)"/>
69
70         <!-- Ridiculous three-pass processing is needed to deal with
71            - lack of dynamic variable scope in XSL 1.0.  -->
72
73         <!-- Store a copy of the overlay for the current document. -->
74         <xsl:variable name="doc">
75             <dactyl:document>
76                 <xsl:copy-of select="document($overlay)/dactyl:overlay"/>
77                 <xsl:copy-of select="$root-node/node()"/>
78             </dactyl:document>
79         </xsl:variable>
80
81         <xsl:call-template name="parse-tags">
82             <xsl:with-param name="text" select="concat($root-node/@name, '.xml')"/>
83         </xsl:call-template>
84         <xsl:apply-templates select="exsl:node-set($doc)/dactyl:document/node()[position() != 1]" mode="overlay"/>
85     </xsl:template>
86
87     <xsl:template match="dactyl:include" mode="overlay-2">
88         <div dactyl:highlight="HelpInclude">
89             <xsl:call-template name="include">
90                 <xsl:with-param name="root-node" select="document(@href)/dactyl:document"/>
91             </xsl:call-template>
92         </div>
93     </xsl:template>
94
95     <xsl:template match="@*|node()" mode="overlay">
96         <xsl:apply-templates select="." mode="overlay-2"/>
97     </xsl:template>
98     <xsl:template match="@*[starts-with(local-name(), 'on')]|*[local-name() = 'script']" mode="overlay-2"/>
99     <xsl:template match="@*|node()" mode="overlay-2">
100         <xsl:copy>
101             <xsl:apply-templates select="@*|node()" mode="overlay"/>
102         </xsl:copy>
103     </xsl:template>
104
105     <!-- Root {{{1 -->
106
107     <xsl:template match="/">
108
109         <!-- Ridiculous three-pass processing is needed to deal with
110            - lack of dynamic variable scope in XSL 1.0.  -->
111
112         <xsl:variable name="doc1">
113             <xsl:call-template name="include">
114                 <xsl:with-param name="root-node" select="dactyl:document"/>
115             </xsl:call-template>
116         </xsl:variable>
117         <xsl:variable name="root" select="exsl:node-set($doc1)"/>
118
119         <!-- Store a cache of all tags defined -->
120         <xsl:variable name="doc2">
121             <dactyl:document>
122                 <xsl:attribute name="document-tags">
123                     <xsl:text> </xsl:text>
124                     <xsl:for-each select="$root//@tag|$root//dactyl:tags/text()|$root//dactyl:tag/text()">
125                         <xsl:value-of select="concat(., ' ')"/>
126                     </xsl:for-each>
127                 </xsl:attribute>
128                 <xsl:copy-of select="$root/node()"/>
129             </dactyl:document>
130         </xsl:variable>
131         <xsl:variable name="root2" select="exsl:node-set($doc2)/dactyl:document"/>
132
133         <html dactyl:highlight="Help">
134             <head>
135                 <title><xsl:value-of select="/dactyl:document/@title"/></title>
136                 <script type="text/javascript" src="resource://dactyl-content/help.js"/>
137             </head>
138             <body dactyl:highlight="HelpBody">
139                 <xsl:apply-templates select="$root2/node()|$root2/@*" mode="help-1"/>
140             </body>
141         </html>
142     </xsl:template>
143
144     <!-- Table of Contents {{{1 -->
145
146     <xsl:template name="toc">
147         <xsl:param name="level" select="1"/>
148         <xsl:param name="context"/>
149         <xsl:param name="toc"/>
150
151         <xsl:variable name="tag" select="concat('h', $level)"/>
152         <xsl:variable name="lasttag" select="concat('h', $level - 1)"/>
153
154         <xsl:variable name="nodes" select="$toc/*[
155             local-name() = $tag and not(preceding::*[local-name() = $lasttag][position() = 1 and not(.=$context)])]"/>
156
157         <xsl:if test="$nodes">
158             <ol level="{$level}" dactyl:highlight="HelpOrderedList">
159                 <xsl:for-each select="$nodes">
160                     <li>
161                         <a>
162                             <xsl:if test="@tag">
163                                 <xsl:attribute name="href"><xsl:value-of select="concat('#', substring-before(concat(@tag, ' '), ' '))"/></xsl:attribute>
164                             </xsl:if>
165                             <xsl:apply-templates select="node()[not(self::dactyl:strut)]" mode="help-1"/>
166                         </a>
167                         <xsl:call-template name="toc">
168                             <xsl:with-param name="level" select="$level + 1"/>
169                             <xsl:with-param name="context" select="."/>
170                             <xsl:with-param name="toc" select="$toc"/>
171                         </xsl:call-template>
172                     </li>
173                 </xsl:for-each>
174             </ol>
175         </xsl:if>
176     </xsl:template>
177     <xsl:template match="dactyl:toc" mode="help-2">
178         <xsl:variable name="TOC">
179             <context/>
180             <xsl:for-each
181                 select="following::dactyl:h1|following::dactyl:h2|following::dactyl:h3|following::dactyl:h4|following::dactyl:h5">
182                 <xsl:copy-of select="."/>
183             </xsl:for-each>
184         </xsl:variable>
185         <xsl:variable name="toc" select="exsl:node-set($TOC)"/>
186
187         <xsl:if test="//dactyl:toc[1 and self::*]">
188             <div dactyl:highlight="HelpTOC">
189                 <h2><!--L-->Contents</h2>
190                 <xsl:if test="@start">
191                     <xsl:call-template name="toc">
192                         <xsl:with-param name="level" select="number(@start)"/>
193                         <xsl:with-param name="toc" select="$toc"/>
194                     </xsl:call-template>
195                 </xsl:if>
196                 <xsl:if test="not(@start)">
197                     <xsl:call-template name="toc">
198                         <xsl:with-param name="toc" select="$toc"/>
199                     </xsl:call-template>
200                 </xsl:if>
201             </div>
202         </xsl:if>
203     </xsl:template>
204
205     <!-- Items {{{1 -->
206
207     <xsl:template match="dactyl:strut" mode="help-2">
208         <div style="clear: both"/>
209     </xsl:template>
210     <xsl:template match="dactyl:item" mode="help-2">
211         <div dactyl:highlight="HelpItem">
212             <xsl:apply-templates select="dactyl:tags|dactyl:spec|dactyl:strut" mode="help-1"/>
213             <xsl:if test="not(dactyl:description/@short)">
214                 <hr style="border: 0; height: 0; margin: 0; width: 100%; float: right;"/>
215                 <xsl:if test="dactyl:type|dactyl:default">
216                     <div dactyl:highlight="HelpOptInfo">
217                         <xsl:apply-templates select="dactyl:type|dactyl:default" mode="help-1"/>
218                         <div style="clear: both;"/>
219                     </div>
220                 </xsl:if>
221             </xsl:if>
222             <xsl:apply-templates select="dactyl:description" mode="help-1"/>
223             <div style="clear: both;"/>
224         </div>
225     </xsl:template>
226     <!--
227     <xsl:template match="dactyl:item/dactyl:spec[position() = last()]" mode="help-2">
228         <div style="clear: both;"/>
229         <div dactyl:highlight="HelpSpec"><xsl:apply-templates mode="help-1"/></div>
230     </xsl:template>
231     -->
232
233     <xsl:template match="dactyl:default[not(@type='plain')]" mode="help-2">
234         <xsl:variable name="type" select="preceding-sibling::dactyl:type[1] | following-sibling::dactyl:type[1]"/>
235         <span dactyl:highlight="HelpDefault">
236             <xsl:copy-of select="@*[not(starts-with(local-name(), 'on'))]"/>
237             <xsl:text>(default: </xsl:text>
238             <xsl:choose>
239                 <xsl:when test="$type = 'string'">
240                     <span dactyl:highlight="HelpString" delim="'"><xsl:apply-templates mode="help-1"/></span>
241                 </xsl:when>
242                 <xsl:when test="contains($type, 'list') or contains($type, 'map')">
243                     <span dactyl:highlight="HelpString" delim=""><xsl:apply-templates mode="help-1"/></span>
244                     <xsl:if test=". = ''"><!--L-->(empty)</xsl:if>
245                 </xsl:when>
246                 <xsl:otherwise>
247                     <span>
248                         <xsl:attribute name="dactyl:highlight">
249                             <xsl:choose>
250                                 <xsl:when test="$type = 'boolean'">Boolean</xsl:when>
251                                 <xsl:when test="$type = 'number'">Number</xsl:when>
252                                 <xsl:when test="$type = 'charlist'">String</xsl:when>
253                             </xsl:choose>
254                         </xsl:attribute>
255                         <xsl:apply-templates select="node()" mode="help-1"/>
256                     </span>
257                 </xsl:otherwise>
258             </xsl:choose>)</span>
259     </xsl:template>
260
261     <!-- Tag Definitions {{{1 -->
262
263     <xsl:template match="dactyl:item/dactyl:tags[position() = last()]" mode="help-2">
264         <div style="clear: right"/>
265         <xsl:call-template name="parse-tags">
266             <xsl:with-param name="text" select="."/>
267         </xsl:call-template>
268     </xsl:template>
269     <xsl:template match="dactyl:tags" mode="help-2">
270         <xsl:call-template name="parse-tags">
271             <xsl:with-param name="text" select="."/>
272         </xsl:call-template>
273     </xsl:template>
274     <xsl:template match="@tag[parent::dactyl:p]" mode="help-2">
275         <xsl:call-template name="parse-tags">
276             <xsl:with-param name="text" select="."/>
277         </xsl:call-template>
278         <div style="clear: right"/>
279     </xsl:template>
280     <xsl:template match="dactyl:tag|@tag" mode="help-2">
281         <xsl:call-template name="parse-tags">
282             <xsl:with-param name="text" select="."/>
283         </xsl:call-template>
284     </xsl:template>
285     <xsl:template name="parse-tags">
286         <xsl:param name="text"/>
287         <div dactyl:highlight="HelpTags">
288         <xsl:for-each select="str:tokenize($text)">
289             <a id="{.}" dactyl:highlight="HelpTag"><xsl:value-of select="."/></a>
290         </xsl:for-each>
291         </div>
292     </xsl:template>
293
294     <!-- Tag Links {{{1 -->
295
296     <xsl:template name="linkify-tag">
297         <xsl:param name="contents" select="text()"/>
298         <xsl:variable name="tag" select="$contents"/>
299         <xsl:variable name="tag-url" select="
300           regexp:replace(regexp:replace($tag, '%', 'g', '%25'),
301                          '#', 'g', '%23')"/>
302
303         <a style="color: inherit;">
304             <xsl:if test="not(@link) or @link != 'false'">
305                 <xsl:choose>
306                     <xsl:when test="@link and @link != 'false'">
307                         <xsl:attribute name="href">dactyl://help-tag/<xsl:value-of select="@link"/></xsl:attribute>
308                     </xsl:when>
309                     <xsl:when test="contains(ancestor::*/@document-tags, concat(' ', $tag, ' '))">
310                         <xsl:attribute name="href">#<xsl:value-of select="$tag-url"/></xsl:attribute>
311                     </xsl:when>
312                     <xsl:otherwise>
313                         <xsl:attribute name="href">dactyl://help-tag/<xsl:value-of select="$tag-url"/></xsl:attribute>
314                     </xsl:otherwise>
315                 </xsl:choose>
316             </xsl:if>
317             <xsl:value-of select="$contents"/>
318         </a>
319     </xsl:template>
320
321     <xsl:template match="dactyl:o" mode="help-2">
322         <span dactyl:highlight="HelpOpt">
323             <xsl:call-template name="linkify-tag">
324                 <xsl:with-param name="contents" select='concat("&#39;", text(), "&#39;")'/>
325             </xsl:call-template>
326         </span>
327     </xsl:template>
328     <xsl:template match="dactyl:pref" mode="help-2">
329         <a href="http://kb.mozillazine.org/{text()}" dactyl:highlight="HelpOpt"
330             >'<xsl:apply-templates select="@*|node()" mode="help-1"/>'</a>
331     </xsl:template>
332     <xsl:template match="dactyl:t" mode="help-2">
333         <span dactyl:highlight="HelpTopic">
334             <xsl:call-template name="linkify-tag"/>
335         </span>
336     </xsl:template>
337     <xsl:template match="dactyl:k" mode="help-2">
338         <span dactyl:highlight="HelpKey">
339             <xsl:call-template name="linkify-tag"/>
340         </span>
341     </xsl:template>
342     <xsl:template match="dactyl:kwd" mode="help-2">
343         <span dactyl:highlight="HelpKeyword">
344             <xsl:apply-templates select="@*|node()" mode="help-1"/>
345         </span>
346     </xsl:template>
347     <xsl:template match="dactyl:k[@name]" mode="help-2">
348         <span dactyl:highlight="HelpKey">
349             <xsl:call-template name="linkify-tag">
350                 <xsl:with-param name="contents" select="concat('&lt;', @name, '>', .)"/>
351             </xsl:call-template>
352         </span>
353     </xsl:template>
354     <xsl:template match="dactyl:k[@mode]" mode="help-2">
355         <span dactyl:highlight="HelpKey">
356             <xsl:call-template name="linkify-tag">
357                 <xsl:with-param name="contents" select="concat(@mode, '_', text())"/>
358             </xsl:call-template>
359         </span>
360     </xsl:template>
361     <xsl:template match="dactyl:k[@mode and @name]" mode="help-2">
362         <span dactyl:highlight="HelpKey">
363             <xsl:call-template name="linkify-tag">
364                 <xsl:with-param name="contents" select="concat(@mode, '_', '&lt;', @name, '>', .)"/>
365             </xsl:call-template>
366         </span>
367     </xsl:template>
368
369     <!-- HTML-ish elements {{{1 -->
370
371     <xsl:template match="dactyl:dl" mode="help-2">
372         <xsl:apply-templates select="@tag" mode="help-1"/>
373         <dl>
374             <column style="{@dt}"/>
375             <column style="{@dd}"/>
376             <xsl:for-each select="dactyl:dt">
377                 <tr>
378                     <xsl:apply-templates select="." mode="help-1"/>
379                     <xsl:apply-templates select="following-sibling::dactyl:dd[1]" mode="help-1"/>
380                 </tr>
381             </xsl:for-each>
382         </dl>
383     </xsl:template>
384
385     <xsl:template match="dactyl:link" mode="help-2">
386         <a>
387             <xsl:choose>
388                 <xsl:when test="not(@topic)"/>
389                 <xsl:when test="regexp:match(@topic, '^([a-zA-Z]+:|[^/]*#|/)', '')">
390                     <xsl:attribute name="href"><xsl:value-of select="@topic"/></xsl:attribute>
391                 </xsl:when>
392                 <xsl:otherwise>
393                     <xsl:attribute name="href"><xsl:value-of select="concat('dactyl://help-tag/', @topic)"/></xsl:attribute>
394                 </xsl:otherwise>
395             </xsl:choose>
396             <xsl:if test="regexp:match(@topic, '^[a-zA-Z]+:', '')
397                     and not(starts-with(@topic, 'mailto:') or
398                             starts-with(@topic, 'chrome:') or
399                             starts-with(@topic, 'resource:') or
400                             starts-with(@topic, 'dactyl:'))">
401                     <!-- A regexp does not work for the second test here â†‘. :( -->
402                 <xsl:attribute name="rel">external</xsl:attribute>
403             </xsl:if>
404             <xsl:apply-templates select="@*|node()" mode="help-1"/>
405         </a>
406     </xsl:template>
407
408     <xsl:template match="dactyl:hl" mode="help-2">
409         <span dactyl:highlight="{@key}"><xsl:apply-templates select="@*|node()" mode="help-1"/></span>
410     </xsl:template>
411     <xsl:template match="dactyl:h" mode="help-2">
412         <em><xsl:apply-templates select="@*|node()" mode="help-1"/></em>
413     </xsl:template>
414     <xsl:template match="dactyl:em | dactyl:tt | dactyl:p  |
415                          dactyl:dt | dactyl:dd |
416                          dactyl:ol | dactyl:ul | dactyl:li |
417                          dactyl:h1 | dactyl:h2 | dactyl:h3 |
418                          dactyl:h4"
419                   mode="help-2">
420         <xsl:element name="{local-name()}">
421             <xsl:apply-templates select="@*|node()" mode="help-1"/>
422         </xsl:element>
423     </xsl:template>
424
425     <xsl:template match="dactyl:code" mode="help-2">
426         <pre dactyl:highlight="HelpCode"><xsl:apply-templates select="@*|node()" mode="help-1"/></pre>
427     </xsl:template>
428
429     <!-- Help elements {{{1 -->
430
431     <xsl:template match="dactyl:a" mode="help-2">
432         <span dactyl:highlight="HelpArg">{<xsl:apply-templates select="@*|node()" mode="help-1"/>}</span>
433     </xsl:template>
434     <xsl:template match="dactyl:oa" mode="help-2">
435         <span dactyl:highlight="HelpOptionalArg">[<xsl:apply-templates select="@*|node()" mode="help-1"/>]</span>
436     </xsl:template>
437
438     <xsl:template match="dactyl:deprecated" mode="help-2">
439         <p style="clear: both;">
440             <xsl:apply-templates select="@*" mode="help-1"/>
441             <span dactyl:highlight="HelpWarning"><!--L-->Deprecated:</span>
442             <xsl:text> </xsl:text>
443             <xsl:apply-templates select="node()" mode="help-1"/>
444         </p>
445     </xsl:template>
446     <xsl:template match="dactyl:note" mode="help-2">
447         <p style="clear: both;">
448             <xsl:apply-templates select="@*" mode="help-1"/>
449             <div style="clear: both;"/>
450             <span dactyl:highlight="HelpNote"><!--L-->Note:</span>
451             <xsl:text> </xsl:text>
452             <xsl:apply-templates select="node()" mode="help-1"/>
453         </p>
454     </xsl:template>
455     <xsl:template match="dactyl:warning" mode="help-2">
456         <p style="clear: both;">
457             <xsl:apply-templates select="@*" mode="help-1"/>
458             <div style="clear: both;"/>
459             <span dactyl:highlight="HelpWarning"><!--L-->Warning:</span>
460             <xsl:text> </xsl:text>
461             <xsl:apply-templates select="node()" mode="help-1"/>
462         </p>
463     </xsl:template>
464     <xsl:template match="dactyl:default" mode="help-2">
465         <span dactyl:highlight="HelpDefault">(default:<xsl:text> </xsl:text><xsl:apply-templates select="@*|node()" mode="help-1"/>)</span>
466     </xsl:template>
467
468     <!-- HTML-ify other elements {{{1 -->
469
470     <xsl:template match="dactyl:ex" mode="help-2">
471         <span dactyl:highlight="HelpEx">
472             <xsl:variable name="tag" select="str:tokenize(text(), ' [!')[1]"/>
473             <a href="dactyl://help-tag/{$tag}" style="color: inherit;">
474                 <xsl:if test="contains(ancestor::*/@document-tags, concat(' ', $tag, ' '))">
475                     <xsl:attribute name="href">#<xsl:value-of select="$tag"/></xsl:attribute>
476                 </xsl:if>
477                 <xsl:apply-templates mode="help-1"/>
478             </a>
479         </span>
480     </xsl:template>
481
482     <xsl:template match="dactyl:se" mode="help-2">
483         <xsl:variable name="nodes" xmlns="&xmlns.dactyl;">
484             <html:span style="display: inline-block;">
485                 <ex>:set</ex>
486                 <xsl:text> </xsl:text>
487                 <link>
488                     <xsl:if test="@link != 'false'">
489                         <xsl:attribute name="topic">'<xsl:value-of select="@opt"/>'</xsl:attribute>
490                     </xsl:if>
491                     <hl key="HelpOpt"><xsl:value-of select="@opt"/></hl>
492                 </link>
493                 <xsl:choose>
494                     <xsl:when test="@op and @op != ''"><xsl:value-of select="@op"/></xsl:when>
495                     <xsl:otherwise>=</xsl:otherwise>
496                 </xsl:choose>
497                 <xsl:copy-of select="@*[not(starts-with(local-name(), 'on'))]|node()[local-name() != 'script']"/>
498             </html:span>
499         </xsl:variable>
500         <xsl:apply-templates select="exsl:node-set($nodes)" mode="help-1"/>
501     </xsl:template>
502
503     <xsl:template match="dactyl:set" mode="help-2">
504         <xsl:variable name="nodes">
505             <code xmlns="&xmlns.dactyl;">
506                 <se opt="{@opt}" op="{@op}" link="{@link}">
507                     <xsl:copy-of select="@*[not(starts-with(local-name(), 'on'))]|node()[local-name() != 'script']"/>
508                 </se>
509             </code>
510         </xsl:variable>
511         <xsl:apply-templates select="exsl:node-set($nodes)" mode="help-1"/>
512     </xsl:template>
513
514     <xsl:template match="dactyl:description | dactyl:example | dactyl:spec" mode="help-2">
515         <div>
516             <xsl:if test="self::dactyl:description"><xsl:attribute name="dactyl:highlight">HelpDescription</xsl:attribute></xsl:if>
517             <xsl:if test="self::dactyl:example"><xsl:attribute name="dactyl:highlight">HelpExample</xsl:attribute></xsl:if>
518             <xsl:if test="self::dactyl:spec"><xsl:attribute name="dactyl:highlight">HelpSpec</xsl:attribute></xsl:if>
519             <xsl:apply-templates select="@*|node()" mode="help-1"/>
520         </div>
521     </xsl:template>
522     <xsl:template match="dactyl:type" mode="help-2">
523         <a dactyl:highlight="HelpType">
524             <xsl:choose>
525                 <xsl:when test="contains(ancestor::*/@document-tags, concat(' ', ., ' '))">
526                     <xsl:attribute name="href">#<xsl:value-of select="."/></xsl:attribute>
527                 </xsl:when>
528                 <xsl:when test="not(. = 'boolean' or . = 'number' or . = 'string')">
529                     <xsl:attribute name="href">dactyl://help-tag/<xsl:value-of select="."/></xsl:attribute>
530                 </xsl:when>
531             </xsl:choose>
532             <xsl:apply-templates select="@*|node()" mode="help-1"/>
533         </a>
534     </xsl:template>
535     <xsl:template match="dactyl:str" mode="help-2">
536         <span dactyl:highlight="HelpString">
537             <xsl:apply-templates select="@*|node()" mode="help-1"/>
538         </span>
539     </xsl:template>
540     <xsl:template match="dactyl:xml-block" mode="help-2">
541         <div dactyl:highlight="HelpXMLBlock">
542             <xsl:apply-templates mode="xml-highlight"/>
543         </div>
544     </xsl:template>
545     <xsl:template match="dactyl:xml-highlight" mode="help-2">
546         <div dactyl:highlight="HelpXMLBlock">
547             <xsl:apply-templates mode="xml-highlight"/>
548         </div>
549     </xsl:template>
550
551
552     <!-- Plugins {{{1 -->
553
554     <xsl:template name="info">
555         <xsl:param name="label"/>
556         <xsl:param name="link" select="@href"/>
557         <xsl:param name="nodes" select="node()"/>
558         <xsl:param name="extra"/>
559         <div dactyl:highlight="HelpInfo">
560             <div dactyl:highlight="HelpInfoLabel">
561                 <xsl:value-of select="$label"/>:
562             </div>
563             <span dactyl:highlight="HelpInfoValue">
564                 <a>
565                     <xsl:if test="$link">
566                         <xsl:attribute name="href"><xsl:value-of select="$link"/></xsl:attribute>
567                     </xsl:if>
568                     <xsl:copy-of select="exsl:node-set($nodes)"/>
569                 </a>
570                 <xsl:copy-of select="exsl:node-set($extra)"/>
571             </span>
572         </div>
573     </xsl:template>
574     <xsl:template match="dactyl:author[@email]" mode="help-2">
575         <xsl:call-template name="info">
576             <xsl:with-param name="label" select="'Author'"/>
577             <xsl:with-param name="extra">
578                 <xsl:text> </xsl:text><a href="mailto:{@email}"></a>
579             </xsl:with-param>
580         </xsl:call-template>
581     </xsl:template>
582     <xsl:template match="dactyl:author" mode="help-2">
583         <xsl:call-template name="info">
584             <xsl:with-param name="label" select="'Author'"/>
585         </xsl:call-template>
586     </xsl:template>
587     <xsl:template match="dactyl:license" mode="help-2">
588         <xsl:call-template name="info">
589             <xsl:with-param name="label" select="'License'"/>
590         </xsl:call-template>
591     </xsl:template>
592     <xsl:template match="dactyl:plugin" mode="help-2">
593         <xsl:call-template name="info">
594             <xsl:with-param name="label" select="'Plugin'"/>
595             <xsl:with-param name="nodes">
596                 <span><xsl:value-of select="@name"/></span>
597             </xsl:with-param>
598         </xsl:call-template>
599         <xsl:if test="@version">
600             <xsl:call-template name="info">
601                 <xsl:with-param name="label" select="'Version'"/>
602                 <xsl:with-param name="link" select="''"/>
603                 <xsl:with-param name="nodes">
604                     <span><xsl:value-of select="@version"/></span>
605                 </xsl:with-param>
606             </xsl:call-template>
607         </xsl:if>
608         <xsl:apply-templates mode="help-1"/>
609     </xsl:template>
610
611     <!-- Special Element Templates {{{1 -->
612
613     <xsl:template match="dactyl:logo" mode="help-1">
614         <span dactyl:highlight="Logo"/>
615     </xsl:template>
616
617     <!-- Process Tree {{{1 -->
618
619     <xsl:template match="@*[starts-with(local-name(), 'on')]|*[local-name() = 'script']" mode="help-2"/>
620     <xsl:template match="@*|node()" mode="help-2">
621         <xsl:copy>
622             <xsl:apply-templates select="@*|node()" mode="help-1"/>
623         </xsl:copy>
624     </xsl:template>
625     <xsl:template match="@*|node()" mode="help-1">
626         <xsl:apply-templates select="." mode="help-2"/>
627     </xsl:template>
628
629     <!-- XML Highlighting (xsl:import doesn't work in Firefox 3.x) {{{1 -->
630     <xsl:template name="xml-namespace">
631         <xsl:param name="node" select="."/>
632         <xsl:if test="name($node) != local-name($node)">
633             <span dactyl:highlight="HelpXMLNamespace">
634                 <xsl:value-of select="substring-before(name($node), ':')"/>
635             </span>
636         </xsl:if>
637         <xsl:value-of select="local-name($node)"/>
638     </xsl:template>
639
640     <xsl:template match="*" mode="xml-highlight">
641         <span dactyl:highlight="HelpXMLTagStart">
642             <xsl:text>&lt;</xsl:text>
643             <xsl:call-template name="xml-namespace"/>
644             <xsl:apply-templates select="@*" mode="xml-highlight"/>
645             <xsl:text>/></xsl:text>
646         </span>
647     </xsl:template>
648
649     <xsl:template match="*[node()]" mode="xml-highlight">
650         <span dactyl:highlight="HelpXMLTagStart">
651             <xsl:text>&lt;</xsl:text>
652             <xsl:call-template name="xml-namespace"/>
653             <xsl:apply-templates select="@*" mode="xml-highlight"/>
654             <xsl:text>></xsl:text>
655         </span>
656         <xsl:apply-templates select="node()" mode="xml-highlight"/>
657         <span dactyl:highlight="HelpXMLTagEnd">
658             <xsl:text>&lt;/</xsl:text>
659             <xsl:call-template name="xml-namespace"/>
660             <xsl:text>></xsl:text>
661         </span>
662     </xsl:template>
663
664     <xsl:template match="dactyl:escape | dactyl:escape[node()]" mode="xml-highlight">
665         <span dactyl:highlight="HelpXMLText">
666             <xsl:apply-templates mode="help-1"/>
667         </span>
668     </xsl:template>
669
670     <xsl:template match="@*" mode="xml-highlight">
671         <xsl:text> </xsl:text>
672         <span dactyl:highlight="HelpXMLAttribute">
673             <xsl:call-template name="xml-namespace"/>
674         </span>
675         <span dactyl:highlight="HelpXMLString">
676             <xsl:value-of select="regexp:replace(., '&quot;', 'g', '&amp;quot;')"/>
677         </span>
678     </xsl:template>
679
680     <xsl:template match="comment()" mode="xml-highlight">
681         <span dactyl:highlight="HelpXMLComment">
682             <xsl:value-of select="."/>
683         </span>
684     </xsl:template>
685
686     <xsl:template match="processing-instruction()" mode="xml-highlight">
687         <span dactyl:highlight="HelpXMLProcessing">
688             <xsl:value-of select="."/>
689         </span>
690     </xsl:template>
691
692     <xsl:template match="text()" mode="xml-highlight">
693         <span dactyl:highlight="HelpXMLText">
694             <xsl:value-of select="regexp:replace(., '&lt;', 'g', '&amp;lt;')"/>
695         </span>
696     </xsl:template>
697 </xsl:stylesheet>
698
699 <!-- vim:se ft=xslt sts=4 sw=4 et fdm=marker: -->