Home
last modified time | relevance | path

Searched refs:sitemap (Results 1 – 5 of 5) sorted by last modified time

/dokuwiki/lib/tpl/dokuwiki/css/
H A D_toc.css3 * sitemap (?do=index) and backlinks (?do=backlink).
73 /* sitemap (and backlinks)
/dokuwiki/inc/Sitemap/
H A DMapper.php17 * A class for building sitemaps and pinging search engines with the sitemap URL.
26 * The map is placed in the cache directory named sitemap.xml.gz - This
39 if ($conf['sitemap'] < 1 || !is_numeric($conf['sitemap'])) return false;
41 $sitemap = Mapper::getFilePath();
43 if (file_exists($sitemap)) {
44 if (!is_writable($sitemap)) return false;
45 } elseif (!is_writable(dirname($sitemap))) {
50 @filesize($sitemap) &&
51 @filemtime($sitemap) > (tim
[all...]
/dokuwiki/inc/Ui/
H A DIndex.php37 echo $this->sitemap();
41 * Build html of sitemap, unordered list of pages under the namespace
45 public function sitemap() function in dokuwiki\\Ui\\Index
79 $nofollow = ($ID != $conf['start'] || $conf['sitemap']) ? 'rel="nofollow"' : '';
/dokuwiki/inc/lang/en/
H A Dindex.txt3 This is a sitemap over all available pages ordered by [[doku>namespaces|namespaces]].
/dokuwiki/inc/Action/
H A DSitemap.php12 * Generate an XML sitemap for search engines. Do not confuse with Index
25 * Handle sitemap delivery
35 if ($conf['sitemap'] < 1 || !is_numeric($conf['sitemap'])) {
39 $sitemap = Mapper::getFilePath();
46 // Check if sitemap file exists, otherwise create it
47 if (!is_readable($sitemap)) {
51 if (is_readable($sitemap)) {
54 header('Content-Disposition: attachment; filename=' . PhpString::basename($sitemap));
56 http_conditionalRequest(filemtime($sitemap));
[all...]