From 42c38afc646130a6b03ccda87d06b761fda63bf2 Mon Sep 17 00:00:00 2001 From: "Matteo Nastasi (mop)" Date: Sun, 30 Sep 2007 09:19:20 +0000 Subject: [PATCH 01/16] attivato cambio di pointer nell'asta e aggiunta la funzione per risettare il valore dei punti --- web/commons.js | 27 +++++++++++++++++---------- 1 file changed, 17 insertions(+), 10 deletions(-) diff --git a/web/commons.js b/web/commons.js index eb903ec..2eb5e01 100644 --- a/web/commons.js +++ b/web/commons.js @@ -462,10 +462,12 @@ function dispose_asta(idx, pnt, nopoint) btn = $("asta"+i); if (i < idx) { btn.src = "img/astapasso"+(pnt >= 0 ? "" : "_ro")+".png"; + btn.style.cursor = (pnt >= 0 ? "pointer" : "default"); pass = -1; } else { btn.src = "img/asta"+i+(pnt >= 0 ? "" : "_ro")+".png"; + btn.style.cursor = (pnt >= 0 ? "pointer" : "default"); pass = i; } if (i < 19) @@ -473,15 +475,15 @@ function dispose_asta(idx, pnt, nopoint) else btn.style.left = asta_xarr[(i+1) % 3]; - btn.style.top = parseInt(i / 3) * 50+1; + btn.style.top = parseInt(i / 3) * 50 + (i == 9 ? 0 : 1); if (pnt >= 0) { eval("btn.onclick = function () { act_asta("+pass+",61); }"); - btn.style.hover_cursor = "pointer"; + btn.style.cursor = "pointer"; } else { btn.onclick = null; - btn.style.hover_cursor = ""; + btn.style.cursor = "default"; } } @@ -499,14 +501,14 @@ function dispose_asta(idx, pnt, nopoint) btn.style.left = asta_xarr[i % 3]; btn.style.top = 25 + parseInt(i / 3) * 50 - 1; btn.src = "img/astaptsub"+(pnt >= 0 ? "" : "_ro")+".png"; - // btn.style.visibility = "visible"; + btn.style.cursor = (pnt >= 0 ? "pointer" : "default"); if (pnt >= 0) { btn.onclick = function () { act_asta(9,$("astapt").value); }; - // btn.stylehover.cursor = "pointer"; + btn.style.cursor = "pointer"; } else { btn.onclick = null; - // btn.stylehover.cursor = ""; + btn.style.cursor = "default"; } i+=1; @@ -515,13 +517,12 @@ function dispose_asta(idx, pnt, nopoint) btn.style.left = asta_xarr[i % 3]; btn.style.top = parseInt(i / 3) * 50; btn.src = "img/astapashalf"+(pnt >= 0 ? "" : "_ro")+".png"; + btn.style.cursor = (pnt >= 0 ? "pointer" : "default"); if (pnt >= 0) { btn.onclick = function () { act_asta(-1,0); }; - // btn.stylehover.cursor = "pointer"; } else { btn.onclick = null; - // btn.stylehover.cursor = ""; } btn = $("astalascio"); @@ -536,13 +537,12 @@ function dispose_asta(idx, pnt, nopoint) btn.style.left = asta_xarr[i % 3]; btn.style.top = parseInt(i / 3) * 50;; btn.src = "img/astapasso"+(pnt >= 0 ? "" : "_ro")+".png"; + btn.style.cursor = (pnt >= 0 ? "pointer" : "default"); if (pnt >= 0) { btn.onclick = function () { act_asta(-1,0); }; - // btn.stylehover.cursor = "pointer"; } else { btn.onclick = null; - // btn.stylehover.cursor = ""; } btn = $("astalascio"); @@ -553,6 +553,13 @@ function dispose_asta(idx, pnt, nopoint) $("asta").style.visibility = "visible"; } +function asta_pnt_set(pnt) +{ + btn = $("astapt"); + var rpnt = (pnt < 0 ? -pnt : pnt); + btn.value = (rpnt < 61 ? 61 : (rpnt > 120 ? 120 : rpnt)); +} + function hide_asta() { $("asta").style.visibility = "hidden"; -- 2.17.1 From 1815d0e050a41368bbcb05855c37cf96294516b4 Mon Sep 17 00:00:00 2001 From: "Matteo Nastasi (mop)" Date: Sun, 30 Sep 2007 09:21:09 +0000 Subject: [PATCH 02/16] minors --- web/room.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/web/room.css b/web/room.css index 679c7f1..bcbd20a 100644 --- a/web/room.css +++ b/web/room.css @@ -70,8 +70,9 @@ div.bottom { /* border: 1px solid green; */ position: relative; top: -13px; - text-align: left; - padding:2px; + align: center: + text-align: center; + padding:2px; clear:left; } -- 2.17.1 From 711702bc416e65f9f756459046805e0eef68a5aa Mon Sep 17 00:00:00 2001 From: "Matteo Nastasi (mop)" Date: Sun, 30 Sep 2007 09:22:54 +0000 Subject: [PATCH 03/16] corretto bug di IE per il rett. verde pulsante --- web/table.css | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/web/table.css b/web/table.css index 3e1e10d..46f2cf1 100644 --- a/web/table.css +++ b/web/table.css @@ -180,8 +180,10 @@ div.table_commands { .remark1 { position: absolute; - width: 199px; - height: 200px; + width: 199px !important; + width: 207px; + height: 200px !important; + height: 208px; left: 296; top: 246; border-style: solid; @@ -192,8 +194,10 @@ div.table_commands { .remark2 { position: absolute; - width: 199px; - height: 200px; + width: 199px !important; + width: 203px; + height: 200px !important; + height: 204px; left: 298; top: 248; border-style: solid; -- 2.17.1 From cfbfd22c476ff59654d5ad9cd74ccb317198cc20 Mon Sep 17 00:00:00 2001 From: "Matteo Nastasi (mop)" Date: Sun, 30 Sep 2007 09:26:29 +0000 Subject: [PATCH 04/16] corretto posizionamento dell'inputtext della chat --- web/table.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/web/table.php b/web/table.php index ffeddde..372982a 100644 --- a/web/table.php +++ b/web/table.php @@ -211,7 +211,12 @@ Hai vinto l'asta.
Scegli il seme:
-
+
+
+
+ +
+

