Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 1763 Rev 1773
Line 368... Line 368...
368
	}
368
	}
Line 369... Line 369...
369
 
369
 
370
	public void ouvrirUrlExterne(String id) {
370
	public void ouvrirUrlExterne(String id) {
371
		if (id.equals(ComposantId.MENU_CEL)) {
371
		if (id.equals(ComposantId.MENU_CEL)) {
372
			Window.open(((Configuration) Registry.get(RegistreId.CONFIG)).getUrl("cel"), "Carnet en ligne", "");
372
			Window.open(((Configuration) Registry.get(RegistreId.CONFIG)).getUrl("cel"), "Carnet en ligne", "");
373
		} else if (id.equals(ComposantId.MENU_BOGUE)) {
373
		} else if (id.equals(ComposantId.MENU_CONTACT)) {
374
			Window.open(((Configuration) Registry.get(RegistreId.CONFIG)).getUrl("bogue"), "Bogue", "");
374
			String urlWidgetRemarques = ((Configuration) Registry.get(RegistreId.CONFIG)).getUrl("remarques")
375
		} else if (id.equals(ComposantId.MENU_COMMENTAIRE)) {
375
					+ "?email=coel_remarques@tela-botanica.org&pageSource=" + URL.encodeQueryString(Window.Location.getHref());
376
			Window.open(((Configuration) Registry.get(RegistreId.CONFIG)).getUrl("commentaire"), "Commentaire", "");
376
			Window.open(urlWidgetRemarques, "Remarques", "");
377
		}
377
		}
Line 378... Line 378...
378
	}
378
	}
379
 
379