Home
last modified time | relevance | path

Searched refs:encoding (Results 1 – 24 of 24) sorted by relevance

/dokuwiki/vendor/simplepie/simplepie/src/
H A DMisc.php295 $input = Misc::encoding($input);
296 $output = Misc::encoding($output);
392 public static function encoding(string $charset) function in SimplePie\\Misc
2009 $encoding[] = 'UTF-32BE';
2013 $encoding[] = 'UTF-32LE';
2017 $encoding[] = 'UTF-16BE';
2021 $encoding[] = 'UTF-16LE';
2025 $encoding[] = 'UTF-8';
2032 $encoding[] = $parser->encoding;
2035 $encoding[] = 'UTF-32BE';
[all …]
H A DParser.php50 public $encoding; variable in SimplePie\\Parser
65 public function parse(string &$data, string $encoding, string $url = '') argument
83 if (strtoupper($encoding) === 'US-ASCII') {
84 $this->encoding = 'UTF-8';
86 $this->encoding = $encoding;
115 …$data = '<?xml version="' . $declaration->version . '" encoding="' . $encoding . '" standalone="' …
139 $xml = xml_parser_create_ns($this->encoding, $this->separator);
313 …->data['data'] .= ' ' . $name . '="' . htmlspecialchars($value, ENT_COMPAT, $this->encoding) . '"';
339 $this->data['data'] .= htmlspecialchars($cdata, ENT_QUOTES, $this->encoding);
H A DSanitize.php301 public function set_output_encoding(string $encoding = 'UTF-8') argument
303 $this->output_encoding = $encoding;
437 $document->encoding = 'UTF-8';
H A DSimplePie.php1066 * @param string|false $encoding Character encoding
1069 public function set_input_encoding($encoding = false) argument
1071 if ($encoding) {
1072 $this->input_encoding = (string) $encoding;
1554 * @param string $encoding
1557 public function set_output_encoding(string $encoding = 'UTF-8') argument
1559 $this->sanitize->set_output_encoding($encoding);
1790 foreach ($encodings as $encoding) {
1792 …a = $this->registry->call(Misc::class, 'change_encoding', [$this->raw_data, $encoding, 'UTF-8'])) {
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Creator/
H A DGPXCreator.php18 $this->encoding = "utf-8";
24 $feed = "<?xml version=\"1.0\" encoding=\"".$this->encoding."\"?>\n";
H A DOPMLCreator.php18 $this->encoding = "utf-8";
24 $feed = "<?xml version=\"1.0\" encoding=\"".$this->encoding."\"?>\n";
H A DPIECreator01.php19 $this->encoding = "utf-8";
25 $feed = "<?xml version=\"1.0\" encoding=\"".$this->encoding."\"?>\n";
H A DKMLCreator.php18 $this->encoding = "utf-8";
24 $feed = "<?xml version=\"1.0\" encoding=\"".$this->encoding."\"?>\n";
H A DMBOXCreator.php19 $this->encoding = "ISO-8859-15";
81 $feed .= " charset=\"".$this->encoding."\"\n";
H A DAtomCreator03.php27 $this->encoding = "utf-8";
33 $feed = "<?xml version=\"1.0\" encoding=\"".$this->encoding."\"?>\n";
H A DFeedCreator.php53 protected $encoding = "UTF-8"; //"ISO-8859-1"; variable in FeedCreator
214 …header("Content-Type: ".$this->contentType."; charset=".$this->encoding."; filename=".basename($fi…
H A DPHPCreator.php18 $this->encoding = "utf-8";
H A DAtomCreator10.php27 $this->encoding = "utf-8";
33 $feed = "<?xml version=\"1.0\" encoding=\"".$this->encoding."\"?>\n";
H A DRSSCreator10.php16 $feed = "<?xml version=\"1.0\" encoding=\"".$this->encoding."\"?>\n";
H A DRSSCreator091.php38 $feed = "<?xml version=\"1.0\" encoding=\"".$this->encoding."\"?>\n";
/dokuwiki/vendor/simplepie/simplepie/src/XML/Declaration/
H A DParser.php29 public $encoding = 'UTF-8'; variable in SimplePie\\XML\\Declaration\\Parser
126 $this->encoding = 'UTF-8';
244 if ($encoding = $this->get_value()) {
245 $this->encoding = $encoding;
/dokuwiki/lib/plugins/safefnrecode/
H A Dplugin.info.txt6 desc Changes existing page and foldernames for the change in the safe filename encoding
/dokuwiki/vendor/paragonie/constant_time_encoding/
H A DREADME.md11 this library aims to offer character encoding functions that do not leak
12 information about what you are encoding/decoding via processor cache
20 * Base16 encoding
21 * Base32 encoding
/dokuwiki/vendor/openpsa/universalfeedcreator/
H A DREADME.md96 added character encoding setting
/dokuwiki/vendor/geshi/geshi/src/
H A Dgeshi.php493 protected $encoding = 'utf-8'; variable in GeSHi
1895 * @param string $encoding The encoding to use for the source
1898 public function set_encoding($encoding) { argument
1899 if ($encoding) {
1900 $this->encoding = strtolower($encoding);
2675 … $es_char_m = mb_substr(substr($part, $es_pos+1, 16), 0, 1, $this->encoding);
2677 } elseif ('utf-8' == $this->encoding) {
/dokuwiki/
H A Dcomposer.lock265 "encoding",
654 "ext-mbstring": "Can be used alternatively for handling filename encoding",
/dokuwiki/vendor/geshi/geshi/
H A DCHANGELOG67 * PowerBuilder: additional encoding constants (Doug Porter)
526 - Changed the default encoding to use UTF-8, due to SF#2037598, BenBE)
937 - Partial patch for UTF-8 encoding applied (doesn't quite work however...)
942 - Fixed bug where not using an encoding type would sometime result in warnings (although
943 there still seems to be issues with encoding in general that I'm trying to gather more
/dokuwiki/vendor/simplepie/simplepie/
H A DCHANGELOG.md215 * PHP 8.0: prevent ValueError for invalid encoding [#657](https://github.com/simplepie/simplepie/pu…
335 * Fixed encoding of ampersands in `SimplePie->subscribe_url()`. [#348](https://github.com/simplepie…
/dokuwiki/_test/core/
H A DphpQuery-onefile.php189 $this->charset = $this->document->encoding;
257 $this->charset = $this->document->encoding;