source: trunk/correction_db.xsl @ 65

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

migration to docbook5 except biblio.xml; improvement of makefile

  • Property svn:keywords set to Id
File size: 1.0 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 correction elements for form
10
11update :
12$Id$
13fplod 2008-04-29T09:43:57Z aedon.locean-ipsl.upmc.fr (Darwin)
14chgt for dbk5
15fplod 2007-04-26T11:56:32Z aedon.locean-ipsl.upmc.fr (Darwin)
16creation
17-->
18
19<xsl:template name="correction">
20 <xsl:param name="id"/>
21 <xsl:text>&#xA;</xsl:text>
22 <xsl:element name="html:fieldset">
23<!-- ++ pb to find unique id
24  <xsl:attribute name="xml:id">field_correction_<xsl:value-of select="$id"/></xsl:attribute>
25-->
26  <xsl:text>&#xA;</xsl:text>
27   <xsl:element name="html:legend">
28     Correction
29   </xsl:element>
30   <xsl:text>&#xA;</xsl:text>
31   <xsl:element name="html:textarea"> 
32     <xsl:attribute name="name">correction_<xsl:value-of select="$id"/></xsl:attribute>
33     <xsl:attribute name="rows">2</xsl:attribute>
34     <xsl:attribute name="cols">100</xsl:attribute>
35   </xsl:element>
36 </xsl:element>
37</xsl:template>
38</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.