Subversion Repositories eFlore/Applications.del

Rev

Rev 1621 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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