-- 2.17.1 From d38541617f68ec80373ebe9d9bcf2f99a5f1616b Mon Sep 17 00:00:00 2001 From: "Matteo Nastasi (mop)" Date: Sun, 30 Sep 2007 09:43:08 +0000 Subject: [PATCH 05/16] aligned --- CHANGELOG | 38 ++++++++++++++++++++++++++++---------- 1 file changed, 28 insertions(+), 10 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index b26a5c8..387b833 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,24 +1,42 @@ +0.8.1 - 30/9/2007 + Auction point bug fixed. + IE rendering bug fixed. + Cursor setting enhanced. + +0.8.0 - 26/9/2007 + A new layout is used to allow more players. + +0.7.3 - 2/9/2007 + Serialization of shared mem access bug fixed. + +0.7.2 - 29/8/2007 + Pragma directive added. + FSM bug fixed. + +0.7.1 - 1/5/2007 + Minor changes. + 0.7.0 - 21/4/2007 - Step proxy added + Step proxy added. Fix change page recovery bug. Changed bg. 0.6.2 - 8/4/2007 - Donate - Minor bug fixed - Graphical keepalive changed + Donate. + Minor bug fixed. + Graphical keepalive changed. 0.6.1 - 11/03/2007 - Minor bug fixed - Enabled legal logging + Minor bug fixed. + Enabled legal logging. 0.6.0 - 25/02/2007 - Internet Explorer 6 and 7 added + Internet Explorer 6 and 7 added. 0.5.0 - 10/02/2007 - Cooperative exit added - Sound added - No point in hand managed + Cooperative exit added. + Sound added. + No point in hand managed. 0.4.6 - 30/01/2007 Number of chat lines doubled. -- 2.17.1 From b312f8b5021d944bc01dc60926295f861dc58609 Mon Sep 17 00:00:00 2001 From: "Matteo Nastasi (mop)" Date: Sun, 30 Sep 2007 15:11:11 +0000 Subject: [PATCH 06/16] virtualsky con l'animazione --- web/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/index.php b/web/index.php index 02783d7..209780a 100644 --- a/web/index.php +++ b/web/index.php @@ -135,7 +135,7 @@ function main() $altout_propag = array( array ( 'url' => 'http://www.alternativeoutput.it', 'content' => '' ), array ( 'url' => 'http://virtualsky.alternativeoutput.it', - 'content' => '' ) + 'content' => '' ) ); // seed with microseconds since last "whole" second -- 2.17.1 From dc4116d45b9ae8d52e92a0bd173ca87059533e2b Mon Sep 17 00:00:00 2001 From: "Matteo Nastasi (mop)" Date: Tue, 9 Oct 2007 18:35:21 +0000 Subject: [PATCH 07/16] update --- TODO.txt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/TODO.txt b/TODO.txt index 7046ecf..a7f5c9f 100644 --- a/TODO.txt +++ b/TODO.txt @@ -5,19 +5,17 @@ TODO ==== - - URGENT - watchdog - URGENT - split server-side data (stat + others) - NORM - pubblic announcements - NORM - asta: highlight buttons (css hover) + URGENT - tables spawn + NORM - pubblic announcements NORM - restart preload img NORM - chat vecchie in reload NORM - tools dir with a main and some pages where check briscola tools. NORM - bottoni => immagini + NORM - watchdog - MIN - cambiare titolo al tavolo + MIN - cambiare titolo al tavolo MIDDLE TODO =========== @@ -25,7 +23,6 @@ - user assistant (with button to enable disable) - documentation - TO REVIEW - special chars in js FAR TODO ======== @@ -41,6 +38,9 @@ DONE ==== + ABORTED - asta: highlight buttons (css hover) - change pointer when over + DONE - step proxy + DONE - special chars in js DONE - ban temporaneo dai tavoli DONE - flash player to play sound DONEBUG - (aum. il timeout) - carte giocate che restano girate -- 2.17.1 From 8866b31f28b69c5dd2857960ddeea08bcb9725d5 Mon Sep 17 00:00:00 2001 From: "Matteo Nastasi (mop)" Date: Tue, 9 Oct 2007 18:38:15 +0000 Subject: [PATCH 08/16] start menu --- web/index.php | 18 ++++++++++++++++-- web/room.css | 34 +++++++++++++++++++++++++++++++++- 2 files changed, 49 insertions(+), 3 deletions(-) diff --git a/web/index.php b/web/index.php index 209780a..ed166e0 100644 --- a/web/index.php +++ b/web/index.php @@ -215,7 +215,21 @@ google_color_url = "000000"; $brisk_vertical_menu = '
- + + +


