Subversion Repositories eFlore/Applications.eflore-consultation

Compare Revisions

No changes between revisions

Ignore whitespace Rev 1389 → Rev 1390

/trunk/presentations/styles/eflore.css
994,6 → 994,15
margin-left: 100px;
}
 
.lien_biblio_ext {
position: absolute;
right: 195px;
}
 
.lien_biblio_ext {
border-bottom: none;
}
 
/*----------------------------------------------------------------------------------------------------------*/
/* Wikinis */
.editable_sur_clic {
/trunk/presentations/images/bib_en_ligne.png
Cannot display: file marked as a binary type.
svn:mime-type = image/png
/trunk/presentations/images/bib_en_ligne.png
New file
Property changes:
Added: svn:mime-type
+image/png
\ No newline at end of property
/trunk/presentations/scripts/fiche-synthese.js
372,10 → 372,15
// La partie biblio commence au premier crochet ouvrant
// ou bien au span de la biblio à exclure
posCrochetGauche = html.indexOf('[');
if(posCrochetGauche < 0) {
posCrochetGauche = html.indexOf('<span class="bib_excl">');
posbiblioAExclure = html.indexOf('<span class="bib_excl">');
if(posCrochetGauche < 0 || (posbiblioAExclure > 0 && posbiblioAExclure < posCrochetGauche)) {
posCrochetGauche = posbiblioAExclure;
}
console.log(posCrochetGauche+" "+posbiblioAExclure);
if (posCrochetGauche > 0) {
nom = html.substr(0, posCrochetGauche);
biblio = html.substr(posCrochetGauche, html.length);
/trunk/modules/fiche/squelettes/fiche_nomenclature.tpl.html
64,8 → 64,8
<a title="cliquez pour accéder à la fiche de ce taxon" href="<?= $urls->obtenirUrlFiche($id,'nom_scientifique'); ?>"> <?= $synonyme['nom_sci_complet'] ?></a>
</span>
<?if ($synonyme['source_biblio'] != '') { ?>
<a href="<?=$synonyme['source_biblio']?>">
<img src="<?=$baseUrlIco?>presentations/images/sites/ipni.png" alt="IPNI" title="Rechercher dans IPNI"/>
<a class="lien_biblio_ext" href="<?=$synonyme['source_biblio']?>" target="_blank" title="Voir la citation de ce taxon en ligne">
<img src="<?=$baseUrlIco?>presentations/images/bib_en_ligne.png" alt="BHL" title="Voir la citation de ce taxon en ligne" />
</a>
<? } ?>
</li>