source: trunk/user_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.6 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.. _user_rest.xsl:
10
11=============
12user_rest.xsl
13=============
14
15transformation docbook en plusieurs rest avec formulaire
16
17TODO
18====
19
20make it work
21
22EVOLUTIONS
23==========
24
25$URL$
26$Id$
27
28- fplod 20110629T123732Z cratos.locean-ipsl.upmc.fr (Linux)
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:include href="form_rest.xsl"/>
42
43<xsl:template match="*" mode="book.titlepage.mode"/>
44<xsl:param name="generate.toc">
45article nop
46</xsl:param>
47<xsl:param name="css.decoration" select="0"/>
48<xsl:param name="section.autolabel" select="0"/>
49
50<!--
51Personalisation de bas de page
52-->
53<xsl:template name="user.footer.content">
54 <xsl:call-template name="para_lastupdate">
55  <xsl:with-param name="language" select="document('biblio.xml')/d:bibliography/@xml:lang"/>
56  <xsl:with-param name="date" select="$makedate"/>
57  <xsl:with-param name="mode" select="'rest'"/>
58 </xsl:call-template>
59
60 <hr/>
61 <para>
62 <xsl:call-template name="back">
63  <xsl:with-param name="language" select="document('biblio.xml')/d:bibliography/@xml:lang"/>
64 </xsl:call-template>
65 <xsl:text> </xsl:text>
66  <xsl:element name="a">
67  <xsl:attribute name="href">
68   <xsl:value-of select="document('main.xml')//d:bibliosource[@xml:id='homepage']"/>
69  </xsl:attribute>
70  <xsl:value-of select="document('main.xml')//d:keyword[@xml:id='project']"/> home page
71  </xsl:element>
72  </para>
73</xsl:template>
74
75</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.