Home
last modified time | relevance | path

Searched refs:query (Results 1 – 25 of 964) sorted by path

12345678910>>...39

/plugin/404manager/
H A DCHANGES.md5 * Redirections are now real redirections passing variable via the query string
H A DREADME.md118 The query performed is an explode of the page asked.
123 * The query asked : namespace1+namespace2+pre+pagename
H A Daction.php648 $query = str_replace($replacementPart, ' ', $ID);
652 "q" => $query,
H A Dadmin.php332 $res = $this->sqlite->query('delete from redirections where source = ?', $sourcePageId);
364 $res = $this->sqlite->query("SELECT * FROM redirections");
447 $res = $this->sqlite->query($statement, $sourcePageId);
457 $res = $this->sqlite->query($statement, $entry);
561 … $res = $this->sqlite->query("select target from redirections where source = ?", $sourcePageId);
744 $res = $this->sqlite->query("delete from redirections");
774 $res = $this->sqlite->query("select count(1) from redirections");
807 $res = $this->sqlite->query("select * from redirections");
/plugin/404manager/_test/
H A Dmanager.test.php92 parse_str($components['query'], $queryKeys);
133 parse_str($components['query'], $queryKeys);
177 parse_str($components['query'], $queryKeys);
226 parse_str($components['query'], $queryKeys);
277 parse_str($components['query'], $queryKeys);
327 parse_str($components['query'], $queryKeys);
/plugin/accscounter/lang/en/
H A Dnoitem.txt6 * If you're searching the log file with the keyword, change the search query.
/plugin/aceeditor/
H A Dbuild.js1 …erve|prev|primary|privileges|procedure|processlist|profile|profiles|purge|query|quick|range|read|r…
/plugin/addressbook/
H A Daction.php76 $query = $sqlite->query($sql);
77 $res = $sqlite->res2arr($query);
79 if ($sqlite->res2count($sqlite->query($sql)) == 0) {
H A Dsyntax.php379 $query = $sqlite->query($sql);
388 $res = $sqlite->res2arr($query)[0];
525 $sqlite->query($sql);
595 $query = $sqlite->query($sql);
596 $res = $sqlite->res2arr($query);
628 $query = $sqlite->query($sql);
629 $res = $sqlite->res2arr($query);
673 $query = $sqlite->query($sql);
674 $res = $sqlite->res2arr($query);
941 $query = $sqlite->query($sql);
[all …]
/plugin/adfs/phpsaml/
H A DREADME.md1212 * `getSelfURL` Returns the URL of the current host + current view + query.
1469 * `getSelfURL` - Returns the URL of the current host + current view + query.
1480 * `query` - Extracts nodes from the DOMDocument.
/plugin/adfs/phpsaml/extlib/xmlseclibs/
H A Dxmlseclibs.php590 $nodeset = $xpath->query($query, $objDoc);
628 $nodeset = $xpath->query($query, $sinfo);
743 $nodelist = $xpath->query($query, $refNode);
900 $nodeset = $xpath->query($query, $this->sigNode);
917 $nodeset = $xpath->query($query, $this->sigNode);
1105 $nodeset = $xpath->query($query, $sInfo);
1307 $nodeset = $xpath->query($query, $parentRef);
1314 $nodeset = $xpath->query($query, $parentRef);
1603 $nodeset = $xpath->query($query);
1620 $nodeset = $xpath->query($query, $node);
[all …]
/plugin/adfs/phpsaml/lib/Saml2/
H A DIdPMetadataParser.php112 $idpDescriptorNodes = OneLogin_Saml2_Utils::query($dom, $idpDescryptorXPath);
127 …$ssoNodes = OneLogin_Saml2_Utils::query($dom, './md:SingleSignOnService[@Binding="'.$desiredSSOBin…
129 … $ssoNodes = OneLogin_Saml2_Utils::query($dom, './md:SingleSignOnService', $idpDescriptor);
138 …$sloNodes = OneLogin_Saml2_Utils::query($dom, './md:SingleLogoutService[@Binding="'.$desiredSLOBin…
140 … $sloNodes = OneLogin_Saml2_Utils::query($dom, './md:SingleLogoutService', $idpDescriptor);
153 …$keyDescriptorCertSigningNodes = OneLogin_Saml2_Utils::query($dom, './md:KeyDescriptor[not(contain…
155 …$keyDescriptorCertEncryptionNodes = OneLogin_Saml2_Utils::query($dom, './md:KeyDescriptor[not(cont…
183 … $nameIdFormatNodes = OneLogin_Saml2_Utils::query($dom, './md:NameIDFormat', $idpDescriptor);
H A DLogoutRequest.php208 … $encryptedEntries = OneLogin_Saml2_Utils::query($dom, '/samlp:LogoutRequest/saml:EncryptedID');
227 $entries = OneLogin_Saml2_Utils::query($dom, '/samlp:LogoutRequest/saml:NameID');
286 $issuerNodes = OneLogin_Saml2_Utils::query($dom, '/samlp:LogoutRequest/saml:Issuer');
315 … $sessionIndexNodes = OneLogin_Saml2_Utils::query($dom, '/samlp:LogoutRequest/samlp:SessionIndex');
H A DLogoutResponse.php218 * @param string $query Xpath Expresion
222 private function _query($query) argument
224 return OneLogin_Saml2_Utils::query($this->document, $query);
H A DResponse.php371 …$encryptedIDNodes = OneLogin_Saml2_Utils::query($this->decryptedDocument, '/samlp:Response/saml:As…
549 … $responseIssuer = OneLogin_Saml2_Utils::query($this->document, '/samlp:Response/saml:Issuer');
988 …$expectedSignatureNodes = OneLogin_Saml2_Utils::query($this->document, OneLogin_Saml2_Utils::RESPO…
1032 $assertionReferenceNode = $xpath->query($signatureQuery)->item(0);
1036 $responseReferenceNode = $xpath->query($signatureQuery)->item(0);
1058 return $xpath->query($nameQuery);
1064 * @param string $query Xpath Expresion
1068 private function _query($query) argument
1071 return OneLogin_Saml2_Utils::query($this->decryptedDocument, $query);
1073 return OneLogin_Saml2_Utils::query($this->document, $query);
H A DUtils.php926 * @param string $query Xpath Expresion
931 public static function query($dom, $query, $context = null) function in OneLogin_Saml2_Utils
943 $res = $xpath->query($query, $context);
945 $res = $xpath->query($query);
1117 $statusEntry = self::query($dom, '/samlp:Response/samlp:Status');
1125 …$codeEntry = self::query($dom, '/samlp:Response/samlp:Status/samlp:StatusCode', $statusEntry->item…
1136 …$messageEntry = self::query($dom, '/samlp:Response/samlp:Status/samlp:StatusMessage', $statusEntry…
1138 …$subCodeEntry = self::query($dom, '/samlp:Response/samlp:Status/samlp:StatusCode/samlp:StatusCode'…
/plugin/advanced/lang/en/config/
H A Dinterwiki.txt29 | {QUERY} | query part if an URL was given as wikiname …
/plugin/aichat/
H A DEmbeddings.php239 * @param string $query The question
244 public function getSimilarChunks($query, $lang = '')
247 $vector = $this->embedModel->getEmbedding($query);
183 getSimilarChunks($query) global() argument
H A Dcli.php29 'Manage and query the AI chatbot data. Please note that calls to your LLM provider will be made. ' .
55 $options->registerArgument('query', 'Look up chunks similar to this query', true, 'similar');
304 * @param string $query
308 protected function ask($query)
310 $result = $this->helper->askQuestion($query);
315 * Get the pages that are similar to the query
317 * @param string $query
320 protected function similar($query)
327 $sources = $this->helper->getEmbeddings()->getSimilarChunks($query,
147 ask($query) global() argument
159 similar($query) global() argument
[all...]
/plugin/aichat/Storage/
H A DSQLiteStorage.php179 $query = "SELECT cluster || ' ' || lang, COUNT(*) || ' chunks' as cnt
183 $clusters = $this->db->queryKeyValueList($query);
196 * @param string $query JSON encoded vector array
200 public function sqliteCosineSimilarityCallback($query, $embedding)
203 json_decode($query, true, 512, JSON_THROW_ON_ERROR),
262 $query = "DELETE FROM clusters $where";
263 $this->db->exec($query);
264 $query = "UPDATE embeddings SET cluster = NULL $where";
265 $this->db->exec($query);
268 $query
134 sqliteCosineSimilarityCallback($query, $embedding) global() argument
[all...]
/plugin/aichat/vendor/vanderlee/php-sentence/doc/resources/
H A Dcombined.js1113 var query = $search.val();
1114 if ('' === query) {
/plugin/aimg/
H A Dsyntax.php95 $img_id = str_replace(':','',cleanID($src['host'].$src['path'].$src['query']));
/plugin/airtable/
H A DREADME.md9 create a query
65 Any table query that results in one record will also be rendered as a 'record'.
H A Dsyntax.php489 $query = array();
497 $query['fields'] = $fields;
499 return $query;
510 function decodeRecordURL($query) { argument
511 if(array_key_exists("record-url", $query)) {
514 preg_match("/viw\w+/i", $query["record-url"], $view);
515 preg_match("/rec\w+/i", $query["record-url"], $record_id);
517 $query['table'] = urlencode($table[0]); //url encode each part
518 $query['view'] = urlencode($view[0]);
519 $query['record-id'] = urlencode($record_id[0]);
[all …]
/plugin/amcharts/assets/amcharts/plugins/export/libs/pdfmake/
H A Dpdfmake.min.js.map1query.\n\t * @param {Array} props The property names to get values for.\n\t * @returns {Ob…

12345678910>>...39