/dokuwiki/_test/tests/inc/ |
H A D | pageutils_wikiFN.test.php | 7 … $this->assertEquals(wikiFN('wiki:',null,false), TestUtils::w2u(DOKU_TMP_DATA.'pages/wiki/.txt')); 8 … $this->assertEquals(wikiFN('wiki:',null,true), TestUtils::w2u(DOKU_TMP_DATA.'pages/wiki.txt')); 12 … $this->assertEquals(wikiFN('wiki:',null,true), TestUtils::w2u(DOKU_TMP_DATA.'pages/wiki.txt')); 13 … $this->assertEquals(wikiFN('wiki:',null,false), TestUtils::w2u(DOKU_TMP_DATA.'pages/wiki/.txt'));
|
/dokuwiki/lib/plugins/revert/lang/fr/ |
H A D | intro.txt | 3 …pages après une attaque de spam. Pour trouver la liste des pages vandalisées, entrez un motif de r…
|
H A D | lang.php | 23 $lang['filter'] = 'Trouver les pages spammées '; 27 …asse le délai d\'exécution avant de finir, vous devrez restaurer de plus petits groupes de pages.';
|
/dokuwiki/bin/ |
H A D | wantedpages.php | 14 * Find wanted pages 36 'Outputs a list of wanted pages (pages that do not exist yet) and their origin pages ' . 37 ' (the pages that are linkin to these missing pages).' 123 * Collects recursively the pages in a namespace 141 $pages = []; 148 $pages = array_merge($pages, $this->getPages($dir . '/' . $entry)); 151 $pages[] = $page; 155 return $pages; 173 [$mid] = explode('#', $mid); //record pages without hashes
|
H A D | indexer.php | 28 'Updates the searchindex by indexing all new or changed pages. When the -c option is ' . 69 $this->quietecho("Searching pages... "); 71 $this->quietecho(count($data) . " pages found.\n");
|
/dokuwiki/inc/Remote/ |
H A D | ApiCore.php | 47 'core.listPages' => new ApiCall([$this, 'listPages'], 'pages'), 48 'core.searchPages' => new ApiCall([$this, 'searchPages'], 'pages'), 49 'core.getRecentPageChanges' => new ApiCall([$this, 'getRecentPageChanges'], 'pages'), 51 'core.getPage' => (new ApiCall([$this, 'getPage'], 'pages')), 52 'core.getPageHTML' => (new ApiCall([$this, 'getPageHTML'], 'pages')), 53 'core.getPageInfo' => (new ApiCall([$this, 'getPageInfo'], 'pages')), 54 'core.getPageHistory' => new ApiCall([$this, 'getPageHistory'], 'pages'), 55 'core.getPageLinks' => new ApiCall([$this, 'getPageLinks'], 'pages'), 56 'core.getPageBackLinks' => new ApiCall([$this, 'getPageBackLinks'], 'pages'), 58 'core.lockPages' => new ApiCall([$this, 'lockPages'], 'pages'), [all …]
|
/dokuwiki/inc/lang/fr/ |
H A D | backlinks.txt | 1 ====== Pages pointant sur la page en cours ====== 3 Ceci est la liste des pages qui semblent pointer sur la page actuelle.
|
H A D | install.html | 7 pages du wiki et les autres informations associées à ces pages (par 22 les utilisateurs, gérer les accès aux pages du wiki et modifier les
|
H A D | recent.txt | 3 Voici la liste des pages modifiées récemment :
|
H A D | index.txt | 3 Voici un plan du site de toutes les pages disponibles, triées par [[doku>fr:namespaces|catégories]].
|
/dokuwiki/lib/plugins/revert/lang/en/ |
H A D | intro.txt | 3 … attack. To find a list of spammy pages first enter a search string (eg. a spam URL), then confirm…
|
H A D | lang.php | 12 $lang['filter'] = 'Search spammy pages'; 13 $lang['revert'] = 'Revert selected pages';
|
/dokuwiki/lib/plugins/acl/lang/en/ |
H A D | help.txt | 3 On this page you can add and remove permissions for namespaces and pages in your wiki. 4 * The left pane displays all available namespaces and pages.
|
/dokuwiki/lib/plugins/acl/lang/fr/ |
H A D | help.txt | 3 Cette page vous permet d'ajouter ou de supprimer des autorisations pour les catégories et les pages… 5 * Le panneau de gauche liste toutes les catégories et les pages disponibles.
|
/dokuwiki/inc/lang/en/ |
H A D | install.html | 3 …Wiki uses ordinary files for the storage of wiki pages and other information associated with those… 5 …dmin menu for installing plugins, managing users, managing access to wiki pages and alteration of …
|
H A D | subscr_list.txt | 3 Pages in the namespace @PAGE@ of the @TITLE@ wiki changed. 4 Here are the changed pages:
|
H A D | recent.txt | 3 The following pages were changed recently:
|
H A D | backlinks.txt | 3 This is a list of pages that seem to link back to the current page.
|
H A D | index.txt | 3 This is a sitemap over all available pages ordered by [[doku>namespaces|namespaces]].
|
/dokuwiki/inc/ |
H A D | fulltext.php | 76 // get all pages in this dokuwiki site (!: includes nonexistent pages) 98 // the end($stack) always points at the pages that contain 100 $pages = $stack ? end($stack) : []; 102 foreach (array_keys($pages) as $id) { 134 $pages = array_splice($stack, -2); 135 if ($pages === []) { 138 $stack[] = ft_resultCombine($pages); 141 $pages = array_splice($stack, -2); 142 if ($pages === []) { 145 $stack[] = ft_resultUnite($pages); [all …]
|
/dokuwiki/lib/tpl/dokuwiki/lang/en/ |
H A D | lang.php | 7 $lang['__existing__'] = 'The color for links to existing pages'; 8 $lang['__missing__'] = 'The color for links to non-existing pages';
|
/dokuwiki/lib/tpl/dokuwiki/lang/fr/ |
H A D | lang.php | 13 $lang['__existing__'] = 'Couleur des liens pour les pages existantes'; 14 $lang['__missing__'] = 'Couleur des liens pour les pages inexistantes';
|
/dokuwiki/inc/TreeBuilder/ |
H A D | PageTreeBuilder.php | 14 * A tree builder for wiki pages and namespaces 17 * of wiki pages and namespaces. 24 /** @var array Used to remember already seen start pages */ 33 /** @var int Do not return pages */ 36 /** @var int Do not filter out hidden pages */ 108 // Process pages (files) 165 * Process pages (files) and add them to the hierarchy 181 // Skip already shown start pages
|
/dokuwiki/inc/Sitemap/ |
H A D | Mapper.php | 24 * Builds a Google Sitemap of all public pages known to the indexer 59 $pages = idx_get_indexer()->getPages(); 60 Logger::debug('Sitemapper::generate(): creating sitemap using ' . count($pages) . ' pages'); 64 foreach ($pages as $id) {
|
/dokuwiki/inc/Action/ |
H A D | Backlink.php | 11 * Shows which pages link to the current page
|