/dokuwiki/lib/plugins/config/core/ |
H A D | Loader.php | 16 protected $parser; 25 * @param ConfigParser $parser 28 public function __construct(ConfigParser $parser) 31 $this->parser = $parser; 187 $conf = array_merge($conf, $this->parser->parse($file)); 239 $conf = $this->parser->parse($file); 15 protected $parser; global() variable in dokuwiki\\plugin\\config\\core\\Loader 27 __construct(ConfigParser $parser) global() argument
|
/dokuwiki/vendor/simplepie/simplepie/src/ |
H A D | File.php | 129 $parser = new \SimplePie\HTTP\Parser($this->headers); 130 if ($parser->parse()) { 131 $this->headers = $parser->headers; 132 $this->body = trim($parser->body); 133 $this->status_code = $parser->status_code; 194 $parser = new \SimplePie\HTTP\Parser($this->headers); 195 if ($parser->parse()) { 196 $this->headers = $parser->headers; 197 $this->body = $parser->body; 198 $this->status_code = $parser [all...] |
H A D | Misc.php | 1727 $parser = \SimplePie\Parse\Date::get(); 1728 return $parser->parse($dt); 1986 $parser = $registry->create(Parser::class, [Misc::change_encoding(substr($data, 20, $pos - 20), 'UTF-32BE', 'UTF-8')]); 1987 if ($parser->parse()) { 1988 $encoding[] = $parser->encoding; 1996 $parser = $registry->create(Parser::class, [Misc::change_encoding(substr($data, 20, $pos - 20), 'UTF-32LE', 'UTF-8')]); 1997 if ($parser->parse()) { 1998 $encoding[] = $parser->encoding; 2006 $parser = $registry->create(Parser::class, [Misc::change_encoding(substr($data, 20, $pos - 10), 'UTF-16BE', 'UTF-8')]); 2007 if ($parser [all...] |
H A D | Parser.php | 149 // Create the parser 267 public function tag_open($parser, $tag, $attributes) argument 319 public function cdata($parser, $cdata) argument 328 public function tag_close($parser, $tag) argument
|
H A D | SimplePie.php | 1338 * turns SimplePie into a dumb parser of feeds. 1650 // Create new parser 1651 $parser = $this->registry->create(Parser::class); 1654 if ($parser->parse($utf8_data, 'UTF-8', $this->permanent_url)) { 1655 $this->data = $parser->get_data(); 1677 if (isset($parser)) { 1680 $this->error .= sprintf(' is invalid XML, likely due to invalid characters. XML error: %s at line %d, column %d', $parser->get_error_string(), $parser->get_current_line(), $parser->get_current_column());
|
H A D | Item.php | 672 $parser = $this->registry->call(Parse\Date::class, 'get'); 673 $this->data['date']['parsed'] = $parser->parse($this->data['date']['raw']) ?: null; 714 $parser = $this->registry->call(Parse\Date::class, 'get'); 715 $this->data['updated']['parsed'] = $parser->parse($this->data['updated']['raw']) ?: null;
|
/dokuwiki/vendor/composer/ |
H A D | InstalledVersions.php | 115 * @param VersionParser $parser Install composer/semver to have access to this class and functionality 120 public static function satisfies(VersionParser $parser, $packageName, $constraint) argument 122 $constraint = $parser->parseConstraints($constraint); 123 $provided = $parser->parseConstraints(self::getVersionRanges($packageName));
|
/dokuwiki/vendor/kissifrot/php-ixr/src/Message/ |
H A D | Message.php | 24 // The XML parser 65 // Set XML parser to take the case of tags in to account 67 // Set XML parser callback functions 98 * @param $parser 102 public function tagOpen($parser, $tag, $attr) argument 126 * @param $parser 129 public function cdata($parser, $cdata) argument 136 * @param $parser 139 public function tagClose($parser, $tag) argument
|
/dokuwiki/vendor/splitbrain/php-jsstrip/ |
H A D | README.md | 13 jsstrip is not a true javascript parser. It assumes you have properly delimited the 'end of line' using a ';' (semicolon).
|
/dokuwiki/vendor/marcusschwarz/lesserphp/ |
H A D | lessc.inc.php | 16 * The LESS compiler and parser. 31 * The `lessc` class creates an instance of the parser, feeds it LESS code, 67 // set to the parser that generated the current line when compiling 125 $parser = $this->makeParser($realPath); 126 $root = $parser->parse(file_get_contents($realPath)); 137 // TODO: need to mark the source parser these came from this file 152 $this->compileImportedProps($top, $parentBlock, $out, $parser, $dir); 154 return array(true, $bottom, $parser, $dir); 215 $block->parser->throwError("unknown block type: $block->type\n", $block->count); 727 $block->parser [all...] |
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/ |
H A D | RSA.php | 1649 * @param resource $parser 1653 function _start_element_handler($parser, $name, $attribs) argument 1690 * @param resource $parser 1693 function _stop_element_handler($parser, $name) argument 1707 * @param resource $parser 1710 function _data_handler($parser, $data) argument
|
/dokuwiki/inc/ |
H A D | JpegMeta.php | 1587 $parser = xml_parser_create(); 1588 xml_parser_set_option($parser, XML_OPTION_CASE_FOLDING, 0); 1589 xml_parser_set_option($parser, XML_OPTION_SKIP_WHITE, 1); 1590 $result = xml_parse_into_struct($parser, $data, $values, $tags); 1591 xml_parser_free($parser);
|
/dokuwiki/data/ |
H A D | deleted.files | 113 inc/parser/lexer.php 878 inc/parser/wiki.php 923 inc/parser/spamcheck.php
|
/dokuwiki/vendor/simplepie/simplepie/ |
H A D | CHANGELOG.md | 275 * Fixed typo in the date parser that incorrectly identified September as month 8. [#348](https://github.com/simplepie/simplepie/pull/348)
|