source: trunk/comments_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.. _comments_db.xsl:
9
10===============
11comments_db.xsl
12===============
13
14DESCRIPTION
15===========
16
17creation of comments elements for form
18
19EVOLUTIONS
20==========
21
22$Id$
23
24- fplod 2008-04-29T09:07:06Z aedon.locean-ipsl.upmc.fr (Darwin)
25
26  * chgt for dbk5
27
28- fplod 2007-04-26T11:56:32Z aedon.locean-ipsl.upmc.fr (Darwin)
29
30  * creation
31
32-->
33
34<xsl:template name="comments">
35 <xsl:param name="author_id"/>
36 <xsl:text>&#xA;</xsl:text>
37 <xsl:element name="html:fieldset">
38   <xsl:attribute name="xml:id">field_comments_<xsl:value-of select="$author_id"/></xsl:attribute>
39   <xsl:text>&#xA;</xsl:text>
40   <xsl:element name="html:legend">
41     Comments
42   </xsl:element>
43   <xsl:text>&#xA;</xsl:text>
44   <xsl:element name="html:textarea">
45     <xsl:attribute name="name">comments</xsl:attribute>
46     <xsl:attribute name="rows">5</xsl:attribute>
47     <xsl:attribute name="cols">100</xsl:attribute>
48   </xsl:element>
49 </xsl:element> <!-- end of fieldset comments -->
50</xsl:template>
51</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.