mirror of
https://github.com/wallabag/wallabag.git
synced 2025-09-15 18:57:05 +00:00
new folders
This commit is contained in:
parent
c78c1a3f08
commit
6ad93dff69
61 changed files with 146 additions and 97 deletions
1
app/cache/.gitignore
vendored
Normal file
1
app/cache/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
!.htaccess
|
2
app/cache/.htaccess
vendored
Normal file
2
app/cache/.htaccess
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
Order deny,allow
|
||||
Deny from all
|
14
app/check_essentials.php
Normal file
14
app/check_essentials.php
Normal file
|
@ -0,0 +1,14 @@
|
|||
<?php
|
||||
|
||||
// PHP 5.3 minimum
|
||||
if (version_compare(PHP_VERSION, '5.3.3', '<')) {
|
||||
die('This software require PHP 5.3.3 minimum');
|
||||
}
|
||||
|
||||
// Short tags must be enabled for PHP < 5.4
|
||||
if (version_compare(PHP_VERSION, '5.4.0', '<')) {
|
||||
|
||||
if (! ini_get('short_open_tag')) {
|
||||
die('This software require to have short tags enabled, check your php.ini => "short_open_tag = On"');
|
||||
}
|
||||
}
|
9
app/check_setup.php
Executable file
9
app/check_setup.php
Executable file
|
@ -0,0 +1,9 @@
|
|||
<?php
|
||||
|
||||
|
||||
|
||||
// install folder still present, need to install wallabag
|
||||
// if (is_dir('install')) {
|
||||
// require('install/index.php');
|
||||
// exit;
|
||||
// }
|
78
app/config/config.inc.default.php
Executable file
78
app/config/config.inc.default.php
Executable file
|
@ -0,0 +1,78 @@
|
|||
<?php
|
||||
/**
|
||||
* wallabag, self hostable application allowing you to not miss any content anymore
|
||||
*
|
||||
* @category wallabag
|
||||
* @author Nicolas Lœuillet <nicolas@loeuillet.org>
|
||||
* @copyright 2013
|
||||
* @license http://opensource.org/licenses/MIT see COPYING file
|
||||
*/
|
||||
|
||||
@define ('SALT', ''); # put a strong string here
|
||||
@define ('LANG', 'en_EN.utf8');
|
||||
|
||||
@define ('STORAGE', 'sqlite'); # postgres, mysql or sqlite
|
||||
|
||||
@define ('STORAGE_SQLITE', ROOT . '/app/db/poche.sqlite'); # if you are using sqlite, where the database file is located
|
||||
|
||||
# only for postgres & mysql
|
||||
@define ('STORAGE_SERVER', 'localhost');
|
||||
@define ('STORAGE_DB', 'poche');
|
||||
@define ('STORAGE_USER', 'poche');
|
||||
@define ('STORAGE_PASSWORD', 'poche');
|
||||
|
||||
#################################################################################
|
||||
# Do not trespass unless you know what you are doing
|
||||
#################################################################################
|
||||
// Change this if http is running on nonstandard port - i.e is behind cache proxy
|
||||
@define ('HTTP_PORT', 80);
|
||||
|
||||
// Change this if not using the standart port for SSL - i.e you server is behind sslh
|
||||
@define ('SSL_PORT', 443);
|
||||
|
||||
@define ('MODE_DEMO', FALSE);
|
||||
@define ('DEBUG_POCHE', FALSE);
|
||||
|
||||
//default level of error reporting in application. Developers should override it in their config.inc.php: set to E_ALL.
|
||||
@define ('ERROR_REPORTING', E_ALL & ~E_NOTICE);
|
||||
|
||||
@define ('DOWNLOAD_PICTURES', FALSE); # This can slow down the process of adding articles
|
||||
@define ('REGENERATE_PICTURES_QUALITY', 75);
|
||||
@define ('CONVERT_LINKS_FOOTNOTES', FALSE);
|
||||
@define ('REVERT_FORCED_PARAGRAPH_ELEMENTS', FALSE);
|
||||
@define ('SHARE_TWITTER', TRUE);
|
||||
@define ('SHARE_MAIL', TRUE);
|
||||
@define ('SHARE_SHAARLI', FALSE);
|
||||
@define ('SHAARLI_URL', 'http://myshaarliurl.com');
|
||||
@define ('SHARE_DIASPORA', FALSE);
|
||||
@define ('DIASPORA_URL', 'http://diasporapod.com'); # Don't add a / at the end
|
||||
@define ('FLATTR', TRUE);
|
||||
@define ('FLATTR_API', 'https://api.flattr.com/rest/v2/things/lookup/?url=');
|
||||
@define ('NOT_FLATTRABLE', '0');
|
||||
@define ('FLATTRABLE', '1');
|
||||
@define ('FLATTRED', '2');
|
||||
@define ('CARROT', FALSE);
|
||||
|
||||
// ebook
|
||||
@define ('EPUB', TRUE);
|
||||
@define ('MOBI', FALSE);
|
||||
@define ('PDF', FALSE);
|
||||
|
||||
// display or not print link in article view
|
||||
@define ('SHOW_PRINTLINK', '1');
|
||||
// display or not percent of read in article view. Affects only default theme.
|
||||
@define ('SHOW_READPERCENT', '1');
|
||||
@define ('ABS_PATH', ROOT . '/app/assets/');
|
||||
|
||||
@define ('DEFAULT_THEME', 'baggy');
|
||||
|
||||
@define ('THEME', ROOT . '/themes');
|
||||
@define ('LOCALE', ROOT . '/src/Wallabag/Wallabag/Resources/translations/locale');
|
||||
@define ('CACHE', ROOT . '/app/cache');
|
||||
|
||||
@define ('PAGINATION', '12');
|
||||
|
||||
//limit for download of articles during import
|
||||
@define ('IMPORT_LIMIT', 5);
|
||||
//delay between downloads (in sec)
|
||||
@define ('IMPORT_DELAY', 5);
|
25
app/config/global.inc.php
Executable file
25
app/config/global.inc.php
Executable file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
/**
|
||||
* wallabag, self hostable application allowing you to not miss any content anymore
|
||||
*
|
||||
* @category wallabag
|
||||
* @author Nicolas Lœuillet <nicolas@loeuillet.org>
|
||||
* @copyright 2013
|
||||
* @license http://opensource.org/licenses/MIT see COPYING file
|
||||
*/
|
||||
|
||||
define('ROOT', dirname(__FILE__) . '/../..');
|
||||
|
||||
require_once ROOT . '/vendor/autoload.php';
|
||||
|
||||
# system configuration; database credentials et caetera
|
||||
require_once dirname(__FILE__) . '/config.inc.php';
|
||||
require_once dirname(__FILE__) . '/config.inc.default.php';
|
||||
|
||||
if (!ini_get('date.timezone') || !@date_default_timezone_set(ini_get('date.timezone'))) {
|
||||
date_default_timezone_set('UTC');
|
||||
}
|
||||
|
||||
if (defined('ERROR_REPORTING')) {
|
||||
error_reporting(ERROR_REPORTING);
|
||||
}
|
0
app/db/.gitignore
vendored
Normal file
0
app/db/.gitignore
vendored
Normal file
2
app/db/.htaccess
Normal file
2
app/db/.htaccess
Normal file
|
@ -0,0 +1,2 @@
|
|||
Order deny,allow
|
||||
Deny from all
|
BIN
app/db/poche.sqlite
Executable file
BIN
app/db/poche.sqlite
Executable file
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue