Home
last modified time | relevance | path

Searched refs:csstidy (Results 1 – 15 of 15) sorted by relevance

/plugin/pagecss/vendor/csstidy-2.2.1/
H A DREADME.md6 * class.csstidy.php is the parser
18 include('class.csstidy.php');
19 $csstidy = new csstidy();
22 $csstidy->set_cfg('optimise_shorthands', 2);
23 $csstidy->set_cfg('template', 'high');
26 $csstidy->parse($css_code);
29 $css_code_opt = $csstidy->print->plain();
64 * Since the original project (<http://csstidy.sourceforge.net/index.php>) has been suspended
65 here is the import of <https://csstidy.svn.sourceforge.net/svnroot/csstidy> on 2010-11-14
H A Ddata.inc.php287 * @see csstidy::property_is_next()
590 * @see csstidy::load_template()
H A Dcss_optimiser.php109 $css = new csstidy();
H A Dclass.csstidy.php75 class csstidy { class
1039 return!(@($string[$pos - 1] !== '\\') || csstidy::escaped($string, $pos - 1));
/plugin/pagecss/vendor/csstidy-2.2.1/bin/
H A Dpcsstidy44 $csstidy = new csstidy(); variable
203 exit($csstidy->version . "\n");
224 $csstidy->set_cfg($setting_name, $value);
254 $csstidy->parse($css_code);
256 var_dump($csstidy->css);
259 echo $csstidy->print->plain($default_media);
/plugin/freechat/phpfreechat/lib/csstidy-1.2/
Dclass.csstidy_optimise.php172 if(csstidy::is_important($this->sub_value))
175 $this->sub_value = csstidy::gvw_important($this->sub_value);
224 if(csstidy::is_important($value))
226 $values = csstidy::gvw_important($value);
280 if(csstidy::is_important($string))
282 $string = csstidy::gvw_important($string) . ' !important';
495 if(csstidy::is_important($value))
497 $value = csstidy::gvw_important($value);
555 if($string{$i} == $sep && !csstidy::escaped($string,$i))
559 …elseif($string{$i} == '"' || $string{$i} == '\'' || $string{$i} == '(' && !csstidy::escaped($strin…
[all …]
Dclass.csstidy.php61 class csstidy { class
254 function csstidy() function in csstidy
447 return (strpos($tokens, $string{$i}) !== false && !csstidy::escaped($string,$i));
482 if(csstidy::is_token($string,$i))
506 …if(!( (ctype_space($this->at{$lastpos}) || csstidy::is_token($this->at,$lastpos) && $this->at{$las…
515 if(csstidy::is_token($string,$i))
591 …if($lastpos == -1 || !( (ctype_space($this->selector{$lastpos}) || csstidy::is_token($this->select…
600 if(csstidy::is_token($string,$i))
605 … if(csstidy::property_is_valid($this->property) || !$this->get_cfg('discard_invalid_properties')) {
641 if(csstidy::is_token($string,$i) || $pn)
[all …]
Ddata.inc.php275 * @see csstidy::property_is_next()
407 * @see csstidy::load_template()
DREADME3 Changelog: http://cdburnerxp.se/cssparse/csstidy/changelog.php
Dcss_optimiser.php72 $css = new csstidy();
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/
DFilter.ExtractStyleBlocks.TidyImpl.txt8 If left NULL, HTML Purifier will attempt to instantiate a <code>csstidy</code>
DFilter.ExtractStyleBlocks.txt29 require_once '/path/to/csstidy.class.php';
/plugin/pagecss/
H A Daction.php85 $tidy = new csstidy();
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/
DExtractStyleBlocks.php59 $this->_tidy = new csstidy();
/plugin/freechat/phpfreechat/src/
Dphpfreechat.class.php366 $css = new csstidy();