X-Git-Url: http://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2Findex.php;h=d68f27028a53e7ea650c2c85504dd05d3bf5c90f;hb=0b13b1b5ef313a06e58d2d44ffd09670a4dd8eb5;hp=8f087d832e9d16c6d2a9df35577faffa2586c4be;hpb=c7ea164705798e0487508067997fb06420c9ef0c;p=brisk.git diff --git a/web/index.php b/web/index.php index 8f087d8..d68f270 100644 --- a/web/index.php +++ b/web/index.php @@ -59,8 +59,8 @@ $mlang_room = array( 'userpassuse' => array('it' => 'Il tuo nickname è g 'reas_cloud' => array('it' => 'La connessione dai computer di una cloud non è ammessa.', 'en' => 'Connection from cloud computers is not allowed.'), - 'btn_enter' => array('it' => 'entra', - 'en' => 'enter'), + 'btn_enter' => array('it' => 'Entra.', + 'en' => 'Enter.'), 'passwarn' => array('it' => 'Se non hai ancora una password, lascia il campo in bianco ed entra.', 'en' => 'If you don\'t have a password, leave blank the field and enter.'), 'browwarn' => array('it' => 'Se qualcosa non funziona prova a ricaricare la pagina con Ctrl + F5

Se non riesci più ad entrare nel nuovo Brisk e prima ci riuscivi potrebbe essere un problema di antivirus,
guarda la pagina sugli antivirus per maggiori informazioni su come configurarlo.

