Home
last modified time | relevance | path

Searched refs:encoding (Results 176 – 200 of 300) sorted by last modified time

12345678910>>...12

/plugin/mdpage/vendor/cebe/markdown/tests/markdown-data/
H A Dspecs.md502 it and indent it, and Markdown will handle the hassle of encoding the
854 entity-encoding to help obscure your address from address-harvesting
868 (This sort of entity-encoding trick will indeed fool many, if not
/plugin/mdpage/vendor/cebe/markdown/
H A DREADME.md123 It is recommended to use UTF-8 encoding for the input strings. Other encodings may work, but are cu…
/plugin/spellcheck/
H A Daspell.php44 function pspell_config_create($language, $spelling=null, $jargon=null, $encoding='iso8859-1'){ argument
45 return new Aspell($language, $jargon, $encoding);
74 var $encoding = 'iso8859-1'; variable in Aspell
85 function Aspell($language, $jargon=null, $encoding='iso8859-1'){ argument
88 $this->encoding = $encoding;
131 if($this->encoding != null){
132 $this->args .= ' --encoding='.escapeshellarg($this->encoding);
/plugin/swiftmail/Swift/Message/
H A DEmbeddedFile.php36 …_construct($data=null, $name=null, $type="application/octet-stream", $cid=null, $encoding="base64") argument
38 parent::__construct($data, $name, $type, $encoding, "inline");
H A DImage.php30 …Swift_File $data=null, $name=null, $type="application/octet-stream", $cid=null, $encoding="base64") argument
32 parent::__construct($data, $name, $type, $cid, $encoding);
H A DAttachment.php33 …public function __construct($data=null, $name=null, $type="application/octet-stream", $encoding="b… argument
38 $this->setEncoding($encoding);
H A DHeaders.php31 protected $encoding = "B"; variable in Swift_Message_Headers
235 public function setEncoding($encoding) argument
237 switch (strtolower($encoding))
240 $this->encoding = "Q";
243 $this->encoding = "B";
254 return $this->encoding;
399 elseif ($this->encoding == "Q") //QP encode required
411 elseif ($this->encoding == "B") //Need to Base64 encode
448 if ($this->encoding == "Q") $lines[$i] = rtrim($lines[$i], "=");
H A DPart.php29 public function __construct($data=null, $type="text/plain", $encoding=null, $charset=null) argument
34 $this->setEncoding($encoding);
H A DMime.php206 public function setEncoding($encoding, $recursive=false, $non_ascii=false) argument
209 switch (strtolower($encoding))
212 $encoding = "quoted-printable";
215 $encoding = "base64";
218 $encoding = strtolower($encoding);
226 $this->headers->set("Content-Transfer-Encoding", $encoding);
230 $this->headers->set("Content-Transfer-Encoding", $encoding);
237 … if (!$child->getEncoding()) $this->children[$id]->setEncoding($encoding, $recursive, $non_ascii);
/plugin/swiftmail/Swift/
H A DMessage.php70 …public function __construct($subject="", $body=null, $type="text/plain", $encoding=null, $charset=… argument
94 $this->setEncoding($encoding);
/plugin/fckg/
H A DREADME3 This version of fckgLite supports the Dokuwiki 'safe' file system encoding for non-Roman
4 character sets. It also supports url-style encoding, which was the encoding
12 'safe' encoding was implemented in Dokuwiki's Anteater distribution, dated 2010-11-07.
17 This distribution of fckgLite employs the corrected implementation of 'safe' encoding.
19 If you are using 'safe' encoding and are still using Anteater, you have two choices.
21 2. You can revert to the Anteater implementation of safe encoding.
/plugin/fckg/scripts/
H A DsafeFN_class.js246 function dwikiUTF8_encodeFN(file, encoding){ argument
248 if(encoding == 'utf-8') return file;
254 if(encoding == 'safe'){
264 function dwikiUTF8_decodeFN(file, encoding){ argument
266 if(encoding == 'utf-8') return file;
268 if(encoding == 'safe'){
/plugin/fckg/fckeditor/editor/filemanager/browser/default/js/
H A DsafeFN_class.js242 function dwikiUTF8_encodeFN(file, encoding){ argument
244 if(encoding == 'utf-8') return file;
250 if(encoding == 'safe'){
260 function dwikiUTF8_decodeFN(file, encoding){ argument
262 if(encoding == 'utf-8') return file;
264 if(encoding == 'safe'){
/plugin/fckg/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/
H A Dspellchecker.cfm15 <cfset aspell_opts = "-a --lang=#lang# --encoding=utf-8 -H --rem-sgml-check=alt">
50 <!--- execute aspell in an UTF-8 console and redirect output to a file. UTF-8 encoding is lost if d…
/plugin/davcard/vendor/sabre/vobject/lib/
H A DProperty.php509 if ($encoding = $this->offsetGet('ENCODING')) {
519 $encoding = (string)$encoding;
535 if ($allowedEncoding && !in_array(strtoupper($encoding), $allowedEncoding)) {
538 … 'message' => 'ENCODING=' . strtoupper($encoding) . ' is not valid for this document type.',
H A DStringUtil.php42 $encoding = mb_detect_encoding($str , array('UTF-8','ISO-8859-1', 'WINDOWS-1252'), true);
44 switch($encoding) {
/plugin/davcard/vendor/sabre/vobject/
H A DChangeLog.md378 * Fixed: jCard encoding of TIME properties.
379 * Fixed: jCal encoding of REQUEST-STATUS, GEO and PERIOD values.
/plugin/issuetracker/
H A Dprototype.js1476 encoding: 'UTF-8', property in AnonymousFunctionf562dc224300.options
1557 (this.options.encoding ? '; charset=' + this.options.encoding : '');
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/
H A DCLI.php313 $encoding = PHP_CodeSniffer::getConfigData('encoding');
314 if ($encoding === null) {
317 $defaults['encoding'] = strtolower($encoding);
836 } else if (substr($arg, 0, 9) === 'encoding=') {
837 $this->values['encoding'] = strtolower(substr($arg, 9));
H A DFile.php689 $encoding = null;
697 $encoding = $cliValues['encoding'];
1421 * @param string $encoding The charset of the sniffed file.
1447 if ($encoding === null) {
1448 $encoding = PHP_CODESNIFFER_ENCODING;
1451 self::_createPositionMap($tokens, $tokenizer, $eolChar, $encoding, $tabWidth);
1475 * @param string $encoding The charset of the sniffed file.
1481 private static function _createPositionMap(&$tokens, $tokenizer, $eolChar, $encoding, $tabWidth) argument
1491 if ($encoding !== 'iso-8859-1' && function_exists('iconv_strlen') === true) {
1526 $length = @iconv_strlen($tokens[$i]['content'], $encoding);
[all …]
/plugin/icalevents/vendor/squizlabs/php_codesniffer/
H A DCodeSniffer.php218 * @param string $encoding The charset of the sniffed files.
230 $encoding='iso-8859-1', argument
241 if ($encoding !== null) {
242 $this->setEncoding($encoding);
359 * @param string $encoding The charset of the sniffed files.
366 public function setEncoding($encoding) argument
369 define('PHP_CODESNIFFER_ENCODING', $encoding);
/plugin/authgoogle/google/contrib/
H A DGoogle_BigqueryService.php1003 public $encoding; variable in Google_JobConfigurationLoad
1040 public function setEncoding( $encoding) { argument
1041 $this->encoding = $encoding;
1044 return $this->encoding;
/plugin/amcharts/assets/amcharts/plugins/export/libs/xlsx/
H A Dxlsx.js3075 var width = 1, encoding = 'sbcs-cont';
3080 if(fHighByte) { width = 2; encoding = 'dbcs-cont'; }
3082 var o = cch ? blob.read_shift(cch, encoding) : "";
3098 var encoding = (flags & 0x1) ? 'dbcs-cont' : 'sbcs-cont';
3099 var msg = cch === 0 ? "" : blob.read_shift(cch, encoding);
H A Dxlsx.min.js4encoding="sbcs-cont";var cp=current_codepage;if(opts&&opts.biff>=8)current_codepage=1200;if(opts==…
H A Dxlsx.min.map1 …"parse_Boolean","parse_Bes","parse_ShortXLUnicodeString","cch","width","encoding","biff","fHighByt…

12345678910>>...12