<?php
// G_dbasetype value can be "pgsql" or "file"
$G_dbasetype="pgsql";
+
+$G_dbauth = "host=... port=... user=... password=... dbname=... options='--client_encoding=UTF8'";
+$G_dbpfx = "bsk_";
+
$G_lang = "it";
-$G_shutdown = FALSE;
-$G_room_roadmap = '<div style=\"text-align: left;\"><ul>
-<li>testing della versione beta di brisk2</li>
-<li>rilascio di brisk2</li>
-<li>inizio di brisk3 - supporto a database</li>
-<li>possibilità di autenticarsi</li>
-</ul></div>';
-$G_proxy_white_list = array();
-$G_alarm_passwd = "yourpasswd";
-$G_is_local = FALSE;
-$G_webserver_max = 120;
+$G_shutdown = FALSE;
-$G_black_list = array();
+// list of allowed proxies IP address (strings)
+$G_proxy_white_list = array();
-// is the top banner active ?
-$G_with_topbanner = FALSE;
-// is the first side banner active ?
-$G_with_sidebanner = TRUE;
-// is the second side banner active ?
-$G_with_sidebanner2 = TRUE;
-// is poll active ?
-$G_with_poll = FALSE;
+// admin passwd to send broadcast messages
+$G_alarm_passwd = "yourpasswd";
-// this is the prefix path to remove from backtrace
-$G_btrace_pref_sub = "/home/nastasi/web/";
+// is local or connected to internet
+$G_is_local = FALSE;
+// splash window related vars
$G_with_splash = TRUE;
$G_splash_interval = 25200; // 3600 * 7
$G_splash_idx = 3;
$G_splash_content = array( 'it' => 'content italico',
'en' => 'content anglofico' );
+// to use more then one splash content (to be reviewed)
+$G_splash_contents = array( "a", "b");
+$G_splash_cont_idx = 0; // (must be moved outside)
+
+// donometer related variables
$G_with_donors = TRUE;
$G_donors_cur = 12;
$G_donors_all = 50;
+$G_room_roadmap = '<div style=\"text-align: left;\"><ul>
+<li>roadmap item 1</li>
+<li>roadmap item 2</li>
+<li>...</li>
+</ul></div>';
+
+// is the top banner active ?
+$G_with_topbanner = FALSE;
+
$G_topbanner = '<div class="topbanner" id="topbanner" onMouseOver="show_bigpict(this, \'over\', -100, 80);" onMouseOut="show_bigpict(this, \'out\', 0, 0);">
<a target="_blank" href="http://www.briscolachiamatamilano.it/maggiotorneo.htm">
Torneo di briscola<br> chiamata - Milano<br> 17/05/2008</a>
</div>
<img class="nobohide" id="topbanner_big" src="img/bcm_tor080517.gif">';
+// is the first side banner active ?
+$G_with_sidebanner = TRUE;
+
$G_sidebanner = '<div class="topbanner" style="background: #ffd780; border: solid 1px #ffae00; width: 60px; margin: auto;" id="sidebanner2">
<a target="_blank" href="briskmeeting4.php">
<img style="position: static; border: solid 0px black;" src="img/brisk_meeting_trinacria60b.png" onMouseOver="show_bigpict($(\'sidebanner2\'), \'over\', 100, -80, \'\');" onMouseOut="show_bigpict($(\'sidebanner2\'), \'out\', 0, 0, \'\');"></div>
<img class="nobohide" id="sidebanner2_big" src="img/brisk_meeting4big150.png">';
+// is the second side banner active ?
+$G_with_sidebanner2 = TRUE;
+
$G_sidebanner2 = '<div class="topbanner" style="background: #ffd780; border: solid 1px #ffae00; width: 60px; margin: auto;" id="sidebanner2">
<a target="_blank" href="briskmeeting4.php">
<img style="position: static; border: solid 0px black;" src="img/brisk_meeting_trinacria60b.png" onMouseOver="show_bigpict($(\'sidebanner2\'), \'over\', 100, -80, \'\');" onMouseOut="show_bigpict($(\'sidebanner2\'), \'out\', 0, 0, \'\');"></div>
<img class="nobohide" id="sidebanner2_big" src="img/brisk_meeting4big150.png">';
+// is poll active ?
+$G_with_poll = FALSE;
$G_poll_name = "calcolo_punteggio";
$G_poll_title = "Vota come calcolare i punteggi!";
$G_poll_entries = array( array( 'id' => 'din', 'cont' => 'Dinner room'),
array( 'id' => 'bat', 'cont' => 'Bath room'),
array( 'id' => 'coo', 'cont' => 'Cooking room') );
+$G_black_list = array();
+
+
+// this is the prefix path to remove from backtrace
+$G_btrace_pref_sub = "/home/nastasi/web/";
+
+
+
?>
define('SITE_PREFIX', '/brisk/');
define('SITE_PREFIX_LEN', 7);
+
+function global_dump()
+{
+ GLOBAL $G_alarm_passwd, $G_black_list, $G_btrace_pref_sub, $G_dbauth;
+ GLOBAL $G_dbpfx, $G_donors_all, $G_donors_cur, $G_is_local, $G_lang;
+ GLOBAL $G_poll_entries, $G_poll_name, $G_poll_title, $G_proxy_white_list;
+ GLOBAL $G_room_roadmap, $G_shutdown, $G_sidebanner, $G_sidebanner2;
+ GLOBAL $G_splash_content, $G_splash_contents, $G_splash_cont_idx;
+ GLOBAL $G_splash_h, $G_splash_idx, $G_splash_interval, $G_splash_timeout;
+ GLOBAL $G_splash_w, $G_topbanner, $G_with_donors, $G_with_poll;
+ GLOBAL $G_with_sidebanner, $G_with_sidebanner2, $G_with_splash;
+ GLOBAL $G_with_topbanner;
+
+ fprintf(STDERR, "G_alarm_passwd = [%s]\n", print_r($G_alarm_passwd, TRUE));
+ fprintf(STDERR, "G_black_list = [%s]\n", print_r($G_black_list, TRUE));
+ fprintf(STDERR, "G_btrace_pref_sub = [%s]\n", print_r($G_btrace_pref_sub, TRUE));
+ fprintf(STDERR, "G_dbauth = [%s]\n", print_r($G_dbauth, TRUE));
+ fprintf(STDERR, "G_dbpfx = [%s]\n", print_r($G_dbpfx, TRUE));
+ fprintf(STDERR, "G_donors_all = [%s]\n", print_r($G_donors_all, TRUE));
+ fprintf(STDERR, "G_donors_cur = [%s]\n", print_r($G_donors_cur, TRUE));
+ fprintf(STDERR, "G_is_local = [%s]\n", print_r($G_is_local, TRUE));
+ fprintf(STDERR, "G_lang = [%s]\n", print_r($G_lang, TRUE));
+ fprintf(STDERR, "G_poll_entries = [%s]\n", print_r($G_poll_entries, TRUE));
+ fprintf(STDERR, "G_poll_name = [%s]\n", print_r($G_poll_name, TRUE));
+ fprintf(STDERR, "G_poll_title = [%s]\n", print_r($G_poll_title, TRUE));
+ fprintf(STDERR, "G_proxy_white_list = [%s]\n", print_r($G_proxy_white_list, TRUE));
+ fprintf(STDERR, "G_room_roadmap = [%s]\n", print_r($G_room_roadmap, TRUE));
+ fprintf(STDERR, "G_shutdown = [%s]\n", print_r($G_shutdown, TRUE));
+ fprintf(STDERR, "G_sidebanner = [%s]\n", print_r($G_sidebanner, TRUE));
+ fprintf(STDERR, "G_sidebanner2 = [%s]\n", print_r($G_sidebanner2, TRUE));
+ fprintf(STDERR, "G_splash_content = [%s]\n", print_r($G_splash_content, TRUE));
+ fprintf(STDERR, "G_splash_contents = [%s]\n", print_r($G_splash_contents, TRUE));
+ fprintf(STDERR, "G_splash_cont_idx = [%s]\n", print_r($G_splash_cont_idx, TRUE));
+ fprintf(STDERR, "G_splash_h = [%s]\n", print_r($G_splash_h, TRUE));
+ fprintf(STDERR, "G_splash_idx = [%s]\n", print_r($G_splash_idx, TRUE));
+ fprintf(STDERR, "G_splash_interval = [%s]\n", print_r($G_splash_interval, TRUE));
+ fprintf(STDERR, "G_splash_timeout = [%s]\n", print_r($G_splash_timeout, TRUE));
+ fprintf(STDERR, "G_splash_w = [%s]\n", print_r($G_splash_w, TRUE));
+ fprintf(STDERR, "G_topbanner = [%s]\n", print_r($G_topbanner, TRUE));
+ fprintf(STDERR, "G_with_donors = [%s]\n", print_r($G_with_donors, TRUE));
+ fprintf(STDERR, "G_with_poll = [%s]\n", print_r($G_with_poll, TRUE));
+ fprintf(STDERR, "G_with_sidebanner = [%s]\n", print_r($G_with_sidebanner, TRUE));
+ fprintf(STDERR, "G_with_sidebanner2 = [%s]\n", print_r($G_with_sidebanner2, TRUE));
+ fprintf(STDERR, "G_with_splash = [%s]\n", print_r($G_with_splash, TRUE));
+ fprintf(STDERR, "G_with_topbanner = [%s]\n", print_r($G_with_topbanner, TRUE));
+}
+
function spu_process_info($stream_info, $method, &$header, &$get, &$post, &$cookie)
{
$check_post = FALSE;
function run()
{
- GLOBAL $DOCUMENT_ROOT, $HTTP_HOST, $G_with_splash, $G_shutdown, $G_black_list;
+ GLOBAL $DOCUMENT_ROOT, $HTTP_HOST;
+
+ GLOBAL $G_alarm_passwd, $G_black_list, $G_btrace_pref_sub, $G_dbauth;
+ GLOBAL $G_dbpfx, $G_donors_all, $G_donors_cur, $G_is_local, $G_lang;
+ GLOBAL $G_poll_entries, $G_poll_name, $G_poll_title, $G_proxy_white_list;
+ GLOBAL $G_room_roadmap, $G_shutdown, $G_sidebanner, $G_sidebanner2;
+ GLOBAL $G_splash_content, $G_splash_contents, $G_splash_cont_idx;
+ GLOBAL $G_splash_h, $G_splash_idx, $G_splash_interval, $G_splash_timeout;
+ GLOBAL $G_splash_w, $G_topbanner, $G_with_donors, $G_with_poll;
+ GLOBAL $G_with_sidebanner, $G_with_sidebanner2, $G_with_splash;
+ GLOBAL $G_with_topbanner;
if ($this->main_loop) {
return (FALSE);
$line = trim($buf);
if ($line == "reload") {
require("$DOCUMENT_ROOT/Etc/".BRISK_CONF);
+
+ global_dump();
}
else if ($line == "shutdown") {
if ($this->app->dump_data()) {