X-Git-Url: https://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2FObj%2Fbrisk.phh;h=bb579e595c64e1b3ce5a4dc5676a84e996dce171;hb=1fc2a56fc5b81d917ce929be0e2f0d53672a26fa;hp=335929b747bbdbc5faa9d0fc11db6ed054aaa0cc;hpb=bc153c9a2cba5babc8a1748ec85bd00ed2167328;p=brisk.git diff --git a/web/Obj/brisk.phh b/web/Obj/brisk.phh index 335929b..bb579e5 100644 --- a/web/Obj/brisk.phh +++ b/web/Obj/brisk.phh @@ -89,6 +89,8 @@ define('BRISK_SINGLE_DEBUG',0); define('BRISK_SINGLE_SESS', ""); define('DEBUGGING', "no-debugging"); +define('BSK_BUSTING', "dev"); + require_once("$DOCUMENT_ROOT/Etc/".BRISK_CONF); require_once("${G_base}Obj/ipclass.phh"); @@ -133,10 +135,8 @@ $mlang_brisk = array( 'btn_backstand'=> array( 'it' => 'torna in piedi', 'listmust' => array( 'it' => 'Per andare in isolamento non bisogna essere seduti a tavoli non riservati.', 'en' => 'To go to isolation you must don\'t stay on not reserved tables'), - 'tit_onauth'=>array( 'it' => '(solo aut.)', - 'en' => '(only aut.)'), - 'tit_onisol'=>array( 'it' => '(isolam.to)', - 'en' => '(isolation)'), + 'tit_onisol'=>array( 'it' => '(autenticati)', + 'en' => '(authenticated)'), 'db_failed' =>array('it' => '
Il collegamento al database è fallito.
Temporaneamente tutte le autenticazioni verranno sospese, accederai a Brisk come un utente normale.

Ci scusiamo per il disagio.', 'en' => 'Connection to the database failed
All authentications are suspended temporarly, you login as normal user.
We are about the limitation'), @@ -153,7 +153,7 @@ $mlang_brisk = array( 'btn_backstand'=> array( 'it' => 'torna in piedi', $G_lng = langtolng($G_lang); $G_all_points = array( 11,10,4,3,2, 0,0,0,0,0 ); -$G_brisk_version = "5.8.0"; +$G_brisk_version = "5.9.0"; /* MLANG: ALL THE INFO STRINGS IN brisk.phh */ $root_wellarr = array( 'it' => array ( 'Brisk (Ver. '.$G_brisk_version.'), NOVITA\': dati dai client via web-socket.', @@ -190,7 +190,7 @@ Dopo che è iniziata una partita per uscirne dovete chiedere agli altri gi
/info <login> - mostra lo stato corrente dell\'utente passato come argomento e in che relazione siete
/authreq - se si è autenticati permette di garantire per un utente fidato
/mesgtoadm - se si è autenticati permette di lasciare un messaggio all\'amministratore del sito -
/listen <all or auth> - se si è autenticati permette leggere solo i messaggi degli altri autenticati (auth) o di tutti (all) + ', @@ -223,7 +223,7 @@ Dopo che è iniziata una partita per uscirne dovete chiedere agli altri gi
/info <login> - mostra lo stato corrente dell\'utente passato come argomento e in che relazione siete
/authreq - se si è autenticati permette di garantire per un utente fidato
/mesgtoadm - se si è autenticati permette di lasciare un messaggio all\'amministratore del sito -
/listen <all or auth> - se si è autenticati permette leggere solo i messaggi degli altri autenticati (auth) o di tutti (all) + '); @@ -1428,9 +1428,6 @@ class Brisk if ($user->flags & USER_FLAG_ISOLAUTH) { $ret .= 'list_set(\'isolation\', false, \''.$mlang_brisk['tit_onisol'][$G_lang].'\' ); '; } - else if ($user->flags & USER_FLAG_LISTAUTH) { - $ret .= 'list_set(\'auth\', false, \''.$mlang_brisk['tit_onauth'][$G_lang].'\' ); '; - } else { $ret .= 'list_set(\'all\', false, \'\' ); '; } @@ -2028,7 +2025,7 @@ class Brisk $to_all = show_notify($msg, 0, $mlang_brisk['btn_close'][$G_lang], 400, 120); } while (0); } // /alarm chat command - else if (strncmp($msg, "/listen ", 8) == 0) { + else if (FALSE && strncmp($msg, "/listen ", 8) == 0) { $arg = substr($msg, 8); if (strcasecmp($arg, "isolation") == 0) { @@ -2044,12 +2041,6 @@ class Brisk $to_user = 'list_set(\'isolation\', true, \''.$mlang_brisk['tit_onisol'][$G_lang].'\'); '; } } - else if (strcasecmp($arg, "auth") == 0) { - $flags_old = $user->flags; - $user->flags &= ~USER_FLAG_MAP_AUTH; - $user->flags |= USER_FLAG_LISTAUTH; - $to_user = 'list_set(\'auth\', true, \''.$mlang_brisk['tit_onauth'][$G_lang].'\'); '; - } else { $flags_old = $user->flags; $user->flags &= ~USER_FLAG_MAP_AUTH; @@ -2698,10 +2689,6 @@ class Brisk } if ($this->user[$i]->subst == "standup") { - if ($user_cur_id == $i) { - $flags |= 1; - } - $content .= sprintf('%s[ %d, "%s"%s ]',($ct > 0 ? ', ' : ''), $flags, xcape($this->user[$i]->name), $supp_comp_s); $ct++; @@ -2734,9 +2721,6 @@ class Brisk $flags = $user_cur->flags; - if ($user_cur_id == $table->player[$i]) - $flags |= 1; - log_main($user_cur->name. sprintf(" IN TABLE [%d]", $table_idx)); if ($user_cur->is_supp_custom()) $supp_comp_s = sprintf(', "%s"', $user_cur->rec->supp_comp_get());