Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
opt /
lampp /
lib /
php /
doc /
HTML_CSS /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
CSS_Advanced.php
1016
B
-rw-r--r--
CSS_DisplayOnline.php
1.1
KB
-rw-r--r--
css_error_custom.php
2.6
KB
-rw-r--r--
css_error_ignore.php
1.23
KB
-rw-r--r--
css_error_logger.php
4.13
KB
-rw-r--r--
css_errorstack_custom.php
5.04
KB
-rw-r--r--
css_errorstack_logger.php
6
KB
-rw-r--r--
CSS_grepStyles.php
2.91
KB
-rw-r--r--
CSS_InHeader.php
1.51
KB
-rw-r--r--
CSS_Inline.php
1.38
KB
-rw-r--r--
CSS_Logger.php
5.96
KB
-rw-r--r--
CSS_parseData.php
1.97
KB
-rw-r--r--
CSS_req12194_atrule_api.php
1.39
KB
-rw-r--r--
CSS_req12194_atrule_parser.php
570
B
-rw-r--r--
CSS_Stylesheet.php
1.04
KB
-rw-r--r--
CSS_validate.php
2.64
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : CSS_req12194_atrule_api.php
<?php /** * @ignore */ header('Content-Type: text/plain'); require_once 'HTML/CSS.php'; function myErrorHandler($code, $level) { return PEAR_ERROR_PRINT; // rather than PEAR_ERROR_DIE } $cssDef = <<<EOD @import url("foo.css") screen, print; @media screen { color: green; background-color: yellow; } @media print { blockquote { font-size: 16pt } } html { height: 100%; } @charset "UTF-8"; @page thin:first { size: 3in 8in } @font-face { font-family: dreamy; font-weight: bold; src: url(http://www.example.com/font.eot); } EOD; $prefs = array( 'push_callback' => 'myErrorHandler', ); $css = new HTML_CSS(null, $prefs); $css->setStyle('html', 'height', '100%'); $css->createAtRule('@charset', '"UTF-8"'); $css->createAtRule('@import', 'url("foo.css") screen, print'); //$css->unsetAtRule('@Charset'); $css->setAtRuleStyle('@media', 'screen', '', 'color', 'green'); $css->setAtRuleStyle('@media', 'screen', '', 'background-color', 'yellow'); $css->setAtRuleStyle('@media', 'print', 'blockquote', 'font-size', '16pt'); $css->setAtRuleStyle('@page', ':first', '', 'size', '3im 8im'); $css->setAtRuleStyle('@font-face', '', '', 'font-family', 'dreamy'); $css->setAtRuleStyle('@font-face', '', '', 'font-weight', 'bold'); $css->setAtRuleStyle('@font-face', '', '', 'src', 'url(http://www.example.com/font.eot)'); var_export($css->toArray()); echo PHP_EOL .$css->toString() . PHP_EOL; ?>
Close