Home
last modified time | relevance | path

Searched refs:search (Results 1 – 25 of 1186) sorted by relevance

12345678910>>...48

/plugin/struct/_test/
DSearchTest.php101 $search = new mock\Search();
103 $search->addSchema('schema1');
104 $search->addColumn('%pageid%');
105 $search->addColumn('first');
106 $search->addColumn('second');
109 $result = $search->getRows();
120 $search = new mock\Search();
122 $search->addSchema('schema1');
123 $search->addColumn('%title%');
124 $search->addColumn('first');
[all …]
/plugin/odt/ODT/
DODTState.php195 for ($search = $this->size-1 ; $search > 0 ; $search--) {
196 if ($this->stack [$search]->getClass() == $clazz) {
197 return $this->stack [$search];
213 for ($search = $this->size-1 ; $search > 0 ; $search--) {
214 if ($this->stack [$search]->getClass() == $clazz) {
215 $index = $search;
216 return $this->stack [$search];
231 for ($search = 0 ; $search < $this->size ; $search++) {
232 $string .= $indent . $this->stack [$search]->getElementName().";\n";
246 for ($search = $this->size-1 ; $search > 0 ; $search--) {
[all …]
/plugin/elasticsearch/vendor/ruflin/elastica/src/Multi/
DSearch.php73 public function addSearch(BaseSearch $search, ?string $key = null): self argument
76 $this->_searches[$key] = $search;
78 $this->_searches[] = $search;
91 foreach ($searches as $key => $search) {
92 $this->addSearch($search, $key);
129 public function search(): ResultSet function in Elastica\\Multi\\Search
147 foreach ($this->getSearches() as $search) {
148 $data .= $this->_getSearchData($search);
154 protected function _getSearchData(BaseSearch $search): string argument
156 $header = $this->_getSearchDataHeader($search);
[all …]
/plugin/structcombolookup/types/
DNarrowingLookup.php44 $search = new Search();
45 $search->addSchema($schema);
46 $search->addColumn($field);
47 $search->addSort($field);
50 $results = $search->execute();
63 $search = new Search();
64 $search->addSchema($schema);
65 $search->addColumn($field);
66 $search->addFilter($this->config['field'], $rawvalue, '=');
67 $result = $search->execute();
[all …]
/plugin/authssocas/vendor/apereo/phpcas/source/CAS/
DProxyChain.php78 foreach ($this->chain as $i => $search) {
80 if (preg_match('/^\/.*\/[ixASUXu]*$/s', $search)) {
81 if (preg_match($search, $proxy_url)) {
83 "Found regexp " . $search . " matching " . $proxy_url
87 "No regexp match " . $search . " != " . $proxy_url
93 if (strncasecmp($search, $proxy_url, strlen($search)) == 0) {
95 "Found string " . $search . " matching " . $proxy_url
99 "No match " . $search . " != " . $proxy_url
/plugin/jplayer/vendor/james-heinrich/getid3/demos/
Ddemo.dirscan.php90 * @param mixed $search cvs list of extentions or an array
93 private function type_brace($dir, $search=array()) { argument
98 if (!is_array($search)) {
99 $e = explode(',', $search);
100 } elseif (count($search) < 1) {
103 $e = $search;
153 * @param string $search
156 private function file_check($search) { argument
158 $s = glob($search, GLOB_BRACE);
214 $search = self::type_brace($d, $match);
[all …]
/plugin/dyncontent/
Daction.php62 $search = $this->get_search_results($squery);
64 if(count($search)){
65 foreach($search as $pagid) {
76 $search = ft_pageSearch($pagename,$poswords);
77 $search = array_keys($search);
78 $search = array_unique($search);
79 return $search;
/plugin/sphinxsearch-was/
H A Daction.php121 …$search = new SphinxSearch($this->getConf('host'), $this->getConf('port'), $this->getConf('index')…
122 $search->setSnippetSize($this->getConf('snippetsize'));
123 $search->setArroundWordsCount($this->getConf('aroundwords'));
124 $search->setTitlePriority($this->getConf('title_priority'));
125 $search->setBodyPriority($this->getConf('body_priority'));
126 $search->setNamespacePriority($this->getConf('namespace_priority'));
127 $search->setPagenamePriority($this->getConf('pagename_priority'));
130 $search->setSearchAllQuery($keywords, $categories);
132 $search->setSearchAllQueryWithCategoryFilter($keywords, $categories);
138 $result = $search->search($start, $this->getConf('maxresults'));
[all …]
H A Dchangelog3 * Moved "Matching pagenames" to the top of the search and made the search results full width.
4 * Branched out inline JS code to "js/search.js" and CSS code to "css/style.css".
20 Sphinx search
28 * Minor bugfix release - improved indexing and search relevance
29 * Fixed search query escaping
37 * Matching pagenames list constructed by Sphinx search
38 * Fixed bug with search query
39 * Added grouping search results by page with nested subsections
42 * Added namespaces list in sidebar of search results
43 * Fixed search by namespaces
[all …]
/plugin/sphinxsearch/
Daction.php115 …$search = new SphinxSearch($this->getConf('host'), $this->getConf('port'), $this->getConf('index')…
116 $search->setSnippetSize($this->getConf('snippetsize'));
117 $search->setArroundWordsCount($this->getConf('aroundwords'));
118 $search->setTitlePriority($this->getConf('title_priority'));
119 $search->setBodyPriority($this->getConf('body_priority'));
120 $search->setNamespacePriority($this->getConf('namespace_priority'));
121 $search->setPagenamePriority($this->getConf('pagename_priority'));
124 $search->setSearchAllQuery($keywords, $categories);
126 $search->setSearchAllQueryWithCategoryFilter($keywords, $categories);
132 $result = $search->search($start, $this->getConf('maxresults'));
[all …]
Dchangelog10 Sphinx search
18 * Minor bugfix release - improved indexing and search relevance
19 * Fixed search query escaping
27 * Matching pagenames list constructed by Sphinx search
28 * Fixed bug with search query
29 * Added grouping search results by page with nested subsections
32 * Added namespaces list in sidebar of search results
33 * Fixed search by namespaces
34 * Fixed support for multilanguage search
/plugin/struct/_test/types/
DDecimalTest.php188 $search = new Search();
189 $search->addSchema('decimal');
190 $search->addColumn('%pageid%');
191 $search->addColumn('field');
192 $search->addSort('field', true);
194 $result = $search->getRows();
212 $search = new Search();
213 $search->addSchema('decimal');
214 $search->addColumn('%pageid%');
215 $search->addColumn('field');
[all …]
DPageTest.php55 $search = new Search();
56 $search->addSchema('pageschema');
57 $search->addColumn('%pageid%');
58 $search->addColumn('singletitle');
59 $search->addSort('singletitle', true);
61 $result = $search->getRows();
93 $search = new Search();
94 $search->addSchema('pageschema');
95 $search->addColumn('singlepage');
96 $search->addColumn('multipage');
[all …]
/plugin/autlogin/
Dscript.js75 ajax.runAJAX(link.search.substr(1));
99 if(e.target.className.search(/wikilink1/) > -1){
101 frm.elements['id'].value = acl.hsc(acl.parseatt(e.target.search)['id']);
102 }else if(e.target.className.search(/idx_dir/) > -1){
103 frm.elements['ns'].value = acl.hsc(acl.parseatt(e.target.search)['ns']);
107 if(e.target.className.search(/wikilink1/) > -1){
109 frm2.elements['id'].value = acl.hsc(acl.parseatt(e.target.search)['id']);
110 }else if(e.target.className.search(/idx_dir/) > -1){
111 frm2.elements['ns'].value = acl.hsc(acl.parseatt(e.target.search)['ns']);
115 if(e.target.className.search(/wikilink1/) > -1){
[all …]
/plugin/webcomponent/_test/data/pages/
Dsearch.txt5 ''search'' is a component that implement the [[doku>search|dokuwiki search form]] in a [[https://ge…
11 The search component has:
12 * the ''f'' accesskey. In chrome, ''Alt+shift+f'' will bring you in the search box.
13 …f 1. Which means, if you do on Windows ''Alt+D'' + ''Tab'', you comes directly in the search bar.
20 <search>
27 <search>
/plugin/structodt/
Dhelper.php207 $search = new Search();
209 $search->addSchema($schema[0], $schema[1]);
211 $search->addColumn('*');
212 $first_schema = $search->getSchemas()[0];
214 $search->addColumn('%rowid%');
215 $search->addColumn('%pageid%');
216 $search->addColumn('%title%');
217 $search->addColumn('%lastupdate%');
218 $search->addColumn('%lasteditor%');
220 return $search;
[all …]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Search/
DPaging.php49 protected $search; variable in FreeDSx\\Ldap\\Search\\Paging
63 * @param SearchRequest $search
66 public function __construct(LdapClient $client, SearchRequest $search, int $size = 1000) argument
68 $this->search = $search;
90 * @param SearchRequest $search
93 public function start(SearchRequest $search, ?int $size = null): void argument
96 $this->search = $search;
161 $this->search,
/plugin/diagramsnet/lib/math/extensions/
Dasciimath2jax.js19search={start:true};this.pattern=this.start;while(c){a=null;this.pattern.lastIndex=e||0;e=0;while(… property
Dtex2jax.js19search={start:true};this.pattern=this.start;while(c){a=null;this.pattern.lastIndex=e;e=0;while(c&&… property
/plugin/metadisplay/helper/
Dplaintext.php19 private $search; variable in helper_plugin_metadisplay_plaintext
30 $search=$options['search'];
56 if($search) {
57 $this->search = $search;
62 if($search || $fuzzy) {
131 $search = "";
134 $search = $this->fuzzy;
135 $regex = '/(' . $search . ')/im';
137 else if($this->search) {
138 $search = $this->search;
[all …]
Dhtml.php19 private $search; variable in helper_plugin_metadisplay_html
30 $search=$options['search'];
57 if($search) {
58 $this->search = $search;
63 if($search || $fuzzy) {
131 $search = "";
134 $search = $this->fuzzy;
135 $regex = '/(' . $search . ')/im';
137 else if($this->search) {
138 $search = $this->search;
[all …]
/plugin/addressbook/
DREADME.md3 …s an addressbook functionality to DokuWiki. The search results are also displayed on the standards…
9 ![](screenshots/search.png)
12 [ADDRESSBOOK:search]
14 Adds a search bar to perform a fulltext search
53 ### Option 'search link target'
55 Contact search results are display on the search results page. In order to activate links to show o…
61 * Integration into DokuWikis search should be configurable
62 * Improve styling of the search box
/plugin/showlinkpermission/
Drenderer.php25 function internallink($id, $name = NULL, $search=NULL, $returnonly=false, $linktype='content') { argument
96 if($search){
98 if(is_array($search)){
99 $search = array_map('rawurlencode',$search);
100 $link['url'] .= 's[]='.join('&amp;s[]=',$search);
102 $link['url'] .= 's='.rawurlencode($search);
/plugin/sequencediagram/bower_components/lodash/test/asset/
Dtest-ui.js8 var build = (build = /build=([^&]+)/.exec(location.search)) && decodeURIComponent(build[1]);
11 var loader = (loader = /loader=([^&]+)/.exec(location.search)) && decodeURIComponent(loader[1]);
23 search = location.search.replace(/^\?|&?(?:build|loader)=[^&]*&?/g, '');
32 (search ? search + '&' : '') +
142 …e = /\b(?:amd|commonjs|es|node|npm|(index|main)\.js)\b/.test([location.pathname, location.search]);
148 ui.isStrict = /\bes\b/.test([location.pathname, location.search]);
/plugin/pgn4web/pgn4web/
Dengine.js23 if (window.location.search.match(thisRegExp) !== null) {
27 if (window.location.search.match(thisRegExp) !== null) {
28 pgn4web_engineWindowTarget = unescape(window.location.search.match(thisRegExp)[3]);
31 if (window.location.search.match(thisRegExp) !== null) {
32 pgn4web_engineWindowUrlParameters = unescape(window.location.search.match(thisRegExp)[3]);
35 if (window.location.search.match(thisRegExp) !== null) {
36 pgn4web_engineWindowHeight = parseInt(unescape(window.location.search.match(thisRegExp)[3]), 10);
39 if (window.location.search.match(thisRegExp) !== null) {
40 pgn4web_engineWindowWidth = parseInt(unescape(window.location.search.match(thisRegExp)[3]), 10);

12345678910>>...48