sponsored by:

'.$altout_carousel.'


@@ -350,7 +364,7 @@ else { \n"); - printf($brisk_vertical_menu, '




', + printf($brisk_vertical_menu, '



', $brisk_donate); printf(""); ?> diff --git a/web/room.css b/web/room.css index bcbd20a..48a1169 100644 --- a/web/room.css +++ b/web/room.css @@ -242,9 +242,41 @@ div.esco { } .proxhr { - /*background-color: green; */ + /* background-color: green; */ align: center; text-align: center; width: 100%; top: 28px; } + +.webstart { + position: absolute; + background-color: white; + left: 100px; + visibility: hidden; + border: 1px solid gray; + align: left; + text-align: left; + /* width: 100px; + height: 300px; */ + padding: 8px; + +} + +.webstart a:link { + color: black; + line-height: 20px; + text-decoration: none; +} + +.webstart a:visited { + color: black; + line-height: 20px; + text-decoration: none; +} + +.webstart a:hover { + color: RGB(255,174,0); + line-height: 20px; + text-decoration: none; +} -- 2.17.1 From 3fa3d333a1418c14b687e87116420ca81d538ad0 Mon Sep 17 00:00:00 2001 From: "Matteo Nastasi (mop)" Date: Tue, 9 Oct 2007 18:40:59 +0000 Subject: [PATCH 09/16] updated version --- web/brisk.phh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/brisk.phh b/web/brisk.phh index 9d033ff..d14e9d3 100644 --- a/web/brisk.phh +++ b/web/brisk.phh @@ -44,7 +44,7 @@ define(BRISK_DEBUG, FALSE); $G_false = FALSE; $G_all_points = array( 11,10,4,3,2, 0,0,0,0,0 ); -$G_brisk_version = "0.8.0"; +$G_brisk_version = "0.8.2"; $root_wellarr = Array ( 'Benvenuto in brisk (Ver. '.$G_brisk_version.'), NOVITA\': nuovo layout che permette più tavoli, più tavoli.', 'Se vuoi iscriverti alla Mailing List, cliccala!' ); -- 2.17.1 From d38b423a7d06cfd9948443940cd16fe73b4f515e Mon Sep 17 00:00:00 2001 From: "Matteo Nastasi (mop)" Date: Tue, 9 Oct 2007 18:43:15 +0000 Subject: [PATCH 10/16] aggiunti i contatti allo start menu --- web/index.php | 1 + 1 file changed, 1 insertion(+) diff --git a/web/index.php b/web/index.php index ed166e0..4126233 100644 --- a/web/index.php +++ b/web/index.php @@ -228,6 +228,7 @@ $brisk_vertical_menu = ' propaganda
about
+contatti