Se ancora non funziona nulla contatta l\'amministratore del sito.', @@ -71,12 +71,14 @@ $mlang_room = array( 'userpassuse' => array('it' => 'Il tuo nickname è g 'en' => 'back to tables'), 'btn_exit' => array('it' => 'Esco.', 'en' => 'Exit.'), - 'btn_prefs_save' => array('it' => 'Salva.', + 'btn_save' => array('it' => 'Salva.', 'en' => 'Save.'), - 'btn_prefs_reset' => array('it' => 'Annulla.', + 'btn_reset' => array('it' => 'Annulla.', 'en' => 'Reset.'), - 'btn_prefs_close' => array('it' => 'Chiudi.', + 'btn_close' => array('it' => 'Chiudi.', 'en' => 'Close.'), + 'btn_send' => array('it' => 'Invia.', + 'en' => 'Send.'), 'tit_tabl' => array('it' => 'Tavolo ', 'en' => 'Table '), 'tit_stat' => array('it' => 'imposta lo stato del tuo utente', @@ -200,6 +202,10 @@ $mlang_room = array( 'userpassuse' => array('it' => 'Il tuo nickname è g 'en' => 'contacts'), 'itm_mail' => array('it' => 'contatti', 'en' => 'contacts'), + 'tit_cook' => array('it' => 'policy sui cookie', + 'en' => 'cookie policy'), + 'itm_cook' => array('it' => 'cookie', + 'en' => 'cookie'), 'tit_cla' => array('it' => 'classifiche degli utenti', 'en' => 'user\'s placings'), 'itm_cla' => array('it' => 'classifiche', @@ -222,10 +228,18 @@ $mlang_room = array( 'userpassuse' => array('it' => 'Il tuo nickname è g 'en' => 'Send a message to the administrator:'), 'mesgtoadm_sub'=> array('it' => 'soggetto:', 'en' => 'subject:'), - 'btn_send' => array('it' => 'Invia.', - 'en' => 'Send.'), - 'btn_close' => array('it' => 'Chiudi.', - 'en' => 'Close.') + 'info_login' => array('it' => 'Utente:', + 'en' => 'User:'), + 'info_state' => array('it' => 'Stato:', + 'en' => 'State:'), + 'info_guar' => array('it' => 'Garante:', + 'en' => 'Guarantee:'), + 'info_match' => array('it' => 'Partite:', + 'en' => 'Matches:'), + 'info_game' => array('it' => 'Mani:', + 'en' => 'Hands:'), + 'info_frie' => array('it' => 'Conoscenza:', + 'en' => 'Friendship:'), ); require_once("briskin5/Obj/briskin5.phh"); @@ -310,7 +324,13 @@ function sidebanners_render($sidebanner, $sidebanner_idx) $tit = eschtml($sb['title']); printf(' alt="%s" title="%s">', $tit, $tit); printf("\n"); - printf('', $i, $sb['icon_big']); + + $ib_class = ""; + if (array_key_exists('icon_big_class', $sb)) { + $ib_class = $sb['icon_big_class']; + } + + printf('', $ib_class, $i, $sb['icon_big']); printf("\n"); } } @@ -322,12 +342,15 @@ function index_main(&$brisk, $transp_type, $header, &$header_out, $remote_addr_f GLOBAL $G_sidebanner, $G_sidebanner_idx; GLOBAL $G_with_poll; GLOBAL $G_lang, $G_lng, $mlang_room; - GLOBAL $BRISK_SHOWHTML, $BRISK_DEBUG, $_SERVER; + GLOBAL $BRISK_SHOWHTML, $BRISK_DEBUG, $_SERVER, $_COOKIE; if (($sess = gpcs_var('sess', $get, $post, $cookie)) === FALSE) $sess = ""; if (($name = gpcs_var('name', $get, $post, $cookie)) === FALSE) unset($name); + else + log_step("LOGIN: $name"); + if (($pass_private = gpcs_var('pass_private', $get, $post, $cookie)) === FALSE) unset ($pass_private); if (($table_idx = gpcs_var('table_idx', $get, $post, $cookie)) === FALSE) @@ -335,6 +358,11 @@ function index_main(&$brisk, $transp_type, $header, &$header_out, $remote_addr_f if (($table_token = gpcs_var('table_idx', $get, $post, $cookie)) === FALSE) unset ($table_token); + // default values + $_cookie_law_3party = 'true'; + if (isset($cookie['_cookie_law_3party'])) + $_cookie_law_3party = $cookie['_cookie_law_3party']; + $remote_addr = addrtoipv4($remote_addr_full); $is_login = FALSE; @@ -478,7 +506,7 @@ function index_main(&$brisk, $transp_type, $header, &$header_out, $remote_addr_f $tables .= '
'; $tables .= ''; for ($ii = 0 ; $ii < TABLES_N ; $ii++) { - if ($user->is_auth()) + if ($user->is_auth() && !$user->is_appr()) $i = $ii; else $i = TABLES_N - $ii - 1; @@ -587,7 +615,7 @@ function index_main(&$brisk, $transp_type, $header, &$header_out, $remote_addr_f /* MLANG: "briscola chiamata in salsa ajax", */ mt_srand(make_seed()); - if (!$G_is_local) { + if (!$G_is_local && $_cookie_law_3party == 'true') { $rn = rand(0, 1); if ($rn == 0) { @@ -700,6 +728,10 @@ google_color_url = "000000"; onmouseover="menu_hide(0,1);" title="'.$mlang_room['tit_mail'][$G_lang].'">'.$mlang_room['itm_mail'][$G_lang].'
+'.$mlang_room['itm_cook'][$G_lang].'

@@ -981,6 +1013,8 @@ supported by:
+ + @@ -1032,7 +1066,7 @@ window.onload = function() { @@ -1076,21 +1110,35 @@ window.onload = function() {
- + - +
user:
nickname:
pwd:
password:

-

+ +

+ +

+ +


-



-



-



-



-



@@ -1102,6 +1150,12 @@ window.onload = function() {
+ + + @@ -1126,6 +1181,8 @@ window.onload = function() { + + @@ -1300,8 +1357,8 @@ type="submit" class="button" onclick="this.form.elements['realsub'].value = 'chi -       - +       + @@ -1316,6 +1373,60 @@ type="submit" class="button" onclick="this.form.elements['realsub'].value = 'chi
+ + +
- - - + + +
+