source: trunk/superbibmany02_html.xsl @ 65

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