6854d6aee9e339218633333c8e3dd7a339232ad6
[brisk.git] / web / Obj / brisk.conf-templ.pho
1 <?php
2 if (file_exists("$DOCUMENT_ROOT/Etc/provider_proxy.phh")) {
3     require_once("$DOCUMENT_ROOT/Etc/provider_proxy.phh");
4 }
5 else {
6     $G_provider_proxy = array();
7 }
8
9 // G_dbasetype value can be "pgsql" or "file"
10 $G_dbasetype="pgsql";
11
12 $G_dbauth = "host=... port=... user=... password=... dbname=... options='--client_encoding=UTF8'";
13 $G_dbpfx = "bsk_";
14
15 $G_domain     = "brisk.example.com";
16 $G_webbase    = "brisk";
17 $G_admin_mail = "admin@$G_domain";
18 $G_mail_seed  = 281741;
19
20 $G_lang = "it";
21
22 $G_crypt_key = "cryptkey";
23
24 $G_shutdown = FALSE;
25
26 // list of allowed proxies IP address (strings)
27 $G_proxy_white_list = array();
28
29 // admin passwd to send broadcast messages
30 $G_alarm_passwd = "yourpasswd";
31
32 // is local or connected to internet
33 $G_is_local = FALSE;
34
35 // splash window related vars
36 $G_with_splash = TRUE;
37 $G_splash_interval = 25200; // 3600 * 7
38 $G_splash_idx = 3;
39 $G_splash_w = 350;
40 $G_splash_h = 500;
41 $G_splash_timeout = 5000;
42 $G_splash_content = array( 'it' => 'content italico',
43                            'en' => 'content anglofico' );
44
45 // to use more then one splash content (to be reviewed)
46 $G_splash_contents = array( "a", "b");
47 $G_splash_cont_idx = 0; // (must be moved outside)
48
49 // donometer related variables
50 $G_with_donors = TRUE;
51 $G_donors_cur = 12;
52 $G_donors_all = 50;
53
54 $G_room_roadmap = '<div style=\"text-align: left;\"><ul>
55 <li>roadmap item 1</li>
56 <li>roadmap item 2</li>
57 <li>...</li>
58 </ul></div>';
59
60 // is the top banner active ?
61 $G_with_topbanner = FALSE;
62
63 $G_topbanner = '<div class="topbanner" id="topbanner" onMouseOver="show_bigpict(this, \'over\', -100, 80);" onMouseOut="show_bigpict(this, \'out\', 0, 0);">
64 <a target="_blank" href="http://www.briscolachiamatamilano.it/maggiotorneo.htm">
65 Torneo di briscola<br> chiamata - Milano<br> 17/05/2008</a>
66 </div>
67 <img class="nobohide" id="topbanner_big" src="img/bcm_tor080517.gif">';
68
69 $G_sidebanner_idx = array( 0, 1, 0 );
70
71 // sidebanners array
72 $G_sidebanner = array(
73                       array('link' => 'http://www.alternativeoutput.it/brisk/bm33/',
74                             'title' => '3° BriskMeeting \'Isola delle Femmine\' - Sabato 11 Ottobre 2014 - Palermo (PA)',
75                             'icon_big' => 'bm33/img/bm33_500.jpg'
76                             // 'type' => 'meeting' or 'event'      // (default meeting with the correct icon)
77                             // 'icon' => 'img/brisk_meeting60.gif' // (default is the regulare meeting icon)
78                             // 'dx'
79                             // 'dy'                                // displacement of the big image
80                             ),
81
82                       array('link' => 'https://www.facebook.com/events/525109597594103/',
83                             'title' => 'BriskMeeting Busseto - Terra di Verdi - Sabato 4 Ottobre - Busseto (Parma)',
84                             'icon_big' => 'bm32/img/splash.jpg'
85                             )
86                       );
87
88 // is poll active ?
89 $G_with_poll = FALSE;
90 $G_poll_name = "calcolo_punteggio";
91 $G_poll_title = "Vota come calcolare i punteggi!";
92 $G_poll_entries = array( array( 'id' => 'din', 'cont' => 'Dinner room'),
93                          array( 'id' => 'bat', 'cont' => 'Bath room'),
94                          array( 'id' => 'coo', 'cont' => 'Cooking room') );
95
96 $G_ban_list = array();   // each element in the form "IP/<MSBs_number>" i.e. "192.15.21.4/24"
97 $G_black_list = array(); // each element in the form "IP/<MSBs_number>" i.e. "192.15.21.4/24"
98
99
100 // this is the prefix path to remove from backtrace
101 $G_btrace_pref_sub = "/home/nastasi/web/";
102
103 // where documents are stored
104 $G_doc_path = "Obj/doc/";
105
106 // licence related stuff
107 $G_tos_vers = "1.2";
108 $G_tos_fname = "terms-of-service_V%s_%s.txt";
109 // USE date +%s -d 'Wed Nov 20 18:35:41 CET 2013' to calculate
110 $G_tos_dthard = 1384968941;
111 $G_tos_dtsoft = 1384968941;
112 $G_tos_idx    = 1;
113 ?>