/dokuwiki/lib/plugins/config/core/ |
H A D | Loader.php | 16 protected $parser; variable in dokuwiki\\plugin\\config\\core\\Loader 25 * @param ConfigParser $parser 28 public function __construct(ConfigParser $parser) argument 31 $this->parser = $parser; 187 $conf = array_merge($conf, $this->parser->parse($file)); 239 $conf = $this->parser->parse($file);
|
/dokuwiki/lib/plugins/config/_test/ |
H A D | ConfigParserTest.php | 16 $parser = new ConfigParser(); 17 $conf = $parser->parse(__DIR__ . '/data/config.php'); 34 $parser = new ConfigParser(); 35 $conf = $parser->parse(__DIR__ . '/data/config.php');
|
/dokuwiki/vendor/simplepie/simplepie/src/ |
H A D | File.php | 128 $parser = new \SimplePie\HTTP\Parser($this->headers); 129 if ($parser->parse()) { 130 $this->headers = $parser->headers; 131 $this->body = trim($parser->body); 132 $this->status_code = $parser->status_code; 193 $parser = new \SimplePie\HTTP\Parser($this->headers); 194 if ($parser->parse()) { 195 $this->headers = $parser->headers; 196 $this->body = $parser->body; 197 $this->status_code = $parser->status_code;
|
H A D | Misc.php | 1726 $parser = \SimplePie\Parse\Date::get(); 1727 return $parser->parse($dt); 1985 …$parser = $registry->create(Parser::class, [Misc::change_encoding(substr($data, 20, $pos - 20), 'U… 1986 if ($parser->parse()) { 1987 $encoding[] = $parser->encoding; 1995 …$parser = $registry->create(Parser::class, [Misc::change_encoding(substr($data, 20, $pos - 20), 'U… 1996 if ($parser->parse()) { 1997 $encoding[] = $parser->encoding; 2005 …$parser = $registry->create(Parser::class, [Misc::change_encoding(substr($data, 20, $pos - 10), 'U… 2006 if ($parser->parse()) { [all …]
|
H A D | Parser.php | 265 public function tag_open($parser, $tag, $attributes) argument 317 public function cdata($parser, $cdata) argument 326 public function tag_close($parser, $tag) argument
|
H A D | SimplePie.php | 1649 $parser = $this->registry->create(Parser::class); 1652 if ($parser->parse($utf8_data, 'UTF-8', $this->permanent_url)) { 1653 $this->data = $parser->get_data(); 1675 if (isset($parser)) { 1678 …ers. XML error: %s at line %d, column %d', $parser->get_error_string(), $parser->get_current_line(…
|
H A D | Item.php | 671 $parser = $this->registry->call(Parse\Date::class, 'get'); 672 $this->data['date']['parsed'] = $parser->parse($this->data['date']['raw']) ?: null; 713 $parser = $this->registry->call(Parse\Date::class, 'get'); 714 … $this->data['updated']['parsed'] = $parser->parse($this->data['updated']['raw']) ?: null;
|
/dokuwiki/vendor/composer/ |
H A D | InstalledVersions.php | 126 …* @param VersionParser $parser Install composer/semver to have access to this class and func… 131 public static function satisfies(VersionParser $parser, $packageName, $constraint) argument 133 $constraint = $parser->parseConstraints((string) $constraint); 134 $provided = $parser->parseConstraints(self::getVersionRanges($packageName));
|
/dokuwiki/vendor/kissifrot/php-ixr/src/Message/ |
H A D | Message.php | 101 public function tagOpen($parser, $tag, $attr) argument 128 public function cdata($parser, $cdata) argument 138 public function tagClose($parser, $tag) argument
|
/dokuwiki/vendor/splitbrain/lesserphp/src/ |
H A D | Lessc.php | 110 $parser = $this->makeParser($name); 111 $root = $parser->parse($string); 123 $this->sourceParser = $parser; // used for error messages 389 $parser = $this->makeParser($realPath); 390 $root = $parser->parse(file_get_contents($realPath)); 417 $this->compileImportedProps($top, $parentBlock, $out, $parser, $dir); 419 return [true, $bottom, $parser, $dir]; 1059 $block->parser->throwError("{$prop[1][0]} is undefined", $block->count); 1138 [, $bottom, $parser, $importDir] = $import; 1139 $this->compileImportedProps($bottom, $block, $out, $parser, $importDir); [all …]
|
H A D | Parser.php | 1438 $b->parser = $this;
|
/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' u…
|
/dokuwiki/_test/ |
H A D | composer.lock | 60 "parser", 348 "name": "nikic/php-parser", 394 "description": "A PHP parser written in PHP", 396 "parser", 599 "nikic/php-parser": "^4.19.1 || ^5.1.0", 931 "sebastian/cli-parser": "^1.0.2", 1063 "name": "sebastian/cli-parser", 1067 "url": "https://github.com/sebastianbergmann/cli-parser.git", 1072 …"url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b… 1105 "homepage": "https://github.com/sebastianbergmann/cli-parser", [all …]
|
/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 | 126 inc/parser/lexer.php 889 inc/parser/wiki.php 934 inc/parser/spamcheck.php
|
/dokuwiki/vendor/simplepie/simplepie/ |
H A D | CHANGELOG.md | 290 * Fixed typo in the date parser that incorrectly identified September as month 8. [#348](https://gi…
|