Subversion Repositories eFlore/Applications.coel-consultation

Rev

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