480 |
jpm |
1 |
//+----------------------------------------------------------------------------------------------------------+
|
|
|
2 |
// Onglets et Portlets
|
391 |
aurelien |
3 |
/**
|
|
|
4 |
* Les variables suivantes ont été ajoutée par php
|
|
|
5 |
*
|
|
|
6 |
* var urlTexteBrutSectionWikiTpl : url pour obtenir le texte brut d'une section de wiki
|
|
|
7 |
* var urlEditionSectionWikiTpl : url pour éditer une section du wiki
|
|
|
8 |
* var urlTexteFormateSectionWikiTpl : url pour obtenir le texte formaté en html d'une section de wiki
|
|
|
9 |
* var pageWikiTaxon : url pour obtenir le texte formaté en html d'une section de wiki
|
917 |
aurelien |
10 |
* var urlPopup = url de base pour les popup contenant du code un peu complexe
|
391 |
aurelien |
11 |
*
|
|
|
12 |
*/
|
|
|
13 |
|
|
|
14 |
/**
|
|
|
15 |
* Variables globales du script
|
|
|
16 |
*/
|
227 |
delphine |
17 |
var modules = Array();
|
1545 |
delphine |
18 |
var REFERENTIEL = "<?php echo Registre::get('parametres.referentiel'); ?>";
|
480 |
jpm |
19 |
|
227 |
delphine |
20 |
/** Classe Module
|
|
|
21 |
* Définit un module de type portlet
|
|
|
22 |
**/
|
|
|
23 |
function Module(id, module, onglet, statique) {
|
|
|
24 |
|
|
|
25 |
// Variables de classe : identifiant, titre, et le HTML du résumé à afficher dans le contenu
|
|
|
26 |
this.id = id;
|
|
|
27 |
this.titre;
|
|
|
28 |
this.htmlResume;
|
|
|
29 |
this.statique = statique;
|
|
|
30 |
|
242 |
aurelien |
31 |
|
227 |
delphine |
32 |
|
480 |
jpm |
33 |
function getUrlVars() {
|
242 |
aurelien |
34 |
var vars = [], hash;
|
|
|
35 |
var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');
|
480 |
jpm |
36 |
for (var i = 0; i < hashes.length; i++) {
|
242 |
aurelien |
37 |
hash = hashes[i].split('=');
|
|
|
38 |
vars.push(hash[0]);
|
|
|
39 |
vars[hash[0]] = hash[1];
|
|
|
40 |
}
|
|
|
41 |
return vars;
|
|
|
42 |
}
|
|
|
43 |
|
|
|
44 |
|
1243 |
aurelien |
45 |
// remplace des liens directs vers les onglets par des liens permettant de ne charger
|
|
|
46 |
// que le contenu de l'onglet (pour le plugin tab)
|
|
|
47 |
function remplacerUrlsOnglets() {
|
1502 |
delphine |
48 |
$(".lien-onglet").each(function() {
|
506 |
jpm |
49 |
var urlOnglet = $(this).attr('href');
|
892 |
aurelien |
50 |
var urlVars = urlOnglet.slice(urlOnglet.indexOf('?') + 1);
|
|
|
51 |
urlBase = base_url_application_onglets+"?"+urlVars;
|
|
|
52 |
urlOnglet = urlBase.replace('action=fiche','action=onglet');
|
506 |
jpm |
53 |
$(this).attr('href', urlOnglet);
|
1502 |
delphine |
54 |
});
|
242 |
aurelien |
55 |
}
|
227 |
delphine |
56 |
|
1266 |
aurelien |
57 |
|
1243 |
aurelien |
58 |
|
480 |
jpm |
59 |
//+----------------------------------------------------------------------------------------------------------+
|
|
|
60 |
// Wikini Flora
|
|
|
61 |
var htmlWikiOriginal = '';
|
|
|
62 |
var objetContenuWiki = null;
|
|
|
63 |
|
391 |
aurelien |
64 |
function getTemplateFormulaireEditionWiki(page, section, texte) {
|
|
|
65 |
var urlWebServiceWiki = getUrlEditionPourPageEtSection(page, section);
|
|
|
66 |
var formulaire =
|
|
|
67 |
'<form method="post" id="formulaire_edition_wiki" name="formulaire_edition_wiki" action="'+urlWebServiceWiki+'">'+
|
|
|
68 |
'<div>'+
|
|
|
69 |
'<textarea id="pageContenu" name="pageContenu" class="champ_edition_wiki">'+texte+'</textarea>'+
|
|
|
70 |
'</div>'+
|
|
|
71 |
'<input type="hidden" name="pageSectionTitre" id="pageSectionTitre" value="'+section+'" />'+
|
|
|
72 |
'<input type="submit" text="sauver" />'+
|
|
|
73 |
'<input class="bouton_annuler_edition" type="button" value="annuler" />';
|
|
|
74 |
'</form>';
|
|
|
75 |
return formulaire;
|
|
|
76 |
}
|
|
|
77 |
|
|
|
78 |
function getSection() {
|
407 |
aurelien |
79 |
return objetContenuWiki.attr("title");
|
391 |
aurelien |
80 |
}
|
|
|
81 |
|
|
|
82 |
function getPageWikiTaxon() {
|
|
|
83 |
return pageWikiTaxon;
|
|
|
84 |
}
|
|
|
85 |
|
|
|
86 |
function getUrlEditionPourPageEtSection(page, section) {
|
1375 |
mathias |
87 |
var url = urlEditionSectionWikiTpl.replace('{pageTag}', page).replace('{sectionTitre}', section);
|
|
|
88 |
return url;
|
391 |
aurelien |
89 |
}
|
|
|
90 |
|
|
|
91 |
function getUrlTextePourPageSectionBrute(page, section) {
|
|
|
92 |
return urlTexteBrutSectionWikiTpl.replace('{pageTag}', page).replace('{sectionTitre}', section);
|
|
|
93 |
}
|
|
|
94 |
|
|
|
95 |
function getUrlTextePourPageSectionFormatee(page, section) {
|
|
|
96 |
return urlTexteFormateSectionWikiTpl.replace('{pageTag}', page).replace('{sectionTitre}', section);
|
|
|
97 |
}
|
|
|
98 |
|
|
|
99 |
function remplacerContenuWikiParFormulaireEdition(objet_contenu) {
|
407 |
aurelien |
100 |
objetContenuWiki = objet_contenu;
|
453 |
aurelien |
101 |
var adresse = getUrlEditionPourPageEtSection(getPageWikiTaxon(), getSection());
|
391 |
aurelien |
102 |
htmlWikiOriginal = objet_contenu.html();
|
|
|
103 |
$.getJSON(adresse, function(data) {
|
999 |
raphael |
104 |
$(objetContenuWiki).removeClass('editable_sur_clic').html(getTemplateFormulaireEditionWiki(getPageWikiTaxon(), getSection(), data.texte));
|
391 |
aurelien |
105 |
});
|
|
|
106 |
}
|
|
|
107 |
|
|
|
108 |
function gererEvenementsWiki() {
|
400 |
aurelien |
109 |
//TODO: ajout automatique d'un lien ouvrant une page d'aide (un popup) au formatage des pages wikini
|
999 |
raphael |
110 |
$('.editable_sur_clic').live('dblclick',function(event) {
|
|
|
111 |
remplacerContenuWikiParFormulaireEdition($(this));
|
391 |
aurelien |
112 |
});
|
|
|
113 |
|
|
|
114 |
$('#formulaire_edition_wiki').live('submit',function(event) {
|
|
|
115 |
event.preventDefault();
|
|
|
116 |
var valeurs = $(this).serialize();
|
|
|
117 |
$.post($(this).attr('action'), valeurs, function(data) {
|
|
|
118 |
var adresse = getUrlTextePourPageSectionFormatee(getPageWikiTaxon(), getSection());
|
|
|
119 |
$.getJSON(adresse, function(data) {
|
999 |
raphael |
120 |
$(objetContenuWiki).addClass('editable_sur_clic').html(data.texte);
|
391 |
aurelien |
121 |
});
|
|
|
122 |
});
|
|
|
123 |
});
|
|
|
124 |
|
|
|
125 |
$('.bouton_annuler_edition').live('click', function(event) {
|
999 |
raphael |
126 |
event.preventDefault();
|
|
|
127 |
$(objetContenuWiki).addClass('editable_sur_clic').html(htmlWikiOriginal);
|
391 |
aurelien |
128 |
});
|
638 |
aurelien |
129 |
|
|
|
130 |
rendreLienAffichableDansNouvelleFenetre('.contenu_editable');
|
391 |
aurelien |
131 |
}
|
|
|
132 |
|
480 |
jpm |
133 |
//+----------------------------------------------------------------------------------------------------------+
|
638 |
aurelien |
134 |
//Affichage dans une nouvelle fenetre
|
|
|
135 |
function rendreLienAffichableDansNouvelleFenetre(selecteur) {
|
|
|
136 |
$(selecteur).find('a').live('click', function(event) {
|
|
|
137 |
window.open($(this).attr('href'));
|
|
|
138 |
event.preventDefault();
|
|
|
139 |
return false;
|
|
|
140 |
});
|
|
|
141 |
}
|
|
|
142 |
|
|
|
143 |
//+----------------------------------------------------------------------------------------------------------+
|
480 |
jpm |
144 |
// Plier / déplier
|
474 |
aurelien |
145 |
function plierTout() {
|
|
|
146 |
$('.nom').children('.imagetteMoins').removeClass('imagetteMoins').addClass('imagettePlus');
|
|
|
147 |
$('.plus').css('display', 'none');
|
|
|
148 |
}
|
|
|
149 |
|
|
|
150 |
function deplierTout() {
|
|
|
151 |
$('.nom').children('.imagettePlus').removeClass('imagettePlus').addClass('imagetteMoins');
|
|
|
152 |
$('.plus').css('display', 'inline');
|
|
|
153 |
}
|
|
|
154 |
|
|
|
155 |
function gestionBiblio(parent) {
|
1389 |
aurelien |
156 |
$('.nom').each(function () {
|
|
|
157 |
if ($(this).children('.plus').length == 0) {
|
|
|
158 |
html = $(this).html();
|
474 |
aurelien |
159 |
|
1389 |
aurelien |
160 |
// La partie biblio commence au premier crochet ouvrant
|
|
|
161 |
// ou bien au span de la biblio à exclure
|
|
|
162 |
posCrochetGauche = html.indexOf('[');
|
1390 |
aurelien |
163 |
posbiblioAExclure = html.indexOf('<span class="bib_excl">');
|
|
|
164 |
|
|
|
165 |
if(posCrochetGauche < 0 || (posbiblioAExclure > 0 && posbiblioAExclure < posCrochetGauche)) {
|
|
|
166 |
posCrochetGauche = posbiblioAExclure;
|
1389 |
aurelien |
167 |
}
|
474 |
aurelien |
168 |
|
1510 |
killian |
169 |
// console.log(posCrochetGauche+" "+posbiblioAExclure);
|
1390 |
aurelien |
170 |
|
|
|
171 |
|
1389 |
aurelien |
172 |
if (posCrochetGauche > 0) {
|
|
|
173 |
nom = html.substr(0, posCrochetGauche);
|
|
|
174 |
biblio = html.substr(posCrochetGauche, html.length);
|
|
|
175 |
$(this).html(nom);
|
|
|
176 |
|
|
|
177 |
imagettePlus = document.createElement('div');
|
|
|
178 |
$(imagettePlus).addClass('imagettePlus');
|
|
|
179 |
$(this).prepend($(imagettePlus));
|
|
|
180 |
|
|
|
181 |
plus = document.createElement('span');
|
|
|
182 |
$(plus).addClass('plus');
|
|
|
183 |
$(plus).html(biblio);
|
|
|
184 |
$(plus).hide();
|
|
|
185 |
|
|
|
186 |
$(this).click(function(e) {
|
|
|
187 |
// test pour ne réagir que sur le clic sur le + ou -
|
|
|
188 |
// TODO: fusionner ce bout de code en doublon avec synthese.js
|
|
|
189 |
if($(e.target).hasClass("imagettePlus") || $(e.target).hasClass("imagetteMoins")) {
|
|
|
190 |
if (!$(this).children('.plus').is(':visible')) {
|
|
|
191 |
$(this).children('.imagettePlus').removeClass('imagettePlus').addClass('imagetteMoins');
|
|
|
192 |
$(this).children('.plus').css('display', 'inline');
|
|
|
193 |
} else {
|
|
|
194 |
$(this).children('.imagetteMoins').removeClass('imagetteMoins').addClass('imagettePlus');
|
|
|
195 |
$(this).children('.plus').css('display', 'none');
|
|
|
196 |
}
|
|
|
197 |
}
|
|
|
198 |
|
|
|
199 |
});
|
|
|
200 |
|
|
|
201 |
$(this).append($(plus));
|
|
|
202 |
|
|
|
203 |
}
|
474 |
aurelien |
204 |
}
|
|
|
205 |
});
|
|
|
206 |
}
|
|
|
207 |
|
|
|
208 |
function gererEvenementsPliage() {
|
|
|
209 |
$('.lien_tout_deplier').live('click', function() {
|
|
|
210 |
deplierTout();
|
|
|
211 |
});
|
|
|
212 |
$('.lien_tout_plier').live('click', function() {
|
|
|
213 |
plierTout();
|
|
|
214 |
});
|
|
|
215 |
gestionBiblio(document);
|
|
|
216 |
}
|
|
|
217 |
|
480 |
jpm |
218 |
//+----------------------------------------------------------------------------------------------------------+
|
626 |
mathilde |
219 |
//Pop Up images
|
|
|
220 |
function ouvrirPopUpImg(event) {
|
|
|
221 |
event.preventDefault();
|
1306 |
aurelien |
222 |
window.open($(this).attr('href'),"Photo_"+$(this).children("img").attr("data-num-image"),
|
966 |
aurelien |
223 |
'"'+'height='+event.data.h+',width='+event.data.w+',top='+event.data.t+',left='+event.data.l
|
|
|
224 |
+',toolbar='+event.data.toolbar+',menubar='+event.data.menubar +',location='
|
|
|
225 |
+event.data.location+',resizable='+event.data.resizable+',scrollbars='+event.data.scrollbars
|
|
|
226 |
+',status='+event.data.status+'"');
|
626 |
mathilde |
227 |
}
|
|
|
228 |
|
480 |
jpm |
229 |
//+----------------------------------------------------------------------------------------------------------+
|
761 |
aurelien |
230 |
// Message de chargement pour les graphique écologie
|
|
|
231 |
function gererChargementGraphiqueEcologie() {
|
|
|
232 |
$('.ecologie_svg').addClass('chargement');
|
|
|
233 |
}
|
971 |
aurelien |
234 |
|
|
|
235 |
function gererAffichageLegendeEcologie() {
|
|
|
236 |
$('.voir').live('click', function() {
|
|
|
237 |
$(this).siblings('.legende_graphique').show();
|
|
|
238 |
$(this).siblings('.cacher').show();
|
|
|
239 |
$(this).hide();
|
|
|
240 |
});
|
|
|
241 |
|
|
|
242 |
$('.cacher').live('click', function() {
|
|
|
243 |
$(this).siblings('.legende_graphique').hide();
|
|
|
244 |
$(this).siblings('.voir').show();
|
|
|
245 |
$(this).hide();
|
|
|
246 |
});
|
|
|
247 |
}
|
|
|
248 |
|
|
|
249 |
|
761 |
aurelien |
250 |
//+----------------------------------------------------------------------------------------------------------+
|
480 |
jpm |
251 |
// Initialisation
|
317 |
aurelien |
252 |
var fancyboxinitialise = false;
|
626 |
mathilde |
253 |
var param_popup_Coste = {h: 650, w: 550, t: 100, l: 100,
|
|
|
254 |
toolbar: 'no', menubar: 'no', location: 'no', resizable: 'yes', scrollbars: 'yes', status: 'no'};
|
317 |
aurelien |
255 |
|
626 |
mathilde |
256 |
var param_popup_Cel = {h: 750, w: 630, t: 100, l: 100,
|
|
|
257 |
toolbar: 'no', menubar: 'no', location: 'no', resizable: 'yes', scrollbars: 'yes', status: 'no'};
|
|
|
258 |
|
1243 |
aurelien |
259 |
//Initialisation (uniquement sur la présence de la div bloc-fiche, qui contient la fiche eflore)
|
1272 |
aurelien |
260 |
$(document).one('ficheSyntheseChargee', function() {
|
1243 |
aurelien |
261 |
initialiserOnglets();
|
|
|
262 |
|
356 |
gduche |
263 |
// TODO : devrait être .on() à la place de live()
|
277 |
aurelien |
264 |
$('.lien_popup').live('click',function(event) {
|
|
|
265 |
event.preventDefault();
|
|
|
266 |
$.fancybox(this,{
|
|
|
267 |
autoDimensions:false,
|
321 |
aurelien |
268 |
width:580
|
277 |
aurelien |
269 |
});
|
|
|
270 |
});
|
|
|
271 |
|
1126 |
aurelien |
272 |
// TODO : devrait être .on() à la place de live()
|
|
|
273 |
$('.lien_popup.lien_metadonnees').live('click',function(event) {
|
|
|
274 |
event.preventDefault();
|
|
|
275 |
$.fancybox(this,{
|
|
|
276 |
autoDimensions:true
|
|
|
277 |
});
|
|
|
278 |
});
|
1243 |
aurelien |
279 |
|
626 |
mathilde |
280 |
$('.lien-image-cel').live('click', param_popup_Cel , ouvrirPopUpImg);
|
|
|
281 |
$('.lien-image-coste').live('click', param_popup_Coste , ouvrirPopUpImg);
|
|
|
282 |
|
242 |
aurelien |
283 |
afficherOngletsPourNiveau();
|
1123 |
mathias |
284 |
|
391 |
aurelien |
285 |
gererEvenementsWiki();
|
474 |
aurelien |
286 |
gererEvenementsPliage();
|
887 |
delphine |
287 |
|
|
|
288 |
$('a.lien_retour_synthese').click(function(event) {
|
|
|
289 |
$('#onglet_synthese a').click();
|
|
|
290 |
event.preventDefault();
|
|
|
291 |
});
|
966 |
aurelien |
292 |
|
|
|
293 |
$(window).resize(function() {
|
|
|
294 |
redimensionnerOnglets();
|
|
|
295 |
});
|
|
|
296 |
redimensionnerOnglets();
|
1243 |
aurelien |
297 |
|
|
|
298 |
if($("#bloc-fiche").length > 0) {
|
|
|
299 |
// initialisation de l'url avec l'onglet par défaut ou bien
|
|
|
300 |
// celui qui a été explicitement demandé
|
|
|
301 |
mettreAJourUrl(permalienNumNom+"-"+onglet, onglet);
|
|
|
302 |
}
|
1246 |
aurelien |
303 |
gererInteractionsPermaliens();
|
324 |
gduche |
304 |
});
|
|
|
305 |
|
1266 |
aurelien |
306 |
function ajouterEvenement(elementHtml, nomEvenement, functionCallBack) {
|
|
|
307 |
if(!!elementHtml && elementHtml != null) {
|
|
|
308 |
if(elementHtml.attachEvent) {// Internet Explorer
|
|
|
309 |
elementHtml.attachEvent("on" + nomEvenement, function() {functionCallBack.call(elementHtml);});
|
|
|
310 |
} else if(elementHtml.addEventListener) { // Firefox & autres
|
|
|
311 |
elementHtml.addEventListener(nomEvenement, functionCallBack, false);
|
|
|
312 |
}
|
|
|
313 |
}
|
1370 |
mathias |
314 |
}
|
1257 |
aurelien |
315 |
|
|
|
316 |
$(document).one('ongletRepartitionCharge', function() {
|
1370 |
mathias |
317 |
var contRepObs = $(".conteneur_repartition_observations");
|
|
|
318 |
contRepObs.addClass("chargement_repartition");
|
1257 |
aurelien |
319 |
// utilisation d'une fonction native car jQuery refuse d'ajouter un évènement load
|
|
|
320 |
// sur autre chose qu'une image
|
1266 |
aurelien |
321 |
$('#repartition_observations').ready(function() {
|
|
|
322 |
ajouterEvenement(document.getElementById("repartition_observations"), "load", function() {
|
1370 |
mathias |
323 |
contRepObs.removeClass("chargement_repartition");
|
1266 |
aurelien |
324 |
});
|
1257 |
aurelien |
325 |
});
|
1370 |
mathias |
326 |
// lien "recalculer la carte de moissonnage"
|
|
|
327 |
$('#lien_recalculer_carte').click(function() {
|
|
|
328 |
var carteMoissonnageSvg = $('#repartition_observations'); // c'est plutôt "moissonnage" que "répartition" => squelette pourave power
|
|
|
329 |
var urlCarte = carteMoissonnageSvg.attr("data");
|
|
|
330 |
urlCarte += '&recalculer=1';
|
|
|
331 |
contRepObs.addClass("chargement_repartition");
|
|
|
332 |
carteMoissonnageSvg.attr("data", urlCarte);ajouterEvenement(document.getElementById("repartition_observations"), "load", function() {
|
|
|
333 |
contRepObs.removeClass("chargement_repartition");
|
|
|
334 |
});
|
|
|
335 |
return false;
|
|
|
336 |
});
|
1257 |
aurelien |
337 |
});
|
|
|
338 |
|
1243 |
aurelien |
339 |
|
1123 |
mathias |
340 |
// À la fin du chargement de l'onglet Illustrations
|
1243 |
aurelien |
341 |
$(document).one('ongletIllustrationsCharge', function() {
|
|
|
342 |
$('a.lien-images-organes.fourni').live('click', afficherOngletOrgane);
|
|
|
343 |
$('a.lien-grande-image-organe').live('click', afficherGrandeImageOrgane);
|
|
|
344 |
// pour que la galerie soit ouverte par défaut sur le premier organe non vide
|
|
|
345 |
var premier = $('a.lien-images-organes.fourni').first().data('tag');
|
|
|
346 |
afficherOngletOrgane(null, premier);
|
1289 |
aurelien |
347 |
|
1400 |
aurelien |
348 |
$('a.lien_telechargement_image').live('click',function(e) {
|
|
|
349 |
if($(e.target).data('oneclicked')!='yes')
|
|
|
350 |
{
|
|
|
351 |
$(e.target).data('oneclicked','yes');
|
|
|
352 |
$(this).fancybox({
|
|
|
353 |
"type" : "iframe",
|
|
|
354 |
"autoDimensions" : false,
|
|
|
355 |
"width" : 800,
|
|
|
356 |
"height" : 405,
|
|
|
357 |
"titleShow" : false
|
|
|
358 |
}).click();
|
|
|
359 |
}
|
|
|
360 |
|
|
|
361 |
e.preventDefault();
|
|
|
362 |
return false;
|
1289 |
aurelien |
363 |
});
|
1123 |
mathias |
364 |
});
|
|
|
365 |
|
|
|
366 |
// Affiche les n images ayant le plus de votes, pour l'organe $tag
|
|
|
367 |
function afficherOngletOrgane(e, tag) {
|
|
|
368 |
var onglets = $('div.onglet-organe'),
|
|
|
369 |
contenu = $('#galerie-organes-contenu'),
|
|
|
370 |
organeOnglet;
|
|
|
371 |
|
|
|
372 |
if (tag === undefined) {
|
|
|
373 |
tag = $(this).data('tag')
|
|
|
374 |
}
|
|
|
375 |
if ($(this).parent().hasClass('active')) { // replier
|
|
|
376 |
$(this).parent().removeClass('active')
|
|
|
377 |
contenu.hide();
|
|
|
378 |
return false;
|
|
|
379 |
}
|
|
|
380 |
|
|
|
381 |
onglets.each(function() {
|
|
|
382 |
organeOnglet = $(this).data('tag');
|
|
|
383 |
var li = $('a.lien-images-organes[data-tag="' + organeOnglet + '"]').parent();
|
|
|
384 |
if (organeOnglet == tag) {
|
|
|
385 |
$(this).show();
|
|
|
386 |
li.addClass('active');
|
|
|
387 |
} else {
|
|
|
388 |
$(this).hide();
|
|
|
389 |
li.removeClass('active');
|
|
|
390 |
}
|
|
|
391 |
});
|
|
|
392 |
|
|
|
393 |
contenu.show();
|
|
|
394 |
|
|
|
395 |
var premierLienGrandeImage = $('div.onglet-organe:visible').find('a.lien-grande-image-organe').first(),
|
|
|
396 |
grandeImage = $('#grande-image-organe').find('img');
|
|
|
397 |
premierLienGrandeImage.trigger('click');
|
|
|
398 |
grandeImage.show('fast');
|
|
|
399 |
|
|
|
400 |
return false;
|
|
|
401 |
}
|
|
|
402 |
|
|
|
403 |
// Affiche en grand sous les miniatures l'image d'organe sur laquelle on a cliqué
|
|
|
404 |
function afficherGrandeImageOrgane() {
|
1488 |
delphine |
405 |
if ($(this).data('id-image') === "") {
|
|
|
406 |
return false;
|
|
|
407 |
}
|
1123 |
mathias |
408 |
var grandeImage = $('#grande-image-organe').find('img'),
|
|
|
409 |
source = $(this).find('img').attr('src');
|
1303 |
aurelien |
410 |
source = obtenirUrlMoyenFormatIdImage($(this).data('id-image'));
|
1131 |
mathias |
411 |
// chargement image et lien popup
|
1123 |
mathias |
412 |
grandeImage.attr('src', source);
|
1361 |
mathias |
413 |
// important pour Pinterest et cie.
|
|
|
414 |
grandeImage.attr('alt', $(this).data('auteur') + ' - ' + $(this).data('titre'));
|
1305 |
aurelien |
415 |
grandeImage.parent().attr('href',obtenirUrlGrandFormatIdImage($(this).data('id-image')));
|
1123 |
mathias |
416 |
// métadonnées
|
|
|
417 |
var metadonnees = ['id-image', 'titre', 'description', 'localisation', 'auteur'],
|
|
|
418 |
clef;
|
|
|
419 |
for (var i = 0; i < metadonnees.length; i++) {
|
|
|
420 |
clef = metadonnees[i];
|
1303 |
aurelien |
421 |
var contenu = $(this).data(clef);
|
|
|
422 |
if(clef == 'id-image') {
|
|
|
423 |
contenu +=
|
1571 |
delphine |
424 |
' <a title="T\xE9l\xE9charger cette image" class="lien_telechargement_image" href="'+urlBaseWidget+'telechargement?id_image='+$(this).data(clef)+'">'+
|
1303 |
aurelien |
425 |
'<img class="icone_action_ill" src="'+urlCssImages+'sauver.png" />'+
|
1571 |
delphine |
426 |
'</a> '+
|
1305 |
aurelien |
427 |
'<a title="Voir plus d\'informations sur cette image (s\'ouvre dans un popup)" class="lien-image-cel" href="'+urlPopup+'?module=popup-illustrations&action=fiche&referentiel=bdtfx&id=' + $(this).data('id-image')+'">'+
|
1320 |
aurelien |
428 |
'<img class="icone_action_ill" src="'+urlCssImages+'infos_image.png" />'+
|
1349 |
mathias |
429 |
'</a>'+
|
1567 |
delphine |
430 |
'<a style="float:right" title="Signaler une mauvaise identification ou en proposer une autre via l\'outil identiplante" class="signaler-mauvaise-identification" href="' + $(this).data('url-mauvaise-ident') + '" target="_blank">' +
|
1571 |
delphine |
431 |
'<img class="icone_action_ill" src="'+urlCssImages+'mauvaise_id.png">Signaler une mauvaise identification' +
|
1303 |
aurelien |
432 |
'</a>';
|
|
|
433 |
}
|
|
|
434 |
$('#grande-image-legende-' + clef).html(contenu);
|
|
|
435 |
|
1123 |
mathias |
436 |
}
|
1361 |
mathias |
437 |
// valeurs génériques
|
1303 |
aurelien |
438 |
$('#grande-image-legende-' + clef).html($(this).data(clef));
|
1123 |
mathias |
439 |
$('#grande-image-legende-date').html(formaterDateVersFrancais($(this).data('date')));
|
1192 |
aurelien |
440 |
$('#grande-image-legende-id-destinataire').attr('href', urlPopup+'?module=popup-contact&action=form&referentiel='+REFERENTIEL+'&id_destinataire=' +
|
1208 |
mathias |
441 |
$(this).data('id-destinataire') + '&id_img=' + $(this).data('id-image'));
|
1317 |
aurelien |
442 |
$('#grande-image-legende-id-destinataire').attr('title', "Envoyer un message \xE0 l'auteur \xE0 propos de cette image (n\xE9cessite d'\xEAtre identifi\xE9)");
|
1131 |
mathias |
443 |
$('#grande-image-legende-auteur').attr('href', 'http://tela-botanica.org/profil:' + $(this).data('id-destinataire'));
|
1208 |
mathias |
444 |
$('#grande-image-legende-auteur').attr('target', '_blank');
|
1317 |
aurelien |
445 |
$('#grande-image-legende-auteur').attr('title', "Voir le profil de cet utilisateur (n\xE9cessite d'\xEAtre identifi\xE9)");
|
1309 |
aurelien |
446 |
|
|
|
447 |
|
|
|
448 |
$('#grande-image-legende-id-image a.lien_telechargement_image').unbind('click.fb').fancybox({
|
|
|
449 |
"type" : "iframe",
|
|
|
450 |
"autoDimensions" : false,
|
|
|
451 |
"width" : 800,
|
|
|
452 |
"height" : 405,
|
|
|
453 |
"titleShow" : false
|
|
|
454 |
});
|
1123 |
mathias |
455 |
}
|
|
|
456 |
|
1303 |
aurelien |
457 |
function obtenirUrlMoyenFormatIdImage(idImage) {
|
|
|
458 |
idImage = remplirChaineDebut(idImage, "0", 9);
|
|
|
459 |
return urlImagesOrganesMoyenFormatTpl.replace('{id_image}', idImage);
|
|
|
460 |
}
|
|
|
461 |
|
|
|
462 |
function obtenirUrlGrandFormatIdImage(idImage) {
|
|
|
463 |
idImage = remplirChaineDebut(idImage, "0", 9);
|
|
|
464 |
return urlImagesOrganesGrandFormatTpl.replace('{id_image}', idImage);
|
|
|
465 |
}
|
|
|
466 |
|
|
|
467 |
function remplirChaineDebut(chaine, remplissage, longueur) {
|
|
|
468 |
while(chaine.toString().length < longueur) {
|
|
|
469 |
chaine = remplissage.toString()+chaine.toString();
|
|
|
470 |
}
|
|
|
471 |
return chaine;
|
|
|
472 |
}
|
|
|
473 |
|
1123 |
mathias |
474 |
// transforme une date du type "2012-04-06" en "06 avril 2012"
|
|
|
475 |
function formaterDateVersFrancais(date) {
|
|
|
476 |
var mois = ['janvier', 'février', 'mars', 'avril', 'mai', 'juin', 'juillet', 'août', 'septembre', 'octobre', 'novembre', 'décembre'],
|
|
|
477 |
amj_hms = date.split(' '),
|
|
|
478 |
amj = amj_hms[0].split('-');
|
|
|
479 |
return amj[2] + ' ' + mois[parseInt(amj[1]) - 1] + ' ' + amj[0];
|
|
|
480 |
}
|
|
|
481 |
|
966 |
aurelien |
482 |
|
1123 |
mathias |
483 |
// ouvre le popup de galerie lors d'un clic sur l'illustration dans la fiche synthèse
|
864 |
aurelien |
484 |
function gererClicIllustrationsFiche() {
|
917 |
aurelien |
485 |
$('.illustration_cel').live('click', function() {
|
|
|
486 |
var url_image = $(this).attr('src');
|
922 |
aurelien |
487 |
var titre = $('.nomenclature').first().text();
|
1136 |
mathias |
488 |
var url = urlPopup+"?module=popup-galerie&action=fiche&num_nom="+$(this).attr('data-num-nom')+"&titre="+encodeURIComponent(titre)+"&url_image="+encodeURIComponent(url_image)+"&referentiel="+REFERENTIEL;
|
|
|
489 |
//var url = urlPopup+"?module=popup-galerie-organes&action=fiche&num_nom="+$(this).attr('data-num-nom')+"&titre="+encodeURIComponent(titre)+"&url_image="+encodeURIComponent(url_image)+"&referentiel="+REFERENTIEL;
|
1123 |
mathias |
490 |
//alert(url);
|
|
|
491 |
//return false;
|
984 |
aurelien |
492 |
window.open(url, $(this).attr('data-num-nom'), 'directories=no,titlebar=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no, width='+(400)+', height='+(375));
|
864 |
aurelien |
493 |
});
|
|
|
494 |
}
|
|
|
495 |
|
|
|
496 |
function ouvrirFenetreIllustrationFiche(url, titre, hauteur, largeur) {
|
928 |
aurelien |
497 |
var fenetre = window.open('_blank', '','directories=no,titlebar=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no, width='+(largeur+17)+', height='+(hauteur+17));
|
864 |
aurelien |
498 |
var tmp = fenetre.document;
|
|
|
499 |
tmp.write('<html><head><title>'+titre+'</title>');
|
|
|
500 |
tmp.write('</head><body>');
|
|
|
501 |
tmp.write('<p style="height='+hauteur+'px;text-align:center;line-height='+hauteur+'px;"><img id="image_agrandie" height="'+hauteur+'" width="'+largeur+'" style="vertical-align:middle;" src="'+url+'" /></p>');
|
|
|
502 |
tmp.write('</body></html>');
|
|
|
503 |
tmp.close();
|
|
|
504 |
}
|
|
|
505 |
|
1246 |
aurelien |
506 |
|
|
|
507 |
// met à jour l'url dans la barre du navigateur ainsi que dans le permalien en bas
|
|
|
508 |
// de la fiche
|
1243 |
aurelien |
509 |
function mettreAJourUrl(nouvelleUrl, etat) {
|
1246 |
aurelien |
510 |
$('#permalien_num_nom').val(nouvelleUrl);
|
1243 |
aurelien |
511 |
if (!!(window.history && window.history.pushState)) {
|
|
|
512 |
var currentState = window.history.state;
|
|
|
513 |
if (currentState != nouvelleUrl && !!etat) {
|
|
|
514 |
window.history.pushState(etat, "", nouvelleUrl);
|
|
|
515 |
}
|
|
|
516 |
}
|
|
|
517 |
}
|
|
|
518 |
|
1246 |
aurelien |
519 |
function gererInteractionsPermaliens() {
|
|
|
520 |
$(".conteneur_permalien > a").each(function() {
|
|
|
521 |
var txt = '<input type="text" id="'+$(this).attr('id')+'" readonly="readonly" class="lien_externe" value="'+$(this).attr('href')+'">';
|
|
|
522 |
$(this).replaceWith(txt);
|
|
|
523 |
});
|
|
|
524 |
$(".conteneur_permalien > input").each(function() {
|
|
|
525 |
$(this).attr('size', $(this).val().length - 7);
|
|
|
526 |
});
|
|
|
527 |
$(".conteneur_permalien > input").hover(
|
|
|
528 |
function() {
|
|
|
529 |
$(this).select();
|
|
|
530 |
}, function() {
|
|
|
531 |
// rien à faire sur le mouseout
|
|
|
532 |
}
|
|
|
533 |
);
|
|
|
534 |
}
|
|
|
535 |
|
1381 |
aurelien |
536 |
function gererTemplatesChargementALaDemande() {
|
1521 |
delphine |
537 |
$('.lien-ajax-tpl a.lien-ajax-tpl-chargement').on('click', function(e) {
|
1381 |
aurelien |
538 |
if($(this).attr('data-loading') != "true") {
|
|
|
539 |
$(this).attr('data-loading', "true");
|
|
|
540 |
e.preventDefault();
|
|
|
541 |
urlTpl = $(this).attr('href');
|
|
|
542 |
$(this).hide();
|
|
|
543 |
thisElementParent = $(this).parent();
|
|
|
544 |
thisElementParent.append("<div class='tab-chargement'>Chargement des informations...</div>");
|
|
|
545 |
$.get(urlTpl, function( data ) {
|
|
|
546 |
thisElementParent.replaceWith( data );
|
|
|
547 |
});
|
|
|
548 |
return false;
|
|
|
549 |
}
|
|
|
550 |
});
|
|
|
551 |
}
|
|
|
552 |
|
1516 |
delphine |
553 |
$(document).ready(function() {
|
761 |
aurelien |
554 |
gererChargementGraphiqueEcologie();
|
971 |
aurelien |
555 |
gererAffichageLegendeEcologie();
|
1381 |
aurelien |
556 |
gererTemplatesChargementALaDemande();
|
324 |
gduche |
557 |
if (document.implementation.hasFeature('http://www.w3.org/TR/SVG11/feature#BasicStructure', '1.1') == false) {
|
480 |
jpm |
558 |
$('.svg').each(function() {
|
|
|
559 |
alt = $(this).attr('alt');
|
|
|
560 |
img = document.createElement('img');
|
|
|
561 |
img.src = alt;
|
|
|
562 |
$(this).replaceWith(img);
|
|
|
563 |
});
|
324 |
gduche |
564 |
}
|
999 |
raphael |
565 |
});
|
1381 |
aurelien |
566 |
|