Home
last modified time | relevance | path

Searched full:pages (Results 1 – 25 of 105) sorted by relevance

12345

/dokuwiki/_test/tests/inc/
H A Dpageutils_wikiFN.test.php7 … $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 Dintro.txt3pages après une attaque de spam. Pour trouver la liste des pages vandalisées, entrez un motif de r…
H A Dlang.php23 $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 Dwantedpages.php14 * 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 Dindexer.php28 '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 DApiCore.php47 '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 Dbacklinks.txt1 ====== Pages pointant sur la page en cours ======
3 Ceci est la liste des pages qui semblent pointer sur la page actuelle.
H A Dinstall.html7 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 Drecent.txt3 Voici la liste des pages modifiées récemment :
H A Dindex.txt3 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 Dintro.txt3 … attack. To find a list of spammy pages first enter a search string (eg. a spam URL), then confirm…
H A Dlang.php12 $lang['filter'] = 'Search spammy pages';
13 $lang['revert'] = 'Revert selected pages';
/dokuwiki/lib/plugins/acl/lang/en/
H A Dhelp.txt3 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 Dhelp.txt3 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 Dinstall.html3 …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 Dsubscr_list.txt3 Pages in the namespace @PAGE@ of the @TITLE@ wiki changed.
4 Here are the changed pages:
H A Drecent.txt3 The following pages were changed recently:
H A Dbacklinks.txt3 This is a list of pages that seem to link back to the current page.
H A Dindex.txt3 This is a sitemap over all available pages ordered by [[doku>namespaces|namespaces]].
/dokuwiki/inc/
H A Dfulltext.php76 // 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 Dlang.php7 $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 Dlang.php13 $lang['__existing__'] = 'Couleur des liens pour les pages existantes';
14 $lang['__missing__'] = 'Couleur des liens pour les pages inexistantes';
/dokuwiki/inc/TreeBuilder/
H A DPageTreeBuilder.php14 * 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 DMapper.php24 * 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 DBacklink.php11 * Shows which pages link to the current page

12345