Add mailing list headers to newsletters
[platal.git] / htdocs / javascript / xnet_members.js
1 /***************************************************************************
2 * Copyright (C) 2003-2013 Polytechnique.org *
3 * http://opensource.polytechnique.org/ *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the Free Software *
17 * Foundation, Inc., *
18 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
19 ***************************************************************************/
20
21 function xStateChange(box, baseurl)
22 {
23 $('.details').toggle();
24 $('#search_result').updateHtml(baseurl + 'member/new/ajax?login=' + $('#email').val());
25 }
26
27 var nom;
28 var prenom;
29 var promo;
30 function searchX(baseurl)
31 {
32 if ($('#nom').val() == nom && $('#prenom').val() == prenom && $('#promo').val() == promo) {
33 return;
34 }
35 nom = $('#nom').val();
36 prenom = $('#prenom').val();
37 promo = $('#promo').val();
38 $('#search_result').updateHtml(baseurl + 'member/new/ajax?prenom=' + prenom + '&nom=' + nom + '&promo=' + promo,
39 function (data) {
40 updateSuggestions(baseurl, $('select:[name=userid]').val());
41 });
42 }
43
44 function updateSuggestions(baseurl, uid)
45 {
46 $('#broken').hide();
47 $('#marketing').hide();
48 if (uid && uid != 0) {
49 $.xget(baseurl + 'member/reg/' + uid, function(data) {
50 if (data) {
51 $('#broken').show();
52 $('#broken').find('[name=broken]').attr('checked', 'checked');
53 } else {
54 $('#marketing').show();
55 $('#marketing').find('[name=marketing]').attr('checked', 'checked');
56 }
57 });
58 }
59 }
60
61 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8: