<?php |
<?php |
/* |
/* |
* config.inc.php |
* config.inc.php |
* gitphp: A PHP git repository browser |
* gitphp: A PHP git repository browser |
* Component: Configuration |
* Component: Configuration |
* |
* |
* Copyright (C) 2006 Christopher Han <xiphux@gmail.com> |
* Copyright (C) 2006 Christopher Han <xiphux@gmail.com> |
* |
* |
* This program is free software; you can redistribute it and/or modify |
* This program is free software; you can redistribute it and/or modify |
* it under the terms of the GNU General Public License as published by |
* it under the terms of the GNU General Public License as published by |
* the Free Software Foundation; either version 2 of the License, or |
* the Free Software Foundation; either version 2 of the License, or |
* (at your option) any later version. |
* (at your option) any later version. |
* |
* |
* This program is distributed in the hope that it will be useful, |
* This program is distributed in the hope that it will be useful, |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
* GNU Library General Public License for more details. |
* GNU Library General Public License for more details. |
* |
* |
* You should have received a copy of the GNU General Public License |
* You should have received a copy of the GNU General Public License |
* along with this program; if not, write to the Free Software |
* along with this program; if not, write to the Free Software |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
*/ |
*/ |
|
|
/* |
/* |
* stylesheet |
* stylesheet |
* Path to page stylesheet |
* Path to page stylesheet |
*/ |
*/ |
$gitphp_conf['stylesheet'] = "gitphp.css"; |
$gitphp_conf['stylesheet'] = "gitphp.css"; |
|
|
/* |
/* |
* projectroot |
* projectroot |
* Absolute filesystem path prepended to project paths |
* Absolute filesystem path prepended to project paths |
* (don't forget trailing slash!) |
* (don't forget trailing slash!) |
*/ |
*/ |
$gitphp_conf['projectroot'] = "/git/"; |
$gitphp_conf['projectroot'] = "/git/"; |
|
|
/* |
/* |
* gitbin |
* gitbin |
* Path to git binaries (don't forget trailing slash!) |
* Path to git binaries (don't forget trailing slash!) |
* (Leave blank or comment to just use $PATH) |
* (Leave blank or comment to just use $PATH) |
*/ |
*/ |
$gitphp_conf['gitbin'] = "/usr/bin/"; |
$gitphp_conf['gitbin'] = "/usr/bin/"; |
|
|
/* |
/* |
* gittmp |
* gittmp |
* Location for temporary files for diffs |
* Location for temporary files for diffs |
* (don't forget trailing slash!) |
* (don't forget trailing slash!) |
*/ |
*/ |
$gitphp_conf['gittmp'] = "/tmp/gitphp/"; |
$gitphp_conf['gittmp'] = "/tmp/gitphp/"; |
|
|
/* |
/* |
* title |
* title |
* The string that will be used as the page title |
* The string that will be used as the page title |
* The variable '$gitphp_appstring' will expand to |
* The variable '$gitphp_appstring' will expand to |
* the name (gitphp) and version |
* the name (gitphp) and version |
|
* The variable '$gitphp_version' will expand to the |
|
* version number only |
*/ |
*/ |
$gitphp_conf['title'] = "centraldogma :: $gitphp_appstring"; |
$gitphp_conf['title'] = "centraldogma :: $gitphp_appstring"; |
|
|
/* |
/* |
* self |
* self |
* This is the path to the script that will be inserted |
* This is the path to the script that will be inserted |
* in urls. |
* in urls. |
* If only specifying the directory path (and omitting the |
* If only specifying the directory path (and omitting the |
* index.php filename), make sure to include the trailing |
* index.php filename), make sure to include the trailing |
* slash! |
* slash! |
*/ |
*/ |
$gitphp_conf['self'] = "http://centraldogma/gitphp/"; |
$gitphp_conf['self'] = "http://centraldogma/gitphp/"; |
|
|
/* |
/* |
* smarty_prefix |
* smarty_prefix |
* This is the prefix where smarty is installed. |
* This is the prefix where smarty is installed. |
* (including trailing slash) |
* (including trailing slash) |
* If an absolute (starts with /) path is given, |
* If an absolute (starts with /) path is given, |
* Smarty.class.php will be searched for in that directory. |
* Smarty.class.php will be searched for in that directory. |
* If a relative (doesn't start with /) path is given, |
* If a relative (doesn't start with /) path is given, |
* that subdirectory inside the php include dirs will be |
* that subdirectory inside the php include dirs will be |
* searched. So, for example, if you specify the path as |
* searched. So, for example, if you specify the path as |
* "/usr/share/Smarty/" then the script will look for |
* "/usr/share/Smarty/" then the script will look for |
* /usr/share/Smarty/Smarty.class.php. |
* /usr/share/Smarty/Smarty.class.php. |
* If you specify the path as "smarty/" then it will search |
* If you specify the path as "smarty/" then it will search |
* the include directories in php.ini's include_path directive, |
* the include directories in php.ini's include_path directive, |
* so it would search in places like /usr/share/php and /usr/lib/php: |
* so it would search in places like /usr/share/php and /usr/lib/php: |
* /usr/share/php/smarty/Smarty.class.php, |
* /usr/share/php/smarty/Smarty.class.php, |
* /usr/lib/php/smarty/Smarty.class.php, etc. |
* /usr/lib/php/smarty/Smarty.class.php, etc. |
* Leave blank to just search in the root of the php include directories |
* 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. |
* like /usr/share/php/Smarty.class.php, /usr/lib/php/Smarty.class.php, etc. |
*/ |
*/ |
$gitphp_conf['smarty_prefix'] = "smarty/"; |
$gitphp_conf['smarty_prefix'] = "smarty/"; |
|
|
/* |
/* |
* bzsnapshots |
* bzsnapshots |
* If set to true, will bzcompress snapshot tars before sending them. |
* If set to true, will bzcompress snapshot tars before sending them. |
* Your PHP must have been compiled with bzip2 support! |
* Your PHP must have been compiled with bzip2 support! |
*/ |
*/ |
$gitphp_conf['bzsnapshots'] = TRUE; |
$gitphp_conf['bzsnapshots'] = TRUE; |
|
|
/* |
/* |
* bzblocksize |
* bzblocksize |
* Sets the compression level for bzip2. Ranges from 1-9, with |
* Sets the compression level for bzip2. Ranges from 1-9, with |
* 9 being the most compression but requiring the most processing |
* 9 being the most compression but requiring the most processing |
* (bzip defaults to 4) |
* (bzip defaults to 4) |
*/ |
*/ |
$gitphp_conf['bzblocksize'] = 9; |
$gitphp_conf['bzblocksize'] = 9; |
|
|
/* |
/* |
* geshi |
* geshi |
* Run blob output through geshi syntax highlighting |
* Run blob output through geshi syntax highlighting |
* and line numbering |
* and line numbering |
*/ |
*/ |
$gitphp_conf['geshi'] = TRUE; |
$gitphp_conf['geshi'] = TRUE; |
|
|
/* |
/* |
* geshiroot |
* geshiroot |
* Directory where geshi is installed |
* Directory where geshi is installed |
* NOTE: this is the path to the base geshi.php file to include, |
* NOTE: this is the path to the base geshi.php file to include, |
* NOT the various other geshi php source files! |
* NOT the various other geshi php source files! |
* Leave blank if geshi.php is in the gitphp root |
* Leave blank if geshi.php is in the gitphp root |
* (don't forget trailing slash!) |
* (don't forget trailing slash!) |
*/ |
*/ |
$gitphp_conf['geshiroot'] = "geshi/"; |
$gitphp_conf['geshiroot'] = "geshi/"; |
|
|
/* |
/* |
* git_projects |
* git_projects |
* Two-dimensional array list of projects |
* Two-dimensional array list of projects |
* First array index is the name of the category the projects |
* First array index is the name of the category the projects |
* belong to, and the second array index is a human-readable |
* belong to, and the second array index is a human-readable |
* name for the project (not used, just for organizational |
* name for the project (not used, just for organizational |
* purposes), and the value is the path to the project |
* purposes), and the value is the path to the project |
* (minus the projectroot). |
* (minus the projectroot). |
* Any projects belonging to the special category "none" |
* Any projects belonging to the special category "none" |
* will be listed without a category. |
* will be listed without a category. |
* Comment out $git_projects (leave null) to attempt to read all |
* Comment out $git_projects (leave null) to attempt to read all |
* projects in the projectroot. |
* projects in the projectroot. |
*/ |
*/ |
$git_projects['Core']['FBX'] = "core/fbx.git"; |
$git_projects['Core']['FBX'] = "core/fbx.git"; |
$git_projects['Core']['Mvm'] = "core/mvm.git"; |
$git_projects['Core']['Mvm'] = "core/mvm.git"; |
$git_projects['Core']['PySoulforge'] = "core/pysoulforge.git"; |
$git_projects['Core']['PySoulforge'] = "core/pysoulforge.git"; |
$git_projects['Core']['Scripts'] = "core/scripts.git"; |
$git_projects['Core']['Scripts'] = "core/scripts.git"; |
$git_projects['Core']['Soulforge'] = "core/soulforge.git"; |
$git_projects['Core']['Soulforge'] = "core/soulforge.git"; |
$git_projects['Core']['XNSS'] = "core/xnss.git"; |
$git_projects['Core']['XNSS'] = "core/xnss.git"; |
$git_projects['Core']['XNSS_old'] = "core/xnss_old.git"; |
$git_projects['Core']['XNSS_old'] = "core/xnss_old.git"; |
$git_projects['PHP']['Codex'] = "php/codex.git"; |
$git_projects['PHP']['Codex'] = "php/codex.git"; |
$git_projects['PHP']['gitphp'] = "php/gitphp.git"; |
$git_projects['PHP']['gitphp'] = "php/gitphp.git"; |
$git_projects['PHP']['MDB'] = "php/mdb.git"; |
$git_projects['PHP']['MDB'] = "php/mdb.git"; |
$git_projects['Nuclear']['Fusion'] = "nuclear/fusion.git"; |
$git_projects['Nuclear']['Fusion'] = "nuclear/fusion.git"; |
$git_projects['Websites']['lots'] = "websites/lots.git"; |
$git_projects['Websites']['lots'] = "websites/lots.git"; |
$git_projects['Websites']['bth'] = "websites/bth.git"; |
$git_projects['Websites']['bth'] = "websites/bth.git"; |
$git_projects['School']['CS135'] = "school/cs135.git"; |
$git_projects['School']['CS135'] = "school/cs135.git"; |
$git_projects['School']['CS150'] = "school/cs150.git"; |
$git_projects['School']['CS150'] = "school/cs150.git"; |
$git_projects['School']['CS151'] = "school/cs151.git"; |
$git_projects['School']['CS151'] = "school/cs151.git"; |
$git_projects['School']['CS156'] = "school/cs156.git"; |
$git_projects['School']['CS156'] = "school/cs156.git"; |
$git_projects['School']['CS160'] = "school/cs160.git"; |
$git_projects['School']['CS160'] = "school/cs160.git"; |
$git_projects['School']['CS161'] = "school/cs161.git"; |
$git_projects['School']['CS161'] = "school/cs161.git"; |
$git_projects['School']['CS169'] = "school/cs169.git"; |
$git_projects['School']['CS169'] = "school/cs169.git"; |
$git_projects['School']['CS178'] = "school/cs178.git"; |
$git_projects['School']['CS178'] = "school/cs178.git"; |
$git_projects['School']['CS180'] = "school/cs180.git"; |
$git_projects['School']['CS180'] = "school/cs180.git"; |
$git_projects['School']['CS189'] = "school/cs189.git"; |
$git_projects['School']['CS189'] = "school/cs189.git"; |
$git_projects['School']['CS183'] = "school/cs183.git"; |
$git_projects['School']['CS183'] = "school/cs183.git"; |
$git_projects['School']['CS193'] = "school/cs193.git"; |
$git_projects['School']['CS193'] = "school/cs193.git"; |
$git_projects['School']['CS195'] = "school/cs195.git"; |
$git_projects['School']['CS195'] = "school/cs195.git"; |
$git_projects['School']['CS196'] = "school/cs196.git"; |
$git_projects['School']['CS196'] = "school/cs196.git"; |
|
|
?> |
?> |
|
|