source: trunk/superbibmany01_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.4 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.. _superbibmany01_html.xsl:
10
11=======================
12superbibmany01_html.xsl
13=======================
14
15transformation docbook en plusieurs html
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-05-04T09:05:49Z aedon.locean-ipsl.upmc.fr (Darwin)
27
28  * création à partir de bibnemomaf02_html.xsl mais user.footer.navigation
29    au lieu de user.footer.content
30
31-->
32
33<xsl:import href="http://docbook.sourceforge.net/release/xsl/current/xhtml/chunk.xsl"/>
34
35<xsl:output method="xml"
36encoding="utf-8"
37indent="yes"
38omit-xml-declaration="no"
39doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
40doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"/>
41
42<xsl:include href="message_lang.xsl"/>
43<xsl:include href="titlepage.superbib.xsl"/>
44
45<xsl:template match="*" mode="book.titlepage.mode"/>
46<xsl:param name="generate.toc">
47article nop
48</xsl:param>
49<xsl:param name="section.autolabel" select="0"/>
50<xsl:param name="css.decoration" select="0"/>
51<xsl:param name="chunk.section.depth" select="1"/>
52<xsl:param name="use.id.as.filename" select="1"/>
53<xsl:param name="chunker.output.doctype-public">"-//W3C//DTD XHTML 1.0 Strict//EN"</xsl:param>
54<xsl:param name="chunker.output.omit-xml-declaration">no</xsl:param>
55<xsl:param name="chunker.output.encoding">utf-8</xsl:param>
56<xsl:param name="chunker.output.indent">yes</xsl:param>
57<xsl:param name="doctype-system">"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"</xsl:param>
58
59<!--
60Personalisation de bas de page
61-->
62<xsl:template name="user.footer.navigation">
63 <xsl:call-template name="para_lastupdate">
64  <xsl:with-param name="language" select="/article/@xml:lang"/>
65  <xsl:with-param name="date" select="$makedate"/>
66  <xsl:with-param name="mode" select="'html'"/>
67 </xsl:call-template>
68 <hr/>
69 <para>
70 <xsl:call-template name="back">
71  <xsl:with-param name="language" select="/article/@xml:lang"/>
72 </xsl:call-template>
73 <xsl:text> </xsl:text>
74  <xsl:element name="a">
75  <xsl:attribute name="href">
76   <xsl:value-of select="document('main.xml')//d:bibliosource[@xml:id='homepage'
77]"/>
78  </xsl:attribute>
79  <xsl:value-of select="document('main.xml')//d:keyword[@xml:id='project']"/> home page
80  </xsl:element>
81  </para>
82</xsl:template>
83</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.