source: trunk/main_html.xsl @ 58

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

introduce language dependency on each update message (bibilo, user, html files)

  • Property svn:keywords set to Id
File size: 1.5 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<!--
9module :
10transformation docbook en html avec formulaire
11
12update :
13$Id$
14fplod 2008-04-30T15:23:38Z aedon.locean-ipsl.upmc.fr (Darwin)
15language inherited from biblio.xml
16fplod 2008-04-28T11:02:38Z aedon.locean-ipsl.upmc.fr (Darwin)
17input dbk5
18fplod 2007-04-18T08:15:46Z aedon.locean-ipsl.upmc.fr (Darwin)
19création
20-->
21
22<xsl:import href="http://docbook.sourceforge.net/release/xsl/current/xhtml/docbook.xsl"/>
23
24<xsl:output method="xml" 
25encoding="utf-8" 
26indent="yes" 
27omit-xml-declaration="yes"
28doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN" 
29doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"/>
30
31<xsl:include href="titlepage.superbib.xsl"/>
32<xsl:include href="message_lang.xsl"/>
33<xsl:include href="form_html.xsl"/>
34
35<xsl:template match="*" mode="book.titlepage.mode"/>
36<xsl:param name="generate.toc">
37article nop
38</xsl:param>
39<xsl:param name="css.decoration" select="0"/>
40<xsl:param name="section.autolabel" select="0"/>
41
42<!--
43Personalisation de bas de page
44-->
45<xsl:template name="user.footer.content">
46 <xsl:call-template name="para_lastupdate">
47  <xsl:with-param name="language" select="document('biblio.xml')/d:bibliography/@xml:lang"/>
48  <xsl:with-param name="date" select="$makedate"/>
49  <xsl:with-param name="mode" select="'html'"/>
50 </xsl:call-template>
51</xsl:template>
52
53</xsl:stylesheet> 
Note: See TracBrowser for help on using the repository browser.