Home
last modified time | relevance | path

Searched refs:query (Results 1 – 25 of 32) sorted by relevance

12

/dokuwiki/vendor/simplepie/simplepie/src/Cache/
H A DMySQL.php118 if (!$query = $this->mysql->query('SHOW TABLES')) {
124 while ($row = $query->fetchColumn()) {
129 …$query = $this->mysql->exec('CREATE TABLE `' . $this->options['extras']['prefix'] . 'cache_data` (…
130 if ($query === false) {
138 …$query = $this->mysql->exec('CREATE TABLE `' . $this->options['extras']['prefix'] . 'items` (`feed…
139 if ($query === false) {
159 …$query = $this->mysql->prepare('DELETE i, cd FROM `' . $this->options['extras']['prefix'] . 'cache…
163 $query->bindValue(':purge_time', $this->options['extras']['cache_purge_time']);
165 if (!$query->execute()) {
174 …$query = $this->mysql->prepare('SELECT COUNT(*) FROM `' . $this->options['extras']['prefix'] . 'ca…
[all …]
/dokuwiki/_test/tests/inc/
H A Dindexer_indexing.test.php18 $query = array('baz', 'foo');
19 …array('baz' => array('testpage' => 1), 'foo' => array('testpage' => 1)), $indexer->lookup($query));
26 $query = array('001', '002');
27 …->assertEquals(array('001' => array(), '002' => array('testpage' => 1)), $indexer->lookup($query));
34 $query = 'testvalue';
35 $this->assertEquals(array('testpage'), $indexer->lookupKey('testkey', $query));
42 $query = array('001', '01');
43 …tEquals(array('001' => array(), '01' => array('testpage')), $indexer->lookupKey('numkey', $query));
49 $query = array('1010');
50 $this->assertEquals(array('1010' => array('testpage' => 1)), $indexer->lookup($query));
[all …]
H A Dindexer_rename.test.php30 $query = array('old');
31 …$this->assertEquals(array('old' => array($newid => 1)), $this->indexer->lookup($query), '"Old" doe…
47 $query = array('existing');
48 …$this->assertEquals(array('existing' => array()), $this->indexer->lookup($query), 'Existing page h…
49 $query = array('old');
50 …$this->assertEquals(array('old' => array($newid => 1)), $this->indexer->lookup($query), '"Old" doe…
57 $query = 'old_value';
58 …$this->assertEquals(array(), $this->indexer->lookupKey('mkey', $query), 'Page can still be found u…
59 $query = 'new_value';
60 …$this->assertEquals(array($this->old_id), $this->indexer->lookupKey('mkey', $query), 'Page can\'t …
[all …]
H A Dmedia_searchlist.test.php62 protected function media_searchlist($query, $ns) argument
65 media_searchlist($query, $ns);
92 * @param string $query The query to use
96 public function testSearch($query, $expected) argument
98 $result = $this->media_searchlist($query, $this->upload_ns);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/
H A DXML.php97 $pubkey = self::query($xpath, 'publickey', 'Public Key is not present');
99 $QA = self::query($xpath, 'ecdsakeyvalue')->length ?
117 private static function query(\DOMXPath $xpath, $name, $error = null, $decode = true) function in phpseclib3\\Crypt\\EC\\Formats\\Keys\\XML
119 $query = '/';
122 …$query .= "/*[translate(local-name(), 'ABCDEFGHIJKLMNOPQRSTUVWXYZ','abcdefghijklmnopqrstuvwxyz')='…
124 $result = $xpath->query($query);
148 $nodes = $xpath->query("//*[namespace::*[.='$ns'] and not(../namespace::*[.='$ns'])]");
179 $x = self::query($xpath, 'publickey/x');
180 $y = self::query($xpath, 'publickey/y');
206 $namedCurve = self::query($xpath, 'namedcurve');
[all …]
/dokuwiki/vendor/kissifrot/php-ixr/src/Client/
H A DClientMulticall.php31 public function query() function in IXR\\Client\\ClientMulticall
34 return parent::query('system.multicall', $this->calls);
H A DClientSSL.php128 public function query() function in IXR\\Client\\ClientSSL
H A DClient.php65 public function query() function in IXR\\Client\\Client
/dokuwiki/_test/core/
H A DTestRequest.php200 list($uri, $query) = sexplode('?', $uri, 2);
201 if($query) parse_str($query, $params);
206 $query = '?' . http_build_query($this->get, '', '&');
207 $query = str_replace(
210 $query
212 $uri = $uri . $query;
215 $this->setServer('QUERY_STRING', $query);
H A DphpQuery-onefile.php1417 protected function parseSelector($query) { argument
1420 $query = trim(
1422 preg_replace('@\s*(>|\\+|~)\s*@', '\\1', $query)
1426 if (! $query)
1432 $strlen = mb_strlen($query);
1440 $_query[] = mb_substr($query, $i, 1);
1441 $query = $_query;
1445 $c = $query[$i];
1449 while(isset($query[$i])
1450 && ($this->isChar($query[$i]) || in_array($query[$i], $tagChars))) {
[all …]
/dokuwiki/inc/
H A DAjax.php52 $query = $INPUT->post->str('q');
53 if (empty($query)) $query = $INPUT->get->str('q');
54 if (empty($query)) return;
56 $query = urldecode($query);
58 $data = ft_pageLookup($query, true, useHeading('navigation'));
97 $query = cleanID($INPUT->post->str('q'));
98 if (empty($query)) $query = cleanID($INPUT->get->str('q'));
99 if (empty($query)) return;
101 $data = ft_pageLookup($query);
114 $query, // the original query
H A Dfulltext.php29 * @param string $query
37 function ft_pageSearch($query, &$highlight, $sort = null, $after = null, $before = null) argument
44 'query' => $query,
697 * @param string $query search query
700 function ft_queryParser($Indexer, $query) argument
742 PhpString::strtolower($query),
886 $q['query'] = $query;
984 $query = implode(' ', $and);
986 $query .= ' -' . implode(' -', $not);
990 $query .= ' "' . implode('" "', $phrases) . '"';
[all …]
H A Dmedia.php989 $query = $INPUT->str('q');
992 media_searchform($ns, $query, true);
993 if ($do == 'searchlist' || $query) {
994 media_searchlist($query, $ns, $auth, true, _media_get_sort_type());
1401 * @param string $query
1407 function media_searchlist($query, $ns, $auth = null, $fullscreen = false, $sort = 'natural') argument
1416 'query' => $query
1418 if (!blank($query)) {
1446 media_searchform($ns, $query);
1635 * @param string $query
[all …]
H A Dcommon.php1370 $query = [];
1372 parse_str($url['query'], $query);
1375 if (isset($query['q'])) {
1376 $q = $query['q'];
1377 } elseif (isset($query['p'])) {
1378 $q = $query['p'];
1379 } elseif (isset($query['query'])) {
1380 $q = $query['query'];
/dokuwiki/lib/plugins/extension/
H A Dremote.php46 * @param string $query The keyword(s) to search for
50 public function search($query, $max = 10) argument
57 $result = $repo->searchExtensions($query);
H A DRepository.php204 $query = $this->parseQuery($q);
205 $query['fmt'] = 'json';
208 $response = $httpclient->post(self::EXTENSION_REPOSITORY_API, $query);
H A Dcli.php235 * @param string $query
241 protected function cmdSearch($query, $showdetails, $max) argument
244 $result = $repo->searchExtensions($query);
/dokuwiki/lib/plugins/authpdo/
H A Dauth.php135 $result = $this->query($this->getConf('check-pass'), $userdata);
219 $ok = $this->query($this->getConf('insert-user'), $userdata);
273 $ok = $this->query($this->getConf('update-user-login'), $params);
283 $ok = $this->query($this->getConf('update-user-pass'), $params);
293 $ok = $this->query($this->getConf('update-user-info'), $params);
386 $result = $this->query($this->getConf('list-users'), $filter);
422 $result = $this->query($this->getConf('count-users'), $filter);
439 $result = $this->query($sql, [':group' => $group]);
476 $result = $this->query($sql, [':user' => $user]);
529 $ok = $this->query($this->getConf('delete-user'), $userdata);
[all …]
/dokuwiki/inc/Ui/
H A DSearch.php12 protected $query; variable in dokuwiki\\Ui\\Search
31 $this->query = $QUERY;
47 $searchHTML = $this->getSearchIntroHTML($this->query);
49 $searchHTML .= $this->getSearchFormHTML($this->query);
61 * @param string $query
65 protected function getSearchFormHTML($query) argument
83 $searchForm->addTextInput('q')->val($query)->useInput(false);
447 * @param string $query the search query
451 protected function getSearchIntroHTML($query) argument
466 [hsc(rawurlencode($query)), hsc($query), $pagecreateinfo],
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Keys/
H A DXML.php64 …$temp = $xpath->query("//*[translate(local-name(), 'ABCDEFGHIJKLMNOPQRSTUVWXYZ','abcdefghijklmnopq…
/dokuwiki/inc/Remote/
H A DLegacyApiCore.php218 public function legacySearch($query) argument
220 $this->searchPages($query);
223 foreach ($this->searchPages($query) as $page) {
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/
H A DXML.php73 …$temp = $xpath->query("//*[translate(local-name(), 'ABCDEFGHIJKLMNOPQRSTUVWXYZ','abcdefghijklmnopq…
/dokuwiki/vendor/simplepie/simplepie/src/
H A DSanitize.php375 $comments = $xpath->query('//comment()');
537 $elements = $xpath->query('body//' . $tag);
605 $elements = $xpath->query('//*[@' . $attrib . ']');
614 $elements = $xpath->query('//*[@' . $attrib . ']');
H A DLocator.php291 $query = '//a[@rel and @href] | //link[@rel and @href]';
292 foreach ($xpath->query($query) as $link) {
H A DMisc.php228 'query' => (string) $iri->query,
233 …public static function compress_parse_url($scheme = '', $authority = '', $path = '', $query = '', … argument
239 $iri->query = $query;

12