Home
last modified time | relevance | path

Searched refs:status (Results 1426 – 1450 of 1484) sorted by path

1...<<51525354555657585960

/plugin/webcode/vendor/
H A Dfirebug-lite-1.4.js1391 }if(state=="Complete"){var success=t.status==200,response=this.getResponse(o);
1397 if(t.status!=200){return t.statusText
4985 }}catch(E){}}}else{if(xhrRequest.readyState==4){self.status=xhrRequest.status;
4990 …dystatechange:1,readyState:1,responseBody:1,responseText:1,responseXML:1,status:1,statusText:1,upl… property in AnonymousFunctionf1d9e84c19400.updateXHRPropertiesIgnore
5000 var success=xhrRequest.status==200;
5012 }}with({row:spy.logRow,status:xhrRequest.status==0?"":xhrRequest.status+" "+xhrRequest.statusText,t…
5015 }handleRequestStatus(success,status,time)
5025 var handleRequestStatus=function(success,status,time){var row=spy.logRow; argument
5029 item.innerHTML=status;
5378 file.status=request.responseStatus;
[all …]
/plugin/webcomponent/syntax/
H A Dheading.php130 if ($handler->status['section']) $handler->_addCall('section_close', array(), $pos);
133 $handler->status['section'] = true;
/plugin/webdav/_test/lib/
H A DDAVServerTest.php76 public $status; variable in ResponseMock
/plugin/webdav/vendor/sabre/dav/
H A DCHANGELOG.md190 * #747: Now throwing exceptions and setting the HTTP status to 500 in subtle
191 cases where no other plugin set a correct HTTP status.
709 * Changed: `PUT` requests with a `Content-Range` header now emit a 400 status
777 * #515: 304 status code was not being sent when checking preconditions.
824 * #464: A PROPFIND allprops request should not return properties with status
1128 * Fixed: Issue 335: Client only deserializes properties with status 200.
1404 * Added: New HTTP status codes from draft-nottingham-http-new-status-04.
1492 * Added: Sabre_DAV_Exception_PaymentRequired exception, to emit HTTP 402 status
2232 * Added: RFC 2324 HTTP 418 status code
H A DREADME.md14 Build status
17 | branch | status | minimum PHP version |
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/Backend/
H A DNotificationSupport.php53 * @param int $status One of the SharingPlugin::STATUS_* constants
59 function shareReply($href, $status, $calendarUri, $inReplyTo, $summary = null); argument
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/
H A DCalendarHome.php338 * @param int $status One of the SharingPlugin::STATUS_* constants
344 function shareReply($href, $status, $calendarUri, $inReplyTo, $summary = null) { argument
350 return $this->caldavBackend->shareReply($href, $status, $calendarUri, $inReplyTo, $summary);
H A DSharingPlugin.php294 $message->status,
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/Xml/Request/
H A DInviteReply.php61 public $status; variable in Sabre\\CalDAV\\Xml\\Request\\InviteReply
70 * @param int $status
72 function __construct($href, $calendarUri, $inReplyTo, $summary, $status) { argument
78 $this->status = $status;
111 $status = null;
125 $status = DAV\Sharing\Plugin::INVITE_ACCEPTED;
128 $status = DAV\Sharing\Plugin::INVITE_DECLINED;
146 return new self($href, $calendarUri, $inReplyTo, $summary, $status);
/plugin/webdav/vendor/sabre/dav/lib/DAV/Browser/
H A DPropFindAll.php71 * @param int $status
74 function set($propertyName, $value, $status = null) { argument
76 if (is_null($status)) {
77 $status = is_null($value) ? 404 : 200;
79 $this->result[$propertyName] = [$status, $value];
/plugin/webdav/vendor/sabre/dav/lib/DAV/
H A DClient.php294 foreach ($statusList as $status => $properties) {
296 if ($status >= 400) {
298 $errorProperties[] = $propName . ' (' . $status . ')';
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.php256 foreach ($this->result as $propertyName => $status) {
257 if ($status === 202) {
H A DServer.php1229 foreach ($result as $propertyName => $status) {
1231 if (!isset($formattedResult[$status])) {
1232 $formattedResult[$status] = [];
1234 $formattedResult[$status][$propertyName] = null;
/plugin/webdav/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[…
129 foreach ($this->getResponseProperties() as $status => $properties) {
132 if (!$properties || (!ctype_digit($status) && !is_int($status))) {
138 …er->writeElement('{DAV:}status', 'HTTP/1.1 ' . $status . ' ' . \Sabre\HTTP\Response::$statusCodes[…
236 $status = $elem['value']['{DAV:}status'];
237 list(, $status, ) = explode(' ', $status, 3);
239 if ($properties) $propertyLists[$status] = $properties;
/plugin/webdav/vendor/sabre/event/
H A DREADME.md25 Build status
28 | branch | status |
/plugin/webdav/vendor/sabre/http/
H A DCHANGELOG.md195 human-readable HTTP status message. This part has been removed from
196 Response::getStatus(), which now always returns just the status code as an
236 * Fixed: Not erroring on unknown HTTP status codes.
237 * Fixed: Throwing exceptions on invalid HTTP status codes (not 3 digits).
H A DREADME.md28 Build status
31 | branch | status |
593 * Returns the current HTTP status.
595 * This is the status-code as well as the human readable string.
602 * Sets the HTTP status code.
604 * This can be either the full HTTP status code with human readable string,
610 * @param string|int $status
614 function setStatus($status);
/plugin/webdav/vendor/sabre/http/lib/
H A DClient.php217 $status = curl_multi_info_read(
222 if ($status && $status['msg'] === CURLMSG_DONE) {
224 $resourceId = intval($status['handle']);
232 … $curlResult = $this->parseCurlResult(curl_multi_getcontent($status['handle']), $status['handle']);
H A DResponse.php88 protected $status; variable in Sabre\\HTTP\\Response
100 * @param string|int $status
106 if (!is_null($status)) $this->setStatus($status);
120 return $this->status;
146 * @param string|int $status
150 function setStatus($status) { argument
152 if (ctype_digit($status) || is_int($status)) {
154 $statusCode = $status;
155 … $statusText = isset(self::$statusCodes[$status]) ? self::$statusCodes[$status] : 'Unknown';
161 ) = explode(' ', $status, 2);
[all …]
H A DResponseDecorator.php63 * @param string|int $status
66 function setStatus($status) { argument
68 $this->inner->setStatus($status);
H A DResponseInterface.php39 * @param string|int $status
43 function setStatus($status); argument
/plugin/webdav/vendor/sabre/vobject/
H A DCHANGELOG.md346 * #177: SCHEDULE-STATUS should not contain a reason phrase, only a status
395 * Changed: iTip broker now sets RSVP status to false when replies are received.
H A DREADME.md31 Build status
34 | branch | status |
/plugin/webdav/vendor/sabre/vobject/lib/
H A DFreeBusyGenerator.php381 $status = strtoupper($component->STATUS);
382 if ('CANCELLED' === $status) {
385 if ('TENTATIVE' === $status) {

1...<<51525354555657585960