Subversion Repositories Applications.referentiel

Rev

Rev 105 | Rev 121 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

<!-- REF - DEBUT MOTEUR RECHERCHE -->
<script type="text/javascript">                                         
        // Function pour cacher / afficher les options de recherche
        $(document).ready(function() {
                $("#ref-rech-opt").hide();
                $("#ref-rech-opt-toggle").html("Afficher la recherche avancée");
                $("#ref-rech-opt-toggle").toggle(
                        function() {
                                $("#ref-rech-opt-toggle").html("Cacher la recherche avancée");
                                $("#ref-rech-opt").slideDown("fast");
                        },
                        function() {
                                $("#ref-rech-opt-toggle").html("Afficher la recherche avancée");
                                $("#ref-rech-opt").slideUp("fast");
                        }
                );
                // Sélection du texte de la zone de recherche sur le focus
                $("#recherche").focus(function(){
                        this.select();
                });
        });
</script>
<h1>Consultation du référentiel <?=$url_referentiel?></h1>
<form id="ref-form" name="ref-form" action="<?=$url_form;?>" method="get">
        <p>
                <input name="ref" type="hidden" value="<?=$url_referentiel;?>" />
                <input name="module" type="hidden" value="<?=$url_module;?>" />
                <input name="action" type="hidden" value="<?=$url_action;?>" />
                <label id="ref-rech" for="recherche">Rechercher</label>
                <input id="recherche" name="recherche" type="text" value="<?=$recherche;?>" size="75" maxlength="250"/>
                <input id="ref-rech-ok" type="submit" value="OK" />
                
                <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>
        </p>
</form>

