source: trunk/superbibmany02_html.xsl @ 87

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

add journals and bug fixes in flat to docbook conversion tool

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