Subversion Repositories eFlore/Applications.del

Rev

Rev 1667 | Rev 1830 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1667 Rev 1687
Line 270... Line 270...
270
			if (! observation.getIdAuteur().equals("0")) {
270
			if (! observation.getIdAuteur().equals("0")) {
271
				vue.getLienAuteur().addClickHandler(new ClickHandler() {
271
				vue.getLienAuteur().addClickHandler(new ClickHandler() {
272
					@Override
272
					@Override
273
					public void onClick(ClickEvent event) {
273
					public void onClick(ClickEvent event) {
274
						Config config = new Config();
274
						Config config = new Config();
275
						Window.open(config.getUrl("profil") + observation.getIdAuteur(), "Consultation de l'annuaire", null);
275
						Window.open(config.getUrl("profil") + observation.getIdAuteur(), "Consultation de l'annuaire", config.getInfo("popupOptions"));
276
					}
276
					}
277
				});
277
				});
Line 278... Line 278...
278
				
278
				
279
				vue.activerLienAuteur();
279
				vue.activerLienAuteur();
Line 285... Line 285...
285
					@Override
285
					@Override
286
					public void onClick(ClickEvent arg0) {
286
					public void onClick(ClickEvent arg0) {
287
						Config config = new Config();
287
						Config config = new Config();
288
						String efloreUrlFicheTpl = config.getUrl("efloreTaxon");
288
						String efloreUrlFicheTpl = config.getUrl("efloreTaxon");
289
						String efloreUrlFiche = efloreUrlFicheTpl.replaceAll("referentiel-nn-num_nom", observation.getReferentiel().substring(0,5) + "-nn-" + observation.getNumNomenclatural());
289
						String efloreUrlFiche = efloreUrlFicheTpl.replaceAll("referentiel-nn-num_nom", observation.getReferentiel().substring(0,5) + "-nn-" + observation.getNumNomenclatural());
290
						Window.open(efloreUrlFiche, "Fiche eflore", null);
290
						Window.open(efloreUrlFiche, "Fiche eflore", config.getInfo("popupOptions"));
291
					}
291
					}
292
				});
292
				});
293
			}
293
			}
294
		}
294
		}