aboutsummaryrefslogtreecommitdiffhomepage
path: root/inc/poche/config.inc.default.php
diff options
context:
space:
mode:
Diffstat (limited to 'inc/poche/config.inc.default.php')
-rwxr-xr-xinc/poche/config.inc.default.php17
1 files changed, 16 insertions, 1 deletions
diff --git a/inc/poche/config.inc.default.php b/inc/poche/config.inc.default.php
index f666f468..09d3aa9a 100755
--- a/inc/poche/config.inc.default.php
+++ b/inc/poche/config.inc.default.php
@@ -20,6 +20,7 @@
20@define ('STORAGE_DB', 'poche'); 20@define ('STORAGE_DB', 'poche');
21@define ('STORAGE_USER', 'poche'); 21@define ('STORAGE_USER', 'poche');
22@define ('STORAGE_PASSWORD', 'poche'); 22@define ('STORAGE_PASSWORD', 'poche');
23@define ('MYSQL_USE_UTF8MB4', FALSE); // This should be false unless you know what it is
23 24
24################################################################################# 25#################################################################################
25# Do not trespass unless you know what you are doing 26# Do not trespass unless you know what you are doing
@@ -44,15 +45,30 @@
44@define ('SHARE_MAIL', TRUE); 45@define ('SHARE_MAIL', TRUE);
45@define ('SHARE_SHAARLI', FALSE); 46@define ('SHARE_SHAARLI', FALSE);
46@define ('SHAARLI_URL', 'http://myshaarliurl.com'); 47@define ('SHAARLI_URL', 'http://myshaarliurl.com');
48@define ('SHARE_EVERNOTE', FALSE);
49@define ('SHARE_DIASPORA', FALSE);
50@define ('DIASPORA_URL', 'http://diasporapod.com'); # Don't add a / at the end
47@define ('FLATTR', TRUE); 51@define ('FLATTR', TRUE);
48@define ('FLATTR_API', 'https://api.flattr.com/rest/v2/things/lookup/?url='); 52@define ('FLATTR_API', 'https://api.flattr.com/rest/v2/things/lookup/?url=');
49@define ('NOT_FLATTRABLE', '0'); 53@define ('NOT_FLATTRABLE', '0');
50@define ('FLATTRABLE', '1'); 54@define ('FLATTRABLE', '1');
51@define ('FLATTRED', '2'); 55@define ('FLATTRED', '2');
56@define ('CARROT', FALSE);
57
58// ebook
59@define ('EPUB', TRUE);
60@define ('MOBI', FALSE);
61@define ('PDF', FALSE);
62
63// registration
64@define ('ALLOW_REGISTER', FALSE);
65@define ('SEND_CONFIRMATION_EMAIL', FALSE);
66
52// display or not print link in article view 67// display or not print link in article view
53@define ('SHOW_PRINTLINK', '1'); 68@define ('SHOW_PRINTLINK', '1');
54// display or not percent of read in article view. Affects only default theme. 69// display or not percent of read in article view. Affects only default theme.
55@define ('SHOW_READPERCENT', '1'); 70@define ('SHOW_READPERCENT', '1');
71@define ('RELOAD_ARTICLE', TRUE);
56@define ('ABS_PATH', 'assets/'); 72@define ('ABS_PATH', 'assets/');
57 73
58@define ('DEFAULT_THEME', 'baggy'); 74@define ('DEFAULT_THEME', 'baggy');
@@ -67,4 +83,3 @@
67@define ('IMPORT_LIMIT', 5); 83@define ('IMPORT_LIMIT', 5);
68//delay between downloads (in sec) 84//delay between downloads (in sec)
69@define ('IMPORT_DELAY', 5); 85@define ('IMPORT_DELAY', 5);
70