a7651a4f3207d55c407baba70ec32373705c26f8
[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_admin_mail = "admin@example.com";
9 $G_mail_seed = 281741;
10
11 $G_lang = "it";
12
13 $G_crypt_key = "cryptkey";
14
15 $G_shutdown = FALSE;
16
17 // list of allowed proxies IP address (strings)
18 $G_proxy_white_list = array();
19
20 // admin passwd to send broadcast messages
21 $G_alarm_passwd = "yourpasswd";
22
23 // is local or connected to internet
24 $G_is_local = FALSE;
25
26 // splash window related vars
27 $G_with_splash = TRUE;
28 $G_splash_interval = 25200; // 3600 * 7
29 $G_splash_idx = 3;
30 $G_splash_w = 350;
31 $G_splash_h = 500;
32 $G_splash_timeout = 5000;
33 $G_splash_content = array( 'it' => 'content italico',
34                            'en' => 'content anglofico' );
35
36 // to use more then one splash content (to be reviewed)
37 $G_splash_contents = array( "a", "b");
38 $G_splash_cont_idx = 0; // (must be moved outside)
39
40 // donometer related variables
41 $G_with_donors = TRUE;
42 $G_donors_cur = 12;
43 $G_donors_all = 50;
44
45 $G_room_roadmap = '<div style=\"text-align: left;\"><ul>
46 <li>roadmap item 1</li>
47 <li>roadmap item 2</li>
48 <li>...</li>
49 </ul></div>';
50
51 // is the top banner active ?
52 $G_with_topbanner = FALSE;
53
54 $G_topbanner = '<div class="topbanner" id="topbanner" onMouseOver="show_bigpict(this, \'over\', -100, 80);" onMouseOut="show_bigpict(this, \'out\', 0, 0);">
55 <a target="_blank" href="http://www.briscolachiamatamilano.it/maggiotorneo.htm">
56 Torneo di briscola<br> chiamata - Milano<br> 17/05/2008</a>
57 </div>
58 <img class="nobohide" id="topbanner_big" src="img/bcm_tor080517.gif">';
59
60 // is the first side banner active ?
61 $G_with_sidebanner = TRUE;
62
63 $G_sidebanner = '<div class="topbanner" style="background: #ffd780; border: solid 1px #ffae00; width: 60px; margin: auto;" id="sidebanner2">
64 <a target="_blank" href="briskmeeting4.php">
65 <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>
66 <img class="nobohide" id="sidebanner2_big" src="img/brisk_meeting4big150.png">';
67
68 // is the second side banner active ?
69 $G_with_sidebanner2 = TRUE;
70
71 $G_sidebanner2 = '<div class="topbanner" style="background: #ffd780; border: solid 1px #ffae00; width: 60px; margin: auto;" id="sidebanner2">
72 <a target="_blank" href="briskmeeting4.php">
73 <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>
74 <img class="nobohide" id="sidebanner2_big" src="img/brisk_meeting4big150.png">';
75
76 // is poll active ?
77 $G_with_poll = FALSE;
78 $G_poll_name = "calcolo_punteggio";
79 $G_poll_title = "Vota come calcolare i punteggi!";
80 $G_poll_entries = array( array( 'id' => 'din', 'cont' => 'Dinner room'),
81                          array( 'id' => 'bat', 'cont' => 'Bath room'),
82                          array( 'id' => 'coo', 'cont' => 'Cooking room') );
83
84 $G_black_list = array();
85
86
87 // this is the prefix path to remove from backtrace
88 $G_btrace_pref_sub = "/home/nastasi/web/";
89
90 // where documents are stored
91 $G_doc_path = "Obj/doc/";
92
93 // licence related stuff
94 $G_tos_vers = "1.2";
95 $G_tos_fname = "terms-of-service_V%s_%s.txt";
96 // USE date +%s -d 'Wed Nov 20 18:35:41 CET 2013' to calculate
97 $G_tos_dthard = 1384968941;
98 $G_tos_dtsoft = 1384968941;
99 $G_tos_idx    = 1;
100 ?>