Home
last modified time | relevance | path

Searched refs:query (Results 751 – 775 of 964) sorted by last modified time

1...<<313233343536373839

/plugin/sequencediagram/bower_components/lodash/vendor/firebug-lite/src/
H A Dfirebug-lite-debug.js13496 Sizzle = function(query, context, extra, seed){ argument
13503 return makeArray( context.querySelectorAll(query), extra );
13507 return oldSizzle(query, context, extra, seed);
/plugin/sequencediagram/bower_components/snap.svg/dist/
H A Dsnap.svg.js2061 Snap.select = function (query) {
2062 query = Str(query).replace(/([^\\]):/g, "$1\\:");
2063 return wrap(glob.doc.querySelector(query));
2073 Snap.selectAll = function (query) {
2074 var nodelist = glob.doc.querySelectorAll(query),
3052 elproto.select = function (query) { argument
3053 return wrap(this.node.querySelector(query));
3064 elproto.selectAll = function (query) { argument
3065 var nodelist = this.node.querySelectorAll(query),
/plugin/ipban/ip-lib/
H A DREADME.md264 …atabase table, and check if an address is contained in one of the saved ranges with a simple query.
/plugin/data-au/syntax/
H A Dentry.php220 $sqlite->query("BEGIN TRANSACTION");
242 $sqlite->query("ROLLBACK TRANSACTION");
247 $sqlite->query("DELETE FROM DATA WHERE pid = ?", $pid);
265 $sqlite->query("COMMIT TRANSACTION");
H A Drelated.php42 $res = $sqlite->query($dataau['sql']);
88 $res = $sqlite->query($sql, $col, $id);
H A Dtable.php260 $res = $sqlite->query($dataau['sql']);
H A Dcloud.php153 $res = $sqlite->query($dataau['sql']);
/plugin/data-au/_test/
H A Daction_handle.test.php29 $this->db->query('INSERT INTO pages ( pid, page, title , class , lastmod) VALUES
61 $res = $this->db->query('SELECT pid FROM pages WHERE page = ?','test');
68 $res = $this->db->query('SELECT pid FROM pages WHERE page = ?','test');
H A DhelperAliases.test.php14 $db->query("INSERT INTO aliases (name, type, prefix, postfix, enum) VALUES (?,?,?,?,?)",
/plugin/data-au/
H A Daction.php55 $res = $sqlite->query('SELECT pid FROM pages WHERE page = ?',$id);
59 $sqlite->query('DELETE FROM dataau WHERE pid = ?',$pid);
60 $sqlite->query('DELETE FROM pages WHERE pid = ?',$pid);
H A Dplugin.info.txt6 desc Add and query structured data in your wiki - Forked from Structured Data release 2019-03-20…
/plugin/data-au/admin/
H A Daliases.php68 $sqlite->query("BEGIN TRANSACTION");
69 if (!$sqlite->query("DELETE FROM aliases")) {
70 $sqlite->query('ROLLBACK TRANSACTION');
84 if (!$sqlite->query("INSERT INTO aliases (name, type, prefix, postfix, enum)
86 $sqlite->query('ROLLBACK TRANSACTION');
90 $sqlite->query("COMMIT TRANSACTION");
103 $res = $sqlite->query($sql);
H A Dclean.php68 $res = $sqlite->query("SELECT pid, page FROM pages");
74 $sqlite->query('DELETE FROM dataau WHERE pid = ?',$row['pid']);
75 $sqlite->query('DELETE FROM pages WHERE pid = ?',$row['pid']);
/plugin/sphinxsearch-was/
H A DPageMapper.php24 $q = @$db->query("SELECT 1 FROM {$this->_table} limit 1");
26 …$result = $db->query("CREATE TABLE {$this->_table} ( page varchar(1024), page_crc int(11), hid var…
43 …$result = $this->_db->query("REPLACE into {$this->_table}(page, page_crc, hid, title, title_text) …
56 $result = $this->_db->query("select * from {$this->_table}");
63 $result = $this->_db->query($sql);
H A DSphinxSearch.php208 $query,
218 public function starQuery($query) argument
220 $query = $this->removeStars($query);
221 $words = explode(" ", $query);
228 public function removeStars($query) argument
230 $words = explode(" ", $query);
274 $query = ' ' . $query;
277 $query = str_replace('\"', '"', $query);
279 $query = preg_replace("#\s\\\-(\w)#ui", " -$1", $query);
281 $query = substr($query, 1);
[all …]
H A Dfunctions.php337 function printNamespaces($query) argument
340 $query = str_replace(" ", "_", $query);
341 $data = ft_pageLookup($query, false);
H A Dchangelog29 * Fixed search query escaping
38 * Fixed bug with search query
H A Daction.php106 function _search($query, $start, $prev) argument
118 $categories = $this->_getCategories($query);
119 $keywords = $this->_getKeywords($query);
323 function _getCategories($query) argument
326 $query = urldecode($query);
327 if (false !== ($pos = strpos($query, "@ns"))) {;
328 $categories = substr($query, $pos + strlen("@ns"));
333 function _getKeywords($query) argument
335 $keywords = $query;
336 $query = urldecode($query);
[all …]
H A Dsphinx.conf41 query_log = ../../../data/sphinxsearch/query.log
H A Dsphinxapi.php911 function Query($query, $index = "*", $comment = "") argument
915 $this->AddQuery($query, $index, $comment);
940 function AddQuery($query, $index = "*", $comment = "") argument
948 $req .= pack("N", strlen($query)) . $query; // query itself
1356 function BuildKeywords($query, $index, $hits) argument
1358 assert(is_string($query));
1374 $req = pack("N", strlen($query)) . $query; // req query
/plugin/authdiscourse/
H A Dauth.php91 $query = array();
92 parse_str(base64_decode($sso), $query);
95 if ($query['nonce'] !== $this->prev_nonce) {
103 $_SESSION['authdiscourse_login'] = $query;
/plugin/authphpbb3/
H A Dauth.php159 $query = "SELECT config_name, config_value
162 $result = $this->_phpbb_sql_link->prepare($query);
355 $result = $this->_phpbb_sql_link->prepare($query);
383 $query = "SELECT *
440 $query = "SELECT *
443 $result = $this->_phpbb_sql_link->prepare($query);
681 $query = "SELECT config_name, config_value
684 $result = $this->_phpbb_sql_link->prepare($query);
714 $query = "SELECT *
719 $result = $this->_phpbb_sql_link->prepare($query);
[all …]
/plugin/findologicxmlexport/vendor/hoa/stream/IStream/
H A DStructural.php106 * @param string $query Query.
109 public function querySelector($query); argument
114 * @param string $query Query.
117 public function querySelectorAll($query); argument
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/
H A DConfiguration.php213 $tmp = $this->xpath->query('filter/whitelist');
357 foreach ($this->xpath->query('logging/log') as $log) {
444 foreach ($this->xpath->query('php/ini') as $ini) {
451 foreach ($this->xpath->query('php/const') as $const) {
867 $nodes = $this->xpath->query('*/testsuite');
1026 * @param string $query
1030 protected function readFilterDirectories($query) argument
1034 foreach ($this->xpath->query($query) as $directory) {
1071 * @param string $query
1075 protected function readFilterFiles($query) argument
[all …]
/plugin/findologicxmlexport/vendor/jms/serializer/
H A DCHANGELOG.md647 - Dynamic expose, aka 'fields' query param [\#195](https://github.com/schmittjoh/serializer/issues/…

1...<<313233343536373839