Subversion Repositories eFlore/Applications.eflore-consultation

Compare Revisions

No changes between revisions

Ignore whitespace Rev 1451 → Rev 1461

/branches/v5.10-vilmorin/presentations/squelettes/menu.tpl.html
7,6 → 7,7
<li><a href="<?= Config::get('base_url_application'); ?>index.php?referentiel=bdtxa">eFlore Antilles</a></li>
<li><a href="<?= Config::get('base_url_application'); ?>index.php?referentiel=isfan">eFlore Afrique du Nord</a></li>
<li><a href="<?= Config::get('base_url_application'); ?>index.php?referentiel=apd">eFlore Afrique de l'Ouest et du Centre</a></li>
<li><a href="<?= Config::get('base_url_application'); ?>index.php?referentiel=bdtfxr">eFlore Index réduit des Trachéophytes de France métropolitaine</a></li>
</ul>
</li>
</ul>
/branches/v5.10-vilmorin/presentations/images/sites/siflore.png
Cannot display: file marked as a binary type.
svn:mime-type = image/png
/branches/v5.10-vilmorin/presentations/images/sites/siflore.png
New file
Property changes:
Added: svn:mime-type
+image/png
\ No newline at end of property
/branches/v5.10-vilmorin/presentations/scripts/recherche.js
150,7 → 150,6
var suggestions = [];
if (data.resultat != undefined) {
$.each(data.resultat, function(i, val) {
val.nn = i;
var nom = {label : '', value : '', retenu : false};
if (suggestions.length >= AUTOCOMPLETION_ELEMENTS_NBRE) {
nom.label = "...";
160,7 → 159,7
} else {
nom.label = val.nom_sci_complet;
nom.value = val.nom_sci;
nom.nn = val.nn;
nom.nn = val.num_nom;
if(val.retenu != "absent") {
nom.retenu = (val.retenu == 'true') ? true : false;
suggestions.push(nom);
262,7 → 261,8
var url = getUrlAutocompletion(URL_SERVICE_AUTOCOMPLETION_NOM_SCI, requete, 'min')+
"&ns.structure=au,an"+
// tri "à la mode du CeL"
"&retour.tri=alpharet";
"&retour.tri=alpharet"+
'&retour.structure=liste';
return url;
}