source: trunk/main_html.xsl @ 55

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

migration to docbook5 except biblio.xml; improvement of makefile

  • Property svn:keywords set to Id
File size: 2.0 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<!--
48<xsl:template match="html:form">
49<xsl:message> coucou form</xsl:message>
50 <xsl:comment>form debut ici</xsl:comment>
51 <xsl:apply-templates/>
52 <xsl:comment>form fin ici</xsl:comment>
53</xsl:template>
54
55<xsl:template match="html:label">
56<xsl:message> coucou label </xsl:message>
57 <xsl:comment>label debut ici</xsl:comment>
58 <xsl:apply-templates/>
59 <xsl:comment>label fin ici</xsl:comment>
60</xsl:template>
61
62<xsl:template match="html:select">
63<xsl:message> coucou select </xsl:message>
64 <xsl:comment>select debut ici</xsl:comment>
65 <xsl:apply-templates/>
66 <xsl:comment>select fin ici</xsl:comment>
67</xsl:template>
68
69<xsl:template match="html:option">
70<xsl:message> coucou option </xsl:message>
71 <xsl:comment>option debut ici</xsl:comment>
72 <xsl:apply-templates/>
73 <xsl:comment>option fin ici</xsl:comment>
74</xsl:template>
75-->
76
77</xsl:stylesheet> 
Note: See TracBrowser for help on using the repository browser.