Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
cesa.co.za /
sipdm.cesa.co.za /
lib /
lessphp /
Delete
Unzip
Name
Size
Permission
Date
Action
Exception
[ DIR ]
drwxr-sr-x
2017-06-22 15:46
Output
[ DIR ]
drwxr-sr-x
2017-06-22 15:46
SourceMap
[ DIR ]
drwxr-sr-x
2017-06-22 15:46
Tree
[ DIR ]
drwxr-sr-x
2017-06-22 15:46
Visitor
[ DIR ]
drwxr-sr-x
2017-06-22 15:46
Autoloader.php
1.42
KB
-rw-r--r--
2017-06-22 15:46
Cache.php
7.76
KB
-rw-r--r--
2017-06-22 15:46
Colors.php
4.17
KB
-rw-r--r--
2017-06-22 15:46
Configurable.php
1.19
KB
-rw-r--r--
2017-06-22 15:46
Environment.php
3.29
KB
-rw-r--r--
2017-06-22 15:46
Functions.php
36.9
KB
-rw-r--r--
2017-06-22 15:46
LICENSE
9.5
KB
-rw-r--r--
2017-06-22 15:46
Less.php.combine
226
B
-rw-r--r--
2017-06-22 15:46
Mime.php
1007
B
-rw-r--r--
2017-06-22 15:46
Output.php
749
B
-rw-r--r--
2017-06-22 15:46
Parser.php
59.76
KB
-rw-r--r--
2017-06-22 15:46
Tree.php
1.6
KB
-rw-r--r--
2017-06-22 15:46
Version.php
328
B
-rw-r--r--
2017-06-22 15:46
Visitor.php
850
B
-rw-r--r--
2017-06-22 15:46
VisitorReplacing.php
1.19
KB
-rw-r--r--
2017-06-22 15:46
moodle_readme.txt
333
B
-rw-r--r--
2017-06-22 15:46
Save
Rename
<?php /** * Tree * * @package Less * @subpackage tree */ class Less_Tree{ public $cache_string; public function toCSS(){ $output = new Less_Output(); $this->genCSS($output); return $output->toString(); } /** * Generate CSS by adding it to the output object * * @param Less_Output $output The output * @return void */ public function genCSS($output){} /** * @param Less_Tree_Ruleset[] $rules */ public static function outputRuleset( $output, $rules ){ $ruleCnt = count($rules); Less_Environment::$tabLevel++; // Compressed if( Less_Parser::$options['compress'] ){ $output->add('{'); for( $i = 0; $i < $ruleCnt; $i++ ){ $rules[$i]->genCSS( $output ); } $output->add( '}' ); Less_Environment::$tabLevel--; return; } // Non-compressed $tabSetStr = "\n".str_repeat( Less_Parser::$options['indentation'] , Less_Environment::$tabLevel-1 ); $tabRuleStr = $tabSetStr.Less_Parser::$options['indentation']; $output->add( " {" ); for($i = 0; $i < $ruleCnt; $i++ ){ $output->add( $tabRuleStr ); $rules[$i]->genCSS( $output ); } Less_Environment::$tabLevel--; $output->add( $tabSetStr.'}' ); } public function accept($visitor){} public static function ReferencedArray($rules){ foreach($rules as $rule){ if( method_exists($rule, 'markReferenced') ){ $rule->markReferenced(); } } } /** * Requires php 5.3+ */ public static function __set_state($args){ $class = get_called_class(); $obj = new $class(null,null,null,null); foreach($args as $key => $val){ $obj->$key = $val; } return $obj; } }