Home
last modified time | relevance | path

Searched refs:parser (Results 351 – 375 of 420) sorted by last modified time

1...<<11121314151617

/plugin/icalevents/vendor/sabre/vobject/lib/Splitter/
H A DVCard.php36 protected $parser; variable in Sabre\\VObject\\Splitter\\VCard
49 $this->parser = new MimeDir($input, $options);
64 $object = $this->parser->parse();
/plugin/icalevents/vendor/sabre/vobject/tests/VObject/Parser/
H A DJsonTest.php159 $parser = new Json(json_encode($input));
160 $vobj = $parser->parse();
311 $parser = new Json(json_encode($input));
312 $vobj = $parser->parse();
/plugin/icalevents/vendor/sabre/vobject/lib/
H A DReader.php44 $parser = new Parser\MimeDir();
45 $parser->setCharset($charset);
46 $result = $parser->parse($data, $options);
69 $parser = new Parser\Json();
70 $result = $parser->parse($data, $options);
91 $parser = new Parser\XML();
92 $result = $parser->parse($data, $options);
/plugin/icalevents/vendor/sabre/vobject/
H A DCHANGELOG.md123 * #254: The parser threw an `E_NOTICE` for certain invalid objects. It now
502 * Added: jCal and jCard parser.
551 * Fixed: vCard date-time parser supported extended-format dates as well.
578 * Added: It's now possible to send parser options to the splitter classes.
590 * Added: MimeDir parser can now continue parsing with the same stream buffer.
615 * Added: Fancy new MimeDir parser that can also parse streams.
/plugin/publist/
H A Dsyntax.php109 $parser = new BibtexConverter($data['options'],$sanitiser);
110 $code = $parser->convert($bibtex, $template);
H A Dchangelog8 * "handle" function (syntax.php) parser code corrections. "only" option
/plugin/publist/bib2tpl/
H A Dbibtex_converter.php51 private static $parser; variable in BibtexConverter
146 if ( !isset(self::$parser) ) {
147 self::$parser = new Structures_BibTex(array('removeCurlyBraces' => false));
150 self::$parser->loadString($bibtex);
151 $stat = self::$parser->parse();
157 $parsed = self::$parser->data;
/plugin/icalevents/vendor/sabre/xml/
H A DCHANGELOG.md142 catch any exception thrown by the parser.
194 * Fixed: The KeyValue parser was skipping over elements when there was no
215 * Added: Elements parser.
216 * Added: KeyValue parser.
/plugin/eventum/XML/
H A DRPC.php248 $parser = (int) $parser_resource;
275 $XML_RPC_xh[$parser]['cm']++;
287 $XML_RPC_xh[$parser]['cm']++;
399 $XML_RPC_xh[$parser]['valuestack'][0]['name'] = $XML_RPC_xh[$parser]['ac'];
422 $XML_RPC_xh[$parser]['value'] = $XML_RPC_xh[$parser]['ac'];
424 $XML_RPC_xh[$parser]['value'] = base64_decode($XML_RPC_xh[$parser]['ac']);
426 $XML_RPC_xh[$parser]['value'] = $XML_RPC_xh[$parser]['ac'];
436 $XML_RPC_xh[$parser]['value'] = $XML_RPC_xh[$parser]['ac'];
448 $XML_RPC_xh[$parser]['value'] = $XML_RPC_xh[$parser]['ac'];
455 $temp = new XML_RPC_Value($XML_RPC_xh[$parser]['value'], $XML_RPC_xh[$parser]['vt']);
[all …]
/plugin/scrape/HTMLPurifier/ConfigSchema/
H A DValidator.php
H A DInterchangeBuilder.php
/plugin/scrape/HTMLPurifier/Lexer/
H A DPEARSax3.php
H A DPH5P.php
/plugin/scrape/
H A DHTMLPurifier.standalone.php
/plugin/markdownextra/lib/meltdown/js/lib/
H A Djs-markdown-extra.js61 var parser;
62 if('undefined' == typeof arguments.callee.parser) {
63 parser = eval("new " + MARKDOWN_PARSER_CLASS + "()");
64 parser.init();
65 arguments.callee.parser = parser;
68 parser = arguments.callee.parser;
71 return parser.transform(text);
/plugin/markdownextra/
H A Dmarkdown.php64 static $parser;
65 if (!isset($parser)) {
67 $parser = new $parser_class;
71 return $parser->transform($text);
114 static $parser;
115 if (!$parser) {
117 $parser = new $parser_class;
120 $parser->fn_id_prefix = "";
122 $parser->fn_id_prefix = get_the_ID() . ".";
124 return $parser->transform($text);
/plugin/topbarsyntax/
H A Dcsshover3.htc80 // interate the sheet's rules and send them to the parser
/plugin/freechat/phpfreechat/lib/csstidy-1.2/
H A Dclass.csstidy_optimise.php49 $this->parser =& $css;
65 if ($this->parser->get_cfg('preserve_css')) {
69 if ($this->parser->get_cfg('merge_selectors') == 2)
77 if ($this->parser->get_cfg('optimise_shorthands') > 0)
85 if ($this->parser->get_cfg('optimise_shorthands') < 2) {
121 $this->parser->log('Optimised !important','Information');
134 … if(!$this->parser->get_cfg('optimise_shorthands') || $this->parser->get_cfg('preserve_css')) {
138 if($this->property == 'background' && $this->parser->get_cfg('optimise_shorthands') > 1)
169 if($this->property == 'font-weight' && $this->parser->get_cfg('compress_font-weight'))
180 $this->parser->log('Optimised font-weight: Changed "bold" to "700"','Information');
[all …]
H A DREADME7 This class represents a CSS parser which reads CSS code and saves it in an array.
H A Dclass.csstidy_print.php70 $this->parser =& $css;
127 if (!$this->parser->get_cfg('preserve_css')) {
137 if ($this->parser->get_cfg('timestamp')) {
251 if ($this->parser->get_cfg('sort_selectors')) ksort($val);
253 $this->parser->_add_token(AT_START, $medium, true);
258 if ($this->parser->get_cfg('sort_properties')) ksort($vali);
259 $this->parser->_add_token(SEL_START, $selector, true);
263 $this->parser->_add_token(PROPERTY, $property, true);
264 $this->parser->_add_token(VALUE, $valj, true);
267 $this->parser->_add_token(SEL_END, $selector, true);
[all …]
/plugin/authucenter/lib/uc_client/lib/
H A Dxml.class.php33 var $parser; variable in XML
48 $this->parser = xml_parser_create('ISO-8859-1');
49 xml_parser_set_option($this->parser, XML_OPTION_CASE_FOLDING, false);
50 xml_set_object($this->parser, $this);
51 xml_set_element_handler($this->parser, 'open','close');
52 xml_set_character_data_handler($this->parser, 'data');
56 xml_parser_free($this->parser);
62 return xml_parse($this->parser, $data, true) && !$this->failed ? $this->document : '';
65 function open(&$parser, $tag, $attributes) { argument
86 function data(&$parser, $data) { argument
[all …]
/plugin/mediasyntax/
H A DREADME54 2010-08-07: 8 hours: allowed a SpecialPattern (e.g. GB) in the mid of a line, directly followed by a blank, without triggering a preformatted area. Had to reasearch the calls object structure of the parser for this.
/plugin/acronym/
H A DREADME34 …triggering a preformatted area. Had to reasearch the calls object structure of the parser for this.
/plugin/twcheckliste/
H A Drenderer.php.old12 require_once DOKU_INC.'inc/parser/xhtml.php';
/plugin/html2pdf/html2pdf/html2ps/
H A Dfilter.pre.headfoot.class.php20 $parser = new ParserXHTML();
25 $box =& $parser->process($this->header_html, $pipeline, $null);
30 $box =& $parser->process($this->footer_html, $pipeline, $null);

1...<<11121314151617