source: trunk/user_html.xsl

Last change on this file was 108, checked in by pinsard, 14 years ago

usage of option directive

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