added note about signing tags
[TortoiseGit.git] / doc / xsl / fa / htmlhelp.xsl
blob23e45e84cefb850d9f0c6025c56602a8323cfaf6
1 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
3 <xsl:import href="../htmlhelp.xsl"/>
5 <xsl:param name="htmlhelp.encoding" select="'windows-1256'"/>
6 <xsl:param name="chunker.output.encoding" select="'windows-1256'"/>
7 <!-- ==================================================================== -->
8 <xsl:template name="chunk-element-content">
9 <xsl:param name="prev"/>
10 <xsl:param name="next"/>
11 <xsl:param name="nav.context"/>
12 <xsl:param name="content">
13 <xsl:apply-imports/>
14 </xsl:param>
16 <xsl:call-template name="user.preroot"/>
18 <html dir='RTL'>
19 <xsl:call-template name="html.head">
20 <xsl:with-param name="prev" select="$prev"/>
21 <xsl:with-param name="next" select="$next"/>
22 </xsl:call-template>
24 <body>
25 <xsl:call-template name="body.attributes"/>
26 <xsl:call-template name="user.header.navigation"/>
28 <xsl:call-template name="header.navigation">
29 <xsl:with-param name="prev" select="$prev"/>
30 <xsl:with-param name="next" select="$next"/>
31 <xsl:with-param name="nav.context" select="$nav.context"/>
32 </xsl:call-template>
34 <xsl:call-template name="user.header.content"/>
36 <xsl:copy-of select="$content"/>
38 <xsl:call-template name="user.footer.content"/>
40 <xsl:call-template name="footer.navigation">
41 <xsl:with-param name="prev" select="$prev"/>
42 <xsl:with-param name="next" select="$next"/>
43 <xsl:with-param name="nav.context" select="$nav.context"/>
44 </xsl:call-template>
46 <xsl:call-template name="user.footer.navigation"/>
47 </body>
48 </html>
49 <xsl:value-of select="$chunk.append"/>
50 </xsl:template>
52 </xsl:stylesheet>