Home
last modified time | relevance | path

Searched refs:pages (Results 51 – 75 of 858) sorted by last modified time

12345678910>>...35

/plugin/aichat/lang/en/
H A Dprompt_noanswer.txt
/plugin/tagging/
H A Dhelper.php415 * Get all pages with tags and their tags
588 * Delete taggings of nonexistent pages
632 * Search for tagged pages
658 * Syntax to allow users to manage tags on regular pages, respects ACLs
677 * HTML list of tagged pages
689 $pages = $db->res2arr($res);
691 if ($pages) {
693 foreach ($pages as $page) {
749 * Tag pages dialog
1004 * Returns taggings of nonexistent pages
[all...]
H A Dplugin.info.txt6 desc Allow users to annotate pages with tags, search for tags and show useful tag clouds.
H A DREADME3 Allows logged in users to add tags to pages. Tags are looked up in
/plugin/tagging/lang/en/
H A Dintro.txt3 This page lists all the used tags in your wiki. You can filter and sort the list and use the actions to rename or delete a tag. Click a tag to see a list of pages where it used.
H A Dclean.txt3 Here you can delete all invalid taggings (tags pointing to nonexistent pages). No valid taggings will be removed.
/plugin/tagging/lang/fr/
H A Dclean.txt3 Ici, vous pouvez supprimer tous les étiquetages invalides (les étiquettes pointant vers des pages inexistantes). Cela ne supprimera aucun étiquetage valide.
H A Dintro.txt3 Cette page liste toutes les étiquettes utilisées dans votre wiki. Vous pouvez filtrer et trier la liste et utiliser des actions pour renommer ou supprimer une étiquette. Cliquez sur une étiquette pour visualiser la liste des pages où elle est utilisée.
/plugin/tagging/action/
H A Dmain.php105 $pages = $hlp->findItems($filter, 'pid', 1);
106 if (!count($pages)) {
110 $pages = array_keys($pages);
111 $id = array_pop($pages);
228 // update elasticsearch state for all relevant pages
249 // update elasticsearch state for all relevant pages
259 * Tag dialog HTML: links to all pages with a given tag
H A Dsearch.php188 // search for tagged pages
189 $pages = $hlp->searchPages($this->tagFilter);
190 if (!$pages) {
197 $event->result = $pages;
201 $tagged = array_keys($pages);
/plugin/confmanager/lang/en/
H A Dentities.txt13 …ntity system can also be used to insert more complex constructs into your pages. This includes HTM…
/plugin/confmanager/lang/fr/
H A Dentities.txt12 … système d'entités pour insérer des constructions plus complexes dans les pages. Et même de l'HTML…
H A Dwordblock.txt3 Ce mécanisme empêche l'enregistrement de pages contenant un mot placé en liste noire.
/plugin/api/
H A Daction.php86 foreach ($allPages as $key => $pages) {
88 $pageData['id'] = $pages['id'];
89 $pageData['title'] = tpl_pagetitle($pages['id'], true);
H A DREADME.md15 ### pages subsection
16 `pages` returns a list of all pages
19 http://localhost:81/lib/exe/ajax.php?call=api&fn=pages&limit=10
22 …* `limit` : the max number of pages (known also under [pagename](https://www.dokuwiki.org/pagename…
27 `page` returns much more information on a page than [pages](#pages)
/plugin/orphanswanted/
H A Dhelper.php32 $pages = array();
34 $pages[$pageid] = array("exists"=>page_exists($pageid), "links"=>0);
44 $pages[$name]['exists'] = $exists;
45 … $pages[$name]['links'] = isset($pages[$name]['links']) ? $pages[$name]['links'] + 1 : 1;
50 return $pages;
/plugin/bibtex4dw/
H A DCHANGELOG.md32 * Optionally, the plugin can use an SQLite db (using the sqlite plugin). This speeds up things, particulary with large bibliography databases, and reduces latencies when rendering pages with references.
H A DREADME.md10 Being familiar with using BibTeX both, as a bibliographic (text) database format and as an engine to format references in documents written using LaTeX, a plugin for DokuWiki understanding the BibTeX format and allowing to reference literature from within wiki pages seems an obvious choice.
/plugin/tag/_test/
H A Dtopic_and_tagrefine.test.php65 $pages = $helper->tagRefine([], 'mytag');
66 $this->hasPages([], $pages, 'Refine with empty input array and "mytag" query: ');
70 * Test if the getTopic and the tagRefine function with all pages as input both return the expected pages
78 $pages = $helper->tagRefine($this->all_pages, $query);
79 $this->hasPages($expected, $pages, 'Refine: '.$query.': ');
80 $pages = $helper->getTopic('', '', $query);
81 $this->hasPages($expected, $pages, 'Topic: '.$query.': ');
85 * Makes sure that all pages were found and not more
H A Dtopic_sort.test.php9 private $pages = array( variable in plugin_tag_topic_sorting_test
31 foreach ($this->pages as $page) {
41 $this->assertEquals($this->pages, $this->extract_ids($this->helper->getTopic('', null, 'mytag')));
46 * Extract the id attribute of the supplied pages
48 * @param array $pages The pages that shall be used
49 * @return array The ids of the pages
51 private function extract_ids($pages) { argument
53 foreach ($pages as $page) {
/plugin/tag/
H A Daction.php84 $pages = $helper->getTopic($ns, '', $tag);
87 if(!empty($pages)) {
97 foreach ($pages as $page) {
H A Dhelper.php82 'desc' => 'returns a list of pages tagged with the given keyword',
88 'return' => ['pages' => 'array'],
92 'desc' => 'refines an array of pages with tags',
94 'pages to refine' => 'array',
97 'return' => ['pages' => 'array'],
179 * @param bool $dynamic if the link class shall be changed if no pages with the specified tag exist
207 $pages = $this->getTopic('', 1, $svtag);
208 if (empty($pages)) {
234 * Returns a list of pages with a certain tag; very similar to ft_backlinks()
236 * @param string $ns A namespace to which all pages nee
342 tagRefine($pages, $tagquery) global() argument
[all...]
H A Dplugin.info.txt6 desc tag wiki pages
/plugin/tag/syntax/
H A Dsearchtags.php96 $pages = $helper->getTopic($this->getNS(), '', $tags);
99 // Display a message when no pages were found
100 if (!isset($pages) || !$pages) {
109 foreach ($pages as $page) {
161 // load the tag list - only tags that actually have pages assigned that the current user can access are listed
H A Dtopic.php3 * Tag Plugin, topic component: displays links to all wiki pages with a certain tag
10 * Topic syntax, displays links to all wiki pages with a certain tag
100 $pages = $helper->getTopic($ns, '', $tag);
103 if (!isset($pages) || !$pages) return true; // nothing to display
130 // Sort pages by pagename if required by flags
135 usort($pages, $fnc);
136 // rsort is true - revserse sort the pages
138 krsort($pages);
142 foreach ($pages a
[all...]

12345678910>>...35