source: trunk/newreferences_db.xsl @ 140

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

no more NEMO reference in XSL files; project information (name and home page are in main.xml

  • 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
8<!--
9module :
10creation of newreferences elements for form
11
12update :
13$Id$
14fplod 2008-04-29T09:09:12Z aedon.locean-ipsl.upmc.fr (Darwin)
15chgt for dbk5
16fplod 2007-04-26T11:56:32Z aedon.locean-ipsl.upmc.fr (Darwin)
17creation
18-->
19
20<xsl:template name="newreferences">
21 <xsl:param name="author_id"/>
22 <xsl:text>&#xA;</xsl:text>
23 <xsl:element name="html:fieldset">
24   <xsl:attribute name="xml:id">field_newreferences_<xsl:value-of select="$author_id"/></xsl:attribute>
25   <xsl:text>&#xA;</xsl:text>
26   <xsl:element name="html:legend">
27     New references
28   </xsl:element>
29   <xsl:text>&#xA;</xsl:text>
30   <xsl:element name="html:textarea">
31     <xsl:attribute name="name">newreferences</xsl:attribute>
32     <xsl:attribute name="rows">5</xsl:attribute>
33     <xsl:attribute name="cols">100</xsl:attribute>
34   </xsl:element>
35 </xsl:element>
36</xsl:template>
37</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.