Home
last modified time | relevance | path

Searched full:body (Results 1 – 25 of 3289) sorted by relevance

12345678910>>...132

/plugin/diagramsnet/lib/styles/
Ddark.css1 html body .geDiagramContainer, html body div.geMenubarContainer, html body td.mxPopupMenuIcon, html…
4 html body .mxCellEditor {
7 html body.geEditor div.mxPopupMenu {
16 html body.geEditor div.mxPopupMenu hr {
19 html body .geTabContainer {
23 html body .geDragPreview {
26 html body .geMenubarContainer .geItem:active, html .geSidebarContainer button:active {
29 html body, html body .geFooterContainer, html body #geFooterItem1, html body textarea,
30 html body .mxWindowTitle, html body .geDialogTitle, html body .geDialogFooter, select,
36 html body a {
[all …]
Datlas.css8 html body .geMenubarContainer .geBigButton {
11 html body .geBigStandardButton:active, .geSidebarContainer .geTitle:active {
15 body .geToolbarContainer .geButton:active, body .geToolbarContainer .geLabel:active {
19 body > .geToolbarContainer .geLabel, body > .geToolbarContainer .geButton {
25 body > .geToolbarContainer {
32 body > .geToolbarContainer > .geToolbar {
35 body > .geToolbarContainer > .geToolbar .geSeparator {
48 html body .geStatus .geStatusAlert {
61 html body .geStatus .geStatusAlert:hover {
65 html body .geStatus .geStatusMessage {
[all …]
/plugin/tip/
Dstyle.css5body .tipld,* html body .tipldh,* html body .tipldi,* html body .tipldn,* html body .tipldw,* html…
8body .tipcd,* html body .tipcdh,* html body .tipcdi,* html body .tipcdn,* html body .tipcdw,* html…
Dsyntax_plugin_tip.css34 * html body .tipld,
35 * html body .tipldh,
36 * html body .tipldi,
37 * html body .tipldn,
38 * html body .tipldw,
39 * html body .tiple,
40 * html body .tipleh,
41 * html body .tiplei,
42 * html body .tiplen,
43 * html body .tiplew,
[all …]
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/tests/
DCachingStreamTest.php17 protected $body; variable in GuzzleHttp\\Tests\\Stream\\CachingStreamTest
25 $this->body = new CachingStream($this->decorated);
31 $this->body->close();
36 $body = Stream::factory('test');
37 $caching = new CachingStream($body);
45 $this->body->seek(10);
50 $this->assertFalse($this->body->seek(2, SEEK_END));
68 $this->assertEquals('te', $this->body->read(2));
69 $this->body->seek(0);
70 $this->assertEquals('test', $this->body->read(4));
[all …]
DLimitStreamTest.php17 protected $body; variable in GuzzleHttp\\Tests\\Http\\LimitStreamTest
25 $this->body = new LimitStream($this->decorated, 10, 3);
30 $body = new LimitStream(Stream::factory('foo'), -1, 1);
31 $this->assertEquals('oo', (string) $body);
32 $this->assertTrue($body->eof());
33 $body->seek(0);
34 $this->assertFalse($body->eof());
35 $this->assertEquals('oo', $body->read(100));
36 $this->assertEmpty($body->read(1));
37 $this->assertTrue($body->eof());
[all …]
/plugin/darkmodetoggle/
Dstyle.css20 body.dark-mode .darkmode-btn {
26 body.dark-mode .darkmode-btn:hover {
31 body.dark-mode {
37 body.dark-mode #dokuwiki__site,
38 body.dark-mode #dokuwiki__header,
39 body.dark-mode #dokuwiki__content,
40 body.dark-mode #dokuwiki__footer {
45 body.dark-mode article {
51 body.dark-mode .container,
52 body.dark-mode .container-fluid {
[all …]
/plugin/matrixnotifierwas/vendor/psr/http-message/docs/
DPSR7-Usage.md75 ### Working with HTTP Message Body
78 #### 1. Getting the body separately
80 > This method makes the body handling easier to understand and is useful when repeatedly calling bo…
83 $body = $response->getBody();
84 // operations on body, eg. read, write, seek
86 // replacing the old body
87 $response->withBody($body);
89 // in this case the "new" body is same with the "old" one
90 // the $body variable has the same value as the one in $request, only the reference is passed
101 ### Getting the body contents
[all …]
/plugin/asciidocjs/node_modules/handlebars/lib/handlebars/compiler/
Dwhitespace-control.js14 let body = program.body;
15 for (let i = 0, l = body.length; i < l; i++) {
16 let current = body[i],
23 let _isPrevWhitespace = isPrevWhitespace(body, i, isRoot),
24 _isNextWhitespace = isNextWhitespace(body, i, isRoot),
31 omitRight(body, i, true);
34 omitLeft(body, i, true);
38 omitRight(body, i);
40 if (omitLeft(body, i)) {
44 current.indent = /([ \t]+$)/.exec(body[i - 1].original)[1];
[all …]
/plugin/asciidocjs/node_modules/handlebars/dist/amd/handlebars/compiler/
Dwhitespace-control.js23 var body = program.body;
24 for (var i = 0, l = body.length; i < l; i++) {
25 var current = body[i],
32 var _isPrevWhitespace = isPrevWhitespace(body, i, isRoot),
33 _isNextWhitespace = isNextWhitespace(body, i, isRoot),
39 omitRight(body, i, true);
42 omitLeft(body, i, true);
46 omitRight(body, i);
48 if (omitLeft(body, i)) {
52 current.indent = /([ \t]+$)/.exec(body[i - 1].original)[1];
[all …]
/plugin/asciidocjs/node_modules/handlebars/dist/cjs/handlebars/compiler/
Dwhitespace-control.js25 var body = program.body;
26 for (var i = 0, l = body.length; i < l; i++) {
27 var current = body[i],
34 var _isPrevWhitespace = isPrevWhitespace(body, i, isRoot),
35 _isNextWhitespace = isNextWhitespace(body, i, isRoot),
41 omitRight(body, i, true);
44 omitLeft(body, i, true);
48 omitRight(body, i);
50 if (omitLeft(body, i)) {
54 current.indent = /([ \t]+$)/.exec(body[i - 1].original)[1];
[all …]
/plugin/revealjs/plugin/zoom-js/
Dzoom.js53 var supportsTransforms = 'WebkitTransform' in document.body.style ||
54 'MozTransform' in document.body.style ||
55 'msTransform' in document.body.style ||
56 'OTransform' in document.body.style ||
57 'transform' in document.body.style;
61 document.body.style.transition = 'transform 0.8s ease';
62 document.body.style.OTransition = '-o-transform 0.8s ease';
63 document.body.style.msTransition = '-ms-transform 0.8s ease';
64 document.body.style.MozTransition = '-moz-transform 0.8s ease';
65 document.body.style.WebkitTransition = '-webkit-transform 0.8s ease';
[all …]
/plugin/supa/lib/
DSupa.js20 // some constants for the request body
25 body,
39 // build request body
40 body = '';
41 body += boundary + cr;
45body += "Content-disposition: form-data; name=\"" + escape(params[i].name) + "\";" + cr;
46 body += cr;
47 body += encodeURI(params[i].value) + cr;
48 body += boundary + cr;
54body += "Content-Disposition: form-data; name=\"" + escape(fieldname_filename) + "\"; filename=\""…
[all …]
/plugin/asciidocjs/node_modules/pug-filters/node_modules/uglify-js/lib/
Dmozilla-ast.js48 var normalize_directives = function(body) { argument
51 for (var i = 0; i < body.length; i++) {
52 … if (in_directive && body[i] instanceof AST_Statement && body[i].body instanceof AST_String) {
53 body[i] = new AST_Directive({
54 start: body[i].start,
55 end: body[i].end,
56 value: body[i].body.value
58 …} else if (in_directive && !(body[i] instanceof AST_Statement && body[i].body instanceof AST_Strin…
63 return body;
71 body: normalize_directives(M.body.map(from_moz)) property
[all …]
Dtransform.js88 self.body = self.body.transform(tw);
92 self.body = self.body.transform(tw);
96 self.body = do_list(self.body, tw);
101 self.body = self.body.transform(tw);
108 self.body = self.body.transform(tw);
114 self.body = self.body.transform(tw);
119 self.body = self.body.transform(tw);
132 self.body = self.body.transform(tw);
138 self.body = do_list(self.body, tw);
143 self.body = do_list(self.body, tw);
[all …]
/plugin/publish/action/
H A Dmail.php85 $body = $this->create_mail_body('change');
90 $mail->setBody($body);
97 * Create the body of mails to inform about a changed or an approved page
112 $body = io_readFile($this->localFN('mailchangetext'));
126 $body = str_replace('@DIFF@', $difflink, $body);
127 $body = str_replace('@APRPRE@', $aprpre, $body);
129 $body = str_replace('@SUMMARY@', $summary, $body);
135 $body = str_replace('@OLDPAGE@', $oldlink, $body);
137 $body = str_replace('@NEWPAGE@', $newlink, $body);
139 $body = io_readFile($this->localFN('mailapprovetext'));
[all …]
/plugin/findologicxmlexport/vendor/twig/extensions/test/Twig/Tests/Node/
DTransTest.php20 $body = new Twig_Node(array(
30 $node = new Twig_Extensions_Node_Trans($body, $plural, $count, null, 0);
32 $this->assertEquals($body, $node->getNode('body'));
41 $body = new Twig_Node_Expression_Name('foo', 0);
42 $node = new Twig_Extensions_Node_Trans($body, null, null, null, 0);
45 $body = new Twig_Node_Expression_Constant('Hello', 0);
46 $node = new Twig_Extensions_Node_Trans($body, null, null, null, 0);
49 $body = new Twig_Node(array(
52 $node = new Twig_Extensions_Node_Trans($body, null, null, null, 0);
55 $body = new Twig_Node(array(
[all …]
/plugin/asciidocjs/node_modules/uglify-js/lib/
Dtransform.js63 self.body = self.body.transform(tw);
66 self.body = self.body.transform(tw);
69 self.body = do_list(self.body, tw);
72 self.body = self.body.transform(tw);
77 self.body = self.body.transform(tw);
83 self.body = self.body.transform(tw);
88 self.body = self.body.transform(tw);
92 self.body = self.body.transform(tw);
102 self.body = self.body.transform(tw);
107 self.body = do_list(self.body, tw);
[all …]
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/
DCore.php219 * Reads the body of a message into a string.
221 * @param array|FutureArrayInterface $message Array containing a "body" key
223 * @return null|string Returns the body as a string or null if not set.
224 * @throws \InvalidArgumentException if a request body is invalid.
226 public static function body($message) function in GuzzleHttp\\Ring\\Core
228 if (!isset($message['body'])) {
232 if ($message['body'] instanceof StreamInterface) {
233 return (string) $message['body'];
236 switch (gettype($message['body'])) {
238 return $message['body'];
[all …]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/
DMsearchTemplate.php69 return isset($this->body) ? 'POST' : 'GET';
72 public function setBody($body): MsearchTemplate argument
74 if (isset($body) !== true) {
77 if (is_array($body) === true || $body instanceof Traversable) {
78 foreach ($body as $item) {
79 $this->body .= $this->serializer->serialize($item) . "\n";
81 } elseif (is_string($body)) {
82 $this->body = $body;
83 if (substr($body, -1) != "\n") {
84 $this->body .= "\n";
[all …]
DMsearch.php71 return isset($this->body) ? 'POST' : 'GET';
74 public function setBody($body): Msearch argument
76 if (isset($body) !== true) {
79 if (is_array($body) === true || $body instanceof Traversable) {
80 foreach ($body as $item) {
81 $this->body .= $this->serializer->serialize($item) . "\n";
83 } elseif (is_string($body)) {
84 $this->body = $body;
85 if (substr($body, -1) != "\n") {
86 $this->body .= "\n";
[all …]
/plugin/quickstats/GEOIP/vendor/maxmind/web-service-common/src/WebService/
DClient.php103 $body = json_encode($input);
104 if ($body === false) {
116 list($statusCode, $contentType, $body) = $request->post($body);
121 $body,
131 list($statusCode, $contentType, $body) = $request->get();
136 $body,
175 * @param string $body the response body
193 $body, argument
198 $this->handle4xx($statusCode, $contentType, $body, $service, $path);
205 return $this->handleSuccess($body, $service);
[all …]
/plugin/html2pdf/html2pdf/html2ps/unittest/
Dtest.float.php9 body { font-size: 10mm; }
13 <body>
15 </body>
20 $body = $tree;
22 $this->assertEqual($body->get_left(),
31 body { font-size: 10mm; }
35 <body>
37 </body>
42 $body = $tree;
44 $this->assertEqual($body->get_right(),
/plugin/davcal/vendor/sabre/http/tests/HTTP/
H A DMessageTest.php16 $body = 'foo';
18 fwrite($h, $body);
24 $this->assertEquals($body, $message->getBodyAsString());
26 $this->assertEquals($body, stream_get_contents($message->getBodyAsStream()));
28 $this->assertEquals($body, stream_get_contents($message->getBody()));
34 $body = 'foo';
37 $message->setBody($body);
39 $this->assertEquals($body, $message->getBodyAsString());
40 $this->assertEquals($body, stream_get_contents($message->getBodyAsStream()));
41 $this->assertEquals($body, $message->getBody());
[all …]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/TextStructure/
DFindStructure.php70 public function setBody($body): FindStructure argument
72 if (isset($body) !== true) {
75 if (is_array($body) === true || $body instanceof Traversable) {
76 foreach ($body as $item) {
77 $this->body .= $this->serializer->serialize($item) . "\n";
79 } elseif (is_string($body)) {
80 $this->body = $body;
81 if (substr($body, -1) != "\n") {
82 $this->body .= "\n";
85 … throw new InvalidArgumentException("Body must be an array, traversable object or string");

12345678910>>...132