]> git.immae.eu Git - github/wallabag/wallabag.git/blob - inc/config.php
Fixed #73 - Can't Poch url with special caracter
[github/wallabag/wallabag.git] / inc / config.php
1 <?php
2 /**
3 * poche, a read it later open source system
4 *
5 * @category poche
6 * @author Nicolas LÅ“uillet <nicolas@loeuillet.org>
7 * @copyright 2013
8 * @license http://www.wtfpl.net/ see COPYING file
9 */
10
11 define ('POCHE_VERSION', '0.2.1');
12
13 if (!is_dir('db/')) {
14 @mkdir('db/',0705);
15 }
16
17 define ('ABS_PATH', 'assets/');
18 define ('CONVERT_LINKS_FOOTNOTES', TRUE);
19 define ('REVERT_FORCED_PARAGRAPH_ELEMENTS',FALSE);
20 define ('DOWNLOAD_PICTURES', TRUE);
21 $storage_type = 'sqlite'; # sqlite or file
22
23 include 'functions.php';
24 require_once 'Readability.php';
25 require_once 'Encoding.php';
26 require_once 'rain.tpl.class.php';
27 require_once 'MyTool.class.php';
28 require_once 'Session.class.php';
29 require_once 'store/store.class.php';
30 require_once 'store/sqlite.class.php';
31 require_once 'store/file.class.php';
32 require_once 'class.messages.php';
33
34 Session::init();
35
36 $store = new $storage_type();
37 $msg = new Messages();
38
39 # initialisation de RainTPL
40 raintpl::$tpl_dir = './tpl/';
41 raintpl::$cache_dir = './cache/';
42 raintpl::$base_url = get_poche_url();
43 raintpl::configure('path_replace', false);
44 raintpl::configure('debug', false);
45 $tpl = new raintpl();
46 $tpl->assign('msg', $msg);