source: trunk/correction_db.xsl @ 33

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

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

  • Property svn:keywords set to Id
File size: 903 bytes
Line 
1<?xml version="1.0" encoding="iso-8859-1"?>
2
3<!--
4module :
5creation of correction elements for form
6
7update :
8$Id$
9fplod 2007-04-26T11:56:32Z 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="correction">
18 <xsl:param name="id"/>
19 <xsl:text>&#xA;</xsl:text>
20 <xsl:element name="fieldset">
21  <xsl:attribute name="id">field_correction_<xsl:value-of select="$id"/></xsl:attribute>
22  <xsl:text>&#xA;</xsl:text>
23   <xsl:element name="legend">
24     Correction
25   </xsl:element>
26   <xsl:text>&#xA;</xsl:text>
27   <xsl:element name="textarea"> 
28     <xsl:attribute name="name">correction_<xsl:value-of select="$id"/></xsl:attribute>
29     <xsl:attribute name="rows">2</xsl:attribute>
30     <xsl:attribute name="cols">100</xsl:attribute>
31   </xsl:element>
32 </xsl:element>
33</xsl:template>
34</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.