Home
last modified time | relevance | path

Searched refs:cache (Results 576 – 600 of 671) sorted by path

1...<<21222324252627

/plugin/tagfilter/syntax/
H A Dfilter.php175 if ($flags['cache']) {
176 $depends['age'] = $flags['cache'];
177 } else if ($flags['cache'] === false) {
178 //build cache dependencies TODO check if this bruteforce method (adds just all pages of namespace as dependency) is proportional
191 //cache to store tagfilter options, matched pages and prepared data
204 // cache to store html per user
209 //purge cache if pages does not exist anymore
219 if (!$htmlPerUserCache->useCache(['files' => [$filterDataCache->cache]])) {
/plugin/templateconfhelper/
H A DREADME80 change cache rules to see changes on cascade path.
/plugin/templateconfhelper/exe/
H A Dcss.php62 …$cache = new cache('styles'.$_SERVER['HTTP_HOST'].$_SERVER['SERVER_PORT'].DOKU_BASE.$cache.$mediat…
121 http_cached($cache->cache,
122 $cache->useCache(array('files' => $cache_files)));
178 http_cached_finish($cache->cache, $css);
/plugin/text/
H A Drenderer.php471 $height=NULL, $cache=NULL, $linking=NULL, $return=false) { argument
476 $height=NULL, $cache=NULL, $linking=NULL, $return=false) { argument
/plugin/tiledblog/
H A Dscript.js16 cache: false,
/plugin/timetrack/
H A Daction.php47 $cache = $event->data;
48 if($cache->mode !== 'xhtml') return;
49 …if(p_get_metadata($cache->page,'plugin_timetrack update_time') < $this->tthlp->getMaxUpdateTime($c…
/plugin/tindexmenu/
H A Daction.php94 $cache = &$event->data;
96 if (!isset($cache->page)) return;
98 if ($cache->mode != "xhtml") return;
113 $cache->key .= "#".$newkey;
114 $cache->cache = getCacheName($cache->key, $cache->ext);
118 if (@filemtime($cache->cache) < @filemtime($conf['cachedir'].'/purgefile')) {
/plugin/tline/timeline_ajax/
H A Dsimile-ajax-bundle.js174 },cache:{},data:function(elem,name,data){elem=elem==window?windowData:elem;
177 }if(name&&!jQuery.cache[id]){jQuery.cache[id]={};
178 }if(data!==undefined){jQuery.cache[id][name]=data;
179 }return name?jQuery.cache[id][name]:id;
182 if(name){if(jQuery.cache[id]){delete jQuery.cache[id][name];
184 for(name in jQuery.cache[id]){break;
188 }}delete jQuery.cache[id];
/plugin/toctweak/action/
H A Drendertoc.php88 $cache =& $event->data;
90 if (!$cache->page) return;
92 switch ($cache->mode) {
98 $depends = p_get_metadata($cache->page, 'relation toctweak');
100 $cache->depends['files'] = ($cache->depends['files'])
101 ? array_merge($cache->depends['files'], $depends)
/plugin/tumblr/
H A Dsyntax.php90 $renderer->info['cache'] = false;
/plugin/tuxquote/
H A Dquotes.txt3529 There's no such thing as a simple cache bug. <BR> -- Rob Pike
4183 There are only two hard things in Computer Science: cache invalidation, naming things, and off-by-o…
/plugin/twitter/
H A DREADME.md3 …sers to put tweets and searches from twitter on a page. It uses the media cache thereby bypassing …
H A Daction.php28 $cache =& $event->data;
31 if (!isset($cache->page)) {
34 if (!isset($cache->mode) || !in_array($cache->mode, array('i', 'metadata'))) {
38 $max_age = $this->_cache_maxage($cache->page);
52 …$cache->depends['age'] = !empty($cache->depends['age']) ? min($cache->depends['age'], $max_age) : …
/plugin/txt2tags/
H A Ddeploy.sh3 rm -fr ../../../data/cache/*
/plugin/upload/
H A Daction.php49 $event->data->cache = getCacheName($event->data->key, $event->data->ext);
H A Dsyntax.php78 // $renderer->info['cache'] = false;
/plugin/vertical/
H A DREADME.md11 After installing the plugin you should make sure that your DokuWiki cache is updated. This can easi…
/plugin/visio/
H A Dsyntax.php82 …$renderer->doc .= DOKU_URL."lib/exe/fetch.php?id=".$data['file']."&cache=cache&media=".$data['file…
/plugin/visrep/
H A Dimg.php13 $cache = $plugin->_imgfile($_REQUEST); variable
15 if($cache) {
21 echo io_readFile($cache, false);
H A Dsyntax.php143 $cache = $this->_cachename($data, 'png');
145 if (!file_exists($cache)) {
147 $ok = $this->_run($data, $in, $cache);
158 if(!file_exists($cache)) return false;
159 return $cache;
/plugin/watchcycle/
H A Daction.php270 // check cache
271 $cachedGroups = new cache('retrievedGroups', '.txt');
352 * clean the cache every 24 hours
/plugin/webcode/
H A DREADME.md72 * Added the possibility to cache a code block
/plugin/webcode/_test/data/pages/
H A Ddisplay.txt4 This is possible to cache code block with this syntax:
H A Dwebcode.txt6 * [[display]]: This is possible to cache an individual code block
/plugin/webcode/_test/
H A Ddokuwiki.test.php44 $cache = new cache($this->cacheKey, SELF::extension);
45 $cache->storeCache(SELF::storedContent);
46 …$this->assertNotNull($cache->cache, "The cache file name must be not NULL. It was (+".$cache->cach…
47 …ssertTrue(strpos($cache->cache,DOKU_INC) !== false, "The cache file path must contains DOKU_INC ("…
55 $cache = new cache($this->cacheKey, SELF::extension);
57 $content = $cache->retrieveCache();

1...<<21222324252627