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.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/inc/poche/config.inc.default.php b/inc/poche/config.inc.default.php
index 6f03af18..3eaee3a3 100755
--- a/inc/poche/config.inc.default.php
+++ b/inc/poche/config.inc.default.php
@@ -24,6 +24,8 @@
24################################################################################# 24#################################################################################
25# Do not trespass unless you know what you are doing 25# Do not trespass unless you know what you are doing
26################################################################################# 26#################################################################################
27// Change this if http is running on nonstandard port - i.e is behind cache proxy
28@define ('HTTP_PORT', 80);
27 29
28// Change this if not using the standart port for SSL - i.e you server is behind sslh 30// Change this if not using the standart port for SSL - i.e you server is behind sslh
29@define ('SSL_PORT', 443); 31@define ('SSL_PORT', 443);
@@ -42,11 +44,14 @@
42@define ('SHARE_MAIL', TRUE); 44@define ('SHARE_MAIL', TRUE);
43@define ('SHARE_SHAARLI', FALSE); 45@define ('SHARE_SHAARLI', FALSE);
44@define ('SHAARLI_URL', 'http://myshaarliurl.com'); 46@define ('SHAARLI_URL', 'http://myshaarliurl.com');
47@define ('SHARE_DIASPORA', FALSE);
48@define ('DIASPORA_URL', 'http://diasporapod.com'); # Don't add a / at the end
45@define ('FLATTR', TRUE); 49@define ('FLATTR', TRUE);
46@define ('FLATTR_API', 'https://api.flattr.com/rest/v2/things/lookup/?url='); 50@define ('FLATTR_API', 'https://api.flattr.com/rest/v2/things/lookup/?url=');
47@define ('NOT_FLATTRABLE', '0'); 51@define ('NOT_FLATTRABLE', '0');
48@define ('FLATTRABLE', '1'); 52@define ('FLATTRABLE', '1');
49@define ('FLATTRED', '2'); 53@define ('FLATTRED', '2');
54@define ('CARROT', FALSE);
50// display or not print link in article view 55// display or not print link in article view
51@define ('SHOW_PRINTLINK', '1'); 56@define ('SHOW_PRINTLINK', '1');
52// display or not percent of read in article view. Affects only default theme. 57// display or not percent of read in article view. Affects only default theme.
@@ -59,10 +64,9 @@
59@define ('LOCALE', ROOT . '/locale'); 64@define ('LOCALE', ROOT . '/locale');
60@define ('CACHE', ROOT . '/cache'); 65@define ('CACHE', ROOT . '/cache');
61 66
62@define ('PAGINATION', '10'); 67@define ('PAGINATION', '12');
63 68
64//limit for download of articles during import 69//limit for download of articles during import
65@define ('IMPORT_LIMIT', 5); 70@define ('IMPORT_LIMIT', 5);
66//delay between downloads (in sec) 71//delay between downloads (in sec)
67@define ('IMPORT_DELAY', 5); 72@define ('IMPORT_DELAY', 5);
68