source: trunk/main_rest.xsl

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

Consolidation of shell scripts

  • Property svn:keywords set to Id
File size: 1.4 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"
5xmlns:html="http://www.w3.org/1999/xhtml"
6version="1.0">
7
8<!--rst
9
10.. _main_rest.xsl:
11
12=============
13main_rest.xsl
14=============
15
16transformation docbook en rest avec formulaire
17
18TODO
19====
20
21make it work
22
23EVOLUTIONS
24==========
25
26$Id$
27$URL$
28
29- fplod 20110629T133438Z aedon.locean-ipsl.upmc.fr (Darwin)
30
31  * creation
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<xsl:include href="form_rest.xsl"/>
41
42<xsl:template name="user.footer.content">
43 <xsl:call-template name="para_lastupdate">
44  <xsl:with-param name="language" select="document('biblio.xml')/d:bibliography/@xml:lang"/>
45  <xsl:with-param name="date" select="$makedate"/>
46  <xsl:with-param name="mode" select="'rest'"/>
47 </xsl:call-template>
48
49 <hr/>
50 <para>
51 <xsl:call-template name="back">
52  <xsl:with-param name="language" select="document('biblio.xml')/d:bibliography/@xml:lang"/>
53 </xsl:call-template>
54 <xsl:text> </xsl:text>
55 <xsl:element name="a">
56  <xsl:attribute name="href">
57   <xsl:value-of select="document('main.xml')//d:bibliosource[@xml:id='homepage']"/>
58  </xsl:attribute>
59  <xsl:value-of select="document('main.xml')//d:keyword[@xml:id='project']"/> home page
60  </xsl:element>
61  </para>
62
63</xsl:template>
64
65</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.