]> git.wh0rd.org Git - tt-rss.git/commitdiff
DAEMON_REFRESH_ONLY makes a lot more sense as a global option
authorAndrew Dolgov <fox@bah.spb.su>
Wed, 23 Nov 2005 12:26:29 +0000 (13:26 +0100)
committerAndrew Dolgov <fox@bah.spb.su>
Wed, 23 Nov 2005 12:26:29 +0000 (13:26 +0100)
config.php-dist
functions.php
schema/ttrss_schema_mysql.sql
schema/ttrss_schema_pgsql.sql

index 6564da6689e8f86696b6b7e59a65c94f73b107cc..0eb796715250584255d47200823515b038411b32 100644 (file)
        define(SINGLE_USER_MODE, true);
        // Operate in single user mode, disables all functionality related to
        // 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"
+       //
+
 ?>
index 2085d6067ad3e164239acc43e8db3f5a9c7a43ba..410c76eac6d40a5ce79f41ea3cacb71e0fe7bb2a 100644 (file)
                        purge_old_posts($link);
                }
 
-               if (get_pref($link, 'DAEMON_REFRESH_ONLY', $user_id)) {
-                       if (!$_GET["daemon"]) {
-                               return;
-                       }
+               if (DAEMON_REFRESH_ONLY && !$_GET["daemon"]) {
+                       return;                 
                }
 
                db_query($link, "BEGIN");
index b1d57585efe05fa49b4121bda1bd63880604f288..44cfbf571a9ba566ff75aebbef821feeccbb4cf1 100644 (file)
@@ -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,
    '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,
    'Display separate dropbox for feedlist actions, if disabled these actions are available in global actions menu.');
 
index 85c92689af3fa69587cbf522a3ae9d0e8312adc9..cd1ea5506e5656b070958ca879919765bd65b511 100644 (file)
@@ -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,
        '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,
        'Display separate dropbox for feedlist actions, if disabled these actions are available in global actions menu.');