Home
last modified time | relevance | path

Searched refs:status (Results 251 – 275 of 1484) sorted by last modified time

1...<<11121314151617181920>>...60

/plugin/blockquote/
H A DCOPYING255 of preserving the free status of all derivatives of our free software and
/plugin/tos/
H A DLICENSE255 of preserving the free status of all derivatives of our free software and
/plugin/wrap/
H A DCOPYING259 of preserving the free status of all derivatives of our free software and
/plugin/dokucrypt2/
H A DCOPYING259 of preserving the free status of all derivatives of our free software and
/plugin/avbarchart/
H A DCOPYING255 of preserving the free status of all derivatives of our free software and
/plugin/avtaskbox/
H A DCOPYING255 of preserving the free status of all derivatives of our free software and
/plugin/yourip/
H A DLICENSE255 of preserving the free status of all derivatives of our free software and
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/
H A DServerEventsTest.php61 $this->assertEquals('',$this->server->httpResponse->status);
H A DServerPluginTest.php63 $this->assertEquals(200, $this->response->status);
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/Sync/
H A DPluginTest.php98 $this->assertEquals(207, $response->status, 'Full response body:' . $response->body);
221 $this->assertEquals(207, $response->status, 'Full response body:' . $response->body);
330 $this->assertEquals(415, $response->status, 'Full response body:' . $response->body);
359 $this->assertEquals(415, $response->status, 'Full response body:' . $response->body);
389 $this->assertEquals(403, $response->status, 'Full response body:' . $response->body);
418 $this->assertEquals(403, $response->status, 'Full response body:' . $response->body);
446 $this->assertEquals(400, $response->status, 'Full response body:' . $response->body);
473 $this->assertEquals(400, $response->status, 'Full response body:' . $response->body);
490 $this->assertEquals(403, $response->status);
507 $this->assertEquals(403, $response->status);
[all …]
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/Xml/Property/
H A DSupportedMethodSetTest.php36 …$this->assertEquals(207, $this->response->status, 'We expected a multi-status response. Full respo…
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAVACL/
H A DPrincipalSearchPropertySetTest.php51 $this->assertEquals(400, $server->httpResponse->status);
78 $this->assertEquals(400, $server->httpResponse->status, $server->httpResponse->body);
105 $this->assertEquals(200, $server->httpResponse->status, $server->httpResponse->body);
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/Backend/
H A DSharingSupport.php232 function shareReply($href, $status, $calendarUri, $inReplyTo, $summary = null); argument
/plugin/davcal/vendor/sabre/http/
H A DCHANGELOG.md162 human-readable HTTP status message. This part has been removed from
163 Response::getStatus(), which now always returns just the status code as an
203 * Fixed: Not erroring on unknown HTTP status codes.
204 * Fixed: Throwing exceptions on invalid HTTP status codes (not 3 digits).
/plugin/davcal/fullcalendar-3.10.5/
H A Dfullcalendar.js8709 if (request.status !== 'cancelled') {
8710 request.status = 'completed';
8717 if (request.status !== 'cancelled') {
8718 request.status = 'failed';
8728 if (request.status === 'pending') {
8729 request.status = 'cancelled';
8733 else if (request.status === 'completed') {
8745 if (request.status === 'pending') {
8746 request.status = 'cancelled';
8748 else if (request.status === 'completed') {
[all …]
/plugin/davcal/vendor/sabre/http/tests/HTTP/
H A DClientTest.php287 $this->assertEquals(Client::STATUS_SUCCESS, $result['status']);
311 $this->assertEquals(Client::STATUS_CURLERROR, $result['status']);
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/
H A DSharingPlugin.php319 $message->status,
/plugin/davcal/vendor/sabre/uri/
H A DREADME.md28 Build status
31 | branch | status |
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/Xml/Request/
H A DInviteReply.php60 public $status; variable in Sabre\\CalDAV\\Xml\\Request\\InviteReply
69 * @param int $status
71 function __construct($href, $calendarUri, $inReplyTo, $summary, $status) { argument
77 $this->status = $status;
110 $status = null;
124 $status = SharingPlugin::STATUS_ACCEPTED;
127 $status = SharingPlugin::STATUS_DECLINED;
145 return new self($href, $calendarUri, $inReplyTo, $summary, $status);
/plugin/davcal/vendor/sabre/dav/lib/DAV/
H A DPropFind.php118 * @param int $status
121 function set($propertyName, $value, $status = null) { argument
123 if (is_null($status)) {
124 $status = is_null($value) ? 404 : 200;
130 $this->result[$propertyName] = [$status, $value];
134 if ($status !== 404 && $this->result[$propertyName][0] === 404) {
136 } elseif ($status === 404 && $this->result[$propertyName][0] !== 404) {
139 $this->result[$propertyName] = [$status, $value];
H A DPropPatch.php249 foreach ($this->result as $propertyName => $status) {
250 if ($status === 202) {
/plugin/davcal/vendor/sabre/dav/lib/DAV/Xml/Element/
H A DResponse.php122 if ($status = $this->getHTTPStatus()) {
123 …er->writeElement('{DAV:}status', 'HTTP/1.1 ' . $status . ' ' . \Sabre\HTTP\Response::$statusCodes[…
126 foreach ($this->getResponseProperties() as $status => $properties) {
129 if (!$properties || (!ctype_digit($status) && !is_int($status))) {
134 …er->writeElement('{DAV:}status', 'HTTP/1.1 ' . $status . ' ' . \Sabre\HTTP\Response::$statusCodes[…
217 $status = $elem['value']['{DAV:}status'];
218 list(, $status, ) = explode(' ', $status, 3);
220 $propertyLists[$status] = $properties;
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Backend/
H A DMockSharing.php138 function shareReply($href, $status, $calendarUri, $inReplyTo, $summary = null) { argument
141 if ($status === CalDAV\SharingPlugin::STATUS_ACCEPTED) {
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/
H A DFreeBusyReportTest.php110 $this->assertEquals(200, $this->server->httpResponse->status);
H A DICSExportPluginTest.php61 $this->assertEquals(200, $s->httpResponse->status);
112 $this->assertEquals(200, $s->httpResponse->status);
218 …$this->assertEquals(200, $s->httpResponse->status,'Invalid status received. Response body: '. $s->…
267 …$this->assertEquals(400, $s->httpResponse->status,'Invalid status received. Response body: '. $s->…
303 …$this->assertEquals(400, $s->httpResponse->status,'Invalid status received. Response body: '. $s->…
339 …$this->assertEquals(200, $s->httpResponse->status,'Invalid status received. Response body: '. $s->…
379 …$this->assertEquals(400, $s->httpResponse->status,'Invalid status received. Response body: '. $s->…
415 …$this->assertEquals(200, $s->httpResponse->status,'Invalid status received. Response body: '. $s->…
456 …$this->assertEquals(200, $s->httpResponse->status,'Invalid status received. Response body: '. $s->…
493 …$this->assertEquals(200, $s->httpResponse->status,'Invalid status received. Response body: '. $s->…
[all …]

1...<<11121314151617181920>>...60