Subversion Repositories eFlore/Applications.coel-consultation

Rev

Rev 128 | Rev 169 | 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 -->
2
<script type="text/javascript">
3
	// Function pour cacher / afficher les options de recherche
4
	$(document).ready(function() {
5
		$("#col-rech-opt").hide();
43 jpm 6
		$("#col-rech-opt-toggle").html("Afficher la recherche avancée");
25 jpm 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
		);
90 jpm 17
		// Sélection du texte de la zone de recherche sur le focus
18
		$("#recherche").focus(function(){
19
			this.select();
20
		});
21
	});
25 jpm 22
</script>
7 jpm 23
<h2>Rechercher une collection</h2>
23 jpm 24
<form id="col-form" name="col-form" action="<?=$url_form;?>" method="get">
162 jpm 25
	<p>
128 jpm 26
		<input name="module" type="hidden" value="<?=$url_module;?>" />
27
		<input name="action" type="hidden" value="<?=$url_action;?>" />
28
		<label id="col-rech" for="recherche">Rechercher</label>
29
		<input id="recherche" name="recherche" type="text" value="<?=$recherche;?>" size="75" maxlength="250"/>
30
		<input id="col-rech-ok" type="submit" value="OK" />
162 jpm 31
 
128 jpm 32
		<a id="col-rech-opt-toggle" href="#col-rech-opt-txt" title="Précisions sur les options de recherche">Allez à la recherche avancée</a>
162 jpm 33
	</p>
20 jpm 34
</form>
128 jpm 35
 
23 jpm 36
<div id="col-rech-opt">
37
	<h2 id="col-rech-opt-titre">Options de recherche</h2>
38
	<div id="col-rech-opt-txt">
108 jpm 39
		<p>Le moteur de recherche permet de faire une recherche libre sur un mot, une expression ou un acronyme.<br />
106 jpm 40
			<em>Exemples&nbsp;:</em>
41
			<a href="<?=Recherche::getUrlExemple('mpu')?>">mpu</a>,
42
			<a href="<?=Recherche::getUrlExemple('Coste')?>">Coste</a>.</p>
43
		<p>
44
			Par défaut, la recherche est insensible à la casse (majuscule / minuscule) et s'effectue
45
			en intercalant automatiquement le joker % avant et après la chaine recherchée et entre chaque mot
46
			de celle-ci.
47
		</p>
48
		<p>
49
			Le moteur de recherche permet aussi d'utiliser des opérateurs dans le texte recherché pour préciser
50
			la requête. Vous les trouverez dans le tableau ci-dessous. Si vous souhaitez utiliser deux opérateurs
51
			à la suite, ou un opérateur et un mot clé de votre choix pour faire une recherche croisée, séparez-les
108 jpm 52
			uniquement par un espace.<br />
106 jpm 53
			<em>Exemples&nbsp;:</em>
84 jpm 54
			<a href="<?=Recherche::getUrlExemple('veg:br')?>">veg:br</a>,
54 jpm 55
			<a href="<?=Recherche::getUrlExemple('bot:he')?>">bot:he</a>,
56
			<a href="<?=Recherche::getUrlExemple('Coste bot:he')?>">Coste bot:he</a>,
57
			<a href="<?=Recherche::getUrlExemple('herbier zg:France')?>">herbier zg:France</a>,
58
			<a href="<?=Recherche::getUrlExemple('p:coste pr:co')?>">p:coste pr:co</a>,
106 jpm 59
			<a href="<?=Recherche::getUrlExemple('Ecole sci:1')?>">Ecole sci:1</a>.
60
		</p>
61
		<p>
62
			<em>Remarque&nbsp;:</em> pour les recherches géographiques, n'oubliez pas de regarder les herbiers qui contiennent
63
			des parts du monde entier.
64
		</p>
23 jpm 65
		<table>
66
			<thead>
67
				<tr>
68
					<th>Mot-clé</th>
69
					<th>Valeurs possibles</th>
70
					<th>Signification</th>
71
					<th>Explication</th>
72
					<th>Exemples</th>
73
				</tr>
74
			</thead>
75
			<tbody>
76
				<tr>
77
					<td>sci:</td>
78
					<td>0,1</td>
79
					<td>Recherches scientifiques</td>
80
					<td>Limite les résultats aux institutions autorisant la consultation des collections
81
						<em>sans (=0)</em> ou <em>avec (=1)</em> des objectifs de recherches scientifiques.</td>
54 jpm 82
					<td><a href="<?=Recherche::getUrlExemple('sci:0')?>">sci:0</a></td>
23 jpm 83
				</tr>
84
				<tr>
84 jpm 85
					<td>veg:</td>
86
					<td>Liste : PH (Phanérogames), GY (<span title="Conifères">Gymnospermes</span>),
87
						AN (<span title="Plantes à fleur">Angiospermes</span>), CR (Cryptogames),
88
						AL (<span title="Y compris Characées et Diatomées">Algues</span>),
89
						CH (Champignons),
90
						LI (Lichens),
91
						BR (<span title="Mousses">Bryophytes</span>),
92
						PT (<span title="Fougères">Ptéridophytes</span>).</td>
93
					<td>Nature végétale du contenu de la collection botanique</td>
