Home
last modified time | relevance | path

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

/dokuwiki/vendor/simplepie/simplepie/src/
H A DMisc.php276 * Change a string from one encoding to another
278 * @param string $data Raw data in $input encoding
285 $input = Misc::encoding($input);
286 $output = Misc::encoding($output);
303 // This is second, as behaviour of this varies only with PHP version (the middle part of this expression checks the encoding is supported).
335 // Check that the encoding is supported
369 * Normalize an encoding name
379 public static function encoding($charset) function in SimplePie\\Misc
1954 * Detect XML encoding, as per XML 1.0 Appendix F.1
1965 $encoding[]
[all...]
H A DParser.php75 public $encoding; variable in SimplePie\\Parser
83 public function parse(&$data, $encoding, $url = '') argument
100 if (strtoupper($encoding) === 'US-ASCII') {
101 $this->encoding = 'UTF-8';
103 $this->encoding = $encoding;
132 $data = '<?xml version="' . $declaration->version . '" encoding="' . $encoding . '" standalone="' . (($declaration->standalone) ? 'yes' : 'no') . '"?>' ."\n". $this->declare_html_entities() . $data;
151 $xml = xml_parser_create_ns($this->encoding, $this->separator);
300 $this->data['data'] .= ' ' . $name . '="' . htmlspecialchars($value, ENT_COMPAT, $this->encoding)
[all...]
H A DSanitize.php246 public function set_output_encoding($encoding = 'UTF-8') argument
248 $this->output_encoding = (string) $encoding;
364 $document->encoding = 'UTF-8';
H A DSimplePie.php568 * @var mixed Force input encoding to be set to the follow value
988 * Set the character encoding used to parse the feed
990 * This overrides the encoding reported by the feed, however it will fall
991 * back to the normal encoding detection if the override fails
993 * @param string $encoding Character encoding
995 public function set_input_encoding($encoding = false) argument
997 if ($encoding) {
998 $this->input_encoding = (string) $encoding;
1412 * Set the output encoding
1433 set_output_encoding($encoding = 'UTF-8') global() argument
[all...]
/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 DKMLCreator.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 DMBOXCreator.php19 $this->encoding = "ISO-8859-15";
23 * Quoted Printable encoding
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.php49 * This feed's character encoding.
53 protected $encoding = "UTF-8"; //"ISO-8859-1";
61 * Again: No encoding will be used! This means you can invalidate or enhance the feed
214 header("Content-Type: ".$this->contentType."; charset=".$this->encoding."; filename=".basename($filename));
52 protected $encoding = "UTF-8"; //"ISO-8859-1"; global() variable in FeedCreator
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/lib/plugins/safefnrecode/
H A Dplugin.info.txt6 desc Changes existing page and foldernames for the change in the safe filename encoding
/dokuwiki/vendor/simplepie/simplepie/src/XML/Declaration/
H A DParser.php70 public $encoding = 'UTF-8'; variable in SimplePie\\XML\\Declaration\\Parser
166 $this->encoding = '';
259 if (substr($this->data, $this->position, 8) === 'encoding') {
281 if ($this->encoding = $this->get_value()) {
/dokuwiki/vendor/openpsa/universalfeedcreator/
H A DREADME.md96 added character encoding setting
/dokuwiki/vendor/geshi/geshi/src/
H A Dgeshi.php489 * The encoding to use for entity encoding
493 protected $encoding = 'utf-8'; variable in GeSHi
1887 * Sets the encoding used for htmlspecialchars(), for international
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);
[all...]
/dokuwiki/vendor/simplepie/simplepie/
H A DCHANGELOG.md148 * PHP 8.0: prevent ValueError for invalid encoding [#657](https://github.com/simplepie/simplepie/pull/657)
268 * Fixed encoding of ampersands in `SimplePie->subscribe_url()`. [#348](https://github.com/simplepie/simplepie/pull/348)
/dokuwiki/vendor/geshi/geshi/
H A DCHANGELOG65 * PowerBuilder: additional encoding constants (Doug Porter)
524 - Changed the default encoding to use UTF-8, due to SF#2037598, BenBE)
935 - Partial patch for UTF-8 encoding applied (doesn't quite work however...)
940 - Fixed bug where not using an encoding type would sometime result in warnings (although
941 there still seems to be issues with encoding in general that I'm trying to gather more