Home
last modified time | relevance | path

Searched full:boundary (Results 1 – 25 of 223) sorted by relevance

123456789

/plugin/authgoogle/google/service/
H A DGoogle_BatchRequest.php22 /** @var string Multipart Boundary. */
23 private $boundary; variable in Google_BatchRequest
29 $boundary = (false == $boundary) ? mt_rand() : $boundary;
30 $this->boundary = str_replace('"', '', $boundary);
46 $body .= "--{$this->boundary}\n";
51 $body .= "\n--{$this->boundary}--";
57 'Content-Type' => 'multipart/mixed; boundary=' . $this->boundary));
69 $boundary = false;
73 $boundary = $part[1];
79 $body = str_replace("--$boundary--", "--$boundary", $body);
[all …]
H A DGoogle_MediaFileUpload.php126 $boundary = isset($params['boundary']['value']) ? $params['boundary']['value'] : mt_rand();
127 $boundary = str_replace('"', '', $boundary);
128 $payload['content-type'] = 'multipart/related; boundary=' . $boundary;
129 $related = "--$boundary\r\n";
132 $related .= "--$boundary\r\n";
136 $related .= "--$boundary--";
/plugin/authfacebook/lib/Http/
H A DRequestBodyMultipart.php40 * @var string The boundary.
42 private $boundary; variable in Facebook\\Http\\RequestBodyMultipart
57 * @param string $boundary Provide a specific boundary.
59 public function __construct(array $params = [], array $files = [], $boundary = null) argument
63 $this->boundary = $boundary ?: uniqid();
85 $body .= "--{$this->boundary}--\r\n";
91 * Get the boundary
97 return $this->boundary;
112 $this->boundary,
132 $this->boundary,
/plugin/authgooglesheets/vendor/google/apiclient/src/Http/
H A DBatch.php45 /** @var string Multipart Boundary. */
46 private $boundary; variable in Google\\Http\\Batch
60 $boundary = false, argument
65 $this->boundary = $boundary ?: mt_rand();
114 $this->boundary,
124 $body .= "--{$this->boundary}--";
128 'Content-Type' => sprintf('multipart/mixed; boundary=%s', $this->boundary),
148 $boundary = false;
152 $boundary = $part[1];
158 $body = str_replace("--$boundary--", "--$boundary", $body);
[all …]
H A DMediaFileUpload.php66 private $boundary; variable in Google\\Http\\MediaFileUpload
244 $boundary = $this->boundary ?: mt_rand();
245 $boundary = str_replace('"', '', $boundary);
246 $contentType = 'multipart/related; boundary=' . $boundary;
247 $related = "--$boundary\r\n";
250 $related .= "--$boundary\r\n";
254 $related .= "--$boundary--";
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DMultipartStream.php17 private $boundary; variable in GuzzleHttp\\Psr7\\MultipartStream
27 * @param string $boundary You can optionally provide a specific boundary
31 public function __construct(array $elements = [], $boundary = null) argument
33 $this->boundary = $boundary ?: sha1(uniqid('', true));
38 * Get the boundary
44 return $this->boundary;
62 return "--{$this->boundary}\r\n" . trim($str) . "\r\n\r\n";
76 // Add the trailing boundary with CRLF
77 $stream->addStream(Utils::streamFor("--{$this->boundary}--\r\n"));
/plugin/supa/lib/
H A DSupa.js23 boundary = '--' + boundaryString,
41 body += boundary + cr;
48 body += boundary + cr;
59 // last boundary, no extra cr here!
60 body += boundary + "--" + cr;
74 …xrequest.setRequestHeader("Content-Type", "multipart/form-data; charset=UTF-8; boundary=" + bounda…
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Books/
H A DGeolayerdataGeo.php22 protected $collection_key = 'boundary';
26 public $boundary; variable in Google\\Service\\Books\\GeolayerdataGeo
51 public function setBoundary($boundary) argument
53 $this->boundary = $boundary;
60 return $this->boundary;
/plugin/swiftmail/Swift/Message/
H A DMime.php82 * The boundary used to separate mime parts
85 protected $boundary = null; variable in Swift_Message_Mime
113 * Compute a unique boundary
120 $boundary = uniqid(rand(), true);
121 } while (in_array($boundary, self::$usedBoundaries));
122 self::$usedBoundaries[] = $boundary;
123 return "_=_swift-" . $boundary . "_=_";
285 if ($this->boundary === null) $this->boundary = self::generateBoundary();
286 $this->headers->setAttribute("Content-Type", "boundary", $this->boundary);
291 $this->cache->write("append", $this->LE . "--" . $this->boundary . $this->LE);
[all …]
/plugin/diagramsnet/lib/js/diagramly/sidebar/
H A DSidebar-BPMN.js906 …l=timer;', w, h, '', 'Timer Intermediate, Boundary Interrupting', null, null, dt + 'timer intermed…
915 …l=error;', w, h, '', 'Error Intermediate, Boundary Interrupting', null, null, dt + 'error intermed…
983 …boundInt;symbol=message;', w, h, '', 'Message Boundary (Interrupting)', null, null, dt + 'message
991 …2 + 'boundInt;symbol=timer;', w, h, '', 'Timer Boundary (Interrupting)', null, null, dt + 'timer b…
995 …t;symbol=escalation;', w, h, '', 'Escalation Boundary (Interrupting)', null, null, dt + 'escalatio…
1003 …ymbol=conditional;', w, h, '', 'Conditional Boundary (Interrupting)', null, null, dt + 'conditiona…
1008 …2 + 'boundInt;symbol=error;', w, h, '', 'Error Boundary (Interrupting)', null, null, dt + 'error b…
1010 …+ 'boundInt;symbol=cancel;', w, h, '', 'Cancel Boundary (Interrupting)', null, null, dt + 'cancel
1013 …bol=compensation;', w, h, '', 'Compensation Boundary (Interrupting)', null, null, dt + 'compensati…
1020 …+ 'boundInt;symbol=signal;', w, h, '', 'Signal Boundary (Interrupting)', null, null, dt + 'signal
[all …]
H A DSidebar-ThreatModeling.js19 …Top=-3;', w * 2.9, h * 1.4, 'Trust Boundary', 'Trust Boundary', null, null, this.getTagsForStencil…
20 …;align=left;', w * 0.2, h * 3.3, '', 'Trust Boundary', null, null, this.getTagsForStencil(gn, 'tru…
/plugin/dw2pdf/vendor/setasign/fpdi/src/PdfReader/
H A DPage.php173 * Get a boundary of this page.
219 $boundary = $this->getBoundary($box, $fallback);
220 if ($boundary === false) {
228 $interchange ? $boundary->getHeight() : $boundary->getWidth(),
229 $interchange ? $boundary->getWidth() : $boundary->getHeight()
H A DPageBoundaries.php13 * An abstract class for page boundary constants and some helper methods
86 * Checks if a name is a valid page boundary name.
88 * @param string $name The boundary name
/plugin/wysiwyg/fckeditor/editor/_source/classes/
H A Dfckdomrange_ie.js46 // Set the start boundary.
50 // Set the end boundary.
96 // Position the range at the start boundary.
108 // Move the end boundary of the main range to match the tool range.
171 // Get a range for the start boundary.
H A Dfckdomrange.js189 // Move the start boundary to the start of the block.
227 // Move the end boundary to the end of the block.
441 * Moves the position of the start boundary of the range to a specific position
478 * Moves the position of the start boundary of the range to a specific position
521 // are in their boundary limits.
526 // Expand the start boundary.
548 // Expand the end boundary.
596 // We must look for the left boundary, relative to the range
616 // We must look for the right boundary, relative to the range
627 // In EnterMode='br', the end <br> boundary element must
[all …]
H A Dfckw3crange.js73 // boundary, the range should be collapsed to the new start. It seams we
90 // boundary, the range should be collapsed to the new end. It seams we
158 // Check if it is necessary to update the end boundary.
172 // Check if it is necessary to update the end boundary.
224 // start boundary may interfere on the results here.
/plugin/geophp/vendor/funiq/geophp/src/Geometry/
H A DMultiGeometry.php42 // By default, the boundary of a collection is the boundary of it's components
43 public function boundary() function in geoPHP\\Geometry\\MultiGeometry
52 return $this->getGeos()->boundary();
58 $componentsBoundaries[] = $component->boundary();
H A DPolygon.php254 * @param boolean $pointOnBoundary - whether a boundary should be considered "in" or not
267 // Check if the point is inside the polygon or on the boundary
279 // Check if point is on an horizontal polygon boundary
293 // Check if point is on the polygon boundary (other than horizontal)
372 public function boundary() function in geoPHP\\Geometry\\Polygon
374 // TODO: Implement boundary() method.
/plugin/authgooglesheets/vendor/google/apiclient-services/src/TagManager/
H A DZone.php85 public function setBoundary(ZoneBoundary $boundary) argument
87 $this->boundary = $boundary;
94 return $this->boundary;
/plugin/davcal/vendor/sabre/dav/bin/
H A Dgooglecode_upload.py119 BOUNDARY = '----------Googlecode_boundary_reindeer_flotilla'
127 ['--' + BOUNDARY,
140 ['--' + BOUNDARY,
150 body.extend(['--' + BOUNDARY + '--', ''])
152 return 'multipart/form-data; boundary=%s' % BOUNDARY, CRLF.join(body)
/dokuwiki/inc/
H A DMailer.class.php27 protected $boundary = '';
38 * Initializes the boundary strings, part counters and token replacements
50 $this->boundary = '__________' . md5(uniqid(random_int(0, mt_getrandmax()), true));
473 $mime .= '--' . $this->boundary . MAILHEADER_EOL;
528 ' boundary="' . $this->boundary . 'XX"';
529 $body .= '--' . $this->boundary . 'XX' . MAILHEADER_EOL;
534 $body .= '--' . $this->boundary . 'XX' . MAILHEADER_EOL;
536 ' boundary="' . $this->boundary
24 protected $boundary = ''; global() variable in Mailer
[all...]
/plugin/diagramsnet/lib/js/orgchart/
H A DOrgChart.Layout.min.js1Boundary",{Left:null,Right:null,m_spacerMerger:null,config:{properties:{BoundingRect:null},init:fu… argument
/plugin/tindexmenu/
H A Dadmin.php295 $boundary = "---------------------------".uniqid("");
300 $header.= "Content-type: multipart/form-data, boundary=$boundary\r\n";
301 $body="--".$boundary."\r\n";
305 $body.= "--".$boundary."\r\n";
308 $body.="--".$boundary."--\r\n";
/plugin/diagramsnet/lib/js/croppie/
H A Dcroppie.min.js1boundary=document.createElement("div"),n=a.elements.viewport=document.createElement("div"),t=a.ele…
/plugin/wysiwyg/fckeditor/editor/filemanager/connectors/perl/
H A Dupload_fck.pl153 …# STDIN A pause character is detected.'(MacIE3.0 boundary of $ENV{'CONTENT_TYPE'} cannot be truste…
154 my $Boundary = <STDIN>;
155 $Boundary =~ s/\x0D\x0A//;
156 $Boundary = quotemeta($Boundary);
180 last if(/^$Boundary/o);
219 last if($lastline =~ /^$Boundary\-\-/o);

123456789