DAEMON_REFRESH_ONLY makes a lot more sense as a global option
This commit is contained in:
parent
b83c75451c
commit
30a49c9227
4 changed files with 14 additions and 11 deletions
|
@ -24,4 +24,15 @@
|
||||||
// Operate in single user mode, disables all functionality related to
|
// Operate in single user mode, disables all functionality related to
|
||||||
// multiple users.
|
// multiple users.
|
||||||
|
|
||||||
|
define(DAEMON_REFRESH_ONLY, false);
|
||||||
|
// updates to all feeds will only run when the backend script is
|
||||||
|
// invoked with a "daemon" option on the URI stem. An example wget
|
||||||
|
// command line below will invoke an update every 30 minutes, with
|
||||||
|
// output being sent to /dev/null and the timeout set to 10 minutes
|
||||||
|
// so that wget does not time out. Substitute your site name, tt-rss
|
||||||
|
// path, and username/password as necessary.
|
||||||
|
//
|
||||||
|
// */30 * * * * /usr/bin/wget -O /dev/null -T 600 "http://username:password@www.your-site.xxx/tt-rss/backend.php?op=updateAllFeeds&daemon=1"
|
||||||
|
//
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
|
@ -91,11 +91,9 @@
|
||||||
purge_old_posts($link);
|
purge_old_posts($link);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (get_pref($link, 'DAEMON_REFRESH_ONLY', $user_id)) {
|
if (DAEMON_REFRESH_ONLY && !$_GET["daemon"]) {
|
||||||
if (!$_GET["daemon"]) {
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
db_query($link, "BEGIN");
|
db_query($link, "BEGIN");
|
||||||
|
|
||||||
|
|
|
@ -188,9 +188,6 @@ insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) valu
|
||||||
insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('DEFAULT_ARTICLE_LIMIT', 3, '0', 'Default article limit',2,
|
insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('DEFAULT_ARTICLE_LIMIT', 3, '0', 'Default article limit',2,
|
||||||
'Default limit for articles to display, any custom number you like (0 - disables).');
|
'Default limit for articles to display, any custom number you like (0 - disables).');
|
||||||
|
|
||||||
insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('DAEMON_REFRESH_ONLY', 1, 'false', 'Daemon refresh only', 3,
|
|
||||||
'Updates to all feeds will only run when the backend script is invoked with a "daemon" option on the URI stem.');
|
|
||||||
|
|
||||||
insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('DISPLAY_FEEDLIST_ACTIONS', 1, 'false', 'Display feedlist actions',2,
|
insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('DISPLAY_FEEDLIST_ACTIONS', 1, 'false', 'Display feedlist actions',2,
|
||||||
'Display separate dropbox for feedlist actions, if disabled these actions are available in global actions menu.');
|
'Display separate dropbox for feedlist actions, if disabled these actions are available in global actions menu.');
|
||||||
|
|
||||||
|
|
|
@ -172,9 +172,6 @@ insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) valu
|
||||||
insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('DEFAULT_ARTICLE_LIMIT', 3, '0', 'Default article limit',2,
|
insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('DEFAULT_ARTICLE_LIMIT', 3, '0', 'Default article limit',2,
|
||||||
'Default limit for articles to display, any custom number you like (0 - disables).');
|
'Default limit for articles to display, any custom number you like (0 - disables).');
|
||||||
|
|
||||||
insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('DAEMON_REFRESH_ONLY', 1, 'false', 'Daemon refresh only', 3,
|
|
||||||
'Updates to all feeds will only run when the backend script is invoked with a "daemon" option on the URI stem.');
|
|
||||||
|
|
||||||
insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('DISPLAY_FEEDLIST_ACTIONS', 1, 'false', 'Display feedlist actions',2,
|
insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('DISPLAY_FEEDLIST_ACTIONS', 1, 'false', 'Display feedlist actions',2,
|
||||||
'Display separate dropbox for feedlist actions, if disabled these actions are available in global actions menu.');
|
'Display separate dropbox for feedlist actions, if disabled these actions are available in global actions menu.');
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue