source: trunk/main_html.xsl @ 56

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

migration to docbook5 for biblio.xml; bug fix in bibopa.sh; xmlto is not anymore needed; xml(starlet) must be available

  • Property svn:keywords set to Id
File size: 1.2 KB
Line 
1<?xml version='1.0' encoding='ISO-8859-1'?> 
2<xsl:stylesheet 
3xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
4xmlns:html="http://www.w3.org/1999/xhtml"
5version="1.0"> 
6
7<!--
8module :
9transformation docbook en html avec formulaire
10
11update :
12$Id$
13fplod 2008-04-28T11:02:38Z aedon.locean-ipsl.upmc.fr (Darwin)
14input dbk5
15fplod 2007-04-18T08:15:46Z aedon.locean-ipsl.upmc.fr (Darwin)
16création
17-->
18
19<xsl:import href="http://docbook.sourceforge.net/release/xsl/current/xhtml/docbook.xsl"/>
20
21<xsl:output method="xml" 
22encoding="utf-8" 
23indent="yes" 
24omit-xml-declaration="yes"
25doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN" 
26doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"/>
27
28<xsl:include href="titlepage.superbib.xsl"/>
29<xsl:include href="form_html.xsl"/>
30
31<xsl:template match="*" mode="book.titlepage.mode"/>
32<xsl:param name="generate.toc">
33article nop
34</xsl:param>
35<xsl:param name="css.decoration" select="0"/>
36<xsl:param name="section.autolabel" select="0"/>
37
38<!--
39Personalisation de bas de page
40-->
41<xsl:template name="user.footer.content">
42  <xsl:element name="p">
43Last update : <xsl:value-of select="$makedate"/>
44  </xsl:element>
45</xsl:template>
46
47</xsl:stylesheet> 
Note: See TracBrowser for help on using the repository browser.