Home
last modified time | relevance | path

Searched refs:pages (Results 26 – 50 of 858) sorted by last modified time

12345678910>>...35

/plugin/yalist/
H A Ddeleted.files3 _test/data/pages/example.txt
/plugin/spatialhelper/helper/
H A Dindex.php73 * (re-)Generates the spatial index by running through all the pages in the wiki.
82 $pages = [];
83 search($pages, $conf ['datadir'], 'search_allpages', []);
84 foreach ($pages as $page) {
H A Dsearch.php116 // find all the pages in the index that overlap with the adjacent hashes
131 // create associative array of pages + calculate distance
132 $pages = [];
159 $pages [] = ['id' => $id, 'distance' => (int)($line->greatCircleLength()),
165 // sort all the pages/media using distance
167 $pages,
176 'pages' => $pages,
/plugin/spatialhelper/
H A Daction.php110 // $data[3] – rev: The page revision, false for current wiki pages.
132 * Add a new SitemapItem object that points to the KML of public geocoded pages.
152 // contains all public pages of the wiki
251 $pages = (array)($searchresults ['pages']);
265 if ($pages !== []) {
267 foreach ($pages as $page) {
/plugin/acknowledge/
H A Dhelper.php71 * Fills the page index with all unknown pages from the fulltext index
76 $pages = idx_getIndex('page', '');
77 $sql = "INSERT OR IGNORE INTO pages (page, lastmod) VALUES (?,?)";
80 foreach ($pages as $page) {
170 $sql = "DELETE FROM pages WHERE page = ?";
190 $sql = "REPLACE INTO pages (page, lastmod) VALUES (?,?)";
280 JOIN pages B
361 // insert new patterns and gather affected pages
362 $pages = [];
371 // patterns may overlap, so we need to gather all affected pages firs
[all...]
H A Dplugin.info.txt6 desc Let users acknowledge pages
H A DREADME3 Let users acknowledge pages
/plugin/acknowledge/admin/
H A Dreport.php61 $pages = $helper->getPagesMatchingPattern($pattern);
64 foreach ($pages as $pattern) {
/plugin/acknowledge/db/
H A Dupdate0001.sql1 CREATE TABLE pages table
9 page TEXT NOT NULL REFERENCES pages (page) ON DELETE CASCADE,
17 page TEXT NOT NULL REFERENCES pages (page) ON DELETE CASCADE PRIMARY KEY,
H A Dupdate0002.sql5 page TEXT NOT NULL REFERENCES pages (page) ON DELETE CASCADE,
17 page TEXT NOT NULL REFERENCES pages (page),
H A Dupdate0003.sql4 page TEXT NOT NULL REFERENCES pages (page) ON DELETE CASCADE PRIMARY KEY,
/plugin/acknowledge/lang/en/
H A Dassign.txt3 Here you can define patterns to automatically assign people and groups to acknowledge certain pages.
/plugin/backlinks/
H A Ddeleted.files32 _test/data/pages/backlinks_syntax.txt
34 _test/data/pages/bob_ross_says.txt
35 _test/data/pages/link.txt
36 _test/data/pages/aaa/link.txt
37 _test/data/pages/aaa/bbb/cc/link_a.txt
38 _test/data/pages/aaa/bbb/cc/link_b.txt
39 _test/data/pages/aaa/bbb/cc/link_c.txt
40 _test/data/pages/aaa/bbb/cc/link_d.txt
42 _test/data/pages/exclude/link.txt
43 _test/data/pages/include/link.txt
[all …]
/plugin/starred/
H A Dplugin.info.txt6 desc Personal bookmarking for pages
/plugin/encryptedpasswords/
H A Dplugin.info.txt6 desc This plugin let you store 256 bit AES encrypted passwords in your DokuWiki pages. The password can be decrypted by clicking them (Javascript must be enabled).
H A DREADME3 This plugin let you store 256 bit AES encrypted passwords in your DokuWiki pages.
/plugin/templater/
H A DREADME.md4 > _Allows dokuwiki pages to be used as templates to be inserted into other dokuwiki pages, such as Wikipedia._
/plugin/batchedit/
H A Dinterface.php164 $pages = $this->getLangPlural('sts_pages', $pageCount);
168 $stats = $this->getLang('sts_preview', $matches, $pages);
173 $stats = $this->getLang('sts_apply', $matches, $pages, $edits);
192 public function printMatches($pages) { argument
193 foreach ($pages as $page) {
H A Dplugin.info.txt6 desc Edit wiki pages using regular expressions.
H A Dengine.php561 private $pages; variable in BatcheditSession
578 $this->pages = array();
622 list($warnings, $this->matches, $this->pages) = $matches;
636 $this->saveArray('matches', array($this->warnings, $this->matches, $this->pages));
651 $this->pages = array();
683 $this->pages[$page->getId()] = $page;
691 return $this->pages;
711 return count($this->pages);
783 protected $pages; variable in BatcheditMarkPolicy
788 public function __construct($pages) { argument
805 __construct($pages, $cache) global() argument
[all...]
/plugin/mikioplugin/
H A Dplugin.info.txt6 desc Mikio Plugin adds a heap of layout and Bootstrap 4 elements that can be used on your DokuWiki pages
H A Dscript.js589 var pages = pagination.find('li:not(.mikiop-pagination-prev,.mikiop-pagination-next)');
590 if (pages.length > 0) {
594 for (i = 0; i < pages.length; i++) {
595 if (jQuery(pages[i]).hasClass('mikiop-active')) {
597 jQuery(pages[i]).removeClass('mikiop-active')
603 var link = jQuery(pages[i]).find('a').attr('href');
611 jQuery(pages[found]).addClass('mikiop-active');
618 jQuery('.mikiop-pagination').find('.mikiop-pagination-prev').find('a').attr('href', jQuery(pages[active - 1]).find('a').attr('href'));
621 if (active == pages.length - 1) {
624 jQuery('.mikiop-pagination').find('.mikiop-pagination-next').find('a').attr('href', jQuery(pages[activ
[all...]
H A DREADME.md6 Mikio Plugin adds a heap of layout and Bootstrap 4 elements that can be used on your [DokuWiki](http://dokuwiki.org/) pages.
/plugin/mikioplugin/syntax/
H A Dcarousel.php65 $pages = array();
66 search($pages, $conf['datadir'] . '/' . $path, 'search_allpages', array('depth' => 1, 'skipacl' => true));
67 for ($i = 0; $i < count($pages); $i++) {
68 $page = $pages[$i];
/plugin/aichat/
H A DEmbeddings.php122 * @param string $skipRE Regular expression to filter out pages (full RE with delimiters)
123 * @param string $matchRE Regular expression pages have to match to be included (full RE with delimiters)
131 $pages = $indexer->getPages();
134 foreach ($pages as $pid => $page) {
140 filesize(wikiFN($page)) < 150 || // skip very small pages

12345678910>>...35