1# ---+ Extensions
2# ---++ UpdatesPlugin
3# This is the configuration used by the <b>UpdatesPlugin</b>.
4
5# **URL**
6# The source URL where to get the latest version of extensions. The URL must point to a page
7# that generates a list in the same format as the list generated by
8# http://foswiki.org/Extensions/UpdatesPluginReport
9$Foswiki::cfg{Plugins}{UpdatesPlugin}{ReportUrl} = "https://foswiki.org/Extensions/UpdatesPluginReport";
10
11# **NUMBER**
12# Number of seconds to cache the update report for extensions. Default is 24 hours.
13$Foswiki::cfg{Plugins}{UpdatesPlugin}{CacheTimeout} = 86400;
14
15# **STRING**
16# A list of extensions that shall not be checked for updates on foswiki.org. This setting can be used
17# to prevent plugins not hosted on foswiki.org from being reported to the outside world.
18$Foswiki::cfg{Plugins}{UpdatesPlugin}{ExcludeExtensions} = '';
19
20# **URLPATH CHECK='emptyok'**
21# The URL of the 'configure' program used to install extensions on your Foswiki. If not configured,
22# it uses the default configure script URL.
23$Foswiki::cfg{Plugins}{UpdatesPlugin}{ConfigureUrl} = '';
24
251;
26