Home
last modified time | relevance | path

Searched refs:boundary (Results 1 – 25 of 80) sorted by relevance

1234

/plugin/authgoogle/google/service/
H A DGoogle_BatchRequest.php23 private $boundary; variable in Google_BatchRequest
28 public function __construct($boundary = false) { argument
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.php42 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";
97 return $this->boundary;
112 $this->boundary,
132 $this->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));
44 return $this->boundary;
62 return "--{$this->boundary}\r\n" . trim($str) . "\r\n\r\n";
77 $stream->addStream(Utils::streamFor("--{$this->boundary}--\r\n"));
/plugin/authgooglesheets/vendor/google/apiclient/src/Http/
H A DBatch.php46 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);
159 $parts = explode("--$boundary", $body);
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/google/apiclient-services/src/Books/
H A DGeolayerdataGeo.php26 public $boundary; variable in Google\\Service\\Books\\GeolayerdataGeo
51 public function setBoundary($boundary) argument
53 $this->boundary = $boundary;
60 return $this->boundary;
/plugin/supa/lib/
H A DSupa.js23 boundary = '--' + boundaryString,
41 body += boundary + cr;
48 body += boundary + cr;
60 body += boundary + "--" + cr;
/plugin/swiftmail/Swift/Message/
H A DMime.php85 protected $boundary = null; variable in Swift_Message_Mime
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);
295 $this->cache->write("append", $this->LE . "--" . $this->boundary . "--" . $this->LE);
/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/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()
/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 DMultiLineString.php65 * The boundary of a MultiLineString is a MultiPoint consists of the start and end points of its non-closed LineStrings
69 public function boundary() function in geoPHP\\Geometry\\MultiLineString
H A DMultiPolygon.php71 public function boundary() function in geoPHP\\Geometry\\MultiPolygon
H A DMultiPoint.php71 * The boundary of a MultiPoint is the empty set.
74 public function boundary() function in geoPHP\\Geometry\\MultiPoint
H A DCurve.php75 * The boundary of a non-closed Curve consists of its end Points
79 public function boundary() function in geoPHP\\Geometry\\Curve
/plugin/geophp/vendor/funiq/geophp/src/Adapter/
H A DOSM.php141 static $polygonalTypes = ['multipolygon', 'boundary'];
195 && !isset($way['tags']['boundary'])
/plugin/indexmenu/
H A Dadmin.php
/plugin/diagramsnet/lib/js/croppie/
H A Dcroppie.min.js1boundary=document.createElement("div"),n=a.elements.viewport=document.createElement("div"),t=a.ele…
/plugin/upgrade/HTTP/
H A DHTTPClient.php60 // what we use as boundary on multipart/form-data posts
61 protected $boundary = '---DokuWikiHTTPClient--4523452351'; variable in dokuwiki\\plugin\\upgrade\\HTTP\\HTTPClient
227 $headers['Content-Type'] = 'multipart/form-data; boundary=' . $this->boundary;
848 $boundary = '--'.$this->boundary;
851 $out .= $boundary.HTTP_NL;
867 $out .= "$boundary--".HTTP_NL;
/plugin/authucenter/lib/uc_client/model/
H A Dmisc.php76 $boundary = $encodetype == 'URLENCODE' ? '' : ';'.substr($post, 0, trim(strpos($post, "\n")));
77 …nt-Type: application/x-www-form-urlencoded\r\n" : "Content-Type: multipart/form-data$boundary\r\n";
/plugin/elwikiupgrade/
H A DHTTPClient.php71 var $boundary = '---DokuWikiHTTPClient--4523452351'; variable in dokuwiki\\plugin\\elwikiupgrade\\HTTPClient
235 $headers['Content-Type'] = 'multipart/form-data; boundary=' . $this->boundary;
838 $boundary = '--'.$this->boundary;
841 $out .= $boundary.HTTP_NL;
857 $out .= "$boundary--".HTTP_NL;
/plugin/jdraw/lib/
H A Dhttpmime-4.0.1.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
/plugin/jcapture/lib/
H A Dhttpmime-4.0.1.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
/plugin/diagramsnet/lib/WEB-INF/lib/
H A Dcommons-fileupload-1.3.2.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/ ...

1234