aboutsummaryrefslogtreecommitdiffhomepage
path: root/inc
diff options
context:
space:
mode:
authorMaryana Rozhankivska <mariroz@mr.lviv.ua>2014-04-22 21:39:03 +0300
committerMaryana Rozhankivska <mariroz@mr.lviv.ua>2014-04-22 21:39:03 +0300
commitfd86559a5b8a82ced3dcac97e7a8280b6abc2fa4 (patch)
treeda4a0bcc1b540a6acc9879b8d6e31cdcc74574b8 /inc
parent43c7b978c31bcbf9e8e5202ecbb7b6fccba6a7fa (diff)
downloadwallabag-fd86559a5b8a82ced3dcac97e7a8280b6abc2fa4.tar.gz
wallabag-fd86559a5b8a82ced3dcac97e7a8280b6abc2fa4.tar.zst
wallabag-fd86559a5b8a82ced3dcac97e7a8280b6abc2fa4.zip
inc/poche/config.inc.php.new removed
Diffstat (limited to 'inc')
-rwxr-xr-xinc/poche/config.inc.php.new63
1 files changed, 0 insertions, 63 deletions
diff --git a/inc/poche/config.inc.php.new b/inc/poche/config.inc.php.new
deleted file mode 100755
index 3b08c212..00000000
--- a/inc/poche/config.inc.php.new
+++ /dev/null
@@ -1,63 +0,0 @@
1<?php
2/**
3 * wallabag, self hostable application allowing you to not miss any content anymore
4 *
5 * @category wallabag
6 * @author Nicolas LÅ“uillet <nicolas@loeuillet.org>
7 * @copyright 2013
8 * @license http://www.wtfpl.net/ see COPYING file
9 */
10
11define ('SALT', ''); # put a strong string here
12define ('LANG', 'en_EN.utf8');
13
14define ('STORAGE', 'sqlite'); # postgres, mysql or sqlite
15
16define ('STORAGE_SQLITE', ROOT . '/db/poche.sqlite'); # if you are using sqlite, where the database file is located
17
18# only for postgres & mysql
19define ('STORAGE_SERVER', 'localhost');
20define ('STORAGE_DB', 'poche');
21define ('STORAGE_USER', 'poche');
22define ('STORAGE_PASSWORD', 'poche');
23
24#################################################################################
25# Do not trespass unless you know what you are doing
26#################################################################################
27
28// Change this if not using the standart port for SSL - i.e you server is behind sslh
29define ('SSL_PORT', 443);
30
31define ('MODE_DEMO', FALSE);
32define ('DEBUG_POCHE', FALSE);
33define ('DOWNLOAD_PICTURES', FALSE);
34define ('CONVERT_LINKS_FOOTNOTES', FALSE);
35define ('REVERT_FORCED_PARAGRAPH_ELEMENTS', FALSE);
36define ('SHARE_TWITTER', TRUE);
37define ('SHARE_MAIL', TRUE);
38define ('SHARE_SHAARLI', FALSE);
39define ('SHAARLI_URL', 'http://myshaarliurl.com');
40define ('FLATTR', TRUE);
41define ('FLATTR_API', 'https://api.flattr.com/rest/v2/things/lookup/?url=');
42define ('NOT_FLATTRABLE', '0');
43define ('FLATTRABLE', '1');
44define ('FLATTRED', '2');
45// display or not print link in article view
46define ('SHOW_PRINTLINK', '1');
47// display or not percent of read in article view. Affects only default theme.
48define ('SHOW_READPERCENT', '1');
49define ('ABS_PATH', 'assets/');
50
51define ('DEFAULT_THEME', 'baggy');
52
53define ('THEME', ROOT . '/themes');
54define ('LOCALE', ROOT . '/locale');
55define ('CACHE', ROOT . '/cache');
56
57define ('PAGINATION', '10');
58
59//limit for download of articles during import
60define ('IMPORT_LIMIT', 5);
61//delay between downloads (in sec)
62define ('IMPORT_DELAY', 5);
63