]> git.immae.eu Git - github/wallabag/wallabag.git/blob - inc/poche/config.inc.php
#100: welcome to you, instapaper users
[github/wallabag/wallabag.git] / inc / poche / config.inc.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', '1.0-alpha');
12 define ('MODE_DEMO', TRUE);
13 define ('DEBUG_POCHE', FALSE);
14 define ('CONVERT_LINKS_FOOTNOTES', FALSE);
15 define ('REVERT_FORCED_PARAGRAPH_ELEMENTS', FALSE);
16 define ('DOWNLOAD_PICTURES', FALSE);
17 define ('SHARE_TWITTER', TRUE);
18 define ('SALT', '464v54gLLw928uz4zUBqkRJeiPY68zCX');
19 define ('ABS_PATH', 'assets/');
20 define ('TPL', './tpl');
21 define ('LOCALE', './locale');
22 define ('CACHE', './cache');
23 define ('LANG', 'fr_FR.UTF8');
24 $storage_type = 'sqlite'; # sqlite, mysql, (file, not yet)
25
26 # /!\ Be careful if you change the lines below /!\
27 require_once './inc/poche/Tools.class.php';
28 require_once './inc/poche/Url.class.php';
29 require_once './inc/poche/Poche.class.php';
30 require_once './inc/3rdparty/Readability.php';
31 require_once './inc/3rdparty/Encoding.php';
32 require_once './inc/3rdparty/Session.class.php';
33 require_once './inc/store/store.class.php';
34 require_once './inc/store/' . $storage_type . '.class.php';
35 require_once './vendor/autoload.php';
36 require_once './inc/3rdparty/simple_html_dom.php';
37
38 if (DOWNLOAD_PICTURES) {
39 require_once './inc/poche/pochePicture.php';
40 }
41
42 $poche = new Poche($storage_type);