source: trunk/superbib01_html.xsl @ 57

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

improvements of .xsl files headers

  • Property svn:keywords set to Id
File size: 1023 bytes
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 un html
7
8update :
9$Id$
10fplod 2007-03-30T09:55:19Z aedon.locean-ipsl.upmc.fr (Darwin)
11création
12-->
13
14<xsl:import href="http://docbook.sourceforge.net/release/xsl/current/xhtml/docbook.xsl"/>
15
16<xsl:output method="xml" 
17encoding="utf-8" 
18indent="yes" 
19omit-xml-declaration="no"
20doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN" 
21doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"/>
22
23<xsl:include href="titlepage.superbib.xsl"/>
24
25<xsl:template match="*" mode="book.titlepage.mode"/>
26<xsl:param name="generate.toc">
27article nop
28</xsl:param>
29<xsl:param name="css.decoration" select="0"/>
30<xsl:param name="section.autolabel" select="0"/>
31
32<!--
33Personalisation de bas de page
34-->
35<xsl:template name="user.footer.content">
36  <xsl:element name="p">
37Last update : <xsl:value-of select="$makedate"/>
38  </xsl:element>
39</xsl:template>
40
41</xsl:stylesheet> 
Note: See TracBrowser for help on using the repository browser.