1 <?xml version="1.0" encoding="ASCII"?>
2 <!--This file was created automatically by html2xhtml-->
3 <!--from the HTML stylesheets.-->
4 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml" version="1.0">
6 <!-- ********************************************************************
7 $Id: admon.xsl 8421 2009-05-04 07:49:49Z bobstayton $
8 ********************************************************************
10 This file is part of the XSL DocBook Stylesheet distribution.
11 See ../README or http://docbook.sf.net/release/xsl/current/ for
12 copyright and other information.
14 ******************************************************************** -->
16 <xsl:template match="*" mode="admon.graphic.width">
17 <xsl:param name="node" select="."/>
18 <xsl:text>25</xsl:text>
21 <xsl:template match="note|important|warning|caution|tip">
23 <xsl:when test="$admon.graphics != 0">
24 <xsl:call-template name="graphical.admonition"/>
27 <xsl:call-template name="nongraphical.admonition"/>
32 <xsl:template name="admon.graphic">
33 <xsl:param name="node" select="."/>
34 <xsl:value-of select="$admon.graphics.path"/>
36 <xsl:when test="local-name($node)='note'">note</xsl:when>
37 <xsl:when test="local-name($node)='warning'">warning</xsl:when>
38 <xsl:when test="local-name($node)='caution'">caution</xsl:when>
39 <xsl:when test="local-name($node)='tip'">tip</xsl:when>
40 <xsl:when test="local-name($node)='important'">important</xsl:when>
41 <xsl:otherwise>note</xsl:otherwise>
43 <xsl:value-of select="$admon.graphics.extension"/>
46 <xsl:template name="graphical.admonition">
47 <xsl:variable name="admon.type">
49 <xsl:when test="local-name(.)='note'">Note</xsl:when>
50 <xsl:when test="local-name(.)='warning'">Warning</xsl:when>
51 <xsl:when test="local-name(.)='caution'">Caution</xsl:when>
52 <xsl:when test="local-name(.)='tip'">Tip</xsl:when>
53 <xsl:when test="local-name(.)='important'">Important</xsl:when>
54 <xsl:otherwise>Note</xsl:otherwise>
58 <xsl:variable name="alt">
59 <xsl:call-template name="gentext">
60 <xsl:with-param name="key" select="$admon.type"/>
65 <xsl:call-template name="common.html.attributes"/>
66 <xsl:if test="$admon.style != ''">
67 <xsl:attribute name="style">
68 <xsl:value-of select="$admon.style"/>
73 <xsl:attribute name="summary">
74 <xsl:value-of select="$admon.type"/>
75 <xsl:if test="title|info/title">
76 <xsl:text>: </xsl:text>
77 <xsl:value-of select="(title|info/title)[1]"/>
81 <td rowspan="2" align="center" valign="top">
84 <xsl:attribute name="src">
85 <xsl:call-template name="admon.graphic"/>
89 <th align="{$direction.align.start}">
90 <xsl:call-template name="anchor"/>
91 <xsl:if test="$admon.textlabel != 0 or title or info/title">
92 <xsl:apply-templates select="." mode="object.title.markup"/>
97 <td align="{$direction.align.start}" valign="top">
98 <xsl:apply-templates/>
105 <xsl:template name="nongraphical.admonition">
107 <xsl:call-template name="common.html.attributes">
108 <xsl:with-param name="inherit" select="1"/>
110 <xsl:if test="$admon.style">
111 <xsl:attribute name="style">
112 <xsl:value-of select="$admon.style"/>
116 <xsl:if test="$admon.textlabel != 0 or title or info/title">
118 <xsl:call-template name="anchor"/>
119 <xsl:apply-templates select="." mode="object.title.markup"/>
123 <xsl:apply-templates/>
127 <xsl:template match="note/title"/>
128 <xsl:template match="important/title"/>
129 <xsl:template match="warning/title"/>
130 <xsl:template match="caution/title"/>
131 <xsl:template match="tip/title"/>