Home
last modified time | relevance | path

Searched refs:geshi (Results 1 – 11 of 11) sorted by relevance

/external/libvpx/examples/includes/geshi/contrib/
Daliased.php44 $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 …]
Dexample.php46 $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 &copy; 2004-2007, Nigel McNie, 2007-2008 Benny Ba…
[all …]
Dcssgen2.php32 $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/
Dvp8_doc_tools.php150 $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/
Dgen_example_doxy.php78 $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/
Dgeshi-doc.txt9 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 …]
Dphpdoc.ini63 filename = ../geshi.php
69 ;directory = geshi
DREADME7 Email: nigel@geshi.org, BenBE@omorphia.de
DTODO22 - README / INSTALL / ... file for phpdoc integration => take geshi-doc.*?
DCHANGES2 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/
Dgeshi.php4603 $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()) {