Subversion Repositories eFlore/Applications.del

Compare Revisions

Ignore whitespace Rev 1392 → Rev 1393

/trunk/src/org/tela_botanica/del/client/composants/forum/interventions/ForumInterventionPresenteur.java
116,7 → 116,8
vue.ajouterInterventionDetermination(propositionDetermination, barreRepartitionVotePresenteur.getBarreRepartitionVoteVue(), arbreCommentairePresenteur.getArbreCommentaireVue());
final String nn = propositionDetermination.getNumNomenclatural();
if (nn != null) {
final String referentiel = propositionDetermination.getReferentiel();
if (nn != null && !nn.equals(0)) {
vue.ajouterLienEspece();
vue.getEspece().addClickHandler(new ClickHandler() {
123,7 → 124,9
@Override
public void onClick(ClickEvent event) {
Config config = new Config();
Window.open(config.getUrl("efloreTaxon") + nn, "Fiche eflore", null);
String efloreUrlFicheTpl = config.getUrl("efloreTaxon");
String efloreUrlFiche = efloreUrlFicheTpl.replaceAll("referentiel-nn-num_nom", referentiel+"-nn-"+nn);
Window.open(efloreUrlFiche, "Fiche eflore", null);
}
});
}