source: trunk/processors_db.xsl @ 11

Last change on this file since 11 was 2, checked in by smasson, 17 years ago

initial import

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