]> git.wh0rd.org - tt-rss.git/blobdiff - include/functions.php
No more "tunables.php" defaults dumped into "functions.php"
[tt-rss.git] / include / functions.php
index d99f6a64b074ae14cfbfd859402c086db7b655c1..ee575568ac1a6f9ed846bb6123db31d092debc4c 100644 (file)
         */
        function define_default($name, $value) {
                // Note: performence freaks should define everything in 
-               // tunables.php in config.php becasue if will make defined() 
-               // run much faster, see 'tris+php at tfconsulting dot com dot 
-               // au' comment here: 
+               // config.php becasue if will make defined() run much faster, 
+               // see comment by 'tris+php at tfconsulting dot com dot au' 
+               // here: 
                // http://www.php.net/manual/en/function.defined.php#89886
                defined($name) or define($name, $value);
        }
 
-       // Require tunables.php to define tunable constants (That may have 
-       // already been denied in config.php)
-       require_once 'tunables.php';
+       ///// Some defaults that you can override in config.php //////
+
+       define_default('FEED_FETCH_TIMEOUT', 45);
+       // How may seconds to wait for response when requesting feed from a site
+       define_default('FEED_FETCH_NO_CACHE_TIMEOUT', 15);
+       // How may seconds to wait for response when requesting feed from a
+       // site when that feed wasn't cached before
+       define_default('FILE_FETCH_TIMEOUT', 45);
+       // Default timeout when fetching files from remote sites
+       define_default('FILE_FETCH_CONNECT_TIMEOUT', 15);
+       // How many seconds to wait for initial response from website when
+       // fetching files from remote sites
 
        if (DB_TYPE == "pgsql") {
                define('SUBSTRING_FOR_DATE', 'SUBSTRING_FOR_DATE');