source: trunk/main_html.xsl @ 49

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

improvements of .xsl files headers

  • Property svn:keywords set to Id
File size: 1.1 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-18T08:15:46Z 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="yes"
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<xsl:include href="form_html.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="css.decoration" select="0"/>
31<xsl:param name="section.autolabel" select="0"/>
32
33
34<!--
35Personalisation de bas de page
36-->
37<xsl:template name="user.footer.content">
38  <xsl:element name="p">
39Last update : <xsl:value-of select="$makedate"/>
40  </xsl:element>
41</xsl:template>
42
43</xsl:stylesheet> 
Note: See TracBrowser for help on using the repository browser.