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