source: trunk/processors_db.xsl @ 140

Last change on this file since 140 was 76, checked in by pinsard, 16 years ago

no more NEMO reference in XSL files; project information (name and home page are in main.xml

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