source: trunk/processors_db.xsl @ 47

Last change on this file since 47 was 33, checked in by pinsard, 17 years ago

add Id in many headers; replace bibrefnemo.xml by biblio.xml

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