Home
last modified time | relevance | path

Searched refs:method (Results 901 – 925 of 972) sorted by path

1...<<313233343536373839

/plugin/watchcycle/
H A Dsyntax.php98 $method = "render_$mode";
99 if (method_exists($this, $method)) {
100 call_user_func([$this, $method], $renderer, $data);
/plugin/webcode/vendor/
H A Dfirebug-lite-1.4.js1265method:"setTimeout"},Document:{property:["body","cookie"],method:"getElementById"},Node:{property:… property in instanceCheckMap.Location
4978 XHRSpy.prototype={method:null,url:null,async:null,xhrRequest:null,href:null,loaded:false,logRow:nul… property in XHRSpy
5035 this.open=function(method,url,async,user,password){updateSelfProperties(); argument
5037 }spy.method=method;
5044 }else{xhrRequest.open(method,url,async,user,password)
5144 },hidePost:function(file){return file.method.toUpperCase()!="POST"
5145 },hidePut:function(file){return file.method.toUpperCase()!="PUT"
5360 …ponseText)!="undefined")?file.responseText:context.sourceCache.loadText(file.href,file.method,file)
5379 file.method=http.requestMethod;
5455 …,{object:"$object.sourceLink"})))))),getCaption:function(spy){return spy.method.toUpperCase()+" "+…
[all …]
/plugin/webdav/vendor/sabre/dav/
H A DCHANGELOG.md674 * Changed: PropertyStorage backends now have a `move` method.
691 * Changed: PrincipalBackend now has a findByUri method.
866 think about it on a per-method basis.
899 this method is now required.
950 * Added: has() method on DAV\Property\SupportedReportSet.
1680 * Added: API level support for ACL HTTP method.
1948 ::unserialize() method.
1961 * Fixed: Comma's between HTTP methods in 'Allow' method.
2097 the standard installation method.
2155 * Added: The Auth backend got a getUsers method
[all …]
H A DCONTRIBUTING.md55 6. `public` must be omitted from method declarations. It must also be omitted
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/Notifications/
H A DPlugin.php69 $server->on('method:GET', [$this, 'httpGet'], 90);
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/Schedule/
H A DIMipPlugin.php119 switch (strtoupper($iTipMessage->method)) {
134 'Content-Type: text/calendar; charset=UTF-8; method=' . $iTipMessage->method,
H A DPlugin.php500 if ($iTipMessage->method === 'REPLY') {
561 if ($iTipMessage->method === 'REPLY') {
760 $method = strtoupper((string)$vObject->METHOD);
761 if (!$method) {
771 if ($componentType === 'VFREEBUSY' && $method === 'REQUEST') {
/plugin/webdav/vendor/sabre/dav/lib/DAV/
H A DClient.php362 * @param string $method
369 function request($method, $url = '', $body = null, array $headers = []) { argument
373 $response = $this->send(new HTTP\Request($method, $url, $headers, $body));
H A DServer.php121 '{DAV:}supported-method-set',
463 $method = $request->getMethod();
465 if (!$this->emit('beforeMethod:' . $method, [$request, $response])) return;
472 $this->transactionType = strtolower($method);
479 if ($this->emit('method:' . $method, [$request, $response])) {
481 …sage = "There was no plugin in the system that was willing to handle this " . $method . " method.";
482 if ($method === "GET") {
491 if (!$this->emit('afterMethod:' . $method, [$request, $response])) return;
/plugin/webdav/vendor/sabre/dav/lib/DAV/Locks/
H A DPlugin.php420 $method = $request->getMethod();
424 switch ($method) {
/plugin/webdav/vendor/sabre/dav/lib/DAV/Sharing/
H A DPlugin.php283 $output .= '<tr><td colspan="2"><form method="post" action="">
/plugin/webdav/vendor/sabre/dav/lib/DAVACL/
H A DPlugin.php875 $method = $request->getMethod();
883 switch ($method) {
/plugin/webdav/vendor/sabre/event/
H A DCHANGELOG.md20 ReactPHP and Guzzle. The `error` method is kept for BC but will be removed
27 * Promises now have a `wait()` method. Allowing you to make a promise
41 * Fixed: `$priority` was ignored in `EventEmitter::once` method.
49 triggered after each method handled. This is dubbed the 'continueCallback' and
/plugin/webdav/vendor/sabre/http/
H A DCHANGELOG.md191 * Added: The Request and Response object now have a `__toString()` method that
194 * Changed: Added Response::getStatusText(). This method returns the
219 * Fixed: Doing a GET request with the client uses the last used HTTP method
H A DREADME.md333 * @param string $method
341 * Returns the current HTTP method
348 * Sets the HTTP method
350 * @param string $method
353 function setMethod($method);
486 * method could only work correctly the first time.
521 * If the header does not exist, this method must return null.
542 * This method overwrites all existing HTTP headers
630 * method could only work correctly the first time.
666 * If the header does not exist, this method must return null.
[all …]
/plugin/webdav/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 DRequestDecorator.php44 * @param string $method
47 function setMethod($method) { argument
49 $this->inner->setMethod($method);
H A DRequestInterface.php24 * @param string $method
27 function setMethod($method); argument
H A DSapi.php110 $method = null;
127 $method = $value;
194 $r = new Request($method, $url, $headers);
/plugin/webdav/vendor/sabre/uri/
H A DCHANGELOG.md24 * #10: Correctly support file:// URIs in the build() method. (@yuloh)
/plugin/webdav/vendor/sabre/vobject/
H A DCHANGELOG.md205 * #139: We now _always_ return `DateTimeImmutable` from any method. This could
211 * #237: Added a `destroy()` method to all documents. This method breaks any
217 to `protected`. Use the `children()` method instead to get a flat list of
373 * #163: Added a `getTimeZone()` method to `VTIMEZONE` components.
396 * #118: iTip Message now has a `getScheduleStatus()` method.
623 * Added: helper method to parse vCard dates and times.
679 * Added: remove() method for easily removing properties and sub-components
688 * Added: add() method to the Property class.
695 add() method.
/plugin/webdav/vendor/sabre/vobject/lib/ITip/
H A DBroker.php119 switch ($itipMessage->method) {
519 $message->method = 'CANCEL';
521 $icalMsg->METHOD = $message->method;
547 $message->method = 'REQUEST';
549 $icalMsg->METHOD = $message->method;
698 $message->method = 'REPLY';
H A DMessage.php39 public $method; variable in Sabre\\VObject\\ITip\\Message
/plugin/webdav/vendor/sabre/vobject/resources/schema/
H A Dxcal.rng403 property-method?
653 property-method = element method {
/plugin/webdav/vendor/sabre/xml/
H A DCHANGELOG.md52 * The `Service` class adds a new `mapValueObject` method which provides basic
154 * Major BC Break: method names for the Element interface have been renamed
193 * Added: The writeElement method can now write complex elements.

1...<<313233343536373839