Home
last modified time | relevance | path

Searched refs:body (Results 1851 – 1875 of 1980) sorted by path

1...<<71727374757677787980

/plugin/webcode/vendor/
H A Dfirebug-lite-1.2.js567 values+='popupWidth:'+document.body.clientWidth+',';
1437 if(d.html.current==null&&item==document.body){
1854 if(target!=document.body&&
2077 …var parent = _element,offsetLeft = document.body.offsetLeft, offsetTop = document.body.offsetTop, …
2201 this.body = {};
2229 this.movePrivateMembers(this.body,_private);
2233 fn.prototype = this.body;
2285 pi.element.body = { class in pi.element
2475 pi.xhr.body = { class in pi.xhr
2506 pi.xhr.body.environment = {
[all …]
H A Dfirebug-lite-1.4.js85 if(body){calculatePixelsPerInch(doc,body);
521 if(!od.body){return clientRect
839 this.getBody=function(doc){if(doc.body){return doc.body
841 if(body){return body
1273 doc.body.appendChild(frame);
1427 body.appendChild(inch);
1429 body.removeChild(inch)
2207 this.document.body.appendChild(box);
2212 this.document.body.removeChild(box);
2298 body.appendChild(node);
[all …]
/plugin/webcode/
H A DwebCodeConsole.css11 body { selector
/plugin/webcomponent/
H A DREADME.md25 * Suppress in teaser - the card body if there is only a image
H A Dstyle.css2 .card .card-body h4.card-title {
/plugin/webdav/_test/lib/
H A DDAVServerTest.php75 public $body; variable in ResponseMock
/plugin/webdav/_test/
H A Dwebdav.test.php63 $body = $response->getBodyAsString();
65 $xml = simplexml_load_string($body);
/plugin/webdav/core/Plugin/
H A DFakeLocker.php141 $body = $this->server->xml->write('{DAV:}prop', [
146 $response->setBody($body);
/plugin/webdav/vendor/sabre/dav/
H A DCHANGELOG.md918 * Fixed: If event handlers modify the request body from a PUT request, an ETag
1751 * Fixed: Issue 105: Supporting MKCALENDAR with no body.
2363 * Added: PROPFIND now reads the request body and only supplies the requested
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/
H A DPlugin.php272 $body = $request->getBodyAsString();
277 if ($body) {
282 $body
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/Schedule/
H A DIMipPlugin.php157 * @param string $body iCalendar body
161 protected function mail($to, $subject, $body, array $headers) { argument
163 mail($to, $subject, $body, implode("\r\n", $headers));
/plugin/webdav/vendor/sabre/dav/lib/DAV/Browser/assets/
H A Dsabredav.css8 body { selector
34 body { selector
/plugin/webdav/vendor/sabre/dav/lib/DAV/
H A DClient.php364 * @param string|resource|null $body
369 function request($method, $url = '', $body = null, array $headers = []) { argument
373 $response = $this->send(new HTTP\Request($method, $url, $headers, $body));
420 * @param string $body xml body
423 function parseMultiStatus($body) { argument
425 $multistatus = $this->xml->expect('{DAV:}multistatus', $body);
H A DCorePlugin.php85 $body = $node->get();
88 if (is_string($body)) {
90 fwrite($stream, $body);
92 $body = $stream;
177 if (!stream_get_meta_data($body)['seekable'] || fseek($body, $start, SEEK_SET) === -1) {
188 $response->setBody($body);
194 $response->setBody($body);
449 $body = $request->getBodyAsStream();
489 $firstByte = fread($body, 1);
499 stream_copy_to_stream($body, $newBody);
[all …]
/plugin/webdav/vendor/sabre/dav/lib/DAV/Locks/
H A DPlugin.php177 if ($body = $request->getBodyAsString()) {
188 $lockInfo = $this->parseLockRequest($body);
548 * @param string $body
551 protected function parseLockRequest($body) { argument
555 $body
/plugin/webdav/vendor/sabre/dav/lib/DAV/PartialUpdate/
H A DPlugin.php161 $body = $this->server->httpRequest->getBody();
164 $etag = $node->patch($body, $range[0], isset($range[1]) ? $range[1] : null);
/plugin/webdav/vendor/sabre/dav/lib/DAVACL/
H A DPlugin.php1169 $body = $request->getBodyAsString();
1171 if (!$body) {
1175 $acl = $this->server->xml->expect('{DAV:}acl', $body);
/plugin/webdav/vendor/sabre/http/
H A DCHANGELOG.md84 request, the client discards the body.
152 * Fixed: #7: Client now correctly deals with responses without a body.
173 * Fixed: getBodyAsString on an empty body now works.
H A DREADME.md336 * @param resource $body
473 * Returns the body as a readable stream resource.
483 * Returns the body as a string.
502 * Updates the body resource with a new stream.
504 * @param resource $body
507 function setBody($body);
617 * Returns the body as a readable stream resource.
627 * Returns the body as a string.
647 * Updates the body resource with a new stream.
649 * @param resource $body
[all …]
/plugin/webdav/vendor/sabre/http/lib/Auth/
H A DAWS.php93 $body = $this->request->getBody();
94 $this->request->setBody($body);
96 if ($contentMD5 != base64_encode(md5($body, true))) {
H A DDigest.php144 $body = $this->request->getBody($asString = true);
145 $this->request->setBody($body);
146 $A2 .= ':' . md5($body);
/plugin/webdav/vendor/sabre/http/lib/
H A DClient.php414 $body = $request->getBody();
415 if (is_resource($body)) {
425 $settings[CURLOPT_POSTFIELDS] = (string)$body;
H A DMessage.php23 protected $body; variable in Sabre\\HTTP\\Message
49 $body = $this->getBody();
50 if (is_string($body) || is_null($body)) {
56 return $body;
70 $body = $this->getBody();
71 if (is_string($body)) {
72 return $body;
74 if (is_null($body)) {
94 return $this->body;
103 function setBody($body) { argument
[all …]
H A DMessageDecoratorTrait.php71 * @param resource $body
74 function setBody($body) { argument
76 $this->inner->setBody($body);
H A DMessageInterface.php47 * @param resource|string $body
50 function setBody($body); argument

1...<<71727374757677787980