Subversion Repositories Applications.referentiel

Rev

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

Rev Author Line No. Line
69 delphine 1
<!-- REF - DEBUT MOTEUR RECHERCHE -->
2
<script type="text/javascript">
3
	// Function pour cacher / afficher les options de recherche
4
	$(document).ready(function() {
5
		$("#ref-rech-opt").hide();
6
		$("#ref-rech-opt-toggle").html("Afficher la recherche avancée");
7
		$("#ref-rech-opt-toggle").toggle(
8
			function() {
9
				$("#ref-rech-opt-toggle").html("Cacher la recherche avancée");
10
				$("#ref-rech-opt").slideDown("fast");
11
			},
12
			function() {
13
				$("#ref-rech-opt-toggle").html("Afficher la recherche avancée");
14
				$("#ref-rech-opt").slideUp("fast");
15
			}
16
		);
17
		// Sélection du texte de la zone de recherche sur le focus
18
		$("#recherche").focus(function(){
19
			this.select();
20
		});
21
	});
22
</script>
121 jpm 23
<p>
24
	Bienvenue dans l'espace de consultation de la version de travail de la <?=$code_referentiel?><br />
25
	Pour transmettre vos remarques au groupe de travail, veuillez utiliser le forum dédié : <a href="mailto:<?=$forum_referentiel?>"><?=$forum_referentiel?></a>
26
</p>
74 delphine 27
<h1>Consultation du référentiel <?=$url_referentiel?></h1>
69 delphine 28
<form id="ref-form" name="ref-form" action="<?=$url_form;?>" method="get">
29
	<p>
30
		<input name="ref" type="hidden" value="<?=$url_referentiel;?>" />
31
		<input name="module" type="hidden" value="<?=$url_module;?>" />
32
		<input name="action" type="hidden" value="<?=$url_action;?>" />
33
		<label id="ref-rech" for="recherche">Rechercher</label>
34
		<input id="recherche" name="recherche" type="text" value="<?=$recherche;?>" size="75" maxlength="250"/>
35
		<input id="ref-rech-ok" type="submit" value="OK" />
36
 
105 jpm 37
		<a id="ref-rech-opt-toggle" href="#ref-rech-opt-txt" title="Précisions sur les options de recherche">Afficher la recherche avancée</a>
69 delphine 38
	</p>
39
</form>
40
 
41
<div id="ref-rech-opt">
42
	<h2 id="ref-rech-opt-titre">Options de recherche</h2>
43
	<div id="ref-rech-opt-txt">
44
		<p>Le moteur de recherche permet de faire une recherche libre sur un mot, une expression ou un acronyme.<br />
45
			<em>Exemples&nbsp;:</em>
74 delphine 46
			<a href="<?=Recherche::getUrlRecherche('acer', 'bdnff')?>">Acer</a>,
47
			<a href="<?=Recherche::getUrlRecherche('2010', 'bdnff')?>">2010</a>.</p>
69 delphine 48
		<p>
49
			Par défaut, la recherche est insensible à la casse (majuscule / minuscule) et s'effectue
73 delphine 50
			en intercalant automatiquement le joker % avant et après la chaîne recherchée et entre chaque mot
69 delphine 51
			de celle-ci.
52
		</p>
53
		<p>
54
			Le moteur de recherche permet aussi d'utiliser des opérateurs dans le texte recherché pour préciser
55
			la requête. Vous les trouverez dans le tableau ci-dessous. Si vous souhaitez utiliser deux opérateurs
56
			à la suite, ou un opérateur et un mot clé de votre choix pour faire une recherche croisée, séparez-les
57
			uniquement par un espace.<br />
58
			<em>Exemples&nbsp;:</em>
74 delphine 59
			<a href="<?=Recherche::getUrlRecherche('an:2010', 'bdnff')?>">an:2010</a>,
60
			<a href="<?=Recherche::getUrlRecherche('l. gen:aba', 'bdnff')?>">l. gen:aba</a>,
61
			<a href="<?=Recherche::getUrlRecherche('au:l. gen:aba', 'bdnff')?>">au:l. gen:aba</a>,
62
			<a href="<?=Recherche::getUrlRecherche('gen:scirpus tax:1', 'bdnff')?>">gen:scirpus tax:1</a>.
69 delphine 63
		</p>
64
 
65
		<table>
66
			<thead>
67
				<tr>
68
					<th>Mot-clé</th>
73 delphine 69
					<th>Signification</th>
69 delphine 70
					<th>Valeurs possibles</th>
71
					<th>Explication</th>
72
					<th>Exemples</th>
73
				</tr>
74
			</thead>
75
			<tbody>
76
				<tr>
77
					<td>sg:</td>
78
					<td>Nom supra-générique</td>
79
					<td></td>
73 delphine 80
					<td></td>
74 delphine 81
					<td><a href="<?=Recherche::getUrlRecherche('sg:Adiantaceae', 'bdnff')?>">sg:Adiantaceae</a></td>
69 delphine 82
				</tr>
83
				<tr>
84
					<td>gen:</td>
85
					<td>Genre</td>
86
					<td></td>
73 delphine 87
					<td></td>
