25 |
jpm |
1 |
<!-- COL - DEBUT MOTEUR RECHERCHE -->
|
|
|
2 |
<script type="text/javascript">
|
|
|
3 |
// Function pour cacher / afficher les options de recherche
|
|
|
4 |
$(document).ready(function() {
|
180 |
mathias |
5 |
$("#col-rech-opt-toggle").html("Afficher la recherche avancée");
|
25 |
jpm |
6 |
$("#col-rech-opt").hide();
|
|
|
7 |
$("#col-rech-opt-toggle").toggle(
|
|
|
8 |
function() {
|
43 |
jpm |
9 |
$("#col-rech-opt-toggle").html("Cacher la recherche avancée");
|
128 |
jpm |
10 |
$("#col-rech-opt").slideDown("fast");
|
25 |
jpm |
11 |
},
|
|
|
12 |
function() {
|
43 |
jpm |
13 |
$("#col-rech-opt-toggle").html("Afficher la recherche avancée");
|
128 |
jpm |
14 |
$("#col-rech-opt").slideUp("fast");
|
25 |
jpm |
15 |
}
|
|
|
16 |
);
|
180 |
mathias |
17 |
// Rechargement des options sélectionnées dans les select
|
|
|
18 |
$('#col-form select').each(function() {
|
|
|
19 |
var optionSelectionnee = $(this).attr('data-option-selectionnee');
|
|
|
20 |
$(this).find('option[value="' + optionSelectionnee + '"]').attr('selected', 'selected');
|
|
|
21 |
});
|
90 |
jpm |
22 |
// Sélection du texte de la zone de recherche sur le focus
|
180 |
mathias |
23 |
/*$("#recherche").focus(function(){
|
90 |
jpm |
24 |
this.select();
|
180 |
mathias |
25 |
});*/
|
90 |
jpm |
26 |
});
|
25 |
jpm |
27 |
</script>
|
180 |
mathias |
28 |
|
7 |
jpm |
29 |
<h2>Rechercher une collection</h2>
|
180 |
mathias |
30 |
|
23 |
jpm |
31 |
<form id="col-form" name="col-form" action="<?=$url_form;?>" method="get">
|
180 |
mathias |
32 |
|
|
|
33 |
<!-- <input id="recherche" name="recherche" type="text" value="<?=$recherche;?>" size="75" maxlength="250"/> -->
|
|
|
34 |
|
|
|
35 |
<input name="module" type="hidden" value="<?=$url_module;?>" />
|
|
|
36 |
<input name="action" type="hidden" value="<?=$url_action;?>" />
|
|
|
37 |
<?php if (isset($url_contexte)) : ?>
|
169 |
jpm |
38 |
<input name="contexte" type="hidden" value="<?=$url_contexte;?>" />
|
180 |
mathias |
39 |
<? endif; ?>
|
|
|
40 |
|
|
|
41 |
<input name="masque[cible]" type="hidden" value="collections" />
|
|
|
42 |
|
|
|
43 |
<!-- <pre><?php print_r($masque) ?></pre> -->
|
|
|
44 |
|
|
|
45 |
<div id="col-rech-masque">
|
|
|
46 |
<div class="champ-masque">
|
|
|
47 |
<label class="gauche">Lieu de stockage</label>
|
|
|
48 |
<input name="masque[lieu-stockage]" type="text" value="<?= $masque['lieu-stockage'] ?>" />
|
|
|
49 |
</div>
|
|
|
50 |
<div class="champ-masque">
|
|
|
51 |
<label class="droite">Groupe taxonomique</label>
|
|
|
52 |
<select name="masque[veg]" data-option-selectionnee="<?= $masque['veg'] ?>">
|
|
|
53 |
<option value=""></option>
|
|
|
54 |
<option value="PH">Phanérogames</option>
|
|
|
55 |
<option value="GY">Gymnospermes</option>
|
|
|
56 |
<option value="AN">Angiospermes</option>
|
|
|
57 |
<option value="CR">Cryptogames</option>
|
|
|
58 |
<option value="AL">Algues</option>
|
|
|
59 |
<option value="CH">Champignons</option>
|
|
|
60 |
<option value="LI">Lichens</option>
|
|
|
61 |
<option value="BR">Bryophytes</option>
|
|
|
62 |
<option value="PT">Ptéridophytes</option>
|
|
|
63 |
</select>
|
|
|
64 |
</div>
|
|
|
65 |
<div class="champ-masque">
|
|
|
66 |
<label class="gauche">Lieu de récolte</label>
|
|
|
67 |
<input name="masque[zg]" type="text" value="<?= $masque['zg'] ?>" />
|
|
|
68 |
</div>
|
|
|
69 |
<div class="champ-masque">
|
|
|
70 |
<label class="droite">Type de collection</label>
|
|
|
71 |
<select name="masque[bot]" data-option-selectionnee="<?= $masque['bot'] ?>">
|
|
|
72 |
<option value=""></option>
|
|
|
73 |
<option value="HE">Herbier</option>
|
|
|
74 |
<option value="CE">Centurie</option>
|
|
|
75 |
<option value="DR">Droguier</option>
|
|
|
76 |
<option value="CA">Carpothèque</option>
|
|
|
77 |
<option value="AL">Collection en alcool</option>
|
|
|
78 |
<option value="XY">Xylothèque</option>
|
|
|
79 |
<option value="PM">Préparations microscopiques</option>
|
|
|
80 |
</select>
|
|
|
81 |
</div>
|
|
|
82 |
<div class="champ-masque">
|
|
|
83 |
<label class="gauche">Personne</label>
|
|
|
84 |
<input name="masque[p]" type="text" value="<?= $masque['p'] ?>" />
|
|
|
85 |
</div>
|
|
|
86 |
<div class="champ-masque">
|
|
|
87 |
<label class="droite">→ ayant le rôle</label>
|
|
|
88 |
<select name="masque[pr]" data-option-selectionnee="<?= $masque['pr'] ?>">
|
|
|
89 |
<option value=""></option>
|
|
|
90 |
<option value="CT">Contributeur</option>
|
|
|
91 |
<option value="AU">Auteur</option>
|
|
|
92 |
<option value="CO">Collecteur</option>
|
|
|
93 |
<option value="DE">Déterminateur</option>
|
|
|
94 |
<option value="HE">Hébergeur</option>
|
|
|
95 |
</select>
|
|
|
96 |
</div>
|
|
|
97 |
</div>
|
|
|
98 |
|
|
|
99 |
<input id="col-rech-ok" type="submit" value="OK" />
|
|
|
100 |
|
20 |
jpm |
101 |
</form>
|
128 |
jpm |
102 |
|
180 |
mathias |
103 |
<h2>Rechercher une personne</h2>
|
|
|
104 |
|
|
|
105 |
<form id="pers-form" name="col-form" action="<?=$url_form;?>" method="get">
|
|
|
106 |
|
|
|
107 |
<input name="module" type="hidden" value="<?=$url_module;?>" />
|
|
|
108 |
<input name="action" type="hidden" value="<?=$url_action;?>" />
|
|
|
109 |
<?php if (isset($url_contexte)) : ?>
|
|
|
110 |
<input name="contexte" type="hidden" value="<?=$url_contexte;?>" />
|
|
|
111 |
<? endif; ?>
|
|
|
112 |
|
|
|
113 |
<input name="masque[cible]" type="hidden" value="personnes" />
|
|
|
114 |
|
|
|
115 |
<div id="col-rech-masque">
|
|
|
116 |
<div class="champ-masque">
|
|
|
117 |
<label class="gauche">Nom de famille</label>
|
|
|
118 |
<input name="masque[nom-famille]" type="text" value="<?= $masque['nom-famille'] ?>" />
|
|
|
119 |
</div>
|
|
|
120 |
<div class="champ-masque">
|
|
|
121 |
<label class="droite">Vivant en (année)</label>
|
|
|
122 |
<input name="masque[date-vivant]" type="text" value="<?= $masque['date-vivant'] ?>" />
|
|
|
123 |
</div>
|
|
|
124 |
<div class="champ-masque">
|
|
|
125 |
<label class="gauche">Adresse</label>
|
|
|
126 |
<input name="masque[adresse]" type="text" value="<?= $masque['adresse'] ?>" />
|
|
|
127 |
</div>
|
|
|
128 |
</div>
|
|
|
129 |
|
|
|
130 |
<input id="col-rech-ok" type="submit" value="OK" />
|
|
|
131 |
|
|
|
132 |
</form>
|
|
|
133 |
|
|
|
134 |
<br/>
|
|
|
135 |
<a id="col-rech-opt-toggle" href="#col-rech-opt-txt" title="Précisions sur les options de recherche"></a>
|
|
|
136 |
|
23 |
jpm |
137 |
<div id="col-rech-opt">
|
|
|
138 |
<h2 id="col-rech-opt-titre">Options de recherche</h2>
|
|
|
139 |
<div id="col-rech-opt-txt">
|
180 |
mathias |
140 |
<!-- <p>Le moteur de recherche permet de faire une recherche libre sur un mot, une expression ou un acronyme.<br />
|
106 |
jpm |
141 |
<em>Exemples :</em>
|
|
|
142 |
<a href="<?=Recherche::getUrlExemple('mpu')?>">mpu</a>,
|
180 |
mathias |
143 |
<a href="<?=Recherche::getUrlExemple('Coste')?>">Coste</a>.</p> -->
|
106 |
jpm |
144 |
<p>
|
|
|
145 |
Par défaut, la recherche est insensible à la casse (majuscule / minuscule) et s'effectue
|
|
|
146 |
en intercalant automatiquement le joker % avant et après la chaine recherchée et entre chaque mot
|
|
|
147 |
de celle-ci.
|
|
|
148 |
</p>
|
180 |
mathias |
149 |
<!-- <p>
|
106 |
jpm |
150 |
Le moteur de recherche permet aussi d'utiliser des opérateurs dans le texte recherché pour préciser
|
|
|
151 |
la requête. Vous les trouverez dans le tableau ci-dessous. Si vous souhaitez utiliser deux opérateurs
|
|
|
152 |
à la suite, ou un opérateur et un mot clé de votre choix pour faire une recherche croisée, séparez-les
|
108 |
jpm |
153 |
uniquement par un espace.<br />
|
106 |
jpm |
154 |
<em>Exemples :</em>
|
84 |
jpm |
155 |
<a href="<?=Recherche::getUrlExemple('veg:br')?>">veg:br</a>,
|
54 |
jpm |
156 |
<a href="<?=Recherche::getUrlExemple('bot:he')?>">bot:he</a>,
|
|
|
157 |
<a href="<?=Recherche::getUrlExemple('Coste bot:he')?>">Coste bot:he</a>,
|
|
|
158 |
<a href="<?=Recherche::getUrlExemple('herbier zg:France')?>">herbier zg:France</a>,
|
|
|
159 |
<a href="<?=Recherche::getUrlExemple('p:coste pr:co')?>">p:coste pr:co</a>,
|
106 |
jpm |
160 |
<a href="<?=Recherche::getUrlExemple('Ecole sci:1')?>">Ecole sci:1</a>.
|
|
|
161 |
</p>
|
|
|
162 |
<p>
|
|
|
163 |
<em>Remarque :</em> pour les recherches géographiques, n'oubliez pas de regarder les herbiers qui contiennent
|
|
|
164 |
des parts du monde entier.
|
|
|
165 |
</p>
|
23 |
jpm |
166 |
<table>
|
|
|
167 |
<thead>
|
|
|
168 |
<tr>
|
|
|
169 |
<th>Mot-clé</th>
|
|
|
170 |
<th>Valeurs possibles</th>
|
|
|
171 |
<th>Signification</th>
|
|
|
172 |
<th>Explication</th>
|
|
|
173 |
<th>Exemples</th>
|
|
|
174 |
</tr>
|
|
|
175 |
</thead>
|
|
|
176 |
<tbody>
|
|
|
177 |
<tr>
|
|
|
178 |
<td>sci:</td>
|
|
|
179 |
<td>0,1</td>
|
|
|
180 |
<td>Recherches scientifiques</td>
|
|
|
181 |
<td>Limite les résultats aux institutions autorisant la consultation des collections
|
|
|
182 |
<em>sans (=0)</em> ou <em>avec (=1)</em> des objectifs de recherches scientifiques.</td>
|
54 |
jpm |
183 |
<td><a href="<?=Recherche::getUrlExemple('sci:0')?>">sci:0</a></td>
|
23 |
jpm |
184 |
</tr>
|
|
|
185 |
<tr>
|
84 |
jpm |
186 |
<td>veg:</td>
|
|
|
187 |
<td>Liste : PH (Phanérogames), GY (<span title="Conifères">Gymnospermes</span>),
|
|
|
188 |
AN (<span title="Plantes à fleur">Angiospermes</span>), CR (Cryptogames),
|
|
|
189 |
AL (<span title="Y compris Characées et Diatomées">Algues</span>),
|
|
|
190 |
CH (Champignons),
|
|
|
191 |
LI (Lichens),
|
|
|
192 |
BR (<span title="Mousses">Bryophytes</span>),
|
|
|
193 |
PT (<span title="Fougères">Ptéridophytes</span>).</td>
|
|
|
194 |
<td>Nature végétale du contenu de la collection botanique</td>
|
|
|
195 |
<td>Limite les résultats aux collections botaniques dont la nature végétale du contenu correspond
|
|
|
196 |
au type indiqué.</td>
|
|
|
197 |
<td><a href="<?=Recherche::getUrlExemple('veg:br')?>">veg:br</a></td>
|
|
|
198 |
</tr>
|
|
|
199 |
<tr>
|
23 |
jpm |
200 |
<td>bot:</td>
|
84 |
jpm |
201 |
<td>Liste : HE (Herbier), CE (Centurie - conservée en dehors d'un herbier), DR (Droguier), CA (Carpothèque),
|
23 |
jpm |
202 |
AL (Collection en alcool), XY (Xylothèque), PM (Collection de préparations microscopiques).</td>
|
|
|
203 |
<td>Type de collection botanique</td>
|
|
|
204 |
<td>Limite les résultats aux collections botaniques du type indiqué.</td>
|
54 |
jpm |
205 |
<td><a href="<?=Recherche::getUrlExemple('bot:he')?>">bot:he</a></td>
|
23 |
jpm |
206 |
</tr>
|
|
|
207 |
<tr>
|
|
|
208 |
<td>zg:</td>
|
|
|
209 |
<td>Texte libre</td>
|
|
|
210 |
<td>Origine géographique du contenu de la collection</td>
|
|
|
211 |
<td>Limite les résultats aux collections dont le contenu correspond à la zone géographique indiquée.</td>
|
54 |
jpm |
212 |
<td><a href="<?=Recherche::getUrlExemple('zg:lozère')?>">zg:lozère</a></td>
|
23 |
jpm |
213 |
</tr>
|
|
|
214 |
<tr>
|
|
|
215 |
<td>p:</td>
|
|
|
216 |
<td>Texte libre</td>
|
|
|
217 |
<td>Nom ou partie du nom d'une personne.</td>
|
|
|
218 |
<td>Limite les résultats aux institutions et collections liées a une personne dont le nom ou une
|
|
|
219 |
partie du nom correspond à la valeur indiquée.</td>
|
54 |
jpm |
220 |
<td><a href="<?=Recherche::getUrlExemple('p:coste')?>">p:coste</a></td>
|
23 |
jpm |
221 |
</tr>
|
|
|
222 |
<tr>
|
|
|
223 |
<td>pr:</td>
|
84 |
jpm |
224 |
<td>Liste : CT (Contributeur), AU (Auteur), CO (Collecteur), DE (Déterminateur), HE
|
23 |
jpm |
225 |
(Hébergeur - particulier possédant une collection chez lui).</td>
|
|
|
226 |
<td>Rôle d'une personne.</td>
|
|
|
227 |
<td>Limite les résultats aux institutions et collections liées a une personne dont le rôle
|
|
|
228 |
correspond à la valeur indiquée.</td>
|
54 |
jpm |
229 |
<td><a href="<?=Recherche::getUrlExemple('pr:AU')?>">pr:AU</a></td>
|
23 |
jpm |
230 |
</tr>
|
|
|
231 |
</tbody>
|
180 |
mathias |
232 |
</table> -->
|
84 |
jpm |
233 |
<p>Pour les opérateurs dont la valeur est un <em>texte libre</em> ou une <em>liste</em>,
|
|
|
234 |
il est possible d'utiliser des jokers.
|
|
|
235 |
Ces "jokers" permettent de modifier la recherche.</p>
|
54 |
jpm |
236 |
<p>Exemples : <a href="<?=Recherche::getUrlExemple('"herbier de Coste"')?>">"herbier de Coste"</a>,
|
|
|
237 |
<a href="<?=Recherche::getUrlExemple('"herbier % Montpellier"')?>">"herbier % Montpellier"</a>,
|
|
|
238 |
<a href="<?=Recherche::getUrlExemple('p:"Jo_l"')?>">p:"Jo_l"</a>.
|
84 |
jpm |
239 |
<a href="<?=Recherche::getUrlExemple('veg:br,cr')?>">veg:br,cr</a>.
|
23 |
jpm |
240 |
</p>
|
|
|
241 |
<table>
|
|
|
242 |
<thead>
|
|
|
243 |
<tr>
|
|
|
244 |
<th>Joker</th>
|
84 |
jpm |
245 |
<th>Applicable sur</th>
|
23 |
jpm |
246 |
<th>Explication</th>
|
|
|
247 |
<th>Exemples</th>
|
|
|
248 |
</tr>
|
|
|
249 |
</thead>
|
|
|
250 |
<tbody>
|
|
|
251 |
<tr>
|
|
|
252 |
<td>""</td>
|
84 |
jpm |
253 |
<td>Texte libre</td>
|
23 |
jpm |
254 |
<td>Permet de rechercher sur une expression exacte.</td>
|
54 |
jpm |
255 |
<td><a href="<?=Recherche::getUrlExemple('"Archives de l\'herbier Granger"')?>">
|
23 |
jpm |
256 |
"Archives de l'herbier Granger"</a></td>
|
|
|
257 |
</tr>
|
|
|
258 |
<tr>
|
|
|
259 |
<td>%</td>
|
84 |
jpm |
260 |
<td>Texte libre</td>
|
23 |
jpm |
261 |
<td>Remplace n'importe quel nombre de caractères, y compris aucun.</td>
|
54 |
jpm |
262 |
<td><a href="<?=Recherche::getUrlExemple('"herbier %Abbé% Carondelet"')?>">
|
23 |
jpm |
263 |
"herbier %Abbé% Carondelet"</a></td>
|
|
|
264 |
</tr>
|
|
|
265 |
<tr>
|
|
|
266 |
<td>_</td>
|
84 |
jpm |
267 |
<td>Texte libre</td>
|
23 |
jpm |
268 |
<td>Remplace exactement un caractère</td>
|
54 |
jpm |
269 |
<td><a href="<?=Recherche::getUrlExemple('p:"Jo_l"')?>">p:"Jo_l"</a></td>
|
23 |
jpm |
270 |
</tr>
|
84 |
jpm |
271 |
<tr>
|
|
|
272 |
<td>,</td>
|
|
|
273 |
<td>Liste</td>
|
|
|
274 |
<td>Permet d'indiquer plusieurs valeurs</td>
|
|
|
275 |
<td><a href="<?=Recherche::getUrlExemple('veg:br,ph')?>">veg:br,ph</a></td>
|
|
|
276 |
</tr>
|
23 |
jpm |
277 |
</tbody>
|
|
|
278 |
</table>
|
|
|
279 |
</div>
|
25 |
jpm |
280 |
</div>
|
|
|
281 |
<!-- COL - FIN MOTEUR RECHERCHE -->
|