Searched refs:geshi (Results 1 - 25 of 30) sorted by relevance

12

/external/libvpx/examples/includes/geshi/contrib/
H A Daliased.php7 * 'Alias /viewmysource /var/www/geshi/contrib/aliased.php'. Don't forget
22 // Assume you've put geshi in the include_path already
23 require_once("geshi.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;', true);
49 $geshi->set_line_style('font: normal normal 95% \'Courier New\', Courier, monospace; color: #003030;', 'font-weight: bold; color: #006060;', true);
50 $geshi
[all...]
H A Dcssgen2.php5 * the CSS file. On *NIX you can also do a simple `php cssgen.php > geshi.css`.
23 * @package geshi
31 require dirname(dirname(__FILE__)) . DIRECTORY_SEPARATOR . 'geshi.php';
32 $geshi = new GeSHi; variable
35 if ($handle = opendir($geshi->language_path)) {
47 header('Content-Disposition: attachment; filename="geshi.css"');
51 " * (http://qbnz.com/highlighter/ and http://geshi.org/)\n".
55 $geshi->set_language($language);
57 $css = $geshi->get_stylesheet(false);
H A Dexample.php5 * Just point your browser at this script (with geshi.php in the parent directory,
6 * and the language files in subdirectory "../geshi/")
18 if (is_readable('../geshi.php')) {
20 } elseif (is_readable('geshi.php')) {
23 die('Could not find geshi.php - make sure it is in your include path!');
25 require $path . 'geshi.php';
34 $_POST['source'] = implode('', @file($path . 'geshi/' . $_POST['language'] . '.php'));
46 $geshi = new GeSHi($_POST['source'], $_POST['language']); variable
54 $geshi->set_header_type(GESHI_HEADER_PRE_VALID);
58 $geshi
[all...]
H A Dcssgen.php5 * Author: Nigel McNie (nigel@geshi.org)
164 $geshi_path = get_var('geshi-path');
165 $geshi_lang_path = get_var('geshi-lang-path');
169 $geshi_path = '../geshi.php';
173 $geshi_lang_path = '../geshi/';
230 <br />geshi.php: <input type=\"text\" name=\"geshi-path\" value=\"" . realpath('../geshi.php') . "\" size=\"50\" />";
234 echo '<input type="hidden" name="geshi-path" value="' . htmlspecialchars($geshi_path) . '" />';
239 <br />language files directory: <input type=\"text\" name=\"geshi
[all...]
/external/libvpx/examples/includes/geshi/geshi/
H A Dscilab.php5 * Author: Christophe David (geshi@christophedavid.org)
6 * Copyright: (c) 2008 Christophe David (geshi@christophedavid.org)
15 * - Corrected with the help of Benny Baumann (BenBE@geshi.org)
H A Dbf.php5 * Author: Benny Baumann (BenBE@geshi.org)
H A Dhq9plus.php5 * Author: Benny Baumann (BenBE@geshi.org)
H A Dintercal.php5 * Author: Benny Baumann (BenBE@geshi.org)
H A Dio.php5 * Author: Nigel McNie (nigel@geshi.org)
H A Dlolcode.php5 * Author: Benny Baumann (BenBE@geshi.org)
H A Dprolog.php5 * Author: Benny Baumann (BenBE@geshi.org)
H A Dwhitespace.php5 * Author: Benny Baumann (BenBE@geshi.org)
H A Dcss.php5 * Author: Nigel McNie (nigel@geshi.org)
H A Demail.php5 * Author: Benny Baumann (BenBE@geshi.org)
H A Dhtml4strict.php5 * Author: Nigel McNie (nigel@geshi.org)
H A Djava.php5 * Author: Nigel McNie (nigel@geshi.org)
H A Dphp-brief.php5 * Author: Nigel McNie (nigel@geshi.org)
H A Dqbasic.php5 * Author: Nigel McNie (nigel@geshi.org)
H A Dsql.php5 * Author: Nigel McNie (nigel@geshi.org)
H A Dvim.php13 * Reference: http://qbnz.com/highlighter/geshi-doc.html#language-files
H A Dxml.php5 * Author: Nigel McNie (nigel@geshi.org)
H A Dc.php5 * Author: Nigel McNie (nigel@geshi.org)
H A Dphp.php5 * Author: Nigel McNie (nigel@geshi.org)
/external/libvpx/examples/includes/
H A Dvp8_doc_tools.php35 include_once('geshi/geshi.php');
39 $geshi_lang = 'geshi/geshi/'; // GeSHi language files
150 $geshi = new GeSHi($matches[1], $lang); variable
151 $geshi->set_language_path($geshi_lang);
152 $blob_new = $geshi->parse_code();
158 unset($geshi);
/external/libvpx/examples/
H A Dgen_example_doxy.php22 $geshi_path = dirname($argv[0])."/includes/geshi/geshi/"; // Language files
30 if(!include_once('includes/geshi/geshi.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

Completed in 126 milliseconds

12