Changeset 1942
- Timestamp:
- 09/05/06 10:28:57 (2 years ago)
- Files:
-
- tools/pake/trunk/lib/pake/pakeColor.class.php (modified) (1 diff)
- tools/pake/trunk/lib/pake/pakeFunction.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
tools/pake/trunk/lib/pake/pakeColor.class.php
r1845 r1942 68 68 } 69 69 70 pakeColor::style('ERROR', array('bg' => 'red', 'fg' => 'white', 'bold' => true)); 71 pakeColor::style('INFO', array('fg' => 'green', 'bold' => true)); 70 pakeColor::style('ERROR', array('bg' => 'red', 'fg' => 'white', 'bold' => true)); 71 pakeColor::style('INFO', array('fg' => 'green', 'bold' => true)); 72 pakeColor::style('COMMENT', array('fg' => 'yellow')); tools/pake/trunk/lib/pake/pakeFunction.php
r1901 r1942 373 373 } 374 374 375 function pake_echo_comment($text) 376 { 377 if (pakeApp::get_instance()->get_verbose()) 378 { 379 echo sprintf(pakeColor::colorize(' # %s', 'COMMENT'), $text)."\n"; 380 } 381 } 382 375 383 // register our default exception handler 376 384 function pake_exception_default_handler($exception)