diff options
Diffstat (limited to 'inc')
-rw-r--r-- | inc/poche/define.inc.php | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/inc/poche/define.inc.php b/inc/poche/define.inc.php deleted file mode 100644 index 40f77b5c..00000000 --- a/inc/poche/define.inc.php +++ /dev/null | |||
@@ -1,39 +0,0 @@ | |||
1 | <?php | ||
2 | /** | ||
3 | * poche, a read it later open source system | ||
4 | * | ||
5 | * @category poche | ||
6 | * @author Nicolas LÅ“uillet <support@inthepoche.com> | ||
7 | * @copyright 2013 | ||
8 | * @license http://www.wtfpl.net/ see COPYING file | ||
9 | */ | ||
10 | |||
11 | define ('STORAGE','sqlite'); # postgres, mysql, sqlite | ||
12 | define ('STORAGE_SERVER', 'localhost'); # leave blank for sqlite | ||
13 | define ('STORAGE_DB', 'poche'); # only for postgres & mysql | ||
14 | define ('STORAGE_SQLITE', __DIR__ . '/../../db/poche.sqlite'); | ||
15 | define ('STORAGE_USER', 'postgres'); # leave blank for sqlite | ||
16 | define ('STORAGE_PASSWORD', 'postgres'); # leave blank for sqlite | ||
17 | |||
18 | define ('MODE_DEMO', FALSE); | ||
19 | define ('DEBUG_POCHE', FALSE); | ||
20 | define ('DOWNLOAD_PICTURES', FALSE); | ||
21 | define ('SHARE_TWITTER', TRUE); | ||
22 | define ('SHARE_MAIL', TRUE); | ||
23 | define ('SHARE_SHAARLI', FALSE); | ||
24 | define ('SHAARLI_URL', 'http://myshaarliurl.com'); | ||
25 | define ('FLATTR', TRUE); | ||
26 | define ('FLATTR_API', 'https://api.flattr.com/rest/v2/things/lookup/?url='); | ||
27 | define ('NOT_FLATTRABLE', '0'); | ||
28 | define ('FLATTRABLE', '1'); | ||
29 | define ('FLATTRED', '2'); | ||
30 | define ('ABS_PATH', 'assets/'); | ||
31 | define ('TPL', __DIR__ . '/../../tpl'); | ||
32 | define ('LOCALE', __DIR__ . '/../../locale'); | ||
33 | define ('CACHE', __DIR__ . '/../../cache'); | ||
34 | define ('PAGINATION', '10'); | ||
35 | define ('THEME', 'light'); | ||
36 | |||
37 | define ('IMPORT_POCKET_FILE', './ril_export.html'); | ||
38 | define ('IMPORT_READABILITY_FILE', './readability'); | ||
39 | define ('IMPORT_INSTAPAPER_FILE', './instapaper-export.html'); \ No newline at end of file | ||