X-Git-Url: http://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2Froom.js;h=6d73e92d50f669eb9f3d6f15a45bf3e1c42b07b1;hb=89023025985f8c0b07bb4e4500c787bfe23d999e;hp=173b00453fd90be6436fea4bf135d42b2f665bbb;hpb=7f526939ded24298104cacd02b5f364bcc7bfa56;p=brisk.git diff --git a/web/room.js b/web/room.js index 173b004..6d73e92 100644 --- a/web/room.js +++ b/web/room.js @@ -421,11 +421,13 @@ function j_stand_cont(ddata) table_add($("standup"), td); } - standup_data_old = data; - return; } - // $("esco").innerHTML = ''; + + var usr = $("standup").getElementsByClassName("id_usr"); + for (i = 0 ; i < usr.length ; i++) { + addEvent(usr[i], "click", info_show_cb); + } } function esco_cb() { @@ -435,21 +437,21 @@ function esco_cb() { act_logout(0); }; - - function j_tab_cont(table_idx, data) { var i; var content = ''; for (i = 0 ; i < data.length ; i++) { - // content += user_decorator(data[i]); - // content += state_add(data[i][0]); content += j_stand_tdcont(data[i]); content += '
'; } $("table"+table_idx).innerHTML = content; + var usr = $("table"+table_idx).getElementsByClassName("id_usr"); + for (i = 0 ; i < usr.length ; i++) { + addEvent(usr[i], "click", info_show_cb); + } } function j_tab_act_cont(idx, act) @@ -458,6 +460,10 @@ function j_tab_act_cont(idx, act) // MLANG 1 $("table_act"+idx).innerHTML = ''; } + else if (act == 'sitappr') { + // MLANG 1 + $("table_act"+idx).innerHTML = ''; + } else if (act == 'sitreser') { // MLANG 1 $("table_act"+idx).innerHTML = ''; @@ -485,6 +491,8 @@ function j_tab_act_cont(idx, act) function j_check_login(login, ret) { + var cmp; + if (login.length > 12) { // FIXME LANG ret.ret += (g_lang == 'en' ? "Nickname too long." : "Nickname troppo lungo."); @@ -496,15 +504,24 @@ function j_check_login(login, ret) if ((login[i] >= '0' && login[i] <= '9') || (login[i] >= 'a' && login[i] <= 'z') || (login[i] >= 'A' && login[i] <= 'Z')) { - if (old_c != login[i]) { - old_c = login[i]; - old_ct = 0; + if (login[i] >= '0' && login[i] <= '9') + cmp = '0'; + else + cmp = login[i]; + + if (old_c != cmp) { + old_c = cmp; + old_ct = 1; } else { - if (old_ct > 3) { + if (old_ct > 2) { // FIXME LANG - ret.ret = (g_lang == 'en' ? "More than three contiguous '" + old_c + "' not allowed." : - "Il nickname contiene più di tre caratteri '" + old_c + "' consecutivi."); + if (old_c == '0') + ret.ret = (g_lang == 'en' ? "More than two contiguous digits not allowed." : + "Il nickname contiene più di 2 cifre consecutive."); + else + ret.ret = (g_lang == 'en' ? "More than two contiguous '" + old_c + "' not allowed." : + "Il nickname contiene più di 2 caratteri '" + old_c + "' consecutivi."); return (false); } } @@ -523,31 +540,36 @@ function j_check_login(login, ret) } -function j_new_apprendice(form) +function j_new_apprentice(form) { var ret = { ret: '' }; var token; do { + if (form.elements['realsub'].value == "close") { + $('apprentice_div').style.display = 'none'; + break; + } + if (j_check_login(form.elements['nameid'].value, ret) == false || j_check_email(form.elements['emailid'].value, ret) == false) { - no = new notify(gst, "
" + ret.ret + "
", 1, (g_lang == 'en' ? "Close." : "Chiudi."), 280, 100); + no = new notify(gst, "
" + ret.ret + "
", 1, (g_lang == 'en' ? "Close." : "Chiudi."), 280, 100); break; } // submit the request - token = server_request('mesg', 'apprendice', + token = server_request('index_wr.php', sess, 'mesg', 'apprentice', 'cli_name', encodeURIComponent(form.elements['nameid'].value), 'cli_email', encodeURIComponent(form.elements['emailid'].value), 'cli_lang', g_lang); if (token == "1") { // FIXME LANG - $('apprendice_div').style.display = "none"; - no = new notify(gst, "
Richiesta inviata con successo.
Riceverai a breve un' e-mail per verificare la correttezza dell'indirizzo.
", 1, (g_lang == 'en' ? "Close." : "Chiudi."), 280, 100); + $('apprentice_div').style.display = "none"; + no = new notify(gst, "
Richiesta inviata con successo.
Riceverai a breve un' e-mail per verificare la correttezza dell'indirizzo.
", 1, (g_lang == 'en' ? "Close." : "Chiudi."), 280, 100); } else { - no = new notify(gst, "
" + token + "
", 1, (g_lang == 'en' ? "Close." : "Chiudi."), 280, 100); + no = new notify(gst, "
" + token + "
", 1, (g_lang == 'en' ? "Close." : "Chiudi."), 280, 100); } } while (0); @@ -565,7 +587,7 @@ function j_login_manager(form) else { // console.log("richiesta token"); /* richiede token */ - token = server_request('mesg', 'getchallenge', 'cli_name', encodeURIComponent(form.elements['nameid'].value)); + token = server_request('index_wr.php', sess, 'mesg', 'getchallenge', 'cli_name', encodeURIComponent(form.elements['nameid'].value)); tokens = token.split('|'); // console.log('XX token: '+token); @@ -628,7 +650,7 @@ function mesgtoadm_formtext_hilite(form) function j_check_email(email, ret) { - if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,10})+$/.test(email)) + if (/^\w+([\.-]*\w+)*@\w+([\.-]*\w+)*(\.\w{2,10})+$/.test(email)) return (true); ret.ret += (g_lang == 'en' ? "Invalid email address. " : "Indirizzo e-mail non valido."); @@ -656,7 +678,7 @@ function j_authbox(form) } // submit the request - token = server_request('mesg', 'warranty', + token = server_request('index_wr.php', sess, 'mesg', 'warranty', 'cli_name', encodeURIComponent(form.elements['name'].value), 'cli_email', encodeURIComponent(form.elements['email'].value) ); if (token == "1") { @@ -693,7 +715,7 @@ function j_mesgtoadmbox(form) var no; do { - if (form.elements['realsub'].value == "chiudi") { + if (form.elements['realsub'].value == "cloid") { $('mesgtoadmbox').style.visibility = "hidden"; break; } @@ -707,7 +729,7 @@ function j_mesgtoadmbox(form) } // submit the request - token = server_request('mesg', 'mesgtoadm', + token = server_request('index_wr.php', sess, 'mesg', 'mesgtoadm', 'cli_subj', encodeURIComponent(form.elements['subj'].value), 'cli_mesg', encodeURIComponent(form.elements['mesg'].value) ); if (token == "1") { @@ -760,7 +782,7 @@ function j_pollbox(form) else choose = form.elements[i].value; - token = server_request('mesg', 'poll', + token = server_request('index_wr.php', sess, 'mesg', 'poll', 'cli_choose', encodeURIComponent(choose) ); if (token == "1") {