source: trunk/db_rest.xsl

Last change on this file was 177, checked in by pinsard, 12 years ago

consolidation of doc dev. (to be cont.)

File size: 1.6 KB
Line 
1<?xml version="1.0" encoding="iso-8859-1"?>
2
3<xsl:stylesheet
4version="1.0"
5xmlns:d="http://docbook.org/ns/docbook"
6xmlns:xl="http://www.w3.org/1999/xlink"
7xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
8
9<!--rst
10
11.. _db_rest.xsl:
12
13===========
14db_rest.xsl
15===========
16
17creation des élements de ReST d'après les info XML/DocBook
18
19TODO
20====
21
22make it work
23
24EVOLUTIONS
25==========
26
27$Id: db_rest.xsl 114 2011-06-29 16:23:26Z pinsard $
28
29$URL$
30
31- fplod 20120228
32
33  * creation
34
35-->
36
37<xsl:include href="message_lang.xsl"/>
38<!--
39<xsl:include href="components_rest.xsl"/>
40<xsl:include href="compilers_rest.xsl"/>
41<xsl:include href="platforms_rest.xsl"/>
42<xsl:include href="processors_rest.xsl"/>
43<xsl:include href="regions_rest.xsl"/>
44<xsl:include href="parameters_rest.xsl"/>
45<xsl:include href="periods_rest.xsl"/>
46-->
47
48<xsl:output
49 method="text"
50 indent="yes"
51 encoding="ISO-8859-1"/>
52
53<xsl:template match="d:bibliography">
54
55<xsl:variable name="project">
56 <xsl:value-of select="document('main.xml')//d:keyword[@xml:id='project']"/>
57</xsl:variable>
58
59<xsl:text>.. _publications:</xsl:text>
60<xsl:text>&#xA;</xsl:text>
61<xsl:value-of select="$project"/>
62<xsl:text>&#xA;</xsl:text>
63<xsl:text>=======================</xsl:text>
64
65If you find omissions or mistakes please ask some modification
66:ref:`contact`.
67
68Yoy can also see :ref:`publications-authorsone` sorted by
69authors in one big document
70or in several ref:`publications-authorsmany`.
71
72<xsl:call-template name="para_lastupdate_user">
73 <xsl:with-param name="language" select="document('biblio.xml')/d:bibliography/@xml:lang"/>
74 <xsl:with-param name="date" select="./date"/>
75</xsl:call-template>
76
77</xsl:template>
78
79</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.