Home
last modified time | relevance | path

Searched refs:body (Results 301 – 325 of 1980) sorted by relevance

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

/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Subscriptions/
H A DCreateSubscriptionTest.php18 $body = <<<XML
45 $request = new Request('MKCOL', '/calendars/user1/subscription1', $headers, $body);
59 $body = <<<XML
89 $request = new Request('MKCALENDAR', '/calendars/user1/subscription1', $headers, $body);
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/inheritance/
H A Dnested_inheritance.test8 {% block body %}
10 {% endblock body %}
12 {% block body '' %}
/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);
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Namespaces/
H A DIlmNamespace.php113 * $params['body'] = (array) Optionally specify a legacy index template name to delete and optionally specify a node attribute name used for index shard routing (defaults to "data")
121 $body = $this->extractArgument($params, 'body');
126 $endpoint->setBody($body);
134 * $params['body'] = (array) The new lifecycle step to move to
143 $body = $this->extractArgument($params, 'body');
149 $endpoint->setBody($body);
157 * $params['body'] = (array) The lifecycle policy definition to register
166 $body
[all...]
H A DRollupNamespace.php126 * $params['body'] = (array) The job configuration (Required)
138 $body = $this->extractArgument($params, 'body');
144 $endpoint->setBody($body);
153 * $params['body'] = (array) The rollup configuration (Required)
166 $body = $this->extractArgument($params, 'body');
173 $endpoint->setBody($body);
184 * $params['body'] = (array) The search request body (Require
[all...]
H A DWatcherNamespace.php118 * $params['body'] = (array) Execution control
127 $body = $this->extractArgument($params, 'body');
133 $endpoint->setBody($body);
165 * $params['body'] = (array) The watch
174 $body = $this->extractArgument($params, 'body');
180 $endpoint->setBody($body);
187 * $params['body'] = (array) From, size, query, sort and search_after
195 $body
[all...]
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DRequest.php30 * @param string|resource|StreamInterface|null $body Request body
37 $body = null, argument
54 if ($body !== '' && $body !== null) {
55 $this->stream = Utils::streamFor($body);
H A DServerRequest.php61 * @param string|resource|StreamInterface|null $body Request body
69 $body = null, argument
75 parent::__construct($method, $uri, $headers, $body, $version);
175 $body = new CachingStream(new LazyOpenStream('php://input', 'r+'));
178 $serverRequest = new ServerRequest($method, $uri, $headers, $body, $protocol, $_SERVER);
/plugin/codehighlight/cp/
H A Dcodepress.css1 body { selector
16 html>body{background-position:0 2px;}
20 body.hide-line-numbers {background:white;margin-left:16px;}
21 body.show-line-numbers {background-image:url("images/line-numbers.png");margin-left:32px;}
/plugin/findologicxmlexport/vendor/twig/twig/src/TokenParser/
H A DIfTokenParser.php41 $body = $this->parser->subparse([$this, 'decideIfFork']);
42 $tests = [$expr, $body];
56 $body = $this->parser->subparse([$this, 'decideIfFork']);
58 $tests[] = $body;
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/
H A DAsseticTokenParser.php122 $body = $this->parser->subparse(array($this, 'testEndTag'), true);
136 …return $this->createBodyNode($asset, $body, $inputs, $filters, $name, $attributes, $token->getLine…
161 …protected function createBodyNode(AssetInterface $asset, \Twig_Node $body, array $inputs, array $f… argument
168 … return $this->createNode($asset, $body, $inputs, $filters, $name, $attributes, $lineno, $tag);
171 return new AsseticNode($asset, $body, $inputs, $filters, $name, $attributes, $lineno, $tag);
188 …protected function createNode(AssetInterface $asset, \Twig_NodeInterface $body, array $inputs, arr… argument
192 if (!$body instanceof \Twig_Node) {
196 return new AsseticNode($asset, $body, $inputs, $filters, $name, $attributes, $lineno, $tag);
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Connections/
H A DConnection.php199 * @param null $body
204 public function performRequest(string $method, string $uri, ?array $params = [], $body = null, array $options = [], Transport $transport = null) argument
206 if ($body !== null) {
207 $body = $this->serializer->serialize($body);
224 'body' => $body,
300 $request['body'],
321 if (isset($response['body']) === true) {
322 $response['body']
329 $body = $response['body'] ?? ''; global() variable in Elasticsearch\\Connections\\Connection
648 buildCurlCommand(string $method, string $url, string $body) global() argument
737 convertBodyToString($body, int $statusCode, Exception $exception) global() argument
[all...]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/examples/
H A D804a97ff4d0613e6568e4efb19c52021.asciidoc6 'body' => [
14 'body' => [
22 'body' => [
/plugin/openid/Auth/Yadis/
H A DPlainHTTPFetcher.php54 $body = '';
127 list($headers, $body) = explode("\r\n\r\n", $data, 2);
157 return new Auth_Yadis_HTTPResponse($url, $code, $new_headers, $body);
160 function post($url, $body, $extra_headers = null) argument
178 $headers[] = "Content-length: " . strval(strlen($body));
189 $request = $all_headers . "\r\n\r\n" . $body;
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dsearch-operations.asciidoc35 'body' => [
50 JSON request body. This makes it very simple to convert JSON examples into PHP.
58 'body' => [
67 print_r(json_encode($params['body']));
78 migrating from a different system. You can use raw JSON as a string in the body,
93 'body' => $json
110 'body' => [
161 'body' => [
216 'body' => [
251 {ref-7x}/search-request-body
[all...]
/plugin/editsections/
H A Dall.css8 Note: Adding the 'body' selector makes these rules more specific, and so
14 body div.dokuwiki div.secedit {
18 body div.dokuwiki div.secedit input.button {
23 body div.dokuwiki h0 {
/plugin/indexmenu/
H A Dadmin.php
/plugin/fckg/fckeditor/editor/plugins/autogrow/
H A Dfckplugin.js83 iInnerHeight = oInnerDoc.body.scrollHeight ;
88 iInnerHeight = oInnerDoc.body.offsetHeight +
89 ( parseInt( FCKDomTools.GetCurrentElementStyle( oInnerDoc.body, 'margin-top' ), 10 ) || 0 ) +
90 ( parseInt( FCKDomTools.GetCurrentElementStyle( oInnerDoc.body, 'margin-bottom' ), 10 ) || 0 ) ;
/plugin/galleryv1.5/
H A Dscript.js55 : d.body.clientWidth;
59 : d.body.clientHeight;
74 : (d.body.scrollWidth > d.body.offsetWidth) ? d.body.scrollWidth
75 : d.body.offsetWidt;
78 : (d.body.scrollHeight > d.body.offsetHeight) ? d.body.scrollHeight
79 : d.body.offsetHeight;
97 : (d.body) ? d.body.scrollLeft
102 : (d.body) ? d.body.scrollTop
157 var body = d.getElementsByTagName("body")[0];
158 self._wrap = self._createWrapOn(body,option.loadingimg);
[all …]
/plugin/dokumicrobugtracker/
H A Dsyntax.php312 $body = "<tbody>";
318 …$body .= '<tr id = "'.$data['project'].' '.$this->_get_one_value($bug,'id').'" class="'.$this->_st…
326 $body .= '<td class="deleterow">Delete</td>';
328 $body .= '</tr>';
331 $body .= '</tbody></table></div>';
332 return $head.$body;
356 …$body='A new bug have entered in the project : '.$project.' (id : '.$id.")\n\n".' Version : '.$ver…
360 mail_send($to, $subject, $body, $from, $cc='', $bcc='', $headers=null, $params=null);
/plugin/txt2tags/
H A Dtxt2tags.class.php192 $body = implode("\n", $lines);
193 $body = $this->Restore($body);
194 $body = str_replace(array("\032\032", "\033\033"), '', $body);
198 $this->bodyhtml = $this->run_postproc($body); # %!postproc replacements
200 $GLOBALS['T2TVersion'], $this->csslink, $body);
252 $body = implode("\n", $lines);
254 $body = preg_replace($a[0], $a[1], $body);
256 return explode("\n", $body);
258 function run_postproc($body) { # make the replacements argument
260 $body = preg_replace($a[0], $a[1], $body);
[all …]
/plugin/issuetracker/
H A Dedit.php46 $body = chr(10).$lang['issuemod_head'].chr(10).chr(10).
62 $body = html_entity_decode($body);
70 … mail_send_html($to, $subject, $body, $bodyhtml, $from, $cc, $bcc='', $headers, $params=null);
73 mail_send($to, $subject, $body, $from, $cc, $bcc='', $headers=null, $params=null);
95 $body = chr(10).$lang['issueassigned_head'].chr(10).chr(10).
109 $body = html_entity_decode($body);
118 … mail_send_html($to, $subject, $body, $bodyhtml, $from, $cc, $bcc='', $headers, $params=null);
121 mail_send($to, $subject, $body, $from, $cc='', $bcc='', $headers=null, $params=null);
131 …function mail_send_html($to, $subject, $body, $bodyhtml, $from='', $cc='', $bcc='', $header='', $p… argument
158 $body = mail_quotedprintable_encode($body,0);
[all …]
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Handler/
H A DCurlFactory.php112 $body = $easy->response->getBody();
113 if ($body->isSeekable()) {
114 $body->rewind();
235 $body = $easy->request->getBody();
236 $size = $body->getSize();
281 $body = $request->getBody();
282 if ($body->isSeekable()) {
283 $body->rewind();
286 return $body->read($length);
516 if ($body->tell() > 0) {
[all …]
/plugin/instantpage/lib/
H A D5.1.0.js2body.dataset,a="instantAllowExternalLinks"in document.body.dataset,r="instantWhitelist"in document…
/plugin/diagramsnet/lib/js/
H A Dclear.js5 document.body.appendChild(document.createTextNode(text));
11 document.body.appendChild(document.createElement('br'));
38 document.body.appendChild(link);

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