Home
last modified time | relevance | path

Searched refs:query (Results 901 – 925 of 964) sorted by last modified time

1...<<313233343536373839

/plugin/sphinxsearch/
H A DSphinxSearch.php202 public function getExcerpt($data, $query) argument
214 public function starQuery($query) argument
216 $query = $this->removeStars($query);
217 $words = explode(" ", $query);
224 public function removeStars($query) argument
226 $words = explode(" ", $query);
270 $query = ' '. $query;
273 $query = str_replace('\"', '"', $query);
275 $query = preg_replace("#\s\\\-(\w)#ui", " -$1", $query);
277 $query = substr($query, 1);
[all …]
H A Daction.php101 function _search($query, $start, $prev) { argument
112 $categories = $this->_getCategories($query);
113 $keywords = $this->_getKeywords($query);
368 function _getCategories($query) argument
371 $query = urldecode($query);
372 if (false !== ($pos = strpos($query, "@ns"))){;
378 function _getKeywords($query) argument
380 $keywords = $query;
381 $query = urldecode($query);
382 if (false !== ($pos = strpos($query, "-@ns"))){;
[all …]
H A Dchangelog19 * Fixed search query escaping
28 * Fixed bug with search query
H A Dfunctions.php343 function printNamespaces($query) argument
346 $query = str_replace(" ", "_", $query);
347 $data = ft_pageLookup($query, false);
H A Dsphinx.conf43 query_log = ../../../data/sphinxsearch/query.log
H A Dsphinxapi.php947 function Query ( $query, $index="*", $comment="" ) argument
951 $this->AddQuery ( $query, $index, $comment );
976 function AddQuery ( $query, $index="*", $comment="" ) argument
984 $req .= pack ( "N", strlen($query) ) . $query; // query itself
1390 function BuildKeywords ( $query, $index, $hits ) argument
1392 assert ( is_string($query) );
1409 $req = pack ( "N", strlen($query) ) . $query; // req query
/plugin/podcast/
H A Dhelper.php10 $res = $sqlite->query( 'SELECT
/plugin/sqlraw/
H A Dsyntax.php187 foreach ($data['sql'] as $query) {
188 $result =& $db->getAll($query);
761 $query = 'DROP TEMPORARY TABLE IF EXISTS '.$table;
762 $result =& $database->query ($query);
764 …$renderer->doc .= '<div class="error">DROP TABLE failed for query: '. $query .'the error: '. $resu…
790 $query = 'CREATE TEMPORARY TABLE '.$table . ' (';
794 … $query .= str_replace($badChars,'_',trim($header)).' VARCHAR('.$max_field_lengths[$key].'), ';
796 $query = rtrim($query,', ');
797 $query .= ') DEFAULT CHARACTER SET \'utf8\'';
798 $result =& $database->query ($query);
[all …]
H A Dplugin.info.txt6 desc Execute SQL query on remote csv data or table data and display the result as a table
/plugin/geonav/server/
H A Dget_state.php28 $query = "SELECT * FROM states WHERE state_abbr = '".$q."'"; variable
29 $result = sqlite_query($db, $query);
H A DgetContinent.php23 $query = "SELECT * FROM continents WHERE code_2 = '".$countryCode2."'";
24 $result = sqlite_query($db, $query);
/plugin/zenlogin/
H A Daction.php95 … $query = sprintf("SELECT id FROM ".$this->zp_mysql_prefix."administrators WHERE user = '%s'",
97 $result = mysql_query($query, $con);
/plugin/docimporter/
H A D.action.php.swp26query('wiki.putAttachment', $entry, $image_data, $attrs);� $attrs = array('ow'…
/plugin/git/
H A Dhelper.php118 $this->sqlite->query($sql);
128 $res = $this->sqlite->query("SELECT status FROM git WHERE repo = 'local'");
144 $this->sqlite->query($sql);
459 $res = $this->sqlite->query($sql);
478 $res = $this->sqlite->query($sql);
494 $res = $this->sqlite->query($sql);
512 $res = $this->sqlite->query($sql);
548 $this->sqlite->query($sql);
553 $this->sqlite->query($sql);
/plugin/jcapture/lib/
H A Dhttpclient-4.0.1.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
/plugin/aceeditor/
H A Dbuild.js1 …erve|prev|primary|privileges|procedure|processlist|profile|profiles|purge|query|quick|range|read|r…
/plugin/flowplayer/player/
H A DREADME.txt319 - clip urls were not resolved correctly if the HTML page URL had a query string starting with a que…
/plugin/bliki/
H A Dsyntax.php253 * @param String $query
258 function getRewriteUrl($page, $query, $base = true) { argument
266 if ($query != '') {
267 $str .= '&' . $query;
275 if ($query != '') {
276 $str .= '?' . $query;
284 if ($query != '') {
285 $str .= '?' . $query;
/plugin/fblogin/lib/
H A Dbase_facebook.php1192 $query = '';
1204 $query = '?'.implode($retained_params, '&');
1216 return $protocol . $parts['host'] . $port . $parts['path'] . $query;
/plugin/nohighlight/
H A Daction.php173 $query = urldecode($matches[1]);
179 $parsed_query = ft_queryParser($Indexer, $query);
181 $parsed_query = ft_queryParser($query);
/plugin/fedauth/Auth/OpenID/
H A DDatabaseConnection.php51 function query($sql, $params = array()) function in Auth_OpenID_DatabaseConnection
H A DPostgreSQLStore.php84 $this->connection->query($this->sql['set_assoc']['update_assoc'],
90 $this->connection->query($this->sql['set_assoc']['insert_assoc'],
H A DDiscover.php88 if (array_key_exists('query', $parsed)) {
89 $query = $parsed['query'];
555 $resolver->query($iname,
H A DTrustRoot.php313 $query = @$url_parsed['query'];
314 $qplus = substr($query, 0, strlen($base_query) + 1);
317 ($base_query != $query && $qplus != $bqplus)) {
/plugin/fedauth/Auth/Yadis/
H A DXRIRes.php36 $query = Auth_Yadis_XRIAppendArgs($hxri, $args);
37 return $query;
40 function query($xri, $service_types, $filters = array()) function in Auth_Yadis_ProxyResolver

1...<<313233343536373839