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