blob: a88ff04d9d8672eb63a9407e49efa90cf2e5fcc5 [file] [log] [blame]
de252c6142005-11-27 04:10:00 +00001<?xml version="1.0"?> <!-- -*- sgml -*- -->
2<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
3
de97ab7e72005-11-27 18:19:40 +00004<!-- special stylesheet to generate the docs to fit into the website -->
5<!-- the only differences between this and vg-html-chunk.xsl are: -->
de252c6142005-11-27 04:10:00 +00006<!-- (a) no css stylesheet is used; -->
7<!-- (b) no navigation header is used; -->
8<!-- (c) no html start/end tags are output -->
9
10
de97ab7e72005-11-27 18:19:40 +000011<!-- import the common styles -->
12<xsl:import href="vg-html-common.xsl"/>
de252c6142005-11-27 04:10:00 +000013
14
de97ab7e72005-11-27 18:19:40 +000015<!-- custom header for website documentation -->
16<!-- the original template inserts html+title+body tags -->
17<!-- see http://docbook.sourceforge.net/release/xsl/current/html/chunk-common.xsl -->
de252c6142005-11-27 04:10:00 +000018<xsl:template name="chunk-element-content">
19 <xsl:param name="prev"/>
20 <xsl:param name="next"/>
21 <xsl:param name="nav.context"/>
22 <xsl:param name="content">
23 <xsl:apply-imports/>
24 </xsl:param>
25 <xsl:copy-of select="$content"/>
26 <xsl:call-template name="footer.navigation">
27 <xsl:with-param name="prev" select="$prev"/>
28 <xsl:with-param name="next" select="$next"/>
29 <xsl:with-param name="nav.context" select="$nav.context"/>
30 </xsl:call-template>
31</xsl:template>
32
33
de252c6142005-11-27 04:10:00 +000034</xsl:stylesheet>