source: trunk/processors_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: 947 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 processors elements for form
7
8update :
9$Id$
10fplod 2007-04-26T15:49:44Z aedon.locean-ipsl.upmc.fr (Darwin)
11creation
12-->
13
14<xsl:template name="processors">
15 <xsl:param name="user"/>
16 <xsl:param name="visu_modif"/> <!-- ++ readonly -->
17 <xsl:text>&#xA;</xsl:text>
18 <xsl:element name="fieldset">
19   <xsl:attribute name="id">field_processors</xsl:attribute>
20   <xsl:text>&#xA;</xsl:text>
21   <xsl:element name="legend">
22     Nb max of processors
23   </xsl:element>
24   <xsl:text>&#xA;</xsl:text>
25   <xsl:element name="textarea"> 
26     <xsl:attribute name="name">processors</xsl:attribute>
27     <xsl:attribute name="rows">1</xsl:attribute>
28     <xsl:attribute name="cols">8</xsl:attribute>
29     <xsl:value-of select="$user/processors"/>
30   </xsl:element>
31 </xsl:element>
32</xsl:template>
33</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.