Lines Matching refs:xsl

1 <xsl:stylesheet version="1.0" encoding="UTF-8"
2 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
38 <xsl:param name="Language" select="'en-US'"/>
40 <xsl:template match="helpdocument|body">
41 <xsl:choose>
42 <xsl:when test="meta/topic[@indexer='exclude']"/>
43 <xsl:otherwise>
44 <xsl:apply-templates/>
45 </xsl:otherwise>
46 </xsl:choose>
47 </xsl:template>
49 <xsl:template match="title">
51 <xsl:apply-templates/>
53 </xsl:template>
55 <xsl:template match="table">
57 <xsl:apply-templates/>
59 </xsl:template>
61 <xsl:template match="tablecell">
63 <xsl:apply-templates/>
65 </xsl:template>
67 <xsl:template match="tablerow">
69 <xsl:apply-templates/>
71 </xsl:template>
73 <xsl:template match="list">
75 <xsl:apply-templates/>
77 </xsl:template>
79 <xsl:template match="listitem">
81 <xsl:apply-templates/>
83 </xsl:template>
85 <xsl:template match="item">
87 <xsl:apply-templates/>
89 </xsl:template>
91 <xsl:template match="emph">
93 <xsl:apply-templates/>
95 </xsl:template>
97 <xsl:template match="paragraph">
99 <xsl:apply-templates/>
101 </xsl:template>
103 <xsl:template match="section">
105 <xsl:apply-templates/>
107 </xsl:template>
109 <xsl:template match="bookmark">
111 <xsl:apply-templates/>
113 </xsl:template>
115 <xsl:template match="bookmark_value">
117 <xsl:apply-templates/>
119 </xsl:template>
121 <xsl:template match="link">
123 <xsl:apply-templates/>
125 </xsl:template>
127 <xsl:template match="ahelp[@visibility='visible']">
129 <xsl:apply-templates/>
131 </xsl:template>
133 <xsl:template match="text()">
135 <xsl:value-of select="."/>
137 </xsl:template>
139 <xsl:template match="*"/>
141 </xsl:stylesheet>