source: trunk/superbibmany02_html.xsl

Last change on this file was 355, checked in by pinsard, 10 years ago

fix thanks to coding rules; typo; dupe empty lines

  • Property svn:keywords set to Id
File size: 2.2 KB
Line 
1<?xml version='1.0' encoding='ISO-8859-1'?>
2<xsl:stylesheet
3xmlns:d="http://docbook.org/ns/docbook"
4xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
5version="1.0">
6
7<!--rst
8
9.. _superbibmany02_html.xsl:
10
11=======================
12superbibmany02_html.xsl
13=======================
14
15transformation docbook en plusieurs html avec formulaire
16
17EVOLUTIONS
18==========
19
20$Id$
21
22- fplod 2008-09-17T10:23:44Z aedon.locean-ipsl.upmc.fr (Darwin)
23
24  * add a link to project homepage at the bottom of the page
25
26- fplod 2007-04-06T10:30:31Z aedon.locean-ipsl.upmc.fr (Darwin)
27
28  * création
29
30-->
31
32<xsl:import href="http://docbook.sourceforge.net/release/xsl/current/xhtml/chunk.xsl"/>
33
34<xsl:include href="titlepage.superbib.xsl"/>
35<xsl:include href="message_lang.xsl"/>
36
37<xsl:include href="form_html.xsl"/>
38
39<xsl:template match="*" mode="book.titlepage.mode"/>
40<xsl:param name="generate.toc">
41article nop
42</xsl:param>
43<xsl:param name="section.autolabel" select="0"/>
44<xsl:param name="css.decoration" select="0"/>
45<xsl:param name="chunk.section.depth" select="1"/>
46<xsl:param name="use.id.as.filename" select="1"/>
47<xsl:param name="chunker.output.doctype-public">"-//W3C//DTD XHTML 1.0 Strict//EN"</xsl:param>
48<xsl:param name="chunker.output.omit-xml-declaration">yes</xsl:param> <!-- parce que .php -->
49<xsl:param name="chunker.output.encoding">utf-8</xsl:param>
50<xsl:param name="chunker.output.indent">yes</xsl:param>
51<xsl:param name="doctype-system">"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"</xsl:param>
52
53<!--
54Personalisation de bas de page
55-->
56<xsl:template name="user.footer.navigation">
57 <xsl:call-template name="para_lastupdate">
58  <xsl:with-param name="language" select="/article/@xml:lang"/>
59  <xsl:with-param name="date" select="$makedate"/>
60  <xsl:with-param name="mode" select="'html'"/>
61 </xsl:call-template>
62 <hr/>
63 <para>
64 <xsl:call-template name="back">
65  <xsl:with-param name="language" select="/article/@xml:lang"/>
66 </xsl:call-template>
67 <xsl:text> </xsl:text>
68 <xsl:element name="a">
69  <xsl:attribute name="href">
70   <xsl:value-of select="document('main.xml')//d:bibliosource[@xml:id='homepage']"/>
71  </xsl:attribute>
72  <xsl:value-of select="document('main.xml')//d:keyword[@xml:id='project']"/> home page
73  </xsl:element>
74  </para>
75
76</xsl:template>
77
78</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.