source: trunk/superbib01_rest.xsl @ 140

Last change on this file since 140 was 116, checked in by pinsard, 13 years ago

Consolidation of shell scripts

  • Property svn:keywords set to Id
File size: 1.5 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
9.. _superbib01_rest.xsl:
10
11===================
12superbib01_rest.xsl
13===================
14
15transformation docbook en un rest
16
17TODO
18====
19
20make it work
21
22EVOLUTIONS
23==========
24
25$Id$
26$URL$
27
28- fplod 20110629T131028Z aedon.locean-ipsl.upmc.fr (Darwin)
29
30  * création
31
32-->
33
34<xsl:import href="db_rest.xsl"/>
35
36<xsl:output method="text"/>
37
38<xsl:include href="titlepage.superbib.xsl"/>
39<xsl:include href="message_lang.xsl"/>
40
41<xsl:template match="*" mode="book.titlepage.mode"/>
42<xsl:param name="generate.toc">
43article nop
44</xsl:param>
45<xsl:param name="css.decoration" select="0"/>
46<xsl:param name="section.autolabel" select="0"/>
47
48<!--
49Personalisation de bas de page
50-->
51<xsl:template name="user.footer.content">
52 <xsl:call-template name="para_lastupdate">
53  <xsl:with-param name="language" select="/article/@xml:lang"/>
54  <xsl:with-param name="date" select="$makedate"/>
55  <xsl:with-param name="mode" select="'rest'"/>
56 </xsl:call-template>
57
58 <hr/>
59 <para>
60 <xsl:call-template name="back">
61  <xsl:with-param name="language" select="/article/@xml:lang"/>
62 </xsl:call-template>
63 <xsl:text> </xsl:text>
64 <xsl:element name="a">
65  <xsl:attribute name="href">
66   <xsl:value-of select="document('main.xml')//d:bibliosource[@xml:id='homepage']"/>
67  </xsl:attribute>
68  <xsl:value-of select="document('main.xml')//d:keyword[@xml:id='project']"/> home page
69  </xsl:element>
70  </para>
71
72</xsl:template>
73
74</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.