/external/libvpx/examples/includes/geshi/contrib/ |
cssgen2.php | 4 * supported by GeSHi. You can access it directly to download 5 * the CSS file. On *NIX you can also do a simple `php cssgen.php > geshi.css`. 7 * This file is part of GeSHi. 9 * GeSHi is free software; you can redistribute it and/or modify 14 * GeSHi is distributed in the hope that it will be useful, 20 * along with GeSHi; if not, write to the Free Software 23 * @package geshi 31 require dirname(dirname(__FILE__)) . DIRECTORY_SEPARATOR . 'geshi.php'; 32 $geshi = new GeSHi; variable [all...] |
example.php | 3 * GeSHi example script 5 * Just point your browser at this script (with geshi.php in the parent directory, 6 * and the language files in subdirectory "../geshi/") 15 // Rudimentary checking of where GeSHi is. In a default install it will be in ../, but 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')); 40 // Here's a free demo of how GeSHi works 46 $geshi = new GeSHi($_POST['source'], $_POST['language']); variable [all...] |
aliased.php | 4 * Another GeSHi example script 7 * '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"); 43 // Prepare GeSHi instance 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) [all...] |
langcheck.php | 3 * GeSHi example script 5 * Just point your browser at this script (with geshi.php in the parent directory, 6 * and the language files in subdirectory "../geshi/") 67 <title>GeSHi Language File Validation Script</title> 119 <h2>GeSHi Language File Validation Script</h2> 120 <p>To use this script, make sure that <strong>geshi.php</strong> is in the 122 subdirectory of GeSHi's directory called <strong>geshi/</strong>.</p> 124 finished you should see messages of what could cause trouble with GeSHi or where 128 <li>Checking where to find GeSHi installation ... <?ph [all...] |
/external/libvpx/examples/includes/ |
vp8_doc_tools.php | 15 * GeSHI 35 include_once('geshi/geshi.php'); 39 $geshi_lang = 'geshi/geshi/'; // GeSHi language files 132 * do_geshi() - Performs GeSHi transforms on XHTML blobs 150 $geshi = new GeSHi($matches[1], $lang); variable 151 $geshi->set_language_path($geshi_lang) [all...] |
/external/libvpx/examples/ |
gen_example_doxy.php | 22 $geshi_path = dirname($argv[0])."/includes/geshi/geshi/"; // Language files 30 if(!include_once('includes/geshi/geshi.php')) 31 die("Cannot load GeSHi transformer.\n"); 58 // Decode XML entities. GeSHi doesn't anticipate that 72 // Run GeSHi over code blocks 78 $geshi = new GeSHi($matches[1], $language); variable 79 $geshi->set_language_path($geshi_path) [all...] |
/external/libvpx/examples/includes/geshi/ |
geshi.php | 3 * GeSHi - Generic Syntax Highlighter 5 * The GeSHi class for Generic Syntax Highlighting. Please refer to the 12 * This file is part of GeSHi. 14 * GeSHi is free software; you can redistribute it and/or modify 19 * GeSHi is distributed in the hope that it will be useful, 25 * along with GeSHi; if not, write to the Free Software 28 * @package geshi 30 * @author Nigel McNie <nigel@geshi.org>, Benny Baumann <BenBE@omorphia.de> 37 // GeSHi Constants 43 /** The version of this GeSHi file * 4603 $geshi = new GeSHi($string, $language, $path); variable [all...] |