]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/common.php
convert html-generation functions to use XMLWriter
[quix0rs-gnu-social.git] / lib / common.php
1 <?php
2 /* 
3  * Laconica - a distributed open-source microblogging tool
4  * Copyright (C) 2008, Controlez-Vous, Inc.
5  * 
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Affero General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  * 
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU Affero General Public License for more details.
15  * 
16  * You should have received a copy of the GNU Affero General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 /* XXX: break up into separate modules (HTTP, HTML, user, files) */
21
22
23 if (!defined('LACONICA')) { exit(1); }
24
25 define('AVATAR_PROFILE_SIZE', 96);
26 define('AVATAR_STREAM_SIZE', 48);
27 define('AVATAR_MINI_SIZE', 24);
28 define('MAX_AVATAR_SIZE', 256 * 1024);
29
30 # global configuration object
31
32 require_once('PEAR.php');
33 require_once('DB/DataObject.php');
34 require_once('DB/DataObject/Cast.php'); # for dates
35
36 // default configuration, overwritten in config.php
37
38 $config =
39   array('site' =>
40                 array('name' => 'Just another Laconica microblog',
41                           'server' => 'localhost',
42                           'path' => '/'),
43                 'avatar' =>
44                 array('directory' => INSTALLDIR . '/avatar',
45                           'path' => '/avatar')
46 );
47
48 $config['db'] = &PEAR::getStaticProperty('DB_DataObject','options');
49
50 $config['db'] = 
51   array('database' => 'YOU HAVE TO SET THIS IN config.php',
52             'schema_location' => INSTALLDIR . '/classes',
53                 'class_location' => INSTALLDIR . '/classes',
54                 'require_prefix' => 'classes/',
55                 'class_prefix' => '',
56         'db_driver' => 'MDB2',
57                 'quote_identifiers' => false);
58
59 require_once(INSTALLDIR.'/config.php');
60 require_once(INSTALLDIR.'/lib/util.php');
61 require_once(INSTALLDIR.'/lib/action.php');
62
63 require_once(INSTALLDIR.'/classes/Avatar.php');
64 require_once(INSTALLDIR.'/classes/Notice.php');
65 require_once(INSTALLDIR.'/classes/Profile.php');
66 require_once(INSTALLDIR.'/classes/Remote_profile.php');
67 require_once(INSTALLDIR.'/classes/Subscription.php');
68 require_once(INSTALLDIR.'/classes/User.php');