Home
last modified time | relevance | path

Searched refs:method (Results 176 – 200 of 972) sorted by last modified time

12345678910>>...39

/plugin/ckgedit/ckeditor/lang/
H A Dfr.js.unc314 "method": "Méthode",
H A Dlang_array.txt308 "method": "Method",
/plugin/ckgedit/ckeditor/
H A Dckeditor.js705 …)return!1;b.dataValue||(b.dataValue="");if(CKEDITOR.env.gecko&&"drop"==b.method&&a.toolbox)a.once(…
708 …86,exec:function(a,b){function c(b,h){h="undefined"!==typeof h?h:!0;b?(b.method="paste",b.dataTran…
714 …(){if("paste"==p.mainPasteEvent)return a.fire("beforePaste",{type:"auto",method:"paste"}),!1;a.foc…
715 …function(){a.fire("saveSnapshot")},50)}}function k(b){var c={type:"auto",method:"paste",dataTransf… property in k.c
719 …();c({type:f,dataValue:a.data.dataValue,dataTransfer:a.data.dataTransfer,method:"paste"})}var h=!1…
725 method:"drop"},1);d.sourceEditor.fire("saveSnapshot");d.sourceEditor.editable().extractHtmlFromRang…
730 …e",function(b){var c=b.data,f=c.dataTransfer;if(!c.dataValue&&"paste"==c.method&&f&&1==f.getFilesC…
741 method:"drop",range:b},1);d.fire("unlockSnapshot")},getRangeAtDropPosition:function(a,b){var c=a.da…
H A Dconfig.js.unc325 method: "POST",
/plugin/ckgedit/ckeditor/plugins/signature/
H A Dplugin.js.unc9 // The plugin initialization logic goes inside this method.
/plugin/ckgedit/lang/
H A Den.4.9.js.beautified388 "method": "Method",
/plugin/ckgedit/ckeditor/plugins/fontAssist/
H A Dplugin.js.unc7 // The plugin initialization logic goes inside this method.
/plugin/ckgedit/ckeditor/plugins/footnote/
H A Dplugin.js.unc5 // The plugin initialization logic goes inside this method.
95 // Function to be run when the commitContent method of the parent dialog window is called.
/plugin/ckgedit/ckeditor/plugins/link/dialogs/
H A Dlink.js1 …al="global";doku_linkwiz.toggle()};var M=function(W){return jQuery.ajax({method:"POST",url:DOKU_BA…
H A Dlink.js.unc124 method: "POST",
/plugin/ckgedit/ckeditor/plugins/shortcuts/
H A Dplugin.js.unc10 // The plugin initialization logic goes inside this method.
/plugin/tagfilter/script/select2/
H A Dselect2.js1298 * @return {Boolean} whether or not dropdown was opened. This method will return false if, for example,
1606 * @param initial whether or not this is the call to this method right after the dropdown has been opened
3259 method, value, multiple,
3282 throw "Unknown method: " + args[0];
3289 method=args[0];
3291 if (method === "container") {
3293 } else if (method === "dropdown") {
3296 if (methodsMap[method]) method = methodsMap[method];
[all...]
/plugin/html5video2/script/
H A Dvideo.min.js20method:d,headers:{},url:c,rawRequest:l},l.getAllResponseHeaders&&(t.headers=$t(l.getAllResponseHea… property in AnonymousFunctionc9f82cd79000.qt.g
21 …OD||this.trigger("warn",{message:"defaulting key method to AES-128"}),r={method:s.attributes.METHO… property in r
/plugin/evesso/phpoauthlib/src/OAuth/Common/Http/Client/
H A DCurlClient.php57 * @param string $method
68 $method = 'POST' argument
71 $method = strtoupper($method);
75 if ($method === 'GET' && !empty($requestBody)) {
79 if (!isset($extraHeaders['Content-Type']) && $method === 'POST' && is_array($requestBody)) {
90 if ($method === 'POST' || $method === 'PUT') {
95 if ($method === 'PUT') {
103 curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
H A DStreamClient.php20 * @param string $method
31 $method = 'POST' argument
34 $method = strtoupper($method);
38 if ($method === 'GET' && !empty($requestBody)) {
42 if (!isset($extraHeaders['Content-Type']) && $method === 'POST' && is_array($requestBody)) {
60 $context = $this->generateStreamContext($requestBody, $extraHeaders, $method);
76 private function generateStreamContext($body, $headers, $method) argument
81 'method' => $method,
H A DClientInterface.php20 * @param string $method
30 $method = 'POST' argument
/plugin/evesso/phpoauthlib/src/OAuth/OAuth2/Service/
H A DAbstractService.php131 * @param string $method HTTP method
141 public function request($path, $method = 'GET', $body = null, array $extraHeaders = array()) argument
174 return $this->httpClient->retrieveResponse($uri, $body, $extraHeaders, $method);
/plugin/evesso/classes/
H A DoAuthHTTPClient.php23 * @param string $method
33 $method = 'POST' argument
38 $ok = $http->sendRequest($endpoint->getAbsoluteUri(), $requestBody, $method);
/plugin/evesso/phpoauthlib/src/OAuth/Common/Service/
H A DServiceInterface.php17 * @param string $method HTTP method
25 public function request($path, $method = 'GET', $body = null, array $extraHeaders = array()); argument
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/
H A DServerEventsTest.php34 $mock->expects($this->once())->method('afterResponseCallback');
/plugin/davcal/vendor/sabre/http/
H A DCHANGELOG.md158 * Added: The Request and Response object now have a `__toString()` method that
161 * Changed: Added Response::getStatusText(). This method returns the
186 * Fixed: Doing a GET request with the client uses the last used HTTP method
/plugin/davcal/fullcalendar-3.10.5/
H A Dfullcalendar.js855 var method = obj[methodName];
857 return method.apply(obj, arguments);
H A Dfullcalendar.print.less63 /* use a more border-friendly method for this... */ }
/plugin/davcal/vendor/sabre/http/lib/
H A DRequest.php25 protected $method; variable in Sabre\\HTTP\\Request
37 * @param string $method
42 function __construct($method = null, $url = null, array $headers = null, $body = null) { argument
44 if (is_array($method)) {
47 if (!is_null($method)) $this->setMethod($method);
61 return $this->method;
68 * @param string $method
71 function setMethod($method) { argument
73 $this->method = $method;
H A DRequestInterface.php24 * @param string $method
27 function setMethod($method); argument

12345678910>>...39