-- 2.17.1 From c0e10f57f23510ffcfaf403adff20e18dc46e5b4 Mon Sep 17 00:00:00 2001 From: "Matteo Nastasi (mop)" Date: Wed, 10 Oct 2007 05:36:40 +0000 Subject: [PATCH 11/16] commentato log troppo oneroso --- web/brisk.phh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/brisk.phh b/web/brisk.phh index d14e9d3..1fe3f12 100644 --- a/web/brisk.phh +++ b/web/brisk.phh @@ -1155,7 +1155,7 @@ function save_data(&$bri) if (($shm = shm_attach($tok, SHM_DIMS)) == FALSE) break; - log_only($sess, "PUT_VAR DI ".strlen(serialize($bri))); + // log_only($sess, "PUT_VAR DI ".strlen(serialize($bri))); if (shm_put_var($shm, $tok, $bri) == FALSE) { log_only($sess, "PUT_VAR FALLITA ".strlen(serialize($bri))); log_only($sess, serialize($bri)); -- 2.17.1 From 94b61420bc4046aac7357b4c6c8c7b99718de951 Mon Sep 17 00:00:00 2001 From: "Matteo Nastasi (mop)" Date: Sun, 28 Oct 2007 16:29:07 +0000 Subject: [PATCH 12/16] correzioni --- CHANGELOG | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 387b833..2dcd3a1 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,7 +1,7 @@ 0.8.1 - 30/9/2007 - Auction point bug fixed. - IE rendering bug fixed. - Cursor setting enhanced. + Auction points bug was fixed. + IE rendering bug was fixed. + Cursor settings were enhanced. 0.8.0 - 26/9/2007 A new layout is used to allow more players. -- 2.17.1 From 444a704781e0f880e78b4afacb5fe500feb2fdd0 Mon Sep 17 00:00:00 2001 From: "Matteo Nastasi (mop)" Date: Sun, 28 Oct 2007 16:32:22 +0000 Subject: [PATCH 13/16] aggiornato copyright --- web/room.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/room.css b/web/room.css index 48a1169..4fb4d2e 100644 --- a/web/room.css +++ b/web/room.css @@ -1,7 +1,7 @@ /* * brisk - room.css * - * Copyright (C) 2006 matteo.nastasi@milug.org + * Copyright (C) 2006-2007 matteo.nastasi@milug.org * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by -- 2.17.1 From 5bf5e2af26e645234720bd7a87c561ce7359cafa Mon Sep 17 00:00:00 2001 From: "Matteo Nastasi (mop)" Date: Sun, 30 Dec 2007 10:47:11 +0000 Subject: [PATCH 14/16] temp advise added --- web/index.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/web/index.php b/web/index.php index 4126233..e561d68 100644 --- a/web/index.php +++ b/web/index.php @@ -180,10 +180,15 @@ google_color_url = "000000";
-
+ + +
briscola chiamata in salsa ajax
-
+
+ +
-- 2.17.1 From e4647cbc1cfbfc043baefdfd63c0dc12effd247e Mon Sep 17 00:00:00 2001 From: "Matteo Nastasi (mop)" Date: Sun, 30 Dec 2007 10:47:40 +0000 Subject: [PATCH 15/16] new images added --- web/preload_img.js | 118 +++++++++++++++++++++++---------------------- 1 file changed, 60 insertions(+), 58 deletions(-) diff --git a/web/preload_img.js b/web/preload_img.js index 6b27c84..2cb8325 100644 --- a/web/preload_img.js +++ b/web/preload_img.js @@ -1,8 +1,8 @@ var g_preload_img_arr = new Array( "img/brisk_table_sand0.jpg", "img/brisk_table_sand4.jpg", "img/brisk_table_sand1.jpg", "img/brisk_table_sand3.jpg", "img/brisk_table_sand2.jpg", "img/brisk_caller_sand4.png", "img/brisk_caller_sand0.png", "img/brisk_caller_sand2.png", - "img/brisk_caller_sand1.png", "img/brisk_caller_sand3.png", "img/asta.png", "img/spring.jpg", - "img/brisk_banner.png", "img/33_ea.png", "img/33_we.png", "img/31_we.png", + "img/brisk_caller_sand1.png", "img/brisk_caller_sand3.png", "img/asta.png", "img/brisk_banner.png", + "img/bg_capodanno.jpg", "img/33_ea.png", "img/33_we.png", "img/31_we.png", "img/35_ea.png", "img/35_we.png", "img/31_ea.png", "img/23_ea.png", "img/33.png", "img/23_we.png", "img/31.png", "img/35.png", "img/13_ea.png", "img/23.png", "img/13_we.png", "img/cover_ea.png", @@ -12,60 +12,62 @@ var g_preload_img_arr = new Array( "img/10.png", "img/30_ea.png", "img/36_we.png", "img/36_ea.png", "img/34_ea.png", "img/30.png", "img/37_we.png", "img/38_we.png", "img/36.png", "img/37_ea.png", "img/38_ea.png", "img/38.png", - "img/27.png", "img/34.png", "img/37.png", "img/39_we.png", - "img/03_we.png", "img/39_ea.png", "img/03_ea.png", "img/39.png", - "img/03.png", "img/17_ea.png", "img/17_we.png", "img/20.png", - "img/20_ea.png", "img/12_we.png", "img/20_we.png", "img/11_ea.png", - "img/12_ea.png", "img/22_we.png", "img/02_ea.png", "img/02_we.png", - "img/22_ea.png", "img/11_we.png", "img/25_we.png", "img/17.png", - "img/25_ea.png", "img/00_ea.png", "img/28_ea.png", "img/00_we.png", - "img/24_we.png", "img/28_we.png", "img/24_ea.png", "img/11.png", - "img/12.png", "img/22.png", "img/02.png", "img/28.png", - "img/00.png", "img/25.png", "img/14_ea.png", "img/14_we.png", - "img/24.png", "img/09_we.png", "img/09_ea.png", "img/09.png", - "img/14.png", "img/04_ea.png", "img/04_we.png", "img/04.png", - "img/19.png", "img/19_ea.png", "img/19_we.png", "img/21_ea.png", - "img/21.png", "img/21_we.png", "img/06.png", "img/06_ea.png", - "img/06_we.png", "img/05.png", "img/16_we.png", "img/16_ea.png", - "img/05_we.png", "img/26_ea.png", "img/26_we.png", "img/05_ea.png", - "img/01_we.png", "img/01_ea.png", "img/16.png", "img/01.png", - "img/07.png", "img/07_ea.png", "img/08_ea.png", "img/08_we.png", - "img/07_we.png", "img/08.png", "img/26.png", "img/18_ea.png", - "img/18_we.png", "img/18.png", "img/15_ea.png", "img/15_we.png", - "img/29_we.png", "img/29_ea.png", "img/29.png", "img/15.png", - "img/brisk_logo64.png", "img/download_now_flash.gif", "img/asta3.png", "img/asta8.png", - "img/asta7.png", "img/asta4.png", "img/astapasso.png", "img/asta3_ro.png", - "img/asta8_ro.png", "img/asta7_ro.png", "img/asta5.png", "img/asta4_ro.png", - "img/asta9.png", "img/astalascio.png", "img/asta0.png", "img/asta5_ro.png", - "img/astapasso_ro.png", "img/astapashalf.png", "img/asta1.png", "img/asta6.png", - "img/asta0_ro.png", "img/asta9_ro.png", "img/asta2.png", "img/brisk_donate.gif", - "img/astalascio_ro.png", "img/virtualsky80x15.png", "img/asta1_ro.png", "img/astapashalf_ro.png", - "img/asta6_ro.png", "img/astaptsub.png", "img/asta2_ro.png", "img/astaptsub_ro.png", - "img/brisk_homebutt.png", "img/dynamica.png", "img/brichi.png", "img/exitlock2n.png", - "img/exitlock1n.png", "img/exitlock1y.png", "img/exitlock3n.png", "img/altout80x15.png", - "img/exitlock0n.png", "img/exitlock3y.png", "img/exitlock2y.png", "img/brisk_logo80x15.png", - "img/exitlock0y.png", "img/noimg.png", "img/brisk_ico.png"); + "img/27.png", "img/34.png", "img/37.png", "img/virtualsky80x15a.gif", + "img/39_we.png", "img/03_we.png", "img/39_ea.png", "img/03_ea.png", + "img/39.png", "img/03.png", "img/17_ea.png", "img/17_we.png", + "img/20.png", "img/20_ea.png", "img/12_we.png", "img/20_we.png", + "img/11_ea.png", "img/12_ea.png", "img/22_we.png", "img/02_ea.png", + "img/02_we.png", "img/22_ea.png", "img/11_we.png", "img/25_we.png", + "img/17.png", "img/25_ea.png", "img/00_ea.png", "img/28_ea.png", + "img/00_we.png", "img/24_we.png", "img/28_we.png", "img/24_ea.png", + "img/11.png", "img/12.png", "img/22.png", "img/02.png", + "img/28.png", "img/00.png", "img/25.png", "img/14_ea.png", + "img/14_we.png", "img/24.png", "img/09_we.png", "img/09_ea.png", + "img/09.png", "img/14.png", "img/04_ea.png", "img/04_we.png", + "img/04.png", "img/19.png", "img/19_ea.png", "img/19_we.png", + "img/21_ea.png", "img/21.png", "img/21_we.png", "img/06.png", + "img/06_ea.png", "img/06_we.png", "img/05.png", "img/16_we.png", + "img/16_ea.png", "img/05_we.png", "img/26_ea.png", "img/26_we.png", + "img/05_ea.png", "img/01_we.png", "img/01_ea.png", "img/16.png", + "img/01.png", "img/07.png", "img/07_ea.png", "img/08_ea.png", + "img/08_we.png", "img/07_we.png", "img/08.png", "img/26.png", + "img/18_ea.png", "img/18_we.png", "img/18.png", "img/15_ea.png", + "img/15_we.png", "img/29_we.png", "img/29_ea.png", "img/29.png", + "img/15.png", "img/brisk_logo64.png", "img/download_now_flash.gif", "img/asta3.png", + "img/asta8.png", "img/asta7.png", "img/asta4.png", "img/astapasso.png", + "img/asta3_ro.png", "img/asta8_ro.png", "img/asta7_ro.png", "img/asta5.png", + "img/asta4_ro.png", "img/asta9.png", "img/astalascio.png", "img/asta0.png", + "img/asta5_ro.png", "img/astapasso_ro.png", "img/astapashalf.png", "img/asta1.png", + "img/asta6.png", "img/asta0_ro.png", "img/asta9_ro.png", "img/asta2.png", + "img/brisk_donate.gif", "img/astalascio_ro.png", "img/virtualsky80x15.png", "img/asta1_ro.png", + "img/astapashalf_ro.png", "img/asta6_ro.png", "img/astaptsub.png", "img/asta2_ro.png", + "img/astaptsub_ro.png", "img/brisk_homebutt.png", "img/dynamica.png", "img/brichi.png", + "img/exitlock2n.png", "img/exitlock1n.png", "img/exitlock1y.png", "img/exitlock3n.png", + "img/altout80x15.png", "img/exitlock0n.png", "img/exitlock3y.png", "img/exitlock2y.png", + "img/brisk_logo80x15.png", "img/exitlock0y.png", "img/brisk_start.png", "img/noimg.png", + "img/brisk_ico.png"); var g_preload_imgsz_arr = new Array( - "5.2", "10.5", "15.7", "21.0", "26.2", "27.9", "29.7", "31.4", - "33.1", "34.8", "36.2", "37.2", "38.2", "38.8", "39.3", "39.9", - "40.4", "40.9", "41.5", "42.0", "42.5", "43.1", "43.6", "44.1", - "44.7", "45.2", "45.7", "46.2", "46.7", "47.3", "47.8", "48.3", - "48.8", "49.3", "49.8", "50.3", "50.8", "51.3", "51.8", "52.3", - "52.8", "53.3", "53.8", "54.3", "54.8", "55.3", "55.7", "56.2", - "56.7", "57.2", "57.7", "58.2", "58.7", "59.2", "59.7", "60.1", - "60.6", "61.1", "61.6", "62.0", "62.5", "63.0", "63.4", "63.9", - "64.4", "64.8", "65.3", "65.8", "66.2", "66.7", "67.1", "67.6", - "68.0", "68.5", "69.0", "69.4", "69.9", "70.3", "70.8", "71.2", - "71.7", "72.1", "72.6", "73.0", "73.5", "73.9", "74.4", "74.8", - "75.3", "75.7", "76.2", "76.6", "77.0", "77.5", "77.9", "78.3", - "78.7", "79.2", "79.6", "80.0", "80.4", "80.8", "81.2", "81.6", - "82.1", "82.5", "82.9", "83.3", "83.7", "84.1", "84.5", "84.9", - "85.3", "85.7", "86.1", "86.5", "86.8", "87.2", "87.6", "88.0", - "88.4", "88.8", "89.2", "89.6", "89.9", "90.3", "90.7", "91.1", - "91.5", "91.9", "92.2", "92.6", "92.9", "93.3", "93.7", "94.0", - "94.3", "94.5", "94.7", "94.9", "95.1", "95.3", "95.4", "95.6", - "95.8", "96.0", "96.1", "96.3", "96.4", "96.6", "96.7", "96.9", - "97.0", "97.1", "97.3", "97.4", "97.5", "97.6", "97.8", "97.9", - "98.0", "98.1", "98.3", "98.4", "98.5", "98.6", "98.7", "98.8", - "98.9", "99.0", "99.1", "99.2", "99.2", "99.3", "99.4", "99.5", - "99.5", "99.6", "99.7", "99.7", "99.8", "99.9", "99.9", "100.0"); + "5.2", "10.5", "15.7", "21.0", "26.2", "27.9", "29.6", "31.3", + "33.0", "34.7", "36.1", "37.1", "37.8", "38.3", "38.8", "39.4", + "39.9", "40.5", "41.0", "41.5", "42.1", "42.6", "43.1", "43.7", + "44.2", "44.7", "45.2", "45.7", "46.3", "46.8", "47.3", "47.8", + "48.3", "48.8", "49.3", "49.8", "50.3", "50.8", "51.3", "51.8", + "52.3", "52.8", "53.3", "53.8", "54.3", "54.8", "55.3", "55.7", + "56.2", "56.7", "57.2", "57.7", "58.2", "58.7", "59.2", "59.6", + "60.1", "60.6", "61.1", "61.6", "62.0", "62.5", "63.0", "63.4", + "63.9", "64.3", "64.8", "65.3", "65.7", "66.2", "66.6", "67.1", + "67.6", "68.0", "68.5", "68.9", "69.4", "69.8", "70.3", "70.7", + "71.2", "71.7", "72.1", "72.6", "73.0", "73.5", "73.9", "74.3", + "74.8", "75.2", "75.7", "76.1", "76.6", "77.0", "77.4", "77.8", + "78.3", "78.7", "79.1", "79.5", "80.0", "80.4", "80.8", "81.2", + "81.6", "82.0", "82.4", "82.8", "83.2", "83.6", "84.0", "84.4", + "84.8", "85.2", "85.6", "86.0", "86.4", "86.8", "87.2", "87.6", + "88.0", "88.3", "88.7", "89.1", "89.5", "89.9", "90.3", "90.7", + "91.0", "91.4", "91.8", "92.2", "92.5", "92.9", "93.3", "93.6", + "94.0", "94.2", "94.5", "94.6", "94.8", "95.0", "95.2", "95.4", + "95.6", "95.7", "95.9", "96.1", "96.2", "96.4", "96.5", "96.7", + "96.8", "96.9", "97.1", "97.2", "97.3", "97.5", "97.6", "97.7", + "97.8", "98.0", "98.1", "98.2", "98.3", "98.4", "98.5", "98.6", + "98.8", "98.9", "98.9", "99.0", "99.1", "99.2", "99.3", "99.3", + "99.4", "99.5", "99.5", "99.6", "99.7", "99.7", "99.8", "99.9", + "99.9", "100.0"); -- 2.17.1 From b42d0c6da1f17e70928c15c574f57a20a58777d3 Mon Sep 17 00:00:00 2001 From: "Matteo Nastasi (mop)" Date: Sun, 30 Dec 2007 10:48:24 +0000 Subject: [PATCH 16/16] winter bg --- web/brisk.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/brisk.css b/web/brisk.css index a3cc7cb..54c15cd 100644 --- a/web/brisk.css +++ b/web/brisk.css @@ -21,7 +21,7 @@ */ body { - background-image: url('img/spring.jpg'); + background-image: url('img/bg_capodanno.jpg'); background-repeat: no-repeat; background-position: top center; margin:0px; -- 2.17.1