source: trunk/superbibmany02_html.xsl @ 76

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

no more NEMO reference in XSL files; project information (name and home page are in main.xml

  • Property svn:keywords set to Id
File size: 2.1 KB
Line 
1<?xml version='1.0' encoding='ISO-8859-1'?>
2<xsl:stylesheet
3xmlns:d="http://docbook.org/ns/docbook"
4xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
5version="1.0">
6
7<!--rst
8NAME
9====
10
11transformation docbook en plusieurs html avec formulaire
12
13EVOLUTIONS
14==========
15
16$Id$
17
18- fplod 2008-09-17T10:23:44Z aedon.locean-ipsl.upmc.fr (Darwin)
19
20  * add a link to project homepage at the bottom of the page
21
22- fplod 2007-04-06T10:30:31Z aedon.locean-ipsl.upmc.fr (Darwin)
23  * création
24-->
25
26<xsl:import href="http://docbook.sourceforge.net/release/xsl/current/xhtml/chunk.xsl"/>
27
28<xsl:include href="titlepage.superbib.xsl"/>
29<xsl:include href="message_lang.xsl"/>
30
31<xsl:include href="form_html.xsl"/>
32
33<xsl:template match="*" mode="book.titlepage.mode"/>
34<xsl:param name="generate.toc">
35article nop
36</xsl:param>
37<xsl:param name="section.autolabel" select="0"/>
38<xsl:param name="css.decoration" select="0"/>
39<xsl:param name="chunk.section.depth" select="1"/>
40<xsl:param name="use.id.as.filename" select="1"/>
41<xsl:param name="chunker.output.doctype-public">"-//W3C//DTD XHTML 1.0 Strict//EN"</xsl:param>
42<xsl:param name="chunker.output.omit-xml-declaration">yes</xsl:param> <!-- parce que .php -->
43<xsl:param name="chunker.output.encoding">utf-8</xsl:param>
44<xsl:param name="chunker.output.indent">yes</xsl:param>
45<xsl:param name="doctype-system">"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"</xsl:param>
46
47<!--
48Personalisation de bas de page
49-->
50<xsl:template name="user.footer.navigation">
51 <xsl:call-template name="para_lastupdate">
52  <xsl:with-param name="language" select="/article/@xml:lang"/>
53  <xsl:with-param name="date" select="$makedate"/>
54  <xsl:with-param name="mode" select="'html'"/>
55 </xsl:call-template>
56 <hr/>
57 <para>
58 <xsl:call-template name="back">
59  <xsl:with-param name="language" select="/article/@xml:lang"/>
60 </xsl:call-template>
61 <xsl:text> </xsl:text>
62 <xsl:element name="a">
63  <xsl:attribute name="href">
64   <xsl:value-of select="document('main.xml')//d:bibliosource[@xml:id='homepage']"/>
65  </xsl:attribute>
66  <xsl:value-of select="document('main.xml')//d:keyword[@xml:id='project']"/> home page
67  </xsl:element>
68  </para>
69
70</xsl:template>
71
72
73</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.