Subversion Repositories eFlore/Archives.eflore-consultation-v1

Compare Revisions

Ignore whitespace Rev 4 → Rev 5

/trunk/bibliotheque/xsl/classificationtaxons.xsl
1,21 → 1,12
<?xml version="1.0" encoding="iso-8859-1"?>
 
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="html" encoding="iso-8859-1" version="1.0" standalone="yes" indent="yes" />
<xsl:output method="xml" encoding="iso-8859-1" version="1.0" standalone="yes" indent="yes" />
 
<xsl:param name="param"/>
 
<xsl:template match="/">
<tr class="titlePage">
<td>
Liste des taxons de rang inf&#233;rieur
</td>
</tr>
<tr>
<td>
<br/>
</td>
</tr>
<h1 class="eflore_titre1">Liste des taxons de rang inf&#233;rieur</h1>
<xsl:apply-templates select="FICHE_CLASSIFICATION_TAXONS" />
</xsl:template>
 
25,50 → 16,26
 
<xsl:template match="CLASSIFICATION_TAXON">
<xsl:apply-templates select="NOM_TAXON" mode="titre"/>
<tr class="texte_tb">
<td>
<ul>
<xsl:apply-templates select="LISTE_CLASSIFICATIONS_FILLES/CLASSIFICATION_TAXON/NOM_TAXON" />
</ul>
</td>
</tr>
<ul>
<xsl:apply-templates select="LISTE_CLASSIFICATIONS_FILLES/CLASSIFICATION_TAXON/NOM_TAXON" />
</ul>
</xsl:template>
 
 
<xsl:template match="NOM_TAXON" mode="titre">
<tr class="insTitle1">
<td>
Niveau taxinomique s&#233;lectionn&#233;
</td>
</tr>
<tr class="eflore_commentaire">
<td>
Cliquer sur le nom du taxon pour obtenir la fiche d'identit&#233; du taxon.
</td>
</tr>
<tr class="texte_tb">
<td>
<b>
<a>
<xsl:attribute name="style">text-decoration: none;</xsl:attribute>
<xsl:attribute name="href">transformer.php?xslt=identitetaxon.xsl&amp;servicexml=donneidentitestaxons.php&amp;numclass=1&amp;numnom=<xsl:value-of select="@numnom" /></xsl:attribute>
<xsl:apply-templates select="NOM" />
</a>
</b>
</td>
</tr>
<tr class="insTitle1">
<td>
Niveaux taxonomiques inférieurs
</td>
</tr>
<tr class="eflore_commentaire">
<td>
Cliquer sur le nom du taxon pour obtenir la fiche d'identit&#233; du taxon.
<br/>
<h2 class="eflore_titre2">Niveau taxinomique s&#233;lectionn&#233;</h2>
<p class="eflore_commentaire">Cliquer sur le nom du taxon pour obtenir la fiche d'identit&#233; du taxon.</p>
<p>
<strong><a>
<xsl:attribute name="style">text-decoration: none;</xsl:attribute>
<xsl:attribute name="href">transformer.php?xslt=identitetaxon.xsl&amp;servicexml=donneidentitestaxons.php&amp;numclass=1&amp;numnom=<xsl:value-of select="@numnom" /></xsl:attribute>
<xsl:apply-templates select="NOM" />
</a></strong>
</p>
<h2 class="eflore_titre2">Niveaux taxonomiques inférieurs</h2>
<p class="eflore_commentaire">
Cliquer sur le nom du taxon pour obtenir la fiche d'identit&#233; du taxon.<br/>
Cliquer sur (...) pour obtenir la liste des taxons de rang inf&#233;rieur.
</td>
</tr>
</p>
</xsl:template>
 
<xsl:template match="NOM_TAXON">
76,9 → 43,9
<a>
<xsl:attribute name="style">text-decoration: none;</xsl:attribute>
<xsl:attribute name="href">transformer.php?xslt=identitetaxon.xsl&amp;servicexml=donneidentitestaxons.php&amp;numclass=1&amp;numnom=<xsl:value-of select="@numnom" /></xsl:attribute>
<b>
<strong>
<xsl:apply-templates select="NOM" />
</b>
</strong>
</a>
<a>
<xsl:attribute name="style">text-decoration: none;</xsl:attribute>
90,12 → 57,10
 
<xsl:template match="NOM">
&#160;
<b>
<xsl:value-of select="@type"/>
</b>
<i>
<xsl:value-of select="."/>
</i>
<xsl:if test="not(contains(@type, ''))">
<strong><xsl:value-of select="@type"/></strong>
</xsl:if>
<em><xsl:value-of select="."/></em>
&#160;
<xsl:value-of select="@auteur"/>
</xsl:template>