Subversion Repositories eFlore/Applications.del

Rev

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

Rev 938 Rev 944
Line 149... Line 149...
149
	public boolean estPourRechercheObservations() {
149
	public boolean estPourRechercheObservations() {
150
		return (modeRecherche == ModeRecherche.MODE_OBSERVATION);
150
		return (modeRecherche == ModeRecherche.MODE_OBSERVATION);
151
	}
151
	}
Line 152... Line 152...
152
 
152
 
153
	private void creerCompletionTaxons() {
153
	private void creerCompletionTaxons() {
154
		String url = this.config.getUrl("nomSciCompletionService");
154
		String url = this.config.getServiceBaseUrl() + "nomstaxons";
155
		completionTaxonsPresenteur = new AutoCompletionComboBoxPresenteur(new AutoCompletionComboBoxVue(), url) {
155
		completionTaxonsPresenteur = new AutoCompletionComboBoxPresenteur(new AutoCompletionComboBoxVue(), url) {
-
 
156
			protected String effectuerPreTraitementChaineRequete(String requete) {
156
			protected String effectuerPreTraitementChaineRequete(String requete) {
157
				requete = "?masque.nom=" + requete;
157
				return UtilitairesAutoCompletionService.effectuerPreTraitementChaineRequeteGenreEspeceSlash(requete);
158
				return UtilitairesAutoCompletionService.effectuerPreTraitementChaineRequeteGenreEspeceSlash(requete);
158
				// A décommenter lors de l'utilisation des web services eflore
159
				// A décommenter lors de l'utilisation des web services eflore
159
				// return
160
				// return
160
				// RetourAutoCompletionService.effectuerPreTraitementChaineRequeteGenreEspeceEflore(requete);
161
				// RetourAutoCompletionService.effectuerPreTraitementChaineRequeteGenreEspeceEflore(requete);
Line 161... Line 162...
161
			}
162
			}
162
 
163
 
163
			@Override
164
			@Override
164
			protected String[] parserResultatRequete(Response response) {
165
			protected String[] parserResultatRequete(Response response) {
165
				return UtilitairesAutoCompletionService.parserRetourSimple(response);
166
				return UtilitairesAutoCompletionService.parserResultatRetourSimple(response);
166
				// A décommenter lors de l'utilisation des web services eflore
167
				// A décommenter lors de l'utilisation des web services eflore
167
				// return RetourAutoCompletionService.parserRetourOss(response);
168
				// return RetourAutoCompletionService.parserRetourOss(response);
168
			}
169
			}