Merge remote branch 'origin/platal-1.0.0'
[platal.git] / templates / search / adv.form.tpl
1 {**************************************************************************}
2 {*                                                                        *}
3 {*  Copyright (C) 2003-2010 Polytechnique.org                             *}
4 {*  http://opensource.polytechnique.org/                                  *}
5 {*                                                                        *}
6 {*  This program is free software; you can redistribute it and/or modify  *}
7 {*  it under the terms of the GNU General Public License as published by  *}
8 {*  the Free Software Foundation; either version 2 of the License, or     *}
9 {*  (at your option) any later version.                                   *}
10 {*                                                                        *}
11 {*  This program is distributed in the hope that it will be useful,       *}
12 {*  but WITHOUT ANY WARRANTY; without even the implied warranty of        *}
13 {*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *}
14 {*  GNU General Public License for more details.                          *}
15 {*                                                                        *}
16 {*  You should have received a copy of the GNU General Public License     *}
17 {*  along with this program; if not, write to the Free Software           *}
18 {*  Foundation, Inc.,                                                     *}
19 {*  59 Temple Place, Suite 330, Boston, MA  02111-1307  USA               *}
20 {*                                                                        *}
21 {**************************************************************************}
22
23 <h1>Recherche dans l'annuaire</h1>
24
25 {javascript name=jquery.form}
26
27 <script type="text/javascript">// <!--
28   var baseurl = platal_baseurl + "search/";
29   {literal}
30   String.prototype.htmlEntities = function () {
31     return this.replace(/&/g,'&amp;').replace(new RegExp('<','g'),'&lt;').replace(/>/g,'&gt;');
32   };
33   // display an autocomplete row : blabla (nb of found matches)
34   function make_format_autocomplete(block) {
35     return function(row) {
36         regexp = new RegExp('(' + RegExp.escape(block.value) + ')', 'i');
37
38         name = row[0].htmlEntities().replace(regexp, '<strong>$1<\/strong>');
39
40         if (row[1] === "-1") {
41           return '&hellip;';
42         }
43
44         if (row[1] === "-2") {
45           return '<em>aucun camarade trouvé pour '+row[0].htmlEntities()+'<\/em>';
46         }
47
48         camarades = (row[1] > 1) ? "camarades" : "camarade";
49
50         return name + '<em>&nbsp;&nbsp;-&nbsp;&nbsp;' + row[1].htmlEntities() + '&nbsp;' + camarades + '<\/em>';
51       };
52   }
53
54   // when changing country, open up region choice
55   function changeCountry(a2) {
56     $(".autocompleteTarget[name='country']").attr('value',a2);
57
58     if (a2) {
59       $(".autocomplete[name='countryTxt']").addClass('hidden_valid');
60
61       $("[name='region']").parent().load(baseurl + 'list/region/', { country:a2 }, function() {
62           if ($("select[name='region']").children("option").size() > 1) {
63             $("select[name='region']").attr('value', '{/literal}{$smarty.request.region}{literal}');
64
65             $("tr#region_ln").show();
66           } else {
67             $("select[name='region']").attr('value', '');
68
69             $("tr#region_ln").hide();
70           }
71         });
72     } else {
73       $(".autocomplete[name='countryTxt']").removeClass('hidden_valid');
74
75       $("select[name='region']").attr('value', '');
76
77       $("tr#region_ln").hide();
78     }
79   }
80
81   // when changing school, open diploma choice
82   function changeSchool(schoolId) {
83     $(".autocompleteTarget[name='school']").attr('value',schoolId);
84
85     if (schoolId) {
86       $(".autocomplete[name='schoolTxt']").addClass('hidden_valid');
87     } else {
88       $(".autocomplete[name='schoolTxt']").removeClass('hidden_valid');
89     }
90
91     $("[name='diploma']").parent().load(baseurl + 'list/diploma/', { school:schoolId }, function() {
92         $("select[name='diploma']").attr('value', '{/literal}{$smarty.request.diploma}{literal}');
93       });
94   }
95
96   // when choosing a job term in tree, hide tree and set job term field
97   function searchForJobTerm(treeid, jtid, full_name) {
98     $(".term_tree").remove();
99     $("input[name='jobtermTxt']").val(full_name).addClass("hidden_valid").show();
100     $("input[name='jobterm']").val(jtid);
101   }
102
103   function cancel_autocomplete(field, realfield) {
104     $(".autocomplete[name='"+field+"']").removeClass('hidden_valid').val('').focus();
105     if (typeof(realfield) != "undefined") {
106       $(".autocompleteTarget[name='"+realfield+"']").val('');
107     }
108     return;
109   }
110
111   // when choosing autocomplete from list, must validate
112   function select_autocomplete(name) {
113       nameRealField = name.replace(/Txt$/, '');
114
115       // nothing to do if field is not a text field for a list
116       if (nameRealField == name)
117         return null;
118
119       // if changing country, might want to open region choice
120       if (nameRealField == 'country')
121         return function(i) {
122             if (i.extra[0] < 0) {
123               cancel_autocomplete('countryTxt', 'country');
124               i.extra[1] = '';
125             }
126             changeCountry(i.extra[1]);
127           }
128
129       if (nameRealField == 'school')
130         return function(i) {
131             if (i.extra[0] < 0) {
132               cancel_autocomplete('schoolTxt', 'school');
133               i.extra[1] = '';
134             }
135             changeSchool(i.extra[1]);
136           }
137
138       // change field in list and display text field as valid
139       return function(i) {
140         nameRealField = this.field.replace(/Txt$/, '');
141
142         if (i.extra[0] < 0) {
143           cancel_autocomplete(this.field, nameRealField);
144           return;
145         }
146
147         $(".autocompleteTarget[name='"+nameRealField+"']").attr('value',i.extra[1]);
148
149         $(".autocomplete[name='"+this.field+"']").addClass('hidden_valid');
150       }
151     }
152
153   $(document).ready(function() {
154       $(".autocompleteTarget").hide();
155       $(".autocomplete").show().each(function() {
156         targeted = $("../.autocompleteTarget",this)[0];
157
158         if (targeted && targeted.value) {
159           me = $(this);
160
161           $.get(baseurl + 'list/'+ targeted.name +'/'+targeted.value, {},function(textValue) {
162             me.attr('value', textValue);
163             me.addClass('hidden_valid');
164           });
165         }
166
167         $(this).autocomplete(baseurl + "autocomplete/"+this.name,{
168           selectOnly:1,
169           formatItem:make_format_autocomplete(this),
170           field:this.name,
171           onItemSelect:select_autocomplete(this.name),
172           matchSubset:0,
173           width:$(this).width()});
174         });
175
176       $(".autocomplete").change(function() { $(this).removeClass('hidden_valid'); });
177
178       $(".autocomplete[name='countryTxt']").change(function() { changeCountry(''); });
179
180       changeCountry({/literal}'{$smarty.request.country}'{literal});
181
182       $(".autocomplete[name='schoolTxt']").change(function() { changeSchool(''); });
183
184       changeSchool({/literal}'{$smarty.request.school}'{literal});
185
186       $(".autocompleteToSelect").each(function() {
187           var fieldName = $(this).attr('href');
188
189           $(this).attr('href', baseurl + 'list/'+fieldName).click(function() {
190               var oldval = $("input.autocompleteTarget[name='"+fieldName+"']")[0].value;
191
192               $(".autocompleteTarget[name='"+fieldName+"']").parent().load(baseurl + 'list/'+fieldName,{},
193                 function(selectBox) {
194                   $(".autocompleteTarget[name='"+fieldName+"']").remove();
195                   $(".autocomplete[name='"+fieldName+"Txt']").remove();
196                   $("select[name='"+fieldName+"']").attr('value', oldval);
197                 });
198
199               return false;
200             });
201         }).parent().find('.autocomplete').change(function() {
202           // If we change the value in the type="text" field, then the value in the 'integer id' field must not be used,
203           // to ensure that, we unset it
204           $(this).parent().find('.autocompleteTarget').val('');
205         });
206     });
207 /** Regexps to wipe out from search queries */
208 var default_form_values = [ /&woman=0(&|$)/, /&subscriber=0(&|$)/, /&alive=0(&|$)/, /&egal[12]=[^&]*&promo[12]=(&|$)/g, /&[^&=]+=(&|$)/g ];
209 /** Uses javascript to clean form from all empty fields */
210 function cleanForm(f) {
211   var query = $(f).formSerialize();
212   var old_query;
213   for each (var reg in default_form_values) if (typeof(reg) != "undefined") {
214     do {
215       old_query = query;
216       query = query.replace(reg, '$1');
217     } while (old_query != query);
218   }
219   query = query.replace(/^&*(.*)&*$/, '$1');
220   if (query == "rechercher=Chercher") {
221     alert("Aucun critère n'a été spécifié");
222     return false;
223   }
224   document.location = f.action + '?' + query;
225   return false;
226 }
227 -->
228 {/literal}</script>
229 <p class="center">[<a href="search">Revenir à la recherche simple</a>]</p>
230 <form id="recherche" action="search/adv" method="get" onsubmit="return cleanForm(this)">
231   <table class="bicol" cellpadding="3" summary="Recherche">
232     <tr>
233       <th colspan="2">
234         Recherche avancée
235       </th>
236     </tr>
237     <tr>
238       <td>Nom, prénom, surnom...</td>
239       <td>
240         <input type="hidden" name="rechercher" value="Chercher"/>
241         <input type="submit" style="display:none"/>
242         <input type="text" name="name" size="32" value="{$smarty.request.name}" />
243       </td>
244     </tr>
245     <tr>
246       <td>Promotion</td>
247       <td>
248         <select name="egal1">
249           <option value="=" {if $smarty.request.egal1 eq "="}selected="selected"{/if}>&nbsp;=&nbsp;</option>
250           <option value="&gt;=" {if $smarty.request.egal1 eq "&gt;="}selected="selected"{/if}>&nbsp;&gt;=&nbsp;</option>
251           <option value="&lt;=" {if $smarty.request.egal1 eq "&lt;="}selected="selected"{/if}>&nbsp;&lt;=&nbsp;</option>
252         </select>
253         <input type="text" name="promo1" size="4" maxlength="4" value="{$smarty.request.promo1}" />
254         &nbsp;et&nbsp;
255         <select name="egal2">
256           <option value="=" {if $smarty.request.egal2 eq "="}selected="selected"{/if}>&nbsp;=&nbsp;</option>
257           <option value="&gt;=" {if $smarty.request.egal2 eq "&gt;="}selected="selected"{/if}>&nbsp;&gt;=&nbsp;</option>
258           <option value="&lt;=" {if $smarty.request.egal2 neq "&gt;=" && $smarty.request.egal2 neq "="}selected="selected"{/if}>&nbsp;&lt;=&nbsp;</option>
259         </select>
260         <input type="text" name="promo2" size="4" maxlength="4" value="{$smarty.request.promo2}" />
261       </td>
262     </tr>
263     <tr>
264       <td>Sexe</td>
265       <td>
266         <table>
267           <tr>
268             <td style="width:100px">
269               <input type="radio" name="woman" value="0" {if !$smarty.request.woman}checked="checked"{/if} id="woman0"/><label for="woman0">indifférent</label>
270             </td>
271             <td style="width:100px">
272               <input type="radio" name="woman" value="1" {if $smarty.request.woman eq 1}checked="checked"{/if} id="woman1"/><label for="woman1">homme</label>
273             </td>
274             <td style="width:100px">
275               <input type="radio" name="woman" value="2" {if $smarty.request.woman eq 2}checked="checked"{/if} id="woman2"/><label for="woman2">femme</label>
276             </td>
277           </tr>
278         </table>
279       </td>
280     </tr>
281     <tr>
282       <td>Sur Polytechnique.org</td>
283       <td>
284         <table>
285           <tr>
286             <td style="width:100px">
287               <input type="radio" name="subscriber" value="0" {if !$smarty.request.subscriber}checked="checked"{/if} id="subscriber0"/><label for="subscriber0">indifférent</label>
288             </td>
289             <td style="width:100px">
290               <input type="radio" name="subscriber" value="1" {if $smarty.request.subscriber eq 1}checked="checked"{/if} id="subscriber1"/><label for="subscriber1">inscrit</label>
291             </td>
292             <td style="width:100px">
293               <input type="radio" name="subscriber" value="2" {if $smarty.request.subscriber eq 2}checked="checked"{/if} id="subscriber2"/><label for="subscriber2">non inscrit</label>
294             </td>
295           </tr>
296         </table>
297       </td>
298     </tr>
299     <tr>
300       <td>En vie</td>
301       <td>
302         <table>
303           <tr>
304             <td style="width:100px">
305               <input type="radio" name="alive" value="0" {if !$smarty.request.alive}checked="checked"{/if} id="alive0"/><label for="alive0">indifférent</label>
306             </td>
307             <td style="width:100px">
308               <input type="radio" name="alive" value="1" {if $smarty.request.alive eq 1}checked="checked"{/if} id="alive1"/><label for="alive1">vivant</label>
309             </td>
310             <td style="width:100px">
311               <input type="radio" name="alive" value="2" {if $smarty.request.alive eq 2}checked="checked"{/if} id="alive2"/><label for="alive2">décédé</label>
312             </td>
313           </tr>
314         </table>
315       </td>
316     </tr>
317     <tr>
318       <td colspan="2">
319         <input type="checkbox" name="with_soundex" value="1" {if $smarty.request.with_soundex}checked="checked"{/if} id="sdxn" />
320         <label for="sdxn">Étendre par proximité sonore (uniquement sur nom et prénom).</label>
321       </td>
322     </tr>
323     <tr>
324       <th colspan="2">Géographie</th>
325     </tr>
326     <tr>
327       <td>Ville ou code postal</td>
328       <td><input type="text" class="autocomplete" name="city" size="32" value="{$smarty.request.city}" /></td>
329     </tr>
330     <tr>
331       <td>Pays</td>
332       <td>
333         <input name="countryTxt" type="text" class="autocomplete" style="display:none" size="32"
334                value="{$smarty.request.countryTxt}"/>
335         <input name="country" class="autocompleteTarget" type="hidden" value="{$smarty.request.country}"/>
336         <a href="country" class="autocompleteToSelect">{icon name="table" title="Tous les pays"}</a>
337       </td>
338     </tr>
339     <tr id="region_ln">
340       <td>Région ou département</td>
341       <td>
342         <input name="region" type="hidden" size="32" value="{$smarty.request.region}"/>
343       </td>
344     </tr>
345     <tr>
346       <td colspan="2">
347         <label for="only_current">
348           <input name="only_current" id="only_current" type="checkbox"{if $smarty.request.only_current} checked="checked"{/if}/>
349           Chercher uniquement les adresses où les camarades sont actuellement.
350         </label>
351       </td>
352     </tr>
353     <tr>
354       <th colspan="2">Activité</th>
355     </tr>
356     <tr>
357       <td>Entreprise</td>
358       <td><input type="text" class="autocomplete" name="entreprise" size="32" value="{$smarty.request.entreprise}" /></td>
359     </tr>
360     <tr>
361       <td>Description</td>
362       <td><input type="text" class="autocomplete" name="description" size="32" value="{$smarty.request.description}" /></td>
363     </tr>
364     <tr>
365       <td>Mots-clefs</td>
366       <td>
367         <input name="jobtermTxt" type="text" class="autocomplete{if $smarty.request.jobterm} hidden_valid{/if}" style="display:none" size="32"
368                value="{$smarty.request.jobtermTxt}"/>
369         <input name="jobterm" class="autocompleteTarget" type="hidden" value="{$smarty.request.jobterm}"/>
370         <a href="jobterm" class="autocompleteToSelect">{icon name="table" title="Tous les mots-clefs"}</a>
371       </td>
372     </tr>
373     <tr>
374       <td>CV contient</td>
375       <td><input type="text" name="cv" size="32" value="{$smarty.request.cv}" /></td>
376     </tr>
377     <tr>
378       <td colspan="2">
379         <input type='checkbox' name='only_referent' {if $smarty.request.only_referent}checked='checked'{/if} id="only_referent"/>
380         <label for="only_referent">Chercher uniquement parmi les camarades se proposant comme référents.</label>
381       </td>
382     </tr>
383     <tr>
384       <th colspan="2">Divers</th>
385     </tr>
386     <tr>
387       <td>Nationalité</td>
388       <td>
389         <input name="nationaliteTxt" type="text" class="autocomplete" style="display:none" size="32"
390                value="{$smarty.request.nationaliteTxt}"/>
391         <input name="nationalite" class="autocompleteTarget" type="hidden" value="{$smarty.request.nationalite}"/>
392         <a href="nationalite" class="autocompleteToSelect">{icon name="table" title="Toutes les nationalités"}</a>
393       </td>
394     </tr>
395     <tr>
396       <td>Binet</td>
397       <td>
398         <input name="binetTxt" type="text" class="autocomplete" style="display:none" size="32"
399                value="{$smarty.request.binetTxt}"/>
400         <input name="binet" class="autocompleteTarget" type="hidden" value="{$smarty.request.binet}"/>
401         <a href="binet" class="autocompleteToSelect">{icon name="table" title="Tous les binets"}</a>
402       </td>
403     </tr>
404     <tr>
405       <td>Groupe X</td>
406       <td>
407         <input name="groupexTxt" type="text" class="autocomplete" style="display:none" size="32"
408                value="{$smarty.request.groupexTxt}"/>
409         <input name="groupex" class="autocompleteTarget" type="hidden" value="{$smarty.request.groupex}"/>
410         <a href="groupex" class="autocompleteToSelect">{icon name="table" title="Tous les groupes X"}</a>
411       </td>
412     </tr>
413     <tr>
414       <td>Section</td>
415       <td>
416         <input name="sectionTxt" type="text" class="autocomplete" style="display:none" size="32"
417                value="{$smarty.request.sectionTxt}"/>
418         <input name="section" class="autocompleteTarget" type="hidden" value="{$smarty.request.section}"/>
419         <a href="section" class="autocompleteToSelect">{icon name="table" title="Toutes les sections"}</a>
420       </td>
421     </tr>
422     <tr>
423       <td>Formation</td>
424       <td>
425         <input name="schoolTxt" type="text" class="autocomplete" style="display:none" size="32"
426                value="{$smarty.request.schoolTxt}"/>
427         <input name="school" class="autocompleteTarget" type="hidden" value="{$smarty.request.school}"/>
428         <a href="school" class="autocompleteToSelect">{icon name="table" title="Toutes les formations"}</a>
429       </td>
430     </tr>
431     <tr>
432       <td>Diplôme</td>
433       <td>
434         <input name="diploma" size="32" value="{$smarty.request.diploma}"/>
435       </td>
436     </tr>
437     <tr>
438       <td>Commentaire contient</td>
439       <td><input type="text" name="free" size="32" value="{$smarty.request.free}" /></td>
440     </tr>
441     <tr>
442       <td>Numéro de téléphone</td>
443       <td><input type="text" name="phone_number" size="32" value="{$smarty.request.phone_number}"/></td>
444     </tr>
445     <tr>
446       <td style="vertical-align: middle">
447         <span>Networking et sites webs</span>
448       </td>
449       <td>
450         <table>
451           <tr>
452             <td style="padding-left: 0px;">
453               <input type="text" name="networking_address" size="32" value="{$smarty.request.networking_address}" />
454             </td>
455             <td>
456               <input type="text" name="networking_typeTxt" class="autocomplete" size="10" value="{$smarty.request.networking_typeTxt}" />
457               <input name="networking_type" class="autocompleteTarget" type="hidden" value="{$smarty.request.networking_type}"/>
458               <a href="networking_type" class="autocompleteToSelect">{icon name="table" title="Tous les types d'adresse"}</a>
459             </td>
460           </tr>
461         </table>
462       </td>
463     </tr>
464         {if $smarty.session.auth ge AUTH_COOKIE}
465     <tr>
466       <td colspan="2">
467           <input type='checkbox' name='order' value='date_mod' {if $smarty.request.order eq "date_mod"}checked='checked'{/if} id="order"/>
468           <label for="order">Mettre les fiches modifiées récemment en premier.</label>
469       </td>
470     </tr>
471     <tr>
472       <td colspan="2">
473            <input type='checkbox' name='exact' id="exact" {if $smarty.request.exact}checked='checked'{/if} value='1'/>
474            <label for="exact">Faire une recherche exacte.</label>
475       </td>
476     </tr>
477         {/if}
478     <tr><td colspan="2"></td></tr>
479     <tr>
480       <td colspan="2" style="text-align: center">
481           <input type="submit" value="Chercher" />
482       </td>
483     </tr>
484   </table>
485 </form>
486 <p>
487   <small><strong>N.B.&nbsp;:</strong> le caractère joker * peut remplacer une ou plusieurs lettres dans les recherches.</small>
488 </p>
489
490 {* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}