X-Git-Url: https://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2Froom.js;h=f3a5d885e2485e8160dd4a65720685498bd84403;hb=0d60b14fe4b03dfc9ea483e30c8b3dcd15a2b6ab;hp=2dd207c31724f4491460f3c8dd194a13b4d33438;hpb=5cf7309d9937fba5b9b97c3bf0d7c6ca2db1e4df;p=brisk.git diff --git a/web/room.js b/web/room.js index 2dd207c..f3a5d88 100644 --- a/web/room.js +++ b/web/room.js @@ -294,6 +294,9 @@ function j_stand_cont(ddata) if (standup_data_old == null || data.length < 4) { content = ''; for (i = 0 ; i < data.length ; i++) { + if (ddata[i][1] == window.myname) { + ddata[i][0] |= 1; + } if ((i % 4) == 0) content += ''; content += '
'; @@ -443,6 +446,9 @@ function j_tab_cont(table_idx, data) var content = ''; for (i = 0 ; i < data.length ; i++) { + if (data[i][1] == window.myname) { + data[i][0] |= 1; + } content += j_stand_tdcont(data[i]); content += '
'; @@ -460,6 +466,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 = ''; @@ -500,13 +510,13 @@ function j_check_login(login, ret) (login[i] >= 'A' && login[i] <= 'Z')) { if (old_c != login[i]) { old_c = login[i]; - old_ct = 0; + 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."); + 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); } } @@ -635,7 +645,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.");