Subversion Repositories eFlore/Applications.coel-consultation

Compare Revisions

Ignore whitespace Rev 53 → Rev 54

/trunk/squelettes/moteur.tpl.html
31,13 → 31,13
<p>Par défaut, la recherche est insensible à la casse (majuscule / minuscule) et s'effectue
en intercalant automatiquement le joker % avant et après la chaine recherchée et entre chaque mot de celle-ci.</p>
<p>Le moteur de recherche permet d'utiliser des opérateurs dans le texte recherché pour préciser la requête.</p>
<p>Exemples&nbsp;: <a href="<?=sprintf($url_exemple, urlencode('mpu'))?>">mpu</a>,
<a href="<?=sprintf($url_exemple, urlencode('"herbier de Coste"'))?>">"herbier de Coste"</a>,
<a href="<?=sprintf($url_exemple, urlencode('bot:he'))?>">bot:he</a>,
<a href="<?=sprintf($url_exemple, urlencode('Coste bot:he'))?>">Coste bot:he</a>,
<a href="<?=sprintf($url_exemple, urlencode('herbier zg:France'))?>">herbier zg:France</a>,
<a href="<?=sprintf($url_exemple, urlencode('p:coste pr:co'))?>">p:coste pr:co</a>,
<a href="<?=sprintf($url_exemple, urlencode('Ecole sci:1'))?>">Ecole sci:1</a>.</p>
<p>Exemples&nbsp;: <a href="<?=Recherche::getUrlExemple('mpu')?>">mpu</a>,
<a href="<?=Recherche::getUrlExemple('"herbier de Coste"')?>">"herbier de Coste"</a>,
<a href="<?=Recherche::getUrlExemple('bot:he')?>">bot:he</a>,
<a href="<?=Recherche::getUrlExemple('Coste bot:he')?>">Coste bot:he</a>,
<a href="<?=Recherche::getUrlExemple('herbier zg:France')?>">herbier zg:France</a>,
<a href="<?=Recherche::getUrlExemple('p:coste pr:co')?>">p:coste pr:co</a>,
<a href="<?=Recherche::getUrlExemple('Ecole sci:1')?>">Ecole sci:1</a>.</p>
<table>
<thead>
<tr>
55,7 → 55,7
<td>Recherches scientifiques</td>
<td>Limite les résultats aux institutions autorisant la consultation des collections
<em>sans (=0)</em> ou <em>avec (=1)</em> des objectifs de recherches scientifiques.</td>
<td><a href="<?=sprintf($url_exemple, urlencode('sci:0'))?>">sci:0</a></td>
<td><a href="<?=Recherche::getUrlExemple('sci:0')?>">sci:0</a></td>
</tr>
<tr>
<td>bot:</td>
63,7 → 63,7
AL (Collection en alcool), XY (Xylothèque), PM (Collection de préparations microscopiques).</td>
<td>Type de collection botanique</td>
<td>Limite les résultats aux collections botaniques du type indiqué.</td>
<td><a href="<?=sprintf($url_exemple, urlencode('bot:he'))?>">bot:he</a></td>
<td><a href="<?=Recherche::getUrlExemple('bot:he')?>">bot:he</a></td>
</tr>
<tr>
<td>zg:</td>
70,7 → 70,7
<td>Texte libre</td>
<td>Origine géographique du contenu de la collection</td>
<td>Limite les résultats aux collections dont le contenu correspond à la zone géographique indiquée.</td>
<td><a href="<?=sprintf($url_exemple, urlencode('zg:lozère'))?>">zg:lozère</a></td>
<td><a href="<?=Recherche::getUrlExemple('zg:lozère')?>">zg:lozère</a></td>
</tr>
<tr>
<td>p:</td>
78,7 → 78,7
<td>Nom ou partie du nom d'une personne.</td>
<td>Limite les résultats aux institutions et collections liées a une personne dont le nom ou une
partie du nom correspond à la valeur indiquée.</td>
<td><a href="<?=sprintf($url_exemple, urlencode('p:coste'))?>">p:coste</a></td>
<td><a href="<?=Recherche::getUrlExemple('p:coste')?>">p:coste</a></td>
</tr>
<tr>
<td>pr:</td>
87,15 → 87,15
<td>Rôle d'une personne.</td>
<td>Limite les résultats aux institutions et collections liées a une personne dont le rôle
correspond à la valeur indiquée.</td>
<td><a href="<?=sprintf($url_exemple, urlencode('pr:AU'))?>">pr:AU</a></td>
<td><a href="<?=Recherche::getUrlExemple('pr:AU')?>">pr:AU</a></td>
</tr>
</tbody>
</table>
<p>Pour les opérateurs dont la valeur possible est un <em>texte libre</em>, il est possible d'utiliser des jokers.
Ces "jokers" permettent de modifier la recherche sur une chaine de caractères.</p>
<p>Exemples&nbsp;: <a href="<?=sprintf($url_exemple, urlencode('"herbier de Coste"'))?>">"herbier de Coste"</a>,
<a href="<?=sprintf($url_exemple, urlencode('"herbier % Montpellier"'))?>">"herbier % Montpellier"</a>,
<a href="<?=sprintf($url_exemple, urlencode('p:"Jo_l"'))?>">p:"Jo_l"</a>.
<p>Exemples&nbsp;: <a href="<?=Recherche::getUrlExemple('"herbier de Coste"')?>">"herbier de Coste"</a>,
<a href="<?=Recherche::getUrlExemple('"herbier % Montpellier"')?>">"herbier % Montpellier"</a>,
<a href="<?=Recherche::getUrlExemple('p:"Jo_l"')?>">p:"Jo_l"</a>.
</p>
<table>
<thead>
109,19 → 109,19
<tr>
<td>""</td>
<td>Permet de rechercher sur une expression exacte.</td>
<td><a href="<?=sprintf($url_exemple, urlencode('"Archives de l\'herbier Granger"'))?>">
<td><a href="<?=Recherche::getUrlExemple('"Archives de l\'herbier Granger"')?>">
"Archives de l'herbier Granger"</a></td>
</tr>
<tr>
<td>%</td>
<td>Remplace n'importe quel nombre de caractères, y compris aucun.</td>
<td><a href="<?=sprintf($url_exemple, urlencode('"herbier %Abbé% Carondelet"'))?>">
<td><a href="<?=Recherche::getUrlExemple('"herbier %Abbé% Carondelet"')?>">
"herbier %Abbé% Carondelet"</a></td>
</tr>
<tr>
<td>_</td>
<td>Remplace exactement un caractère</td>
<td><a href="<?=sprintf($url_exemple, urlencode('p:"Jo_l"'))?>">p:"Jo_l"</a></td>
<td><a href="<?=Recherche::getUrlExemple('p:"Jo_l"')?>">p:"Jo_l"</a></td>
</tr>
</tbody>
</table>