Searched refs:geshi (Results 1 – 11 of 11) sorted by relevance
/external/libvpx/examples/includes/geshi/contrib/ |
D | aliased.php | 44 $geshi =& new GeSHi($contents, "PHP"); variable 45 $geshi->set_header_type(GESHI_HEADER_PRE); 46 $geshi->enable_classes(); 47 $geshi->enable_line_numbers(GESHI_FANCY_LINE_NUMBERS, 10); 48 $geshi->set_overall_style('color: #000066; border: 1px solid #d0d0d0; background-color: #f0f0f0;', … 49 $geshi->set_line_style('font: normal normal 95% \'Courier New\', Courier, monospace; color: #003030… 50 $geshi->set_code_style('color: #000020;', 'color: #000020;'); 51 $geshi->set_link_styles(GESHI_LINK, 'color: #000060;'); 52 $geshi->set_link_styles(GESHI_HOVER, 'background-color: #f0f000;'); 53 $geshi->set_header_content('Source code viewer'); [all …]
|
D | example.php | 46 $geshi = new GeSHi($_POST['source'], $_POST['language']); variable 54 $geshi->set_header_type(GESHI_HEADER_PRE_VALID); 58 $geshi->enable_classes(); 61 $geshi->enable_line_numbers(GESHI_FANCY_LINE_NUMBERS, 5); 66 …$geshi->set_overall_style('font: normal normal 90% monospace; color: #000066; border: 1px solid #d… 77 $geshi->set_line_style('color: #003030;', 'font-weight: bold; color: #006060;', true); 78 $geshi->set_code_style('color: #000020;', true); 82 $geshi->set_link_styles(GESHI_LINK, 'color: #000060;'); 83 $geshi->set_link_styles(GESHI_HOVER, 'background-color: #f0f000;'); 88 …$geshi->set_header_content('<SPEED> <TIME> GeSHi © 2004-2007, Nigel McNie, 2007-2008 Benny Ba… [all …]
|
D | cssgen2.php | 32 $geshi = new GeSHi; variable 35 if ($handle = opendir($geshi->language_path)) { 55 $geshi->set_language($language); 57 $css = $geshi->get_stylesheet(false);
|
/external/libvpx/examples/includes/ |
D | vp8_doc_tools.php | 150 $geshi = new GeSHi($matches[1], $lang); 151 $geshi->set_language_path($geshi_lang); 152 $blob_new = $geshi->parse_code(); 158 unset($geshi);
|
/external/libvpx/examples/ |
D | gen_example_doxy.php | 78 $geshi = new GeSHi($matches[1], $language); variable 79 $geshi->set_language_path($geshi_path); 80 $block_new = $geshi->parse_code(); 86 unset($geshi); // Clean up
|
/external/libvpx/examples/includes/geshi/docs/ |
D | geshi-doc.txt | 9 Email: nigel@geshi.org, BenBE@omorphia.de 152 * E-mail: nigel@geshi.org 199 …ubdirectory of your include path too - perhaps the same subdirectory that geshi.php is in. Remembe… 203 http://mysite.com/myfolder/geshi/[language files] 204 http://mysite.com/myfolder/geshi.php 208 http://mysite.com/myfolder/includes/geshi/[language files] 209 http://mysite.com/myfolder/includes/geshi.php 213 When using GeSHi on a live site, the only directory required is the geshi/ subdirectory. Both contr… 221 include_once('geshi.php'); 237 $geshi =& new GeSHi($source, $language); [all …]
|
D | phpdoc.ini | 63 filename = ../geshi.php 69 ;directory = geshi
|
D | README | 7 Email: nigel@geshi.org, BenBE@omorphia.de
|
D | TODO | 22 - README / INSTALL / ... file for phpdoc integration => take geshi-doc.*?
|
D | CHANGES | 2 CHANGES - Changelog for GeSHi (geshi.php only) 216 coding standard accross geshi files (milian) 266 …- Example script now properly includes geshi and doesn't suppress error messages anylonger. (Mili… 382 - Changed code style of geshi.php, and removed tabs
|
/external/libvpx/examples/includes/geshi/ |
D | geshi.php | 4603 $geshi = new GeSHi($string, $language, $path); 4604 $geshi->set_header_type(GESHI_HEADER_NONE); 4607 return '<code>' . $geshi->parse_code() . '</code>'; 4610 echo '<code>' . $geshi->parse_code() . '</code>'; 4612 if ($geshi->error()) {
|