1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 | <?php /* * config.inc.php * gitphp: A PHP git repository browser * Component: Configuration * * Copyright (C) 2006 Christopher Han <xiphux@gmail.com> */ /* * stylesheet * Path to page stylesheet */ $gitphp_conf['stylesheet'] = "gitphp.css"; /* * projectroot * Absolute filesystem path prepended to project paths * (don't forget trailing slash!) */ $gitphp_conf['projectroot'] = "/git/"; /* * gitbin * Path to git binary * For example, /usr/bin/git on Linux * or C:\\Program Files\\Git\\cmd\\git.cmd on Windows * with msysgit. You can also omit the full path and just * use the executable name to search the user's $PATH. */ $gitphp_conf['gitbin'] = "/usr/bin/git"; /* * diffbin * Path to diff binary * Same rules as gitbin */ $gitphp_conf['diffbin'] = "/usr/bin/diff"; /* * gittmp * Location for temporary files for diffs * (don't forget trailing slash!) */ $gitphp_conf['gittmp'] = "/tmp/gitphp/"; /* * title * The string that will be used as the page title * The variable '$gitphp_appstring' will expand to * the name (gitphp) and version * The variable '$gitphp_version' will expand to the * version number only */ $gitphp_conf['title'] = "centraldogma :: $gitphp_appstring"; /* * self * This is the path to the script that will be inserted * in urls. * If only specifying the directory path (and omitting the * index.php filename), make sure to include the trailing * slash! */ $gitphp_conf['self'] = "http://centraldogma/gitphp/"; /* * smarty_prefix * This is the prefix where smarty is installed. * (including trailing slash) * If an absolute (starts with /) path is given, * Smarty.class.php will be searched for in that directory. * If a relative (doesn't start with /) path is given, * that subdirectory inside the php include dirs will be * searched. So, for example, if you specify the path as * "/usr/share/Smarty/" then the script will look for * /usr/share/Smarty/Smarty.class.php. * If you specify the path as "smarty/" then it will search * the include directories in php.ini's include_path directive, * so it would search in places like /usr/share/php and /usr/lib/php: * /usr/share/php/smarty/Smarty.class.php, * /usr/lib/php/smarty/Smarty.class.php, etc. * Leave blank to just search in the root of the php include directories * like /usr/share/php/Smarty.class.php, /usr/lib/php/Smarty.class.php, etc. */ $gitphp_conf['smarty_prefix'] = "smarty/"; /* * bzsnapshots * If set to true, will bzcompress snapshot tars before sending them. * Your PHP must have been compiled with bzip2 support! */ $gitphp_conf['bzsnapshots'] = TRUE; /* * bzblocksize * Sets the compression level for bzip2. Ranges from 1-9, with * 9 being the most compression but requiring the most processing * (bzip defaults to 4) */ $gitphp_conf['bzblocksize'] = 9; /* * geshi * Run blob output through geshi syntax highlighting * and line numbering */ $gitphp_conf['geshi'] = TRUE; /* * geshiroot * Directory where geshi is installed * NOTE: this is the path to the base geshi.php file to include, * NOT the various other geshi php source files! * Leave blank if geshi.php is in the gitphp root * (don't forget trailing slash!) */ $gitphp_conf['geshiroot'] = "geshi/"; /* * git_projects * Two-dimensional array list of projects * First array index is the name of the category the projects * belong to, and the second array index is a human-readable * name for the project (not used, just for organizational * purposes), and the value is the path to the project * (minus the projectroot). * Any projects belonging to the special category "none" * will be listed without a category. * Comment out $git_projects (leave null) to attempt to read all * projects in the projectroot. */ $git_projects['Core']['FBX'] = "core/fbx.git"; $git_projects['Core']['Mvm'] = "core/mvm.git"; $git_projects['Core']['PySoulforge'] = "core/pysoulforge.git"; $git_projects['Core']['Scripts'] = "core/scripts.git"; $git_projects['Core']['Soulforge'] = "core/soulforge.git"; $git_projects['Core']['XNSS'] = "core/xnss.git"; $git_projects['Core']['XNSS_old'] = "core/xnss_old.git"; $git_projects['PHP']['Codex'] = "php/codex.git"; $git_projects['PHP']['gitphp'] = "php/gitphp.git"; $git_projects['PHP']['MDB'] = "php/mdb.git"; $git_projects['Nuclear']['Fusion'] = "nuclear/fusion.git"; $git_projects['Websites']['lots'] = "websites/lots.git"; $git_projects['Websites']['bth'] = "websites/bth.git"; $git_projects['School']['CS135'] = "school/cs135.git"; $git_projects['School']['CS150'] = "school/cs150.git"; $git_projects['School']['CS151'] = "school/cs151.git"; $git_projects['School']['CS156'] = "school/cs156.git"; $git_projects['School']['CS160'] = "school/cs160.git"; $git_projects['School']['CS161'] = "school/cs161.git"; $git_projects['School']['CS169'] = "school/cs169.git"; $git_projects['School']['CS178'] = "school/cs178.git"; $git_projects['School']['CS180'] = "school/cs180.git"; $git_projects['School']['CS189'] = "school/cs189.git"; $git_projects['School']['CS183'] = "school/cs183.git"; $git_projects['School']['CS193'] = "school/cs193.git"; $git_projects['School']['CS195'] = "school/cs195.git"; $git_projects['School']['CS196'] = "school/cs196.git"; ?> |