Subversion Repositories eFlore/Applications.coel-consultation

Rev

Rev 264 | Rev 275 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
25 jpm 1
<!-- COL - DEBUT MOTEUR RECHERCHE -->
230 jpm 2
<script type="text/javascript">
269 mathias 3
	var jq = jQuery.noConflict();
25 jpm 4
	// Function pour cacher / afficher les options de recherche
269 mathias 5
	jq(document).ready(function() {
6
		jq("#col-rech-opt-toggle").html("Afficher les options de recherche");
7
		jq("#col-rech-opt").hide();
8
		jq("#col-rech-opt-toggle").toggle(
25 jpm 9
			function() {
269 mathias 10
				jq("#col-rech-opt-toggle").html("Cacher les options de recherche");
11
				jq("#col-rech-opt").slideDown("fast");
25 jpm 12
			},
13
			function() {
269 mathias 14
				jq("#col-rech-opt-toggle").html("Afficher les options de recherche");
15
				jq("#col-rech-opt").slideUp("fast");
25 jpm 16
			}
17
		);
185 mathias 18
		// Le rôle de la personne ne peut être défini que si une personne est mentionnée
19
		function statutChampRole() {
269 mathias 20
			var contenu = jq('input#nom-personne').val();
185 mathias 21
			if (contenu == '') {
269 mathias 22
				jq('select#role-personne').attr('disabled', 'disabled');
185 mathias 23
			} else {
269 mathias 24
				jq('select#role-personne').removeAttr('disabled');
185 mathias 25
			}
26
		}
269 mathias 27
		jq('input#nom-personne').change(function() {
185 mathias 28
			statutChampRole();
29
		});
30
		statutChampRole();
180 mathias 31
		// Rechargement des options sélectionnées dans les select
269 mathias 32
		jq('#col-form select').each(function() {
33
			var optionSelectionnee = jq(this).attr('data-option-selectionnee');
34
			jq(this).find('option[value="' + optionSelectionnee + '"]').attr('selected', 'selected');
180 mathias 35
		});
90 jpm 36
	});
25 jpm 37
</script>
180 mathias 38
 
230 jpm 39
<div class="coel-consultation">
190 mathias 40
 
230 jpm 41
	<h1>Moteur de recherche sur les herbiers</h1>
180 mathias 42
 
230 jpm 43
	<h2 class="titre-moteur-recherche">Rechercher une collection</h2>
189 mathias 44
 
230 jpm 45
	<form id="col-form" name="col-form" action="<?=$url_form;?>" method="get">
180 mathias 46
 
230 jpm 47
		<input name="module" type="hidden" value="<?=$url_module;?>" />
48
		<input name="action" type="hidden" value="<?=$url_action;?>" />
49
		<?php if (isset($url_contexte)) : ?>
50
			<input name="contexte" type="hidden" value="<?=$url_contexte;?>" />
264 mathias 51
		<?php endif; ?>
180 mathias 52
 
230 jpm 53
		<input name="masque[cible]" type="hidden" value="collections" />
180 mathias 54
 
230 jpm 55
		<div id="col-rech-masque">
56
			<div class="champ-masque" title="Lieu de stockage">
57
				<label class="label-gauche">Localité institution</label>
254 mathias 58
				<input name="masque[lieu-stockage]" type="text" value="<?= htmlspecialchars($masque['lieu-stockage']) ?>" />
230 jpm 59
			</div>
60
			<div class="champ-masque">
61
				<label class="label-droite">Groupe taxonomique</label>
62
				<select name="masque[veg]" data-option-selectionnee="<?= $masque['veg'] ?>">
63
					<option value=""></option>
64
					<option value="PH">Phanérogames</option>
65
					<option value="GY">Gymnospermes</option>
66
					<option value="AN">Angiospermes</option>
67
					<option value="CR">Cryptogames</option>
68
					<option value="AL">Algues</option>
69
					<option value="CH">Champignons</option>
70
					<option value="LI">Lichens</option>
71
					<option value="BR">Bryophytes</option>
72
					<option value="PT">Ptéridophytes</option>
73
				</select>
74
			</div>
75
			<div class="champ-masque">
76
				<label class="label-gauche">Lieu de récolte</label>
254 mathias 77
				<input name="masque[zg]" type="text" value="<?= htmlspecialchars($masque['zg']) ?>" />
230 jpm 78
			</div>
79
			<div class="champ-masque">
80
				<label class="label-droite">Type de collection</label>
81
				<select name="masque[bot]" data-option-selectionnee="<?= $masque['bot'] ?>">
82
					<option value=""></option>
83
					<option value="HE">Herbier</option>
84
					<option value="CE">Centurie</option>
85
					<option value="DR">Droguier</option>
86
					<option value="CA">Carpothèque</option>
87
					<option value="AL">Collection en alcool</option>
88
					<option value="XY">Xylothèque</option>
89
					<option value="PM">Préparations microscopiques</option>
90
				</select>
91
			</div>
92
			<div class="champ-masque" title="Contributeur, auteur, collecteur, déterminateur ou hébergeur">
93
				<label class="label-gauche">Personne</label>
254 mathias 94
				<input id="nom-personne" name="masque[p]" type="text" value="<?= htmlspecialchars($masque['p']) ?>" />
230 jpm 95
			</div>
96
			<!-- <div class="champ-masque">
