diff options
Diffstat (limited to 'inc/poche/config.inc.php')
-rwxr-xr-x | inc/poche/config.inc.php | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/inc/poche/config.inc.php b/inc/poche/config.inc.php deleted file mode 100755 index 5c304d14..00000000 --- a/inc/poche/config.inc.php +++ /dev/null | |||
@@ -1,56 +0,0 @@ | |||
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 ('SALT', ''); # put a strong string here | ||
12 | define ('LANG', 'en_EN.utf8'); | ||
13 | |||
14 | define ('STORAGE', 'sqlite'); # postgres, mysql or sqlite | ||
15 | |||
16 | define ('STORAGE_SQLITE', ROOT . '/db/poche.sqlite'); # if you are using sqlite, where the database file is located | ||
17 | |||
18 | # only for postgres & mysql | ||
19 | define ('STORAGE_SERVER', 'localhost'); | ||
20 | define ('STORAGE_DB', 'poche'); | ||
21 | define ('STORAGE_USER', 'poche'); | ||
22 | define ('STORAGE_PASSWORD', 'poche'); | ||
23 | |||
24 | ################################################################################# | ||
25 | # Do not trespass unless you know what you are doing | ||
26 | ################################################################################# | ||
27 | |||
28 | define ('MODE_DEMO', FALSE); | ||
29 | define ('DEBUG_POCHE', true); | ||
30 | define ('DOWNLOAD_PICTURES', FALSE); | ||
31 | define ('CONVERT_LINKS_FOOTNOTES', FALSE); | ||
32 | define ('REVERT_FORCED_PARAGRAPH_ELEMENTS', FALSE); | ||
33 | define ('SHARE_TWITTER', TRUE); | ||
34 | define ('SHARE_MAIL', TRUE); | ||
35 | define ('SHARE_SHAARLI', FALSE); | ||
36 | define ('SHAARLI_URL', 'http://myshaarliurl.com'); | ||
37 | define ('FLATTR', TRUE); | ||
38 | define ('FLATTR_API', 'https://api.flattr.com/rest/v2/things/lookup/?url='); | ||
39 | define ('NOT_FLATTRABLE', '0'); | ||
40 | define ('FLATTRABLE', '1'); | ||
41 | define ('FLATTRED', '2'); | ||
42 | define ('ABS_PATH', 'assets/'); | ||
43 | |||
44 | define ('DEFAULT_THEME', 'default'); | ||
45 | |||
46 | define ('THEME', ROOT . '/themes'); | ||
47 | define ('LOCALE', ROOT . '/locale'); | ||
48 | define ('CACHE', ROOT . '/cache'); | ||
49 | |||
50 | define ('PAGINATION', '10'); | ||
51 | |||
52 | define ('POCHE_VERSION', '1.0-beta5'); | ||
53 | |||
54 | define ('IMPORT_POCKET_FILE', ROOT . '/ril_export.html'); | ||
55 | define ('IMPORT_READABILITY_FILE', ROOT . '/readability'); | ||
56 | define ('IMPORT_INSTAPAPER_FILE', ROOT . '/instapaper-export.html'); \ No newline at end of file | ||