Home
last modified time | relevance | path

Searched refs:QueryString (Results 1 – 13 of 13) sorted by relevance

/plugin/wysiwyg/fckeditor/editor/filemanager/connectors/asp/
H A Dconnector.asp46 sCommand = Request.QueryString("Command")
48 sResourceType = Request.QueryString("Type")
H A Dupload.asp44 sResourceType = Request.QueryString("Type")
H A Dcommands.asp98 sNewFolderName = Request.QueryString( "NewFolderName" )
H A Dio.asp167 sCurrentFolder = Request.QueryString("CurrentFolder")
/plugin/elasticsearch/vendor/ruflin/elastica/src/QueryBuilder/DSL/
H A DQuery.php34 use Elastica\Query\QueryString; alias
340 public function query_string(string $queryString = ''): QueryString
342 return new QueryString($queryString);
/plugin/wysiwyg/fckeditor/_samples/asp/
H A Dsample03.asp81 If Request.QueryString("Toolbar") <> "" Then
82 oFCKeditor.ToolbarSet = Server.HTMLEncode( Request.QueryString("Toolbar") )
H A Dsample04.asp87 If Request.QueryString("Skin") <> "" Then
88 …("SkinPath") = sBasePath + "editor/skins/" & Server.HTMLEncode( Request.QueryString("Skin") ) + "/"
H A Dsample02.asp93 If Request.QueryString("Lang") = "" Then
98 oFCKeditor.Config("DefaultLanguage") = Request.QueryString("Lang")
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DQuery.php9 use Elastica\Query\QueryString; alias
119 return new static(new QueryString($query));
/plugin/elasticsearch/vendor/ruflin/elastica/src/Query/
H A DQueryString.php6 * QueryString query.
12 class QueryString extends AbstractQuery class
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DCHANGELOG.md700 * `Guzzle\Http\QueryString::factory()` now guesses the most appropriate query aggregator to used ba…
966 * Guzzle\Http\QueryString does no longer manages the leading "?". This is now handled in Guzzle\Htt…
973 * Guzzle\Http\QueryString now uses Guzzle\Http\QueryAggregator\QueryAggregatorInterface objects to …
975 * The URL encoding implementation of Guzzle\Http\QueryString can now be customized
1031 * Bug: QueryString::fromString now properly parses query string parameters that contain equal signs
1170 * QueryString and Collection performance improvements
1181 …variables will always show an equal sign unless the variable is set to QueryString::BLANK (e.g. ?a…
1184 * Changed the aggregation functions of QueryString to be static methods
1317 * Moving the parseQuery method out of Url and on to QueryString::fromString() as a static factory m…
H A DUPGRADING.md322 - `Guzzle\Http\QueryString` has moved to `GuzzleHttp\Query`.
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md360 * Removed no longer supported \Elastica\Query\QueryString::setAutoGeneratePhraseQueries( $bool ) [#1622](https://github.com/ruflin/Elastica/pull/1622)
522 - In QueryString is not allowed to use fields parameters in conjunction with default_field parameter. This is not well documented, it's possibile to understand from [Elasticsearch tests : QueryStringQueryBuilderTests.java](https://github.com/elastic/elasticsearch/blob/6.0/core/src/test/java/org/elasticsearch/index/query/QueryStringQueryBuilderTests.java#L917) [#1352](https://github.com/ruflin/Elastica/pull/1352)
1075 - Elastica\Query\QueryString::setLowercaseExpandedTerms removed [#813](https://github.com/ruflin/Elastica/issues/813/)
1098 - Added Elastica\Query\QueryString::setTimezone [#813](https://github.com/ruflin/Elastica/issues/813/)
1713 - Removed deprecated methods Query\QueryString::setTieBraker() and Query\QueryString::setQueryString()
1959 - QueryString useDisMax added