Home
last modified time | relevance | path

Searched refs:mime (Results 1 – 25 of 178) sorted by relevance

12345678

/plugin/jdraw/lib/
H A Dhttpmime-4.0.1.jar ... value } org/apache/http/entity/mime/MIME.class MIME.java package org. ...
/plugin/jcapture/lib/
H A Dhttpmime-4.0.1.jar ... value } org/apache/http/entity/mime/MIME.class MIME.java package org. ...
/plugin/zip/pear/File/Archive/Writer/
H A DMemory.php50 var $mime; variable in File_Archive_Writer_Memory
73 function newFile($filename, $stat, $mime = "application/octet-stream") argument
77 $this->mime = $mime;
111 * @param string $mime Mime type of the file provided by the reader
116 function makeReader($filename = null, $stat = null, $mime = null) argument
123 $mime === null ? $this->mime : $mime);
H A DMail.php45 var $mime; variable in File_Archive_Writer_Mail
93 $this->mime = new Mail_mime();
94 $this->mime->setTXTBody($message);
96 $this->mime->setHTMLBody($htmlMessage);
113 return $this->mime->setHTMLBody($data, $isfile);
121 return $this->mime->addHTMLImage($file, $c_type, $name, $isfile);
144 $error = $this->mime->addAttachment(
155 function newFile($filename, $stat, $mime = "application/octet-stream") argument
163 $this->currentMime = $mime;
187 $body = $this->mime->get();
[all …]
H A DAddBaseName.php56 function newFile($filename, $stat = array(), $mime = "application/octet-stream") argument
58 $this->writer->newFile($this->baseName.$filename, $stat, $mime);
64 … function newFromTempFile($tmpfile, $filename, $stat = array(), $mime = "application/octet-stream") argument
66 $this->writer->newFromTempFile($tmpfilen $this->baseName.$filename, $stat, $mime);
H A DUniqueAppender.php74 function newFile($filename, $stat = array(), $mime = "application/octet-stream") argument
80 return $this->writer->newFile($filename, $stat, $mime);
86 … function newFromTempFile($tmpfile, $filename, $stat = array(), $mime = "application/octet-stream") argument
92 return $this->writer->newFromTempFile($tmpfile, $filename, $stat, $mime);
/plugin/combo/ComboStrap/
H A DMime.php48 private $mime; variable in ComboStrap\\Mime
53 public function __construct(string $mime) argument
55 if (trim($mime) === "") {
56 LogUtility::msg("The mime should not be an empty string");
58 $this->mime = $mime;
61 public static function create(string $mime): Mime argument
63 return new Mime($mime);
119 throw new ExceptionNotFound("No mime was found for the extension ($extension)");
173 return $this->mime;
[all...]
H A DFetcherVignette.php46 private Mime $mime; variable in ComboStrap\\FetcherVignette
56 * @throws ExceptionBadArgument - if the mime is not supported or the path of the page is not a wiki path
58 public static function createForPage(MarkupPath $page, Mime $mime = null): FetcherVignette argument
62 if ($mime === null) {
63 $mime = Mime::create(Mime::WEBP);
65 $fetcherVignette->setMime($mime);
77 $extension = $this->mime->getExtension();
222 // no logo installed, mime not found, extension not supported
249 LogUtility::internalError("The possible mime error should have been caught in the setter");
278 * @throws ExceptionNotFound - unknown mime o
383 setMime(Mime $mime) global() argument
[all...]
H A DFetcherMarkupBuilder.php30 protected Mime $mime; variable in ComboStrap\\FetcherMarkupBuilder
159 public function setRequestedMime(Mime $mime): FetcherMarkupBuilder argument
161 $this->mime = $mime;
177 * Technically, you could set the mime to whatever you want
179 * Setting the mime to instructions will just not do any render processing.
187 throw new ExceptionRuntime("Internal error: the mime is internal and should be good");
229 if (!isset($this->mime)) {
230 throw new ExceptionRuntimeInternal("A mime is mandatory");
240 switch ($this->mime
[all...]
H A DHttpResponse.php48 private Mime $mime; variable in ComboStrap\\HttpResponse
102 $mime = Mime::create($contentTypeValue);
104 $mime = Mime::getBinary();
108 ->setBody($response->getContent(), $mime)
134 if (isset($this->mime)) {
135 Http::setMime($this->mime->toString());
258 function setBody(string $body, Mime $mime): HttpResponse argument
261 $this->mime = $mime;
/plugin/swiftmail/Swift/Plugin/
H A DDecorator.php139 foreach ($mime->headers->getList() as $name => $value)
143 $mime->headers->set($name, $replaced);
164 $body = $mime->getData();
165 if ($this->isPermittedType($mime->getContentType())
168 $mime->setData($replaced);
172 foreach ($mime->listChildren() as $id)
179 $child = $mime->getChild($id);
198 protected function recursiveRestore(Swift_Message_Mime $mime, &$store) argument
211 $mime->headers->setAttribute($name, $att_name, $att_value);
217 $mime->setData($store["body"]);
[all …]
/plugin/zip/pear/File/Archive/
H A DWriter.php44 * @param string $mime MIME type of the file
46 function newFile($filename, $stat = array(), $mime = "application/octet-stream") argument
62 * @param string $mime MIME type of the file
64 … function newFromTempFile($tmpfile, $filename, $stat = array(), $mime = "application/octet-stream") argument
66 $this->newFile($filename, $stat, $mime);
/plugin/scrape/
H A Dsyntax.php98 // determine mime type
99 [$mime, $charset] = sexplode(';', $http->resp_headers['content-type'], 2);
100 $mime = trim(strtolower($mime));
104 if (preg_match('/image\/(gif|png|jpe?g)/', $mime)) {
107 } elseif (preg_match('/text\//', $mime)) {
112 if (preg_match('/text\/html/', $mime)) {
122 $R->doc .= 'Failed to handle mime type ' . hsc($mime);
147 [$ext, $mime]
[all...]
/plugin/zip/pear/File/Archive/Reader/
H A DFile.php65 var $mime = null; variable in File_Archive_Reader_File
77 function File_Archive_Reader_File($filename, $symbolic = null, $mime = null) argument
80 $this->mime = $mime;
147 if ($this->mime === null) {
149 $this->mime = MIME_Type::autoDetect($this->getDataFilename());
152 if (PEAR::isError($this->mime)) {
153 $this->mime = parent::getMime();
156 return $this->mime;
H A DMemory.php53 var $mime; variable in File_Archive_Reader_Memory
77 * @param string $mime is the mime type of the file
80 $stat=array(), $mime=null) argument
86 $this->mime = $mime;
116 return $this->mime==null ? parent::getMime() : $this->mime;
H A DConcat.php43 var $mime; variable in File_Archive_Reader_Concat
48 $stat=array(), $mime=null) argument
53 $this->mime = $mime;
99 return $this->mime==null ? parent::getMime() : $this->mime;
/plugin/bez/renderer/
H A Dxhtmlmail.php39 list($ext, $mime) = mimetype($src);
40 if(substr($mime, 0, 5) == 'image') {
81 } elseif(media_supportedav($mime, 'video') || media_supportedav($mime, 'audio')) {
96 if(media_supportedav($mime, 'video')) {
100 if(media_supportedav($mime, 'audio')) {
105 } elseif($mime == 'application/x-shockwave-flash') {
/plugin/zip/pear/File/Archive/Predicate/
H A DMIME.php61 foreach ($this->mimes as $mime) {
62 if (MIME_Type::isWildcard($mime)) {
63 $result = MIME_Type::wildcardMatch($mime, $sourceMIME);
65 $result = ($mime == $sourceMIME);
/plugin/advanced/lang/en/config/
H A Dmime.txt3mime.conf'' file. Additional mimetypes should be added in ''mime.local.conf''. The file expects an…
5 === Example of mime.conf ===
20 * [[doku>mime]]
/plugin/confmanager/lang/ko/
H A Dmime.txt1 [[doku>mediamanager]]을 통해서 어떤 파일 종류를 업로드 할 수 있을 지 ''conf/mime.conf'' 파일에서 지정합니다. 또한 파일 확장자와 mimetyp…
5 …e the [[doku>config:iexssprotect]] option additionally to adding the HTML mime type in the config …
10 또 파일 확장자와 mime의 관계는 http://filext.com/ 에서 알 수 있습니다.
12 더 자세한 내용은 [[doku>mime]] 페이지를 참조하세요.
/plugin/csstimeline/
H A Dfeed.php30 $mime = 'text/xml'; variable
34 $mime = 'text/xml'; variable
38 $mime = 'application/xml'; variable
42 $mime = 'application/atom+xml'; variable
46 $mime = 'application/xml'; variable
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CustomSearchAPI/
H A DResult.php66 public $mime; variable in Google\\Service\\CustomSearchAPI\\Result
237 public function setMime($mime) argument
239 $this->mime = $mime;
246 return $this->mime;
/plugin/confmanager/lang/fr/
H A Dmime.txt1 …igurés dans le fichier ''conf/mime.conf''. Ce même fichier configure également les correspondances…
7 Si vous avez besoin d'icône pour un type mime, vous pourrez en trouver dans le style de DokuWiki su…
9 La liste de toutes les extensions avec leur type mime est disponible sur [[http://filext.com/].
11 Voir [[doku>fr:mime]] pour de plus amples informations.
/plugin/database2/
H A Dmedia.php92 $mime = $session['mime']; variable
101 if ( !$mime )
243 $mime = 'text/html; charset=utf-8'; variable
275 $mime = 'text/csv; charset=utf-8'; variable
313 $mime = 'text/csv; charset=utf-8'; variable
326 $mime = substr( $data, 0, $sepPos ); variable
355 list( $major, $minor ) = explode( '/', $mime );
424 $mime = 'image/png'; variable
437 header( 'Content-Type: ' . $mime );
/plugin/godiag/
H A Dfetch.php19 $mime = 'image/png'; variable
22 $mime = 'application/sgf'; variable
34 header('Content-Type: '.$mime);

12345678