source: trunk/comments_db.xsl @ 51

Last change on this file since 51 was 49, checked in by pinsard, 16 years ago

improvements of .xsl files headers

  • Property svn:keywords set to Id
File size: 836 bytes
Line 
1<?xml version="1.0" encoding="iso-8859-1"?>
2<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
3
4<!--
5module :
6creation of comments elements for form
7
8update :
9$Id$
10fplod 2007-04-26T11:56:32Z aedon.locean-ipsl.upmc.fr (Darwin)
11creation
12-->
13
14<xsl:template name="comments">
15 <xsl:text>&#xA;</xsl:text>
16 <xsl:element name="fieldset">
17   <xsl:attribute name="id">field_comments</xsl:attribute>
18   <xsl:text>&#xA;</xsl:text>
19   <xsl:element name="legend">
20     Comments
21   </xsl:element>
22   <xsl:text>&#xA;</xsl:text>
23   <xsl:element name="textarea"> 
24     <xsl:attribute name="name">comments</xsl:attribute>
25     <xsl:attribute name="rows">5</xsl:attribute>
26     <xsl:attribute name="cols">100</xsl:attribute>
27   </xsl:element>
28 </xsl:element> <!-- end of fieldset comments -->
29</xsl:template>
30</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.