Home
last modified time | relevance | path

Searched full:cache (Results 126 – 150 of 2069) sorted by last modified time

12345678910>>...83

/dokuwiki/lib/plugins/config/lang/eu/
H A Dlang.php177 $lang['readdircache'] = 'Aintzintasun maximoa readdir cache-rentzat (seg)';
/dokuwiki/vendor/geshi/geshi/src/geshi/
H A Dbash.php99 'apmsleep', 'apropos', 'apt-cache', 'apt-cdrom', 'apt-config',
114 'apt-cache add', 'apt-cache depends', 'apt-cache dotty',
115 'apt-cache dump', 'apt-cache dumpavail', 'apt-cache gencaches',
116 'apt-cache pkgnames', 'apt-cache policy', 'apt-cache rdepend
[all...]
H A Dcmake.php91 'AND', 'APPEND', 'ASCII', 'BOOL', 'CACHE', 'COMMAND', 'COMMENT',
H A Ddcl.php68 'SET CACHE', 'SET CARD_READER', 'SET CLUSTER', 'SET COMMAND', 'SET CONTROL',
/dokuwiki/lib/plugins/authplain/
H A Dauth.php17 /** @var array user cache */
/dokuwiki/lib/plugins/config/lang/it/
H A Dlang.php113 $lang['cachetime'] = 'Durata della cache (sec)';
172 $lang['jquerycdn'] = 'Vuoi che gli script jQuery e jQuery UI siano caricati da una CDN? Questo richiederà richieste HTTP aggiuntive ma i file potrebbero caricarsi più velocemente e gli utenti potrebbero averli già in cache.';
224 $lang['readdircache'] = 'Tempo massimo per le readdir cache (sec)';
/dokuwiki/inc/
H A Dload.php48 'cache' => 'cache.php',
49 'cache_parser' => 'cache.php',
50 'cache_instructions' => 'cache.php',
51 'cache_renderer' => 'cache.php',
H A Dmedia.php11 use dokuwiki\Cache\CacheImageMod;
1795 $cache = new CacheImageMod($file, $w, $h, $ext, $crop);
1796 if (!$cache->useCache()) {
1801 ->save($cache->cache, $ext);
1802 if ($conf['fperm']) @chmod($cache->cache, $conf['fperm']);
1809 return $cache->cache;
1881 * @param int $cache cachetim
1806 media_get_from_URL($url, $ext, $cache) global() argument
[all...]
H A Dfetch.functions.php14 * The $cache parameter influences how long files may be kept in caches, the $public parameter
15 * influences if this caching may happen in public proxis or in the browser cache only FS#2734
23 * @param int $cache remaining cache time in seconds (-1 for $conf['cache'], 0 for no-cache)
32 function sendFile($file, $mime, $dl, $cache, $public = false, $orig = null, $csp = [])
41 // calculate cache times
42 if ($cache == -1) {
45 } elseif ($cache >
28 sendFile($file, $mime, $dl, $cache, $public = false, $orig = null, $csp = []) global() argument
194 calc_cache($cache) global() argument
[all...]
H A Dhttputils.php17 * @param int $timestamp lastmodified time of the cache file
214 * HTTP headers. If a useable cache is present, it is passed to the web server
217 * @param string $cache cache file name
218 * @param bool $cache_ok if cache can be used
220 function http_cached($cache, $cache_ok)
224 // check cache age & handle conditional request
226 header('Cache-Control: public, max-age=31536000');
229 http_conditionalRequest(filemtime($cache));
230 if ($conf['allowdebug']) header("X-CacheUsed: $cache");
215 http_cached($cache, $cache_ok) global() argument
[all...]
H A Dindexer.php271 * Read the index directory or a cache file and returns
281 // testing what we have to do, create a cache file or not.
/dokuwiki/inc/parser/
H A Dhandler.php927 [$p['src'], $p['title'], $p['align'], $p['width'], $p['height'], $p['cache'], $p['linking']],
1133 $cache = $cachemode[1];
1135 $cache = 'cache';
1152 'cache' => $cache,
/dokuwiki/
H A Dinstall.php469 @touch(DOKU_INC . 'data/cache/autosubmit.txt');
575 'cache' => DOKU_INC . 'data/cache',
/dokuwiki/lib/exe/
H A Dcss.php12 use dokuwiki\Cache\Cache;
60 // cache influencers
114 $cache = new Cache(
124 $cache->setEvent('CSS_CACHE_USE');
126 // check cache age & handle conditional request
127 // This may exit if a cache can be used
128 $cache_ok = $cache->useCache(['files' => $cache_files]);
129 http_cached($cache
9 use dokuwiki\Cache\Cache; global() alias
[all...]
/dokuwiki/inc/Cache/
H A DCache.php3 namespace dokuwiki\Cache;
11 class Cache class
16 public $ext = ''; // file ext for cache data, secondary identifier for this item
17 public $cache = ''; // cache file name variable in dokuwiki\\Cache\\Cache
18 public $depends = []; // array containing cache dependency information,
19 // used by makeDefaultCacheDecision to determine cache validity
27 protected $_nocache = false; // if set to true, cache will not be used or stored
38 $this->cache = getCacheName($key, $ext);
64 * public method to determine whether the cache ca
[all...]
H A DCacheImageMod.php3 namespace dokuwiki\Cache;
8 class CacheImageMod extends Cache
H A DCacheInstructions.php3 namespace dokuwiki\Cache;
12 * @param string $file source file for cache
23 * @return array cache contents
27 $contents = io_readFile($this->cache, false);
32 * cache $instructions
43 return io_saveFile($this->cache, serialize($instructions));
H A DCacheParser.php3 namespace dokuwiki\Cache;
8 class CacheParser extends Cache
10 public $file = ''; // source file for cache
17 * @param string $file source file for cache
35 * method contains cache use decision logic
50 // parser cache file dependencies ...
H A DCacheRenderer.php3 namespace dokuwiki\Cache;
11 * method contains cache use decision logic
27 // meta cache older than file it depends on?
32 // check current link existence is consistent with cache version
34 // - if the cache is more recent than the purgefile we know no links can have been updated
62 // default renderer cache file 'age' is dependent on 'cachetime' setting, two special values:
63 // -1 : do not cache (should not be overridden)
64 // 0 : cache never expires (can be overridden) - no need to set depends['age']
73 // renderer cache file dependencies ...
/dokuwiki/inc/ChangeLog/
H A DChangeLog.php19 protected $cache = []; variable in dokuwiki\\ChangeLog\\ChangeLog
31 $this->cache =& $cache_revinfo;
32 if (!isset($this->cache[$id])) {
33 $this->cache[$id] = [];
109 * Parses a changelog line into its components and save revision info to the cache pool
119 $this->cache[$this->id][$info['date']] ??= $info;
160 // check if it's already in the memory cache
161 if (isset($this->cache[$this->id][$rev])) {
162 return $this->cache[$this->id][$rev];
172 // parse and cache changelo
[all...]
H A DMediaChangeLog.php55 if (isset($timestamp)) unset($this->cache[$this->id][$info['date']]);
60 io_saveFile($conf['media_changelog'], $logline, $append = true); //global changelog cache
62 // update cache
65 $this->cache[$this->id][$this->currentRevision] = $info;
H A DPageChangeLog.php55 if (isset($timestamp)) unset($this->cache[$this->id][$info['date']]);
60 io_saveFile($conf['changelog'], $logline, true); //global changelog cache
62 // update cache
65 $this->cache[$this->id][$this->currentRevision] = $info;
/dokuwiki/inc/Debug/
H A DPropertyDeprecationHelper.php39 * E.g. [ '_event' => '\dokuwiki\Cache\Cache' ]
/dokuwiki/inc/Extension/
H A DAuthPlugin.php430 * Check Session Cache validity [implement only where required/possible]
/dokuwiki/inc/File/
H A DMediaFile.php160 * @todo doing this for each file within a namespace is a waste, we need to cache this somehow

12345678910>>...83