Line -... |
Line 1... |
- |
|
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();
|
- |
|
6 |
$("#col-rech-opt-toggle").html("Afficher l'aide");
|
- |
|
7 |
$("#col-rech-opt-toggle").toggle(
|
- |
|
8 |
function() {
|
- |
|
9 |
$("#col-rech-opt-toggle").html("Cacher l'aide");
|
- |
|
10 |
$("#col-rech-opt").toggle("slow");
|
- |
|
11 |
},
|
- |
|
12 |
function() {
|
- |
|
13 |
$("#col-rech-opt-toggle").html("Afficher l'aide");
|
- |
|
14 |
$("#col-rech-opt").toggle("slow");
|
- |
|
15 |
}
|
- |
|
16 |
);
|
- |
|
17 |
});
|
- |
|
18 |
</script>
|
1 |
<h2>Rechercher une collection</h2>
|
19 |
<h2>Rechercher une collection</h2>
|
2 |
<form id="col-form" name="col-form" action="<?=$url_form;?>" method="get">
|
20 |
<form id="col-form" name="col-form" action="<?=$url_form;?>" method="get">
|
3 |
<input name="module" type="hidden" value="<?=$url_module;?>" />
|
21 |
<input name="module" type="hidden" value="<?=$url_module;?>" />
|
4 |
<input name="action" type="hidden" value="<?=$url_action;?>" />
|
22 |
<input name="action" type="hidden" value="<?=$url_action;?>" />
|
5 |
<fieldset>
|
- |
|
6 |
<legend>Rechercher</legend>
|
23 |
<label id="col-rech"for="recherche">Rechercher</label>
|
7 |
<input id="recherche" name="recherche" type="text" value="<?=$recherche;?>" size="75" maxlength="250"/>
|
24 |
<input id="recherche" name="recherche" type="text" value="<?=$recherche;?>" size="75" maxlength="250"/>
|
8 |
<input id="col-rech-ok" type="submit" value="OK" />
|
25 |
<input id="col-rech-ok" type="submit" value="OK" />
|
9 |
<a id="col-rech-opt-toggle" href="#col-rech-opt-txt" title="Précisions sur les options de recherche">Allez à l'aide</a>
|
26 |
<a id="col-rech-opt-toggle" href="#col-rech-opt-txt" title="Précisions sur les options de recherche">Allez à l'aide</a>
|
10 |
</fieldset>
|
- |
|
11 |
</form>
|
27 |
</form>
|
12 |
<div id="col-rech-opt">
|
28 |
<div id="col-rech-opt">
|
13 |
<h2 id="col-rech-opt-titre">Options de recherche</h2>
|
29 |
<h2 id="col-rech-opt-titre">Options de recherche</h2>
|
14 |
<div id="col-rech-opt-txt">
|
30 |
<div id="col-rech-opt-txt">
|
15 |
<p>Par défaut, la recherche est insensible à la casse (majuscule / minuscule) et s'effectue
|
31 |
<p>Par défaut, la recherche est insensible à la casse (majuscule / minuscule) et s'effectue
|
Line 108... |
Line 124... |
108 |
<td><a href="<?=sprintf($url_exemple, urlencode('p:"Jo_l"'))?>">p:"Jo_l"</a></td>
|
124 |
<td><a href="<?=sprintf($url_exemple, urlencode('p:"Jo_l"'))?>">p:"Jo_l"</a></td>
|
109 |
</tr>
|
125 |
</tr>
|
110 |
</tbody>
|
126 |
</tbody>
|
111 |
</table>
|
127 |
</table>
|
112 |
</div>
|
128 |
</div>
|
113 |
</div>
|
- |
|
114 |
|
129 |
</div>
|
- |
|
130 |
<!-- COL - FIN MOTEUR RECHERCHE -->
|
- |
|
131 |
|
115 |
|
132 |
|