source: trunk/main_html.xsl @ 80

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

add journals and bug fixes in flat to docbook conversion tool

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