source: trunk/superbibmany01_html.xsl @ 53

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

improvements of .xsl files headers

  • Property svn:keywords set to Id
File size: 1.6 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
26<xsl:template match="*" mode="book.titlepage.mode"/>
27<xsl:param name="generate.toc">
28article nop
29</xsl:param>
30<xsl:param name="section.autolabel" select="0"/>
31<xsl:param name="css.decoration" select="0"/>
32<xsl:param name="chunk.section.depth" select="1"/>
33<xsl:param name="use.id.as.filename" select="1"/>
34<xsl:param name="chunker.output.doctype-public">"-//W3C//DTD XHTML 1.0 Strict//EN"</xsl:param>
35<xsl:param name="chunker.output.omit-xml-declaration">no</xsl:param> 
36<xsl:param name="chunker.output.encoding">utf-8</xsl:param>
37<xsl:param name="chunker.output.indent">yes</xsl:param>
38<xsl:param name="doctype-system">"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"</xsl:param>
39
40
41<!--
42Personalisation de bas de page
43-->
44<xsl:template name="user.footer.navigation">
45  <xsl:element name="p">
46Last update : <xsl:value-of select="$makedate"/>
47  </xsl:element>
48</xsl:template>
49
50</xsl:stylesheet> 
Note: See TracBrowser for help on using the repository browser.