/plugin/jdraw/lib/ |
H A D | httpmime-4.0.1.jar | ... value
}
org/apache/http/entity/mime/MIME.class
MIME.java
package org. ... |
/plugin/jcapture/lib/ |
H A D | httpmime-4.0.1.jar | ... value
}
org/apache/http/entity/mime/MIME.class
MIME.java
package org. ... |
/plugin/zip/pear/File/Archive/Writer/ |
H A D | Memory.php | 50 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 D | Mail.php | 45 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 D | AddBaseName.php | 56 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 D | UniqueAppender.php | 74 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 D | Mime.php | 48 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 D | FetcherVignette.php | 46 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 D | FetcherMarkupBuilder.php | 30 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 D | HttpResponse.php | 48 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 D | Decorator.php | 139 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 D | Writer.php | 44 * @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 D | syntax.php | 98 // 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 D | File.php | 65 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 D | Memory.php | 53 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 D | Concat.php | 43 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 D | xhtmlmail.php | 39 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 D | MIME.php | 61 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 D | mime.txt | 3 …mime.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 D | mime.txt | 1 [[doku>mediamanager]]을 통해서 어떤 파일 종류를 업로드 할 수 있을 지 ''conf/mime.conf'' 파일에서 지정합니다. 또한 파일 확장자와 mimetype 간의 관계를 지정합니다. 5 :!: **unprotected wiki에 대해서 HTML 업로드를 허용하지 마세요** 자바스크립트를 통한 Cross Site Scripting 취약점이 생길 수 있습니다. 신뢰할 수 있는 사용자에 대해서만 이 기능을 허용해야 합니다. You need to disable the [[doku>config:iexssprotect]] option additionally to adding the HTML mime type in the config file. 12 더 자세한 내용은 [[doku>mime]] 페이지를 참조하세요
|
/plugin/csstimeline/ |
H A D | feed.php | 30 $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 D | Result.php | 66 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 D | mime.txt | 1 Les types de fichiers que l'on peut téléverser via le [[doku>fr:media_manager|gestionnaire de media]]sont configurés dans le fichier ''conf/mime.conf''. Ce même fichier configure également les correspondances extension <-> type-mime. 7 Si vous avez besoin d'icône pour un type mime, vous pourrez en trouver dans le style de DokuWiki sur [[http://www.splitbrain.org/projects/file_icons]]. 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 D | media.php | 92 $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 D | fetch.php | 19 $mime = 'image/png'; variable 22 $mime = 'application/sgf'; variable 34 header('Content-Type: '.$mime);
|