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
RevLine 
[76]1<?xml version='1.0' encoding='ISO-8859-1'?>
2<xsl:stylesheet
[64]3xmlns:d="http://docbook.org/ns/docbook"
[76]4xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
5version="1.0">
[49]6
[76]7<!--rst
[80]8
[116]9.. _user_rest.xsl:
[108]10
[95]11=============
[116]12user_rest.xsl
[95]13=============
[76]14
[116]15transformation docbook en plusieurs rest avec formulaire
[2]16
[116]17TODO
18====
19
20make it work
21
[76]22EVOLUTIONS
23==========
24
[116]25$URL$
26$Id$
[76]27
[116]28- fplod 20110629T123732Z cratos.locean-ipsl.upmc.fr (Linux)
[76]29
30  * création
31
[2]32-->
33
[116]34<xsl:import href="db_rest.xsl"/>
[2]35
[116]36<xsl:output method="text"/>
[2]37
[40]38<xsl:include href="titlepage.superbib.xsl"/>
[58]39<xsl:include href="message_lang.xsl"/>
40
[116]41<xsl:include href="form_rest.xsl"/>
[2]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
[76]50<!--
[2]51Personalisation de bas de page
52-->
53<xsl:template name="user.footer.content">
[58]54 <xsl:call-template name="para_lastupdate">
[64]55  <xsl:with-param name="language" select="document('biblio.xml')/d:bibliography/@xml:lang"/>
[58]56  <xsl:with-param name="date" select="$makedate"/>
[116]57  <xsl:with-param name="mode" select="'rest'"/>
[58]58 </xsl:call-template>
[76]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>
[2]73</xsl:template>
74
[76]75</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.