Home
last modified time | relevance | path

Searched +full:search -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 1 – 25 of 114) sorted by path

12345

/dokuwiki/bin/
H A Dindexer.php12 * Update the Search Index from command line
70 search($data, $conf['datadir'], 'search_allpages', ['skipacl' => true]);
H A Dwantedpages.php99 * Determine directions of the search loop
/dokuwiki/conf/
H A Ddokuwiki.php52 $conf['hidepages'] = ''; //Regexp for pages to be skipped from RSS, Search and Recent Changes
162 $conf['search_nslimit'] = 0; //limit the search to the current X namespaces
163 $conf['search_fragment'] = 'exact'; //specify the default fragment search behavior
H A Dinterwiki.conf36 google https://www.google.com/search?q=
37 google.de https://www.google.de/search?q=
38 go https://www.google.com/search?q={URL}&btnI=lucky
/dokuwiki/
H A Dfeed.php
/dokuwiki/inc/Action/
H A DExport.php49 // search engines: never cache exported docs! (Google only currently)
H A DSearch.php8 * Class Search
10 * Search for pages and content
14 class Search extends AbstractAction class
27 * we only search if a search word was given
58 $search = new \dokuwiki\Ui\Search($this->pageLookupResults, $this->fullTextResults, $this->highlight);
59 $search->show();
64 * run the search
79 * This will only do something if the search did
[all...]
H A DSitemap.php12 * Generate an XML sitemap for search engines. Do not confuse with Index
/dokuwiki/inc/
H A DAjax.php202 search($data, $conf['mediadir'], 'search_index', ['nofiles' => true], $dir);
335 search($data, $conf['datadir'], 'search_index', ['ns' => $ns], $dir);
370 // search page titles with original query as well.
405 search($data, $conf['datadir'], 'search_universal', $opts, $nsd);
H A Dcommon.php1098 // search upper namespaces for templates
1380 * extracts the query from a search engine referrer
H A Ddeprecated.php385 * Recursively search for matching subscriptions
570 * @deprecated 2019-12-29 use \dokuwiki\Search\Indexer
572 class Doku_Indexer extends \dokuwiki\Search\Indexer {};
H A Dfulltext.php11 use dokuwiki\Search\Indexer;
23 * The fulltext search
247 * The third parameter allows to search in titles as well.
257 * @param bool $in_title search in title?
355 * @param array $results search results in the form pageid => value
384 * from the search index. This function is a wrapper around stripos with
387 * @param string $search searched title
391 function _ft_pageLookupTitleCompare($search, $title)
393 if (Clean::isASCII($search)) {
394 $pos = stripos($title, $search);
369 _ft_pageLookupTitleCompare($search, $title) global() argument
[all...]
H A Dhtml.php43 * @param string|array $search search string(s) that shall be highlighted in the target page argument
46 function html_wikilink($id, $name = null, $search = '')
54 return $xhtml_renderer->internallink($id, $name, $search, true, 'navigation');
/dokuwiki/inc/Form/
H A DForm.php126 * @param int $offset search from this position onward
145 * @param int $offset search from this position onward
/dokuwiki/inc/Parsing/Lexer/
H A DLexer.php47 * Adds a token search pattern for a particular parsing mode.
/dokuwiki/inc/Remote/
H A DApiCore.php241 * @param string $namespace The namespace to search. Empty string for root namespace
242 * @param int $depth How deep to search. 0 for all subnamespaces
263 // run our search iterator to get the pages
269 search($data, $conf['datadir'], 'search_allpages', $opts, $dir);
312 * Do a fulltext search
314 * This executes a full text search and returns the results. The query uses the standard
315 * DokuWiki search syntax.
320 * @link https://www.dokuwiki.org/search#syntax
321 * @param string $query The search query as supported by the DokuWiki search
365 public function search($query) global() function in dokuwiki\\Remote\\ApiCore
[all...]
/dokuwiki/inc/Search/
H A DIndexer.php3 namespace dokuwiki\Search;
266 * Rename a page in the search index without changing the indexed content. This function doesn't check if the
490 * Split the text into words for fulltext search
601 * The search words must be pre-tokenized, meaning only letters and
608 * @param array $tokens list of words to search for
662 * @param string $value search term to look for, must be a string or array of strings
680 // get all words in order to search the matching ids
754 * Find the index ID of each search term.
814 // handle exact search
825 // handle wildcard search
[all...]
/dokuwiki/inc/Sitemap/
H A DMapper.php17 * A class for building sitemaps and pinging search engines with the sitemap URL.
138 * Pings search engines with the sitemap url. Plugins can add or remove
147 //ping search engines...
/dokuwiki/inc/Subscriptions/
H A DSubscriberManager.php151 * Recursively search for matching subscriptions
/dokuwiki/inc/Ui/
H A DIndex.php57 search($data, $conf['datadir'], 'search_index', ['ns' => $ns]);
85 // FS#2766, no need for search bots to follow namespace links in the index
H A DPageDiff.php539 // search the diff html string for both:
H A DSearch.php10 class Search extends Ui class
20 * Search constructor.
23 * @param array $fullTextResults fulltext search results in the form [pagename => #hits]
41 * display the search result
59 * Get a form which can be used to adjust/refine the search
69 $searchForm = (new Form(['method' => 'get'], true))->addClass('search-results-form');
70 $searchForm->setHiddenField('do', 'search');
82 $searchForm->addFieldsetOpen()->addClass('search-form');
90 return $searchForm->toHTML('Search');
164 * Check if the query is simple enough to modify the fragment search behavio
[all...]
H A DSearchState.php34 * Get a search state for the current search limited to a new namespace
36 * @param string $ns the namespace to which to limit the search, falsy to remove the limitation
51 * Get a search state for the current search with new search fragments and optionally phrases
70 * Get a search state for the current search with with adjusted time limitations
87 * Get a search state for the current search wit
[all...]
/dokuwiki/inc/Ui/Media/
H A DDisplay.php12 /** @var string should IDs be shown relative to this namespace? Used in search results */
/dokuwiki/inc/Utf8/
H A DClean.php110 * @param string $str to search
184 * @param bool $next direction to search for boundary, false = up (current character) true = down (next character)

12345