# HG changeset patch # User Glenn Morris # Date 1285295891 25200 # Node ID 4ee5521b7a45ce7889705907e019e259bfc16f6f # Parent eb986ca47c5a919eb61661245340886f1db88a4c * doc/misc/url.texi (Disk Caching): Tweak previous change. diff -r eb986ca47c5a -r 4ee5521b7a45 doc/misc/ChangeLog --- a/doc/misc/ChangeLog Thu Sep 23 19:34:56 2010 -0700 +++ b/doc/misc/ChangeLog Thu Sep 23 19:38:11 2010 -0700 @@ -1,3 +1,7 @@ +2010-09-24 Glenn Morris + + * url.texi (Disk Caching): Tweak previous change. + 2010-09-24 Julien Danjou * url.texi (Disk Caching): Mention url-cache-expire-time, diff -r eb986ca47c5a -r 4ee5521b7a45 doc/misc/url.texi --- a/doc/misc/url.texi Thu Sep 23 19:34:56 2010 -0700 +++ b/doc/misc/url.texi Thu Sep 23 19:38:11 2010 -0700 @@ -740,11 +740,6 @@ @code{url-cache-create-filename-human-readable}. @end defopt -@defopt url-cache-expire-time -This variable defines a default time value to use as expire delay when -checking if an URL has expired with @code{url-cache-expired}. -@end defopt - @defun url-cache-create-filename-using-md5 url Creates a cache file name from @var{url} using MD5 hashing. This is creates entries with very few cache collisions and is fast. @@ -766,16 +761,19 @@ @end defun @defun url-cache-expired -This is a function to decide whether or not a cache entry has expired. -It takes a an URL as it first parameters and a expiration delay in -second paramater. It returns non-@code{nil} if URL is not cached or is -cached for more than the give expiration delay. If the delay is not -used, @var{url-cache-expire-time} is used instead. +This function returns non-nil if a cache entry has expired (or is absent). +The arguments are a URL and optional expiration delay in seconds +(default @var{url-cache-expire-time}). @end defun +@defopt url-cache-expire-time +This variable is the default number of seconds to use for the +expire-time argument of the function @code{url-cache-expired}. +@end defopt + @defun url-fetch-from-cache -This function takes an URL as its first argument and then returns a -buffer containing the data cached for the given URL. +This function takes a URL as its argument and returns a buffer +containing the data cached for that URL. @end defun @c Fixme: never actually used currently?