Subversion Repositories eFlore/Applications.coel-consultation

Rev

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

Rev 192 Rev 230
Line 1... Line 1...
1
<!-- COL - DEBUT MOTEUR RECHERCHE -->
1
<!-- COL - DEBUT MOTEUR RECHERCHE -->
2
<script type="text/javascript">                                         
2
<script type="text/javascript">
3
	// Function pour cacher / afficher les options de recherche
3
	// Function pour cacher / afficher les options de recherche
4
	$(document).ready(function() {
4
	$(document).ready(function() {
5
		$("#col-rech-opt-toggle").html("Afficher les options de recherche");
5
		$("#col-rech-opt-toggle").html("Afficher les options de recherche");
6
		$("#col-rech-opt").hide();
6
		$("#col-rech-opt").hide();
7
		$("#col-rech-opt-toggle").toggle(
7
		$("#col-rech-opt-toggle").toggle(
Line 33... Line 33...
33
			$(this).find('option[value="' + optionSelectionnee + '"]').attr('selected', 'selected');
33
			$(this).find('option[value="' + optionSelectionnee + '"]').attr('selected', 'selected');
34
		});
34
		});
35
	});
35
	});
36
</script>
36
</script>
Line 37... Line 37...
37
 
37
 
Line 38... Line 38...
38
<div id="zone_contenu_corps">
38
<div class="coel-consultation">
Line 39... Line 39...
39
 
39
 
Line 40... Line 40...
40
<h1>Moteur de recherche sur les herbiers</h1>
40
	<h1>Moteur de recherche sur les herbiers</h1>
Line 134... Line 194...
134
		<div class="champ-masque">
194
						<td>Permet d'indiquer plusieurs valeurs</td>
135
		</div>
195
						<!-- <td><a href="<?=Recherche::getUrlExemple('veg:br,ph')?>">veg:br,ph</a></td> -->
136
		<div class="champ-masque" title="Adresse courante ou lieu de naissance ou lieu de décès">
-
 
137
			<label class="label-droite">Localité</label>
-
 
138
			<input name="masque[adresse]" type="text" class="input-droite" value="<?= $masque['adresse'] ?>" />
-
 
139
		</div>
-
 
140
	</div>
-
 
141
	
-
 
142
	<input id="col-rech-ok" type="submit" value="OK" />
-
 
143
 
-
 
144
</form>
-
 
145
 
-
 
146
<br/>
-
 
147
<a id="col-rech-opt-toggle" href="#col-rech-opt-txt" title="Précisions sur les options de recherche"></a>
-
 
148
 
-
 
149
<div id="col-rech-opt">
-
 
150
	<h2 id="col-rech-opt-titre">Options de recherche</h2>
-
 
151
	<div id="col-rech-opt-txt">
-
 
152
		<p>
-
 
153
			Par défaut, la recherche est insensible à la casse (majuscule / minuscule) et s'effectue 
-
 
154
			en intercalant automatiquement le joker % avant et après la chaine recherchée et entre chaque mot 
-
 
155
			de celle-ci.
-
 
156
		</p>
-
 
157
		<p>Pour les opérateurs dont la valeur est un <em>texte libre</em> ou une <em>liste</em>, 
-
 
158
			il est possible d'utiliser des jokers.
-
 
159
			Ces "jokers" permettent de modifier la recherche.
-
 
160
		</p>
-
 
161
		<table>
-
 
162
			<thead>
-
 
163
				<tr>
-
 
164
					<th>Joker</th>
-
 
165
					<th>Applicable sur</th>
-
 
166
					<th>Explication</th>
-
 
167
					<!-- <th>Exemples</th> -->
-
 
168
				</tr>
-
 
169
			</thead>
-
 
170
			<tbody>
-
 
171
				<tr>
-
 
172
					<td>""</td>
-
 
173
					<td>Texte libre</td>
-
 
174
					<td>Permet de rechercher sur une expression exacte.</td>
-
 
175
					<!-- <td><a href="<?=Recherche::getUrlExemple('"Archives de l\'herbier Granger"')?>">
-
 
176
						"Archives de l'herbier Granger"</a></td> -->
-
 
177
				</tr>
-
 
178
				<tr>
-
 
179
					<td>%</td>
-
 
180
					<td>Texte libre</td>
-
 
181
					<td>Remplace n'importe quel nombre de caractères, y compris aucun.</td>
-
 
182
					<!-- <td><a href="<?=Recherche::getUrlExemple('"herbier %Abbé% Carondelet"')?>">
-
 
183
						"herbier %Abbé% Carondelet"</a></td> -->
-
 
184
				</tr>
-
 
185
				<tr>
-
 
186
					<td>_</td>
-
 
187
					<td>Texte libre</td>
-
 
188
					<td>Remplace exactement un caractère</td>
-
 
189
					<!-- <td><a href="<?=Recherche::getUrlExemple('p:"Jo_l"')?>">p:"Jo_l"</a></td> -->
-
 
190
				</tr>
-
 
191
				<tr>
-
 
192
					<td>,</td>
-
 
193
					<td>Liste</td>
-
 
194
					<td>Permet d'indiquer plusieurs valeurs</td>
-
 
195
					<!-- <td><a href="<?=Recherche::getUrlExemple('veg:br,ph')?>">veg:br,ph</a></td> -->
-
 
196
				</tr>
196
					</tr>
197
			</tbody>
197
				</tbody>
198
		</table>
198
			</table>