Home
last modified time | relevance | path

Searched refs:parser (Results 326 – 350 of 420) sorted by last modified time

1...<<11121314151617

/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/
H A DParserTest.php29 $parser = $this->getParser();
46 $parser->parse($stream);
62 $parser->parse($stream);
70 $parser = $this->getParser();
99 $parser = $this->getParser();
101 $parser->filterBodyNodes($input);
138 $parser = new Parser($twig);
140 $parser->parse(new TokenStream([
178 $parser->setParent(new Node());
179 $parser->stream = new TokenStream([]);
[all …]
/plugin/ckgdoku/
H A DREADME1 This is an updated dversion fckgLite. It uses the much the same parser as the original fckgLite, b…
/plugin/ckgdoku/ckeditor/
H A DCHANGES.md57 * Fixed the behavior of HTML parser when parsing `src`/`srcdoc` attributes of the `<iframe>` elemen…
315 * [#13680](http://dev.ckeditor.com/ticket/13680): Fixed: The parser should allow the `<h1-6>` eleme…
530 * Fixed XSS vulnerability in the HTML parser reported by [Dheeraj Joshi](https://twitter.com/dheera…
586 * Fixed XSS vulnerability in the HTML parser reported by [Maco Cortes](https://www.facebook.com/Maa…
/plugin/amazon_heavy/
H A Dclass.xmlreader.php41 $parser = xml_parser_create();
42 xml_parser_set_option($parser, XML_OPTION_CASE_FOLDING, 0);
43 xml_parser_set_option($parser, XML_OPTION_SKIP_WHITE, $this->_white);
44 xml_parse_into_struct($parser, $this->_data, $vals, $index);
45 xml_parser_free($parser);
/plugin/mdpage/vendor/cebe/markdown/tests/
H A DGithubMarkdownTest.php60 $parser = $this->createMarkdown();
62 $this->assertEquals("0", $parser->parseParagraph("0"));
63 $this->assertEquals("<p>0</p>\n", $parser->parse("0"));
68 $parser = $this->createMarkdown();
75 …$this->assertStringEndsWith(">{$utfNaturalUrl}</a>", $parser->parseParagraph($utfNaturalUrl), "Nat…
76 …$this->assertStringEndsWith(">{$utfNaturalUrl}</a>", $parser->parseParagraph($utfEncodedUrl), "Enc…
77 …$this->assertStringEndsWith(">{$eucEncodedUrl}</a>", $parser->parseParagraph($eucEncodedUrl), "Non…
H A DParserTest.php22 $parser = new TestParser();
23 $parser->markers = [
33 $parser = new TestParser();
34 $parser->markers = [
47 $parser = new TestParser();
48 $parser->markers = [
52 $parser->maximumNestingLevel = 3;
54 $parser->maximumNestingLevel = 2;
56 $parser->maximumNestingLevel = 1;
62 $parser = new TestParser();
[all …]
H A DMarkdownTest.php40 $parser = $this->createMarkdown();
42 $this->assertEquals("0", $parser->parseParagraph("0"));
43 $this->assertEquals("<p>0</p>\n", $parser->parse("0"));
48 $parser = $this->createMarkdown();
55 …$this->assertStringEndsWith(">{$utfNaturalUrl}</a>", $parser->parseParagraph("<{$utfNaturalUrl}>")…
56 …$this->assertStringEndsWith(">{$utfNaturalUrl}</a>", $parser->parseParagraph("<{$utfEncodedUrl}>")…
57 …$this->assertStringEndsWith(">{$eucEncodedUrl}</a>", $parser->parseParagraph("<{$eucEncodedUrl}>")…
/plugin/mdpage/vendor/cebe/markdown/
H A DCHANGELOG.md63 …nch regarding the internal API which is used when extending the Markdown parser. The external API …
65 The parser got a bit slower compared to earlier versions but is able to parse Markdown more accurat…
71 The parser is now also regsitered on the [Babelmark 2 page](http://johnmacfarlane.net/babelmark2/?n…
H A DCONTRIBUTING.md27 The Markdown parser classes are tested with [PHPUnit](https://phpunit.de/). For each test case ther…
28 the subfolders of the `/tests` folder. The result of the parser is tested with an input and an outp…
H A DREADME.md1 A super fast, highly extensible markdown parser for PHP
95 $parser = new \cebe\markdown\Markdown();
96 echo $parser->parse($markdown);
99 $parser = new \cebe\markdown\GithubMarkdown();
100 echo $parser->parse($markdown);
103 $parser = new \cebe\markdown\MarkdownExtra();
104 echo $parser->parse($markdown);
107 $parser = new \cebe\markdown\GithubMarkdown();
108 echo $parser->parseParagraph($markdown);
469 ### Why another markdown parser?
[all …]
/plugin/fckg/fckeditor/editor/lang/
H A Dlang-template.txt159 …ar where the text has already been marked up as a Geshi code block, the parser will not be able d…
/plugin/fckg/
H A DChanges60 considerably superior to the standard table-handling parser.
142 … by indentation. This insures that the code blocks are correctly processed in the fckgLite parser.
/plugin/syntaxhighlighter3/sxh3/build/
H A Dtasks.coffee13 parser = new less.Parser optimization: 2
14 parser.parse source, (err, tree) ->
/plugin/davcard/vendor/sabre/vobject/tests/VObject/Parser/
H A DJsonTest.php158 $parser = new Json(json_encode($input));
159 $vobj = $parser->parse();
311 $parser = new Json(json_encode($input));
312 $vobj = $parser->parse();
/plugin/davcard/vendor/sabre/vobject/
H A DChangeLog.md337 * Added: jCal and jCard parser.
386 * Fixed: vCard date-time parser supported extended-format dates as well.
413 * Added: It's now possible to send parser options to the splitter classes.
425 * Added: MimeDir parser can now continue parsing with the same stream buffer.
450 * Added: Fancy new MimeDir parser that can also parse streams.
/plugin/davcard/vendor/sabre/vobject/lib/
H A DReader.php43 $parser = new Parser\MimeDir();
44 $result = $parser->parse($data, $options);
66 $parser = new Parser\Json();
67 $result = $parser->parse($data, $options);
/plugin/davcard/vendor/sabre/vobject/tests/VObject/Recur/
H A DRRuleIteratorTest.php661 $parser->next();
664 $parser->current()
668 $parser->key()
671 $parser->rewind();
675 $parser->current()
679 $parser->key()
687 $parser = new RRuleIterator($rule, $dt);
690 $parser->fastForward(new DateTime($fastForward));
694 while($parser->valid()) {
696 $item = $parser->current();
[all …]
/plugin/davcard/vendor/sabre/vobject/lib/Splitter/
H A DVCard.php37 protected $parser; variable in Sabre\\VObject\\Splitter\\VCard
50 $this->parser = new MimeDir($input, $options);
65 $object = $this->parser->parse();
/plugin/fetchmedia/
H A Dyarn.lock3192 yargs-parser@^7.0.0:
3194 …resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332…
3214 yargs-parser "^7.0.0"
/plugin/rrdgraph/inc/
H A Dsvgbinding.php72 public function xmlPassthroughHandler($parser, $data) { argument
79 public function xmlStartElementHandler($parser, $name, $attributes) { argument
111 public function xmlEndElementHandler($parser, $name) { argument
/plugin/rater/scripts/
H A Djquery.tablesorter.js843 this.addParser = function (parser) { argument
847 if (parsers[i].id.toLowerCase() == parser.id.toLowerCase()) {
852 parsers.push(parser);
/plugin/amcharts/assets/amcharts/plugins/export/libs/fabric.js/
H A Dfabric.min.js2 …doc;if(typeof DOMParser!=="undefined"){var parser=new DOMParser;if(parser&&parser.parseFromString)…
H A Dfabric.js3757 var parser = new DOMParser();
3758 if (parser && parser.parseFromString) {
3759 doc = parser.parseFromString(string, 'text/xml');
/plugin/icalevents/vendor/sabre/vobject/tests/VObject/
H A DIssue259Test.php9 $parser = new Parser\Json();
10 $parser->setInput($jcalWithUntil);
12 $vcalendar = $parser->parse();
/plugin/icalevents/vendor/sabre/vobject/tests/VObject/Recur/
H A DRRuleIteratorTest.php943 $parser->next();
946 $parser->current()
950 $parser->key()
953 $parser->rewind();
957 $parser->current()
961 $parser->key()
969 $parser = new RRuleIterator($rule, $dt);
972 $parser->fastForward(new DateTime($fastForward));
976 while ($parser->valid()) {
978 $item = $parser->current();
[all …]

1...<<11121314151617