source: trunk/newreferences_db.xsl

Last change on this file was 323, checked in by pinsard, 11 years ago

fix for XSL documentations

  • Property svn:keywords set to Id
File size: 1.1 KB
Line 
1<?xml version="1.0" encoding="iso-8859-1"?>
2<xsl:stylesheet
3version="1.0"
4xmlns:html="http://www.w3.org/1999/xhtml"
5xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
6
7<!--rst
8
9.. _newreferences_db.xsl:
10
11====================
12newreferences_db.xsl
13====================
14
15DESCRIPTION
16===========
17
18creation of newreferences elements for form
19
20EVOLUTIONS
21==========
22
23$Id$
24
25- fplod 2008-04-29T09:09:12Z aedon.locean-ipsl.upmc.fr (Darwin)
26
27  * chgt for dbk5
28
29- fplod 2007-04-26T11:56:32Z aedon.locean-ipsl.upmc.fr (Darwin)
30
31  * creation
32
33-->
34
35<xsl:template name="newreferences">
36 <xsl:param name="author_id"/>
37 <xsl:text>&#xA;</xsl:text>
38 <xsl:element name="html:fieldset">
39   <xsl:attribute name="xml:id">field_newreferences_<xsl:value-of select="$author_id"/></xsl:attribute>
40   <xsl:text>&#xA;</xsl:text>
41   <xsl:element name="html:legend">
42     New references
43   </xsl:element>
44   <xsl:text>&#xA;</xsl:text>
45   <xsl:element name="html:textarea">
46     <xsl:attribute name="name">newreferences</xsl:attribute>
47     <xsl:attribute name="rows">5</xsl:attribute>
48     <xsl:attribute name="cols">100</xsl:attribute>
49   </xsl:element>
50 </xsl:element>
51</xsl:template>
52</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.