97
				<label class="label-droite">&gt;&gt; ayant le rôle</label>
98
				<select id="role-personne" name="masque[pr]" data-option-selectionnee="<?= $masque['pr'] ?>">
99
					<option value=""></option>
100
					<option value="CT">Contributeur</option>
101
					<option value="AU">Auteur</option>
102
					<option value="CO">Collecteur</option>
103
					<option value="DE">Déterminateur</option>
104
					<option value="HE">Hébergeur</option>
105
				</select>
106
			</div> -->
180 mathias 107
		</div>
108
 
230 jpm 109
		<input id="col-rech-ok" type="submit" value="OK" />
128 jpm 110
 
230 jpm 111
	</form>
112
	<br/>
180 mathias 113
 
230 jpm 114
	<h2 class="titre-moteur-recherche">Rechercher une personne</h2>
180 mathias 115
 
230 jpm 116
	<form id="pers-form" name="col-form" action="<?=$url_form;?>" method="get">
180 mathias 117
 
230 jpm 118
		<input name="module" type="hidden" value="<?=$url_module;?>" />
119
		<input name="action" type="hidden" value="<?=$url_action;?>" />
120
		<?php if (isset($url_contexte)) : ?>
121
			<input name="contexte" type="hidden" value="<?=$url_contexte;?>" />
264 mathias 122
		<?php endif; ?>
180 mathias 123
 
230 jpm 124
		<input name="masque[cible]" type="hidden" value="personnes" />
125
 
126
		<div id="col-rech-masque">
127
			<div class="champ-masque">
128
				<label class="label-gauche">Nom de famille</label>
254 mathias 129
				<input name="masque[nom-famille]" type="text" value="<?= htmlspecialchars($masque['nom-famille']) ?>" />
230 jpm 130
			</div>
131
			<div class="champ-masque" title="Date comprise entre la date de naissance et la date de décès">
132
				<label class="label-droite">Date de collecte</label>
133
				<input name="masque[date-vivant]" type="text" class="input-droite" value="<?= $masque['date-vivant'] ?>" />
134
			</div>
135
			<div class="champ-masque">
136
			</div>
137
			<div class="champ-masque" title="Adresse courante ou lieu de naissance ou lieu de décès">
138
				<label class="label-droite">Localité</label>
254 mathias 139
				<input name="masque[adresse]" type="text" class="input-droite" value="<?= htmlspecialchars($masque['adresse']) ?>" />
230 jpm 140
			</div>
180 mathias 141
		</div>
142
 
230 jpm 143
		<input id="col-rech-ok" type="submit" value="OK" />
180 mathias 144
 
230 jpm 145
	</form>
180 mathias 146
 
230 jpm 147
	<br/>
148
	<a id="col-rech-opt-toggle" href="#col-rech-opt-txt" title="Précisions sur les options de recherche"></a>
149
 
150
	<div id="col-rech-opt">
151
		<h2 id="col-rech-opt-titre">Options de recherche</h2>
152
		<div id="col-rech-opt-txt">
153
			<p>
154
				Par défaut, la recherche est insensible à la casse (majuscule / minuscule) et s'effectue
155
				en intercalant automatiquement le joker % avant et après la chaine recherchée et entre chaque mot
156
				de celle-ci.
157
			</p>
158
			<p>Pour les opérateurs dont la valeur est un <em>texte libre</em> ou une <em>liste</em>,
159
				il est possible d'utiliser des jokers.
160
				Ces "jokers" permettent de modifier la recherche.
161
			</p>
162
			<table>
163
				<thead>
164
					<tr>
165
						<th>Joker</th>
166
						<th>Applicable sur</th>
167
						<th>Explication</th>
168
						<!-- <th>Exemples</th> -->
169
					</tr>
170
				</thead>
171
				<tbody>
172
					<tr>
173
						<td>""</td>
174
						<td>Texte libre</td>
175
						<td>Permet de rechercher sur une expression exacte.</td>
176
						<!-- <td><a href="<?=Recherche::getUrlExemple('"Archives de l\'herbier Granger"')?>">
177
							"Archives de l'herbier Granger"</a></td> -->
178
					</tr>
179
					<tr>
180
						<td>%</td>
181
						<td>Texte libre</td>
182
						<td>Remplace n'importe quel nombre de caractères, y compris aucun.</td>
183
						<!-- <td><a href="<?=Recherche::getUrlExemple('"herbier %Abbé% Carondelet"')?>">
184
							"herbier %Abbé% Carondelet"</a></td> -->
185
					</tr>
186
					<tr>
187
						<td>_</td>
188
						<td>Texte libre</td>
189
						<td>Remplace exactement un caractère</td>
190
						<!-- <td><a href="<?=Recherche::getUrlExemple('p:"Jo_l"')?>">p:"Jo_l"</a></td> -->
191
					</tr>
192
					<tr>
193
						<td>,</td>
194
						<td>Liste</td>
195
						<td>Permet d'indiquer plusieurs valeurs</td>
196
						<!-- <td><a href="<?=Recherche::getUrlExemple('veg:br,ph')?>">veg:br,ph</a></td> -->
197
					</tr>
198
				</tbody>
199
			</table>
200
		</div>
23 jpm 201
	</div>
25 jpm 202
</div>
264 mathias 203
<!-- COeL - FIN MOTEUR RECHERCHE -->