source: trunk/superbibmany01_html.xsl @ 60

Last change on this file since 60 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.7 KB
Line 
1<?xml version='1.0' encoding='ISO-8859-1'?> 
2<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> 
3
4<!--
5module :
6transformation docbook en plusieurs html
7
8update :
9$Id$
10fplod 2007-05-04T09:05:49Z aedon.locean-ipsl.upmc.fr (Darwin)
11création à partir de bibnemomaf02_html.xsl mais user.footer.navigation
12au lieu de user.footer.content
13-->
14
15<xsl:import href="http://docbook.sourceforge.net/release/xsl/current/xhtml/chunk.xsl"/>
16
17<xsl:output method="xml" 
18encoding="utf-8" 
19indent="yes" 
20omit-xml-declaration="no"
21doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN" 
22doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"/>
23
24<xsl:include href="titlepage.superbib.xsl"/>
25<xsl:include href="message_lang.xsl"/>
26
27
28<xsl:template match="*" mode="book.titlepage.mode"/>
29<xsl:param name="generate.toc">
30article nop
31</xsl:param>
32<xsl:param name="section.autolabel" select="0"/>
33<xsl:param name="css.decoration" select="0"/>
34<xsl:param name="chunk.section.depth" select="1"/>
35<xsl:param name="use.id.as.filename" select="1"/>
36<xsl:param name="chunker.output.doctype-public">"-//W3C//DTD XHTML 1.0 Strict//EN"</xsl:param>
37<xsl:param name="chunker.output.omit-xml-declaration">no</xsl:param> 
38<xsl:param name="chunker.output.encoding">utf-8</xsl:param>
39<xsl:param name="chunker.output.indent">yes</xsl:param>
40<xsl:param name="doctype-system">"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"</xsl:param>
41
42
43<!--
44Personalisation de bas de page
45-->
46<xsl:template name="user.footer.navigation">
47 <xsl:call-template name="para_lastupdate">
48  <xsl:with-param name="language" select="/article/@xml:lang"/>
49  <xsl:with-param name="date" select="$makedate"/>
50  <xsl:with-param name="mode" select="'html'"/>
51 </xsl:call-template>
52</xsl:template>
53
54</xsl:stylesheet> 
Note: See TracBrowser for help on using the repository browser.