74 delphine 88
					<td><a href="<?=Recherche::getUrlRecherche('gen:abies', 'bdnff')?>">gen:abies</a></td>
69 delphine 89
				</tr>
90
				<tr>
91
					<td>sp:</td>
92
					<td>Espèce</td>
93
					<td></td>
73 delphine 94
					<td></td>
74 delphine 95
					<td><a href="<?=Recherche::getUrlRecherche('sp:maritimum', 'bdnff')?>">
73 delphine 96
						sp:maritimum</a></td>
69 delphine 97
				</tr>
98
				<tr>
99
					<td>ssp:</td>
100
					<td>Epithète infra-spécifique</td>
101
					<td></td>
73 delphine 102
					<td></td>
74 delphine 103
					<td><a href="<?=Recherche::getUrlRecherche('ssp:cuprina', 'bdnff')?>">ssp:cuprina</a></td>
69 delphine 104
				</tr>
105
				<tr>
106
					<td>au:</td>
107
					<td>Auteur</td>
108
					<td></td>
73 delphine 109
					<td></td>
74 delphine 110
					<td><a href="<?=Recherche::getUrlRecherche('au:Tausch', 'bdnff')?>">au:Tausch</a></td>
69 delphine 111
				</tr>
112
				<tr>
113
					<td>an:</td>
114
					<td>Année</td>
115
					<td></td>
73 delphine 116
					<td></td>
74 delphine 117
					<td><a href="<?=Recherche::getUrlRecherche('an:2010', 'bdnff')?>">an:2010</a></td>
69 delphine 118
				</tr>
119
				<tr>
120
					<td>nn:</td>
110 jpm 121
					<td>Identifiant numérique unique du nom scientifique.</td>
122
					<td>Un nombre entier superieur à 0 ou plusieurs nombres entiers séparés par des virgules.</td>
123
					<td>Permet de retrouver un ou plusieurs noms via la valeur de leur champ "num_nom".</td>
124
					<td><a href="<?=Recherche::getUrlRecherche('nn:7128,7547', 'bdnff')?>">nn:7128,7547</a></td>
69 delphine 125
				</tr>
126
				<tr>
127
					<td>bib:</td>
128
					<td>Référence bibliographique de la publication d'origine du nom (sans l'année)</td>
129
					<td></td>
73 delphine 130
					<td></td>
74 delphine 131
					<td><a href="<?=Recherche::getUrlRecherche('bib:Linnaea, 21 :', 'bdnff')?>">bib:Linnaea, 21 :</a></td>
69 delphine 132
				</tr>
133
				<tr>
134
					<td>nr:</td>
135
					<td>Nom scientifique retenu pour désigner le taxon</td>
73 delphine 136
					<td>0 ou 1.</td>
137
					<td>Si 1, affiche uniquement les taxons dont le nom scientifique a été retenu.</td>
74 delphine 138
					<td><a href="<?=Recherche::getUrlRecherche('nr:1', 'bdnff')?>">nr:1</a></td>
69 delphine 139
				</tr>
140
				<tr>
141
					<td>tax:</td>
73 delphine 142
					<td>Noms retenus et synonymes quand au moins un synonyme répond à la recherche</td>
143
					<td>0 ou 1.</td>
144
					<td>Nécessite un autre terme de recherche (simple ou avancé). Retourne le nombre de noms retenus
145
					correspondants et affiche un nom suivi de ces synonymes.</td>
74 delphine 146
					<td><a href="<?=Recherche::getUrlRecherche('scirpus tax:1', 'bdnff')?>">scirpus tax:1</a></td>
69 delphine 147
				</tr>
148
			</tbody>
149
		</table>
150
		<p>Pour les opérateurs dont la valeur est un <em>texte libre</em> ou une <em>liste</em>,
151
			il est possible d'utiliser des jokers.
152
			Ces "jokers" permettent de modifier la recherche.</p>
74 delphine 153
		<p>Exemples&nbsp;: <a href="<?=Recherche::getUrlRecherche('gen:a_n', 'bdnff')?>">"gen:a_n"</a>
69 delphine 154
		</p>
155
		<table>
156
			<thead>
157
				<tr>
158
					<th>Joker</th>
159
					<th>Applicable sur</th>
160
					<th>Explication</th>
161
					<th>Exemples</th>
162
				</tr>
163
			</thead>
164
			<tbody>
165
				<tr>
166
					<td>%</td>
167
					<td>Texte libre</td>
168
					<td>Remplace n'importe quel nombre de caractères, y compris aucun.</td>
74 delphine 169
					<td><a href="<?=Recherche::getUrlRecherche('"herbier %Abbé% Carondelet"', 'bdnff')?>">
69 delphine 170
						"herbier %Abbé% Carondelet"</a></td>
171
				</tr>
172
				<tr>
173
					<td>_</td>
174
					<td>Texte libre</td>
175
					<td>Remplace exactement un caractère</td>
74 delphine 176
					<td><a href="<?=Recherche::getUrlRecherche('p:"Jo_l"', 'bdnff')?>">p:"Jo_l"</a></td>
69 delphine 177
				</tr>
178
			</tbody>
179
		</table>
180
	</div>
181
</div>
182
<!-- REF - FIN MOTEUR RECHERCHE -->