2013-04-09 13:05:49 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* poche, a read it later open source system
|
|
|
|
*
|
|
|
|
* @category poche
|
|
|
|
* @author Nicolas Lœuillet <nicolas@loeuillet.org>
|
|
|
|
* @copyright 2013
|
|
|
|
* @license http://www.wtfpl.net/ see COPYING file
|
|
|
|
*/
|
2013-04-17 13:11:57 +00:00
|
|
|
|
2013-04-17 13:32:57 +00:00
|
|
|
if (!is_dir('db/')) {
|
|
|
|
@mkdir('db/',0705);
|
|
|
|
}
|
|
|
|
|
2013-04-09 13:05:49 +00:00
|
|
|
define ('DB_PATH', 'sqlite:./db/poche.sqlite');
|
2013-04-17 13:32:57 +00:00
|
|
|
define ('ABS_PATH', 'assets/');
|
2013-04-18 08:15:46 +00:00
|
|
|
define ('CONVERT_LINKS_FOOTNOTES', TRUE);
|
2013-04-18 07:43:08 +00:00
|
|
|
define ('DOWNLOAD_PICTURES', TRUE);
|
2013-04-09 13:05:49 +00:00
|
|
|
|
|
|
|
include 'db.php';
|
|
|
|
include 'functions.php';
|
|
|
|
require_once 'Readability.php';
|
|
|
|
require_once 'Encoding.php';
|
2013-04-15 07:38:41 +00:00
|
|
|
require_once 'rain.tpl.class.php';
|
2013-04-18 13:39:34 +00:00
|
|
|
require_once 'MyTool.class.php';
|
|
|
|
require_once 'Session.class.php';
|
2013-04-15 07:38:41 +00:00
|
|
|
|
|
|
|
$db = new db(DB_PATH);
|
|
|
|
|
2013-04-18 13:39:34 +00:00
|
|
|
# initialisation de RainTPL
|
2013-04-15 07:38:41 +00:00
|
|
|
raintpl::$tpl_dir = './tpl/';
|
|
|
|
raintpl::$cache_dir = './cache/';
|
|
|
|
raintpl::$base_url = get_poche_url();
|
|
|
|
raintpl::configure('path_replace', false);
|
|
|
|
raintpl::configure('debug', false);
|
2013-04-19 09:41:12 +00:00
|
|
|
$tpl = new raintpl();
|