source: trunk/user_html.xsl @ 95

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

add rest2web for manuals production (and start sphinx but not yet ok)

  • Property svn:keywords set to Id
File size: 2.0 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=============
10user_html.xsl
11=============
12
13--------------------------------------------------------
14transformation docbook en plusieurs html avec formulaire
15--------------------------------------------------------
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-18T08:15:46Z 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/docbook.xsl"/>
33
34<xsl:output method="xml"
35encoding="utf-8"
36indent="yes"
37omit-xml-declaration="yes"
38doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
39doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"/>
40
41<xsl:include href="titlepage.superbib.xsl"/>
42<xsl:include href="message_lang.xsl"/>
43
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
53<!--
54Personalisation de bas de page
55-->
56<xsl:template name="user.footer.content">
57 <xsl:call-template name="para_lastupdate">
58  <xsl:with-param name="language" select="document('biblio.xml')/d:bibliography/@xml:lang"/>
59  <xsl:with-param name="date" select="$makedate"/>
60  <xsl:with-param name="mode" select="'html'"/>
61 </xsl:call-template>
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>
76</xsl:template>
77
78</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.