source: trunk/usernemo_html.xsl @ 7

Last change on this file since 7 was 2, checked in by smasson, 17 years ago

initial import

File size: 1.2 KB
Line 
1<?xml version='1.0' encoding='ISO-8859-1'?> 
2<!--
3module :
4transformation docbook en plusieurs html avec formulaire
5
6source :
7/usr/home/fplod/incas/bibnemo/src/bibnemomaf/bibnemomain_html.xsl sur aedon.locean-ipsl.upmc.fr
8
9mise à jour :
10fplod 2007-04-18T08:15:46Z aedon.locean-ipsl.upmc.fr (Darwin)
11création
12-->
13<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> 
14
15<xsl:import href="http://docbook.sourceforge.net/release/xsl/current/xhtml/docbook.xsl"/>
16
17<xsl:output method="xml" 
18encoding="utf-8" 
19indent="yes" 
20omit-xml-declaration="yes"
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.bibnemomaf.xsl"/>
25<xsl:include href="form_html.xsl"/>
26
27<xsl:template match="*" mode="book.titlepage.mode"/>
28<xsl:param name="generate.toc">
29article nop
30</xsl:param>
31<xsl:param name="css.decoration" select="0"/>
32<xsl:param name="section.autolabel" select="0"/>
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.