94
					<td>Limite les résultats aux collections botaniques dont la nature végétale du contenu correspond
95
						au type indiqué.</td>
96
					<td><a href="<?=Recherche::getUrlExemple('veg:br')?>">veg:br</a></td>
97
				</tr>
98
				<tr>
23 jpm 99
					<td>bot:</td>
84 jpm 100
					<td>Liste : HE (Herbier), CE (Centurie - conservée en dehors d'un herbier), DR (Droguier), CA (Carpothèque),
23 jpm 101
						AL (Collection en alcool), XY (Xylothèque), PM (Collection de préparations microscopiques).</td>
102
					<td>Type de collection botanique</td>
103
					<td>Limite les résultats aux collections botaniques du type indiqué.</td>
54 jpm 104
					<td><a href="<?=Recherche::getUrlExemple('bot:he')?>">bot:he</a></td>
23 jpm 105
				</tr>
106
				<tr>
107
					<td>zg:</td>
108
					<td>Texte libre</td>
109
					<td>Origine géographique du contenu de la collection</td>
110
					<td>Limite les résultats aux collections dont le contenu correspond à la zone géographique indiquée.</td>
54 jpm 111
					<td><a href="<?=Recherche::getUrlExemple('zg:lozère')?>">zg:lozère</a></td>
23 jpm 112
				</tr>
113
				<tr>
114
					<td>p:</td>
115
					<td>Texte libre</td>
116
					<td>Nom ou partie du nom d'une personne.</td>
117
					<td>Limite les résultats aux institutions et collections liées a une personne dont le nom ou une
118
						partie du nom correspond à la valeur indiquée.</td>
54 jpm 119
					<td><a href="<?=Recherche::getUrlExemple('p:coste')?>">p:coste</a></td>
23 jpm 120
				</tr>
121
				<tr>
122
					<td>pr:</td>
84 jpm 123
					<td>Liste : CT (Contributeur), AU (Auteur), CO (Collecteur), DE (Déterminateur), HE
23 jpm 124
						(Hébergeur - particulier possédant une collection chez lui).</td>
125
					<td>Rôle d'une personne.</td>
126
					<td>Limite les résultats aux institutions et collections liées a une personne dont le rôle
127
						correspond à la valeur indiquée.</td>
54 jpm 128
					<td><a href="<?=Recherche::getUrlExemple('pr:AU')?>">pr:AU</a></td>
23 jpm 129
				</tr>
130
			</tbody>
131
		</table>
84 jpm 132
		<p>Pour les opérateurs dont la valeur est un <em>texte libre</em> ou une <em>liste</em>,
133
			il est possible d'utiliser des jokers.
134
			Ces "jokers" permettent de modifier la recherche.</p>
54 jpm 135
		<p>Exemples&nbsp;: <a href="<?=Recherche::getUrlExemple('"herbier de Coste"')?>">"herbier de Coste"</a>,
136
			<a href="<?=Recherche::getUrlExemple('"herbier % Montpellier"')?>">"herbier % Montpellier"</a>,
137
			<a href="<?=Recherche::getUrlExemple('p:"Jo_l"')?>">p:"Jo_l"</a>.
84 jpm 138
			<a href="<?=Recherche::getUrlExemple('veg:br,cr')?>">veg:br,cr</a>.
23 jpm 139
		</p>
140
		<table>
141
			<thead>
142
				<tr>
143
					<th>Joker</th>
84 jpm 144
					<th>Applicable sur</th>
23 jpm 145
					<th>Explication</th>
146
					<th>Exemples</th>
147
				</tr>
148
			</thead>
149
			<tbody>
150
				<tr>
151
					<td>""</td>
84 jpm 152
					<td>Texte libre</td>
23 jpm 153
					<td>Permet de rechercher sur une expression exacte.</td>
54 jpm 154
					<td><a href="<?=Recherche::getUrlExemple('"Archives de l\'herbier Granger"')?>">
23 jpm 155
						"Archives de l'herbier Granger"</a></td>
156
				</tr>
157
				<tr>
158
					<td>%</td>
84 jpm 159
					<td>Texte libre</td>
23 jpm 160
					<td>Remplace n'importe quel nombre de caractères, y compris aucun.</td>
54 jpm 161
					<td><a href="<?=Recherche::getUrlExemple('"herbier %Abbé% Carondelet"')?>">
23 jpm 162
						"herbier %Abbé% Carondelet"</a></td>
163
				</tr>
164
				<tr>
165
					<td>_</td>
84 jpm 166
					<td>Texte libre</td>
23 jpm 167
					<td>Remplace exactement un caractère</td>
54 jpm 168
					<td><a href="<?=Recherche::getUrlExemple('p:"Jo_l"')?>">p:"Jo_l"</a></td>
23 jpm 169
				</tr>
84 jpm 170
				<tr>
171
					<td>,</td>
172
					<td>Liste</td>
173
					<td>Permet d'indiquer plusieurs valeurs</td>
174
					<td><a href="<?=Recherche::getUrlExemple('veg:br,ph')?>">veg:br,ph</a></td>
175
				</tr>
23 jpm 176
			</tbody>
177
		</table>
178
	</div>
25 jpm 179
</div>
180
<!-- COL - FIN MOTEUR RECHERCHE -->