6b38d2456aa405c71a0b2965e06514d8f5113e81
[brisk.git] / web / Obj / brisk.conf-templ.pho
1 <?php
2 // G_dbasetype value can be "pgsql" or "file"
3 $G_dbasetype="pgsql";
4
5 $G_dbauth = "host=... port=... user=... password=... dbname=... options='--client_encoding=UTF8'";
6 $G_dbpfx = "bsk_";
7
8 $G_lang = "it";
9
10 $G_shutdown = FALSE;
11
12 // list of allowed proxies IP address (strings)
13 $G_proxy_white_list = array();
14
15 // admin passwd to send broadcast messages
16 $G_alarm_passwd = "yourpasswd";
17
18 // is local or connected to internet
19 $G_is_local = FALSE;
20
21 // splash window related vars
22 $G_with_splash = TRUE;
23 $G_splash_interval = 25200; // 3600 * 7
24 $G_splash_idx = 3;
25 $G_splash_w = 350;
26 $G_splash_h = 500;
27 $G_splash_timeout = 5000;
28 $G_splash_content = array( 'it' => 'content italico',
29                            'en' => 'content anglofico' );
30
31 // to use more then one splash content (to be reviewed)
32 $G_splash_contents = array( "a", "b");
33 $G_splash_cont_idx = 0; // (must be moved outside)
34
35 // donometer related variables
36 $G_with_donors = TRUE;
37 $G_donors_cur = 12;
38 $G_donors_all = 50;
39
40 $G_room_roadmap = '<div style=\"text-align: left;\"><ul>
41 <li>roadmap item 1</li>
42 <li>roadmap item 2</li>
43 <li>...</li>
44 </ul></div>';
45
46 // is the top banner active ?
47 $G_with_topbanner = FALSE;
48
49 $G_topbanner = '<div class="topbanner" id="topbanner" onMouseOver="show_bigpict(this, \'over\', -100, 80);" onMouseOut="show_bigpict(this, \'out\', 0, 0);">
50 <a target="_blank" href="http://www.briscolachiamatamilano.it/maggiotorneo.htm">
51 Torneo di briscola<br> chiamata - Milano<br> 17/05/2008</a>
52 </div>
53 <img class="nobohide" id="topbanner_big" src="img/bcm_tor080517.gif">';
54
55 // is the first side banner active ?
56 $G_with_sidebanner = TRUE;
57
58 $G_sidebanner = '<div class="topbanner" style="background: #ffd780; border: solid 1px #ffae00; width: 60px; margin: auto;" id="sidebanner2">
59 <a target="_blank" href="briskmeeting4.php">
60 <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>
61 <img class="nobohide" id="sidebanner2_big" src="img/brisk_meeting4big150.png">';
62
63 // is the second side banner active ?
64 $G_with_sidebanner2 = TRUE;
65
66 $G_sidebanner2 = '<div class="topbanner" style="background: #ffd780; border: solid 1px #ffae00; width: 60px; margin: auto;" id="sidebanner2">
67 <a target="_blank" href="briskmeeting4.php">
68 <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>
69 <img class="nobohide" id="sidebanner2_big" src="img/brisk_meeting4big150.png">';
70
71 // is poll active ?
72 $G_with_poll = FALSE;
73 $G_poll_name = "calcolo_punteggio";
74 $G_poll_title = "Vota come calcolare i punteggi!";
75 $G_poll_entries = array( array( 'id' => 'din', 'cont' => 'Dinner room'),
76                          array( 'id' => 'bat', 'cont' => 'Bath room'),
77                          array( 'id' => 'coo', 'cont' => 'Cooking room') );
78
79 $G_black_list = array();
80
81
82 // this is the prefix path to remove from backtrace
83 $G_btrace_pref_sub = "/home/nastasi/web/";
84
85
86
87 ?>