Changeset 55 for trunk/main_html.xsl


Ignore:
Timestamp:
04/29/08 14:25:55 (16 years ago)
Author:
pinsard
Message:

migration to docbook5 except biblio.xml; improvement of makefile

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/main_html.xsl

    r49 r55  
    11<?xml version='1.0' encoding='ISO-8859-1'?>  
    2 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">  
     2<xsl:stylesheet  
     3xmlns:xsl="http://www.w3.org/1999/XSL/Transform"  
     4xmlns:html="http://www.w3.org/1999/xhtml" 
     5version="1.0">  
    36 
    47<!-- 
    58module : 
    6 transformation docbook en plusieurs html avec formulaire 
     9transformation docbook en html avec formulaire 
    710 
    811update : 
    912$Id$ 
     13fplod 2008-04-28T11:02:38Z aedon.locean-ipsl.upmc.fr (Darwin) 
     14input dbk5 
    1015fplod 2007-04-18T08:15:46Z aedon.locean-ipsl.upmc.fr (Darwin) 
    1116création 
     
    3136<xsl:param name="section.autolabel" select="0"/> 
    3237 
    33  
    3438<!-- 
    3539Personalisation de bas de page 
     
    4145</xsl:template> 
    4246 
     47<!-- 
     48<xsl:template match="html:form"> 
     49<xsl:message> coucou form</xsl:message> 
     50 <xsl:comment>form debut ici</xsl:comment> 
     51 <xsl:apply-templates/> 
     52 <xsl:comment>form fin ici</xsl:comment> 
     53</xsl:template> 
     54 
     55<xsl:template match="html:label"> 
     56<xsl:message> coucou label </xsl:message> 
     57 <xsl:comment>label debut ici</xsl:comment>  
     58 <xsl:apply-templates/> 
     59 <xsl:comment>label fin ici</xsl:comment> 
     60</xsl:template> 
     61 
     62<xsl:template match="html:select"> 
     63<xsl:message> coucou select </xsl:message> 
     64 <xsl:comment>select debut ici</xsl:comment>  
     65 <xsl:apply-templates/> 
     66 <xsl:comment>select fin ici</xsl:comment> 
     67</xsl:template> 
     68 
     69<xsl:template match="html:option"> 
     70<xsl:message> coucou option </xsl:message> 
     71 <xsl:comment>option debut ici</xsl:comment>  
     72 <xsl:apply-templates/> 
     73 <xsl:comment>option fin ici</xsl:comment> 
     74</xsl:template> 
     75--> 
     76 
    4377</xsl:stylesheet>  
Note: See TracChangeset for help on using the changeset viewer.