Home
last modified time | relevance | path

Searched refs:body (Results 451 – 475 of 1980) sorted by path

1...<<11121314151617181920>>...80

/plugin/date/
H A DLICENSE235 the limitation as if written in the body of this License.
/plugin/datedifference/
H A DLICENSE235 the limitation as if written in the body of this License.
/plugin/datepicker/
H A DLICENSE235 the limitation as if written in the body of this License.
H A Dstyle.css77 /* The body part -- contains all the days in month. */
/plugin/datepicker/script/jscalendar-1.0/
H A Dcalendar.js475 posY = window.event.clientY + document.body.scrollTop;
476 posX = window.event.clientX + document.body.scrollLeft;
1407 document.body.appendChild(cp);
1409 document.body.removeChild(cp);
1411 br.y += document.body.scrollTop;
1412 br.x += document.body.scrollLeft;
1575 posY = window.event.clientY + document.body.scrollTop;
1576 posX = window.event.clientX + document.body.scrollLeft;
/plugin/davcal/datetimepicker-2.4.5/
H A Djquery.datetimepicker.js628 $(document.body).addClass('xdsoft_noselect');
630 $([document.body, window]).on('mouseup.xdsoft_scroller', function arguments_callee() {
631 $([document.body, window]).off('mouseup.xdsoft_scroller', arguments_callee)
635 $(document.body).on('mousemove.xdsoft_scroller', calcOffset);
1409 $([document.body, window]).on('mouseup.xdsoft', function arguments_callee2() {
1412 $([document.body, window]).off('mouseup.xdsoft', arguments_callee2);
1438 $([document.body, window]).on('mouseup.xdsoft', function arguments_callee5() {
1441 $([document.body, window])
1866 $([document.body, window]).on('mousedown.xdsoft', function arguments_callee6() {
1868 $([document.body, window]).off('mousedown.xdsoft', arguments_callee6);
[all …]
/plugin/davcal/fullcalendar-3.10.5/
H A Dfullcalendar.less13 body .fc {
150 /* TODO: be more consistent with fc-head/fc-body */
755 .fc-bootstrap3 .fc-popover .panel-body {
784 .fc-bootstrap4 .fc-popover .card-body {
872 .fc-basic-view .fc-body .fc-row {
/plugin/davcal/vendor/sabre/dav/bin/
H A Dgooglecode_upload.py87 content_type, body = encode_upload_request(form_fields, file)
99 server.request('POST', upload_uri, body, headers)
122 body = []
126 body.extend(
139 body.extend(
150 body.extend(['--' + BOUNDARY + '--', ''])
152 return 'multipart/form-data; boundary=%s' % BOUNDARY, CRLF.join(body)
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/
H A DPlugin.php258 $body = $request->getBodyAsString();
263 if ($body) {
268 $body
/plugin/davcal/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/davcal/vendor/sabre/dav/lib/DAV/Browser/assets/
H A Dsabredav.css8 body { selector
34 body { selector
/plugin/davcal/vendor/sabre/dav/lib/DAV/
H A DClient.php219 $body = $dom->saveXML();
226 ], $body);
332 * @param string|resource|null $body
337 function request($method, $url = '', $body = null, array $headers = []) { argument
341 $response = $this->send(new HTTP\Request($method, $url, $headers, $body));
398 * @param string $body xml body
401 function parseMultiStatus($body) { argument
403 $multistatus = $this->xml->expect('{DAV:}multistatus', $body);
H A DCorePlugin.php83 $body = $node->get();
86 if (is_string($body)) {
88 fwrite($stream, $body);
90 $body = $stream;
176 fseek($body, $start, SEEK_SET);
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/davcal/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/davcal/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/davcal/vendor/sabre/dav/lib/DAVACL/
H A DPlugin.php1017 $body = $request->getBodyAsString();
1019 if (!$body) {
1023 $acl = $this->server->xml->expect('{DAV:}acl', $body);
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/
H A DExpandEventsDTSTARTandDTENDTest.php83 $body = substr(
84 $response->body,
85 $start = strpos($response->body, 'BEGIN:VCALENDAR'),
86 strpos($response->body, 'END:VCALENDAR') - $start + 13
88 $body = str_replace('&#13;','',$body);
91 $vObject = VObject\Reader::read($body);
H A DExpandEventsDTSTARTandDTENDbyDayTest.php74 $body = substr(
75 $response->body,
76 $start = strpos($response->body, 'BEGIN:VCALENDAR'),
77 strpos($response->body, 'END:VCALENDAR') - $start + 13
79 $body = str_replace('&#13;','',$body);
81 $vObject = VObject\Reader::read($body);
H A DExpandEventsDoubleEventsTest.php86 $body = substr(
87 $response->body,
88 $start = strpos($response->body, 'BEGIN:VCALENDAR'),
89 strpos($response->body, 'END:VCALENDAR') - $start + 13
91 $body = str_replace('&#13;','',$body);
93 $vObject = VObject\Reader::read($body);
96 … $this->assertEquals(3, count($vObject->VEVENT),'We got 6 events instead of 3. Output: ' . $body);
H A DExpandEventsFloatingTimeTest.php96 $body = substr(
97 $response->body,
101 $body = str_replace('&#13;','',$body);
103 $vObject = VObject\Reader::read($body);
145 $body = substr(
146 $response->body,
150 $body = str_replace('&#13;','',$body);
152 $vObject = VObject\Reader::read($body);
183 $body = substr(
184 $response->body,
[all …]
H A DFreeBusyReportTest.php112 $this->assertTrue(strpos($this->server->httpResponse->body, 'BEGIN:VFREEBUSY')!==false);
113 …$this->assertTrue(strpos($this->server->httpResponse->body, '20111005T120000Z/20111005T130000Z')!=…
114 …$this->assertTrue(strpos($this->server->httpResponse->body, '20111006T100000Z/20111006T110000Z')!=…
H A DGetEventsByTimerangeTest.php78 if (strpos($response->body, 'BEGIN:VCALENDAR') === false) {
79 $this->fail('Got no events instead of 1. Output: '.$response->body);
83 $body = substr(
84 $response->body,
85 $start = strpos($response->body, 'BEGIN:VCALENDAR'),
86 strpos($response->body, 'END:VCALENDAR') - $start + 13
88 $body = str_replace('&#13;','',$body);
90 $vObject = VObject\Reader::read($body);
93 … $this->assertEquals(1, count($vObject->VEVENT), 'We got 0 events instead of 1. Output: ' . $body);
H A DICSExportPluginTest.php66 $obj = VObject\Reader::read($s->httpResponse->body);
117 $obj = VObject\Reader::read($s->httpResponse->body);
218 …(200, $s->httpResponse->status,'Invalid status received. Response body: '. $s->httpResponse->body);
224 $obj = VObject\Reader::read($s->httpResponse->body);
267 …(400, $s->httpResponse->status,'Invalid status received. Response body: '. $s->httpResponse->body);
303 …(400, $s->httpResponse->status,'Invalid status received. Response body: '. $s->httpResponse->body);
339 …(200, $s->httpResponse->status,'Invalid status received. Response body: '. $s->httpResponse->body);
340 $obj = VObject\Reader::read($s->httpResponse->body);
416 $obj = VObject\Reader::read($s->httpResponse->body);
572 $obj = VObject\Reader::read($s->httpResponse->body);
[all …]
H A DIssue203Test.php87 $body = substr(
88 $response->body,
89 $start = strpos($response->body, 'BEGIN:VCALENDAR'),
90 strpos($response->body, 'END:VCALENDAR') - $start + 13
92 $body = str_replace('&#13;','',$body);
94 $vObject = VObject\Reader::read($body);
H A DIssue205Test.php81 …s->assertFalse(strpos($response->body, '<s:exception>Exception</s:exception>'), 'Exception occurre…
82 …s->assertFalse(strpos($response->body, 'Unknown or bad format'), 'DateTime unknown format Exceptio…
85 $body = substr(
86 $response->body,
87 $start = strpos($response->body, 'BEGIN:VCALENDAR'),
88 strpos($response->body, 'END:VCALENDAR') - $start + 13
90 $body = str_replace('&#13;','',$body);
92 $vObject = VObject\Reader::read($body);

1...<<11121314151617181920>>...80