Home
last modified time | relevance | path

Searched full:cache (Results 26 – 50 of 2069) sorted by path

12345678910>>...83

/dokuwiki/inc/
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.
H A Dinit.php291 'cachedir' => 'cache',
317 // hardcoded changelog because it is now a cache that lives in meta
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 Dpageutils.php130 $cache = & $cache_cleanid;
132 // check if it's already in the memory cache
133 if (!$ascii && isset($cache[(string)$raw_id])) {
134 return $cache[(string)$raw_id];
166 if (!$ascii) $cache[(string)$raw_id] = $id;
337 $cache = & $cache_wikifn;
344 if (isset($cache[$id]) && isset($cache[$id][$rev])) {
345 return $cache[$id][$rev];
365 if (!isset($cache[
[all...]
H A Dparserutils.php12 use dokuwiki\Cache\CacheInstructions;
13 use dokuwiki\Cache\CacheRenderer;
46 * Render metadata using the metadata cache logic. The P_GET_METADATA_RENDER_LIMIT
50 * the simple cache mode that metadata needs to be rendered for all pages at once
59 * limited. This can be combined with the simple cache using
151 $cache = new CacheRenderer($id, $file, $format);
152 if ($cache->useCache()) {
153 $parsed = $cache->retrieveCache(false);
155 $parsed .= "\n<!-- cachefile {$cache->cache} use
455 p_read_metadata($id, $cache = false) global() argument
[all...]
H A Dtemplate.php1207 $url = ml($IMG, ['cache' => $INPUT->str('cache'), 'rev' => $REV], true, '&');
1208 $src = ml($IMG, ['cache' => $INPUT->str('cache'), 'rev' => $REV, 'w' => $w, 'h' => $h], true, '&');
/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,
H A Dmetadata.php605 * @param string $cache cache|recache|nocache
614 $cache = null,
632 * @param string $cache cache|recache|nocache
641 $cache = null,
604 internalmedia($src, $title = null, $align = null, $width = null, $height = null, $cache = null, $linking = null) global() argument
625 externalmedia($src, $title = null, $align = null, $width = null, $height = null, $cache = null, $linking = null) global() argument
H A Drenderer.php34 'cache' => true, // may the rendered result cached?
67 $this->info['cache'] = true;
98 $this->info['cache'] = false;
671 * @param string $cache cache|recache|nocache
680 $cache = null,
693 * @param string $cache cache|recache|nocache
702 $cache = null,
715 * @param string $cache cach
606 internalmedia($src, $title = null, $align = null, $width = null, $height = null, $cache = null, $linking = null) global() argument
621 externalmedia($src, $title = null, $align = null, $width = null, $height = null, $cache = null, $linking = null) global() argument
635 internalmedialink($src, $title = null, $align = null, $width = null, $height = null, $cache = null) global() argument
649 externalmedialink($src, $title = null, $align = null, $width = null, $height = null, $cache = null) global() argument
[all...]
H A Dxhtml.php1179 * @param string $cache cache|recache|nocache
1190 $cache = null,
1203 $link = $this->_getMediaLinkConf($src, $title, $align, $width, $height, $cache, $render);
1211 'cache' => $cache,
1227 'cache' => $cache,
1264 * @param string $cache cache|recach
1119 internalmedia($src, $title = null, $align = null, $width = null, $height = null, $cache = null, $linking = null, $return = false) global() argument
1192 externalmedia($src, $title = null, $align = null, $width = null, $height = null, $cache = null, $linking = null, $return = false) global() argument
1570 _media($src, $title = null, $align = null, $width = null, $height = null, $cache = null, $render = true) global() argument
1764 _getMediaLinkConf($src, $title, $align, $width, $height, $cache, $render) global() argument
[all...]
/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...]
H A Dfetch.php29 $CACHE = calc_cache($INPUT->str('cache'));
43 // check for permissions, preconditions and cache external files
53 'cache' => $CACHE,
118 $data['cache'],
27 $CACHE = calc_cache($INPUT->str('cache')); global() variable
H A Djquery.php3 use dokuwiki\Cache\Cache; alias
21 * uses cache or fills it
25 $cache = new Cache('jquery', '.js');
33 // check cache age & handle conditional request
34 // This may exit if a cache can be used
35 $cache_ok = $cache->useCache(['files' => $cache_files]);
36 http_cached($cache->cache,
[all...]
H A Djs.php11 use dokuwiki\Cache\Cache;
87 $cache = new Cache('scripts' . $_SERVER['HTTP_HOST'] . $_SERVER['SERVER_PORT'] . md5(serialize($files)), '.js');
88 $cache->setEvent('JS_CACHE_USE');
93 // check cache age & handle conditional request
94 // This may exit if a cache can be used
95 $cache_ok = $cache->useCache(['files' => $cache_files]);
96 http_cached($cache->cache,
9 use dokuwiki\Cache\Cache; global() alias
[all...]
/dokuwiki/lib/plugins/authad/
H A Dauth.php63 * @var array user listing cache
/dokuwiki/lib/plugins/authldap/
H A Dauth.php23 /* @var array $users User data cache */
/dokuwiki/lib/plugins/authpdo/
H A Dauth.php602 * Remove all entries from the group cache
/dokuwiki/lib/plugins/authplain/
H A Dauth.php17 /** @var array user cache */
/dokuwiki/lib/plugins/config/lang/cs/
H A Dlang.php123 $lang['cachetime'] = 'Maximální životnost cache (v sekundách)';
236 $lang['readdircache'] = 'Maximální stáří readdir cache (sec)';
/dokuwiki/lib/plugins/config/lang/da/
H A Dlang.php107 $lang['cachetime'] = 'Længste levetid for cache (sek)';
118 $lang['fetchsize'] = 'Største antal (bytes) fetch.php må hente udefra, til eksempelvis cache og størrelsesændring af eksterne billeder';
/dokuwiki/lib/plugins/config/lang/de-informal/
H A Dlang.php166 $lang['jquerycdn'] = 'Sollen die jQuery und jQuery UI Skriptdateien von einem CDN geladen werden? Das verursacht zusätzliche HTTP Anfragen, aber die Dateien werden möglicherweise schneller geladen und Nutzer haben sie vielleicht bereits im Cache.';
/dokuwiki/lib/plugins/config/lang/de/
H A Dlang.php182 $lang['jquerycdn'] = 'Sollen jQuery und jQuery UI Skriptdateien von einem CDN (Content Delivery Network) geladen werden? Dadurch entstehen zusätzliche HTTP-Anfragen, aber die Daten werden voraussichtlich schneller geladen und eventuell sind sie auch schon beim Benutzer im Cache.';

12345678910>>...83