<div id="ref-rech-opt">
        <h2 id="ref-rech-opt-titre">Options de recherche</h2>
        <div id="ref-rech-opt-txt">
                <p>Le moteur de recherche permet de faire une recherche libre sur un mot, une expression ou un acronyme.<br />
                        <em>Exemples&nbsp;:</em>
                        <a href="<?=Recherche::getUrlRecherche('acer', 'bdnff')?>">Acer</a>, 
                        <a href="<?=Recherche::getUrlRecherche('2010', 'bdnff')?>">2010</a>.</p>
                <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 chaîne recherchée et entre chaque mot 
                        de celle-ci.
                </p>
                <p>
                        Le moteur de recherche permet aussi d'utiliser des opérateurs dans le texte recherché pour préciser 
                        la requête. Vous les trouverez dans le tableau ci-dessous. Si vous souhaitez utiliser deux opérateurs 
                        à la suite, ou un opérateur et un mot clé de votre choix pour faire une recherche croisée, séparez-les 
                        uniquement par un espace.<br />
                        <em>Exemples&nbsp;:</em>
                        <a href="<?=Recherche::getUrlRecherche('an:2010', 'bdnff')?>">an:2010</a>,
                        <a href="<?=Recherche::getUrlRecherche('l. gen:aba', 'bdnff')?>">l. gen:aba</a>,
                        <a href="<?=Recherche::getUrlRecherche('au:l. gen:aba', 'bdnff')?>">au:l. gen:aba</a>,
                        <a href="<?=Recherche::getUrlRecherche('gen:scirpus tax:1', 'bdnff')?>">gen:scirpus tax:1</a>.
                </p>
                
                <table> 
                        <thead>
                                <tr>
                                        <th>Mot-clé</th>
                                        <th>Signification</th>
                                        <th>Valeurs possibles</th>
                                        <th>Explication</th>
                                        <th>Exemples</th>
                                </tr>
                        </thead>
                        <tbody>
                                <tr>
                                        <td>sg:</td>
                                        <td>Nom supra-générique</td>
                                        <td></td>
                                        <td></td>
                                        <td><a href="<?=Recherche::getUrlRecherche('sg:Adiantaceae', 'bdnff')?>">sg:Adiantaceae</a></td>
                                </tr>
                                <tr>
                                        <td>gen:</td>
                                        <td>Genre</td>
                                        <td></td>
                                        <td></td>
                                        <td><a href="<?=Recherche::getUrlRecherche('gen:abies', 'bdnff')?>">gen:abies</a></td>
                                </tr>
                                <tr>
                                        <td>sp:</td>
                                        <td>Espèce</td>
                                        <td></td>
                                        <td></td>
                                        <td><a href="<?=Recherche::getUrlRecherche('sp:maritimum', 'bdnff')?>">
                                                sp:maritimum</a></td>
                                </tr>
                                <tr>
                                        <td>ssp:</td>
                                        <td>Epithète infra-spécifique</td>
                                        <td></td>
                                        <td></td>
                                        <td><a href="<?=Recherche::getUrlRecherche('ssp:cuprina', 'bdnff')?>">ssp:cuprina</a></td>
                                </tr>
                                <tr>
                                        <td>au:</td>
                                        <td>Auteur</td>
                                        <td></td>
                                        <td></td>
                                        <td><a href="<?=Recherche::getUrlRecherche('au:Tausch', 'bdnff')?>">au:Tausch</a></td>
                                </tr>
                                <tr>
                                        <td>an:</td>
                                        <td>Année</td>
                                        <td></td>
                                        <td></td>
                                        <td><a href="<?=Recherche::getUrlRecherche('an:2010', 'bdnff')?>">an:2010</a></td>
                                </tr>
                                <tr>
                                        <td>nn:</td>
                                        <td>Identifiant numérique unique du nom scientifique.</td>
                                        <td>Un nombre entier superieur à 0 ou plusieurs nombres entiers séparés par des virgules.</td>
                                        <td>Permet de retrouver un ou plusieurs noms via la valeur de leur champ "num_nom".</td>
                                        <td><a href="<?=Recherche::getUrlRecherche('nn:7128,7547', 'bdnff')?>">nn:7128,7547</a></td>
                                </tr>
                                <tr>
                                        <td>bib:</td>
                                        <td>Référence bibliographique de la publication d'origine du nom (sans l'année)</td>
                                        <td></td>
                                        <td></td>
                                        <td><a href="<?=Recherche::getUrlRecherche('bib:Linnaea, 21 :', 'bdnff')?>">bib:Linnaea, 21 :</a></td>
                                </tr>
                                <tr>
                                        <td>nr:</td>
                                        <td>Nom scientifique retenu pour désigner le taxon</td>
                                        <td>0 ou 1.</td>
                                        <td>Si 1, affiche uniquement les taxons dont le nom scientifique a été retenu.</td>
                                        <td><a href="<?=Recherche::getUrlRecherche('nr:1', 'bdnff')?>">nr:1</a></td>
                                </tr>
                                <tr>
                                        <td>tax:</td>
                                        <td>Noms retenus et synonymes quand au moins un synonyme répond à la recherche</td>
                                        <td>0 ou 1.</td>
                                        <td>Nécessite un autre terme de recherche (simple ou avancé). Retourne le nombre de noms retenus 
                                        correspondants et affiche un nom suivi de ces synonymes.</td>
                                        <td><a href="<?=Recherche::getUrlRecherche('scirpus tax:1', 'bdnff')?>">scirpus tax:1</a></td>
                                </tr>
                        </tbody>
                </table>
                <p>Pour les opérateurs dont la valeur est un <em>texte libre</em> ou une <em>liste</em>, 
                        il est possible d'utiliser des jokers.
                        Ces "jokers" permettent de modifier la recherche.</p>
                <p>Exemples&nbsp;: <a href="<?=Recherche::getUrlRecherche('gen:a_n', 'bdnff')?>">"gen:a_n"</a>
                </p>
                <table>
                        <thead>
                                <tr>
                                        <th>Joker</th>
                                        <th>Applicable sur</th>
                                        <th>Explication</th>
                                        <th>Exemples</th>
                                </tr>
                        </thead>
                        <tbody>
                                <tr>
                                        <td>%</td>
                                        <td>Texte libre</td>
                                        <td>Remplace n'importe quel nombre de caractères, y compris aucun.</td>
                                        <td><a href="<?=Recherche::getUrlRecherche('"herbier %Abbé% Carondelet"', 'bdnff')?>">
                                                "herbier %Abbé% Carondelet"</a></td>
                                </tr>
                                <tr>
                                        <td>_</td>
                                        <td>Texte libre</td>
                                        <td>Remplace exactement un caractère</td>
                                        <td><a href="<?=Recherche::getUrlRecherche('p:"Jo_l"', 'bdnff')?>">p:"Jo_l"</a></td>
                                </tr>
                        </tbody>
                </table>
        </div>
</div>
<!-- REF - FIN MOTEUR RECHERCHE -->