PageRenderTime 21ms CodeModel.GetById 14ms app.highlight 6ms RepoModel.GetById 0ms app.codeStats 0ms

/bundles/plugins-trunk/JavaInsight/users-guide.xsl

#
Extensible Stylesheet Language Transformations | 52 lines | 37 code | 15 blank | 0 comment | 0 complexity | 1652624ec577401e75447bab7b7ce9b9 MD5 | raw file
Possible License(s): BSD-3-Clause, AGPL-1.0, Apache-2.0, LGPL-2.0, LGPL-3.0, GPL-2.0, CC-BY-SA-3.0, LGPL-2.1, GPL-3.0, MPL-2.0-no-copyleft-exception, IPL-1.0
 1<?xml version='1.0'?>
 2
 3<!-- You should use this XSL stylesheet to create plugin documentation.
 4
 5     If you want all output in a single HTML file, specify the path to
 6     your DocBook-XSL "html/docbook.xsl" file in the <xsl:import>
 7     statement below. If you want each chapter to have its own file,
 8     specify the path to your "html/xtchunk.xsl".
 9-->
10
11<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
12                version='1.0'
13                xmlns="http://www.w3.org/TR/xhtml1/transitional"
14                exclude-result-prefixes="#default">
15
16<xsl:import href="docbook-wrapper.xsl"/>
17
18<!-- Swing HTML control doesn't support &ldquo; and &rdquo; -->
19<xsl:template match="quote">&quot;<xsl:apply-templates/>&quot;</xsl:template>
20
21<xsl:template match="guibutton">
22  <xsl:call-template name="inline.boldseq"/>
23</xsl:template>
24
25<xsl:template match="guiicon">
26  <xsl:call-template name="inline.boldseq"/>
27</xsl:template>
28
29<xsl:template match="guilabel">
30  <xsl:call-template name="inline.boldseq"/>
31</xsl:template>
32
33<xsl:template match="guimenu">
34  <xsl:call-template name="inline.boldseq"/>
35</xsl:template>
36
37<xsl:template match="guimenuitem">
38  <xsl:call-template name="inline.boldseq"/>
39</xsl:template>
40
41<xsl:template match="guisubmenu">
42  <xsl:call-template name="inline.boldseq"/>
43</xsl:template>
44
45<xsl:variable name="toc.list.type">ul</xsl:variable>
46
47<xsl:variable name="shade.verbatim">1</xsl:variable>
48
49<xsl:variable name="funcsynopsis.style">ansi</xsl:variable>
50<xsl:template match="void"><xsl:apply-templates/></xsl:template>
51
52</xsl:stylesheet>