source: trunk/main_html.xsl @ 76

Last change on this file since 76 was 76, checked in by pinsard, 16 years ago

no more NEMO reference in XSL files; project information (name and home page are in main.xml

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