]>
git.immae.eu Git - github/wallabag/wallabag.git/blob - inc/config.php
bd9287fe143ad0c539b34858d53f11640e56fc71
3 * poche, a read it later open source system
6 * @author Nicolas LÅ“uillet <nicolas@loeuillet.org>
8 * @license http://www.wtfpl.net/ see COPYING file
11 define ('POCHE_VERSION', '0.2.1');
17 define ('MODE_DEMO', FALSE);
18 define ('ABS_PATH', 'assets/');
19 define ('CONVERT_LINKS_FOOTNOTES', TRUE);
20 define ('REVERT_FORCED_PARAGRAPH_ELEMENTS',FALSE);
21 define ('DOWNLOAD_PICTURES', TRUE);
22 define ('SALT', '464v54gLLw928uz4zUBqkRJeiPY68zCX');
23 $storage_type = 'sqlite'; # sqlite or file
25 include 'functions.php';
26 require_once 'Readability.php';
27 require_once 'Encoding.php';
28 require_once 'rain.tpl.class.php';
29 require_once 'MyTool.class.php';
30 require_once 'Session.class.php';
31 require_once 'store/store.class.php';
32 require_once 'store/sqlite.class.php';
33 require_once 'store/file.class.php';
34 require_once 'class.messages.php';
38 $store = new $storage_type();
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);
47 if(!$store->isInstalled())
49 logm('poche still not installed');
50 $tpl->draw('install');
51 if (isset($_GET['install'])) {
52 if (($_POST['password'] == $_POST['password_repeat'])
53 && $_POST['password'] != "" && $_POST['login'] != "") {
54 $store->install($_POST['login'], encode_string($_POST['password'] . $_POST['login']));
62 $_SESSION['login'] = (isset ($_SESSION['login'])) ? $_SESSION['login'] : $store->getLogin();
63 $_SESSION['pass'] = (isset ($_SESSION['pass'])) ? $_SESSION['pass'] : $store->getPassword();
65 $msg = new Messages();
66 $tpl->assign('msg', $msg);