123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463 |
- <?php
- /**
- * GitPHP Config defaults
- *
- * Lists all the config options and their default values
- *
- * @author Christopher Han <xiphux@gmail.com>
- * @copyright Copyright (c) 2010 Christopher Han
- * @package GitPHP
- * @subpackage Config
- */
- /**
- * This file is not usable as an actual config file.
- * To use a config value you should copy the value
- * into gitphp.conf.php
- */
- throw new Exception('The defaults file should not be used as your config.');
- /*********************************************************
- * Projects
- */
- /*
- * projectroot
- * Full directory on server where projects are located
- */
- //$gitphp_conf['projectroot'] = '/pub/gitprojects/';
- /*
- * exportedonly
- * When listing all projects in the project root,
- * (not specifying any projects manually or using a project list file)
- * set this to true to only allow repositories with the
- * special file git-daemon-export-ok (see the git-daemon man page)
- */
- $gitphp_conf['exportedonly'] = false;
- /*********************************************************
- * Appearance
- */
- /*
- * locale
- * This is the default locale/language used in the interface.
- * The locale must exist in the locale/ directory
- */
- $gitphp_conf['locale'] = 'en_US';
- /*
- * 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'] = "$gitphp_appstring";
- /*
- * homelink
- * This is the text of the link in the upper left corner
- * that takes you back to the project list.
- */
- $gitphp_conf['homelink'] = 'projects';
- /*
- * cloneurl
- * Sets the base clone url to display for a project.
- * This is the publicly-accessible url of the projectroot
- * that gets prepended to the project path to create the clone
- * url. It can be any format, for example:
- *
- * http://server.com/
- * ssh://server.com/git/
- * git://server.com/gitprojects/
- *
- * If left blank/commented, no clone url will display.
- */
- $gitphp_conf['cloneurl'] = 'http://localhost/git/';
- /*
- * pushurl
- * Sets the base push url to display for a project.
- * Works the same as cloneurl.
- */
- $gitphp_conf['pushurl'] = 'ssh://localhost/git/';
- /*
- * bugpattern
- * Sets the regular expression to use to find bug number
- * references in log messages. The pattern should have a
- * group that extracts just the bug ID to pass to the
- * bug tracker.
- * For example, '/#([0-9]+)/' will recognize any number
- * with a '#' in front of it, and groups the numeric part
- * only. Another common example is '/bug:([0-9]+)/' to
- * extract bug numbers with 'bug:' in front of them.
- */
- //$gitphp_conf['bugpattern'] = '/#([0-9]+)/';
- /*
- * bugurl
- * Sets the URL for the bug tracker. This URL must have
- * a backreference to the group in the bug pattern that
- * contains the ID. For example, ${1} uses the first
- * group.
- */
- //$gitphp_conf['bugurl'] = 'http://localhost/mantis/view.php?id=${1}';
- /*
- * self
- * This is the path to the script that will be inserted
- * in urls. If you leave this blank/commented the script
- * will try to guess the correct URL, but you can override
- * it here if it's not being guessed correctly.
- */
- $gitphp_conf['self'] = 'http://localhost/gitphp/';
- /*
- * stylesheet
- * Path to look and feel (skin) stylesheet
- */
- $gitphp_conf['stylesheet'] = 'gitphpskin.css';
- /*
- * javascript
- * Toggles on javascript features
- */
- $gitphp_conf['javascript'] = true;
- /*
- * googlejs
- * Toggles whether to use the Google Libraries API to
- * load javascript libraries, which takes advantage of the
- * speed and caching of Google's servers and content
- * delivery network.
- * http://developers.google.com/speed/libraries/
- * The libraries are served from Google's servers, which
- * means your users must have an internet connection,
- * so this may not be appropriate for closed intranets.
- * By enabling this you agree to Google's terms for their
- * library API.
- */
- $gitphp_conf['googlejs'] = false;
- /*********************************************************
- * Features
- */
- /*
- * compat
- * Set this to true to turn on compatibility mode. This will cause
- * GitPHP to rely more on the git executable for loading data,
- * which will bypass some of the limitations of PHP at the expense
- * of performance.
- * Turn this on if you are experiencing issues viewing data for
- * your projects.
- */
- $gitphp_conf['compat'] = false;
- /**
- * largeskip
- * When GitPHP is reading through the history for pages of the shortlog/log
- * beyond the first, it needs to read from the tip but skip a number of commits
- * for the previous pages. The more commits it needs to skip, the longer it takes.
- * Calling the git executable is faster when skipping a large number of commits,
- * ie reading a log page significantly beyond the first. This determines
- * the threshold at which GitPHP will fall back to using the git exe for the log.
- * Currently each log page shows 100 commits, so this would be calculated at
- * page number * 100. So for example at the default of 200, pages 0-2 would be
- * loaded natively and pages 3+ would fall back on the git exe.
- */
- $gitphp_conf['largeskip'] = 200;
- /*
- * uniqueabbrev
- * If this is turned on, when GitPHP abbreviates hashes, it will ensure
- * that the abbreviated hash is unique for the project, extending the
- * abbreviated hash if necessary until it becomes unique.
- * Searching through every single pack in the repository for collisions is a
- * performance intensive process that can slow down page loads. If you turn
- * this on, it's highly recommended to merge all of your existing packs into
- * a single pack using git gc --aggressive (or git repack -a -d).
- */
- $gitphp_conf['uniqueabbrev'] = false;
- /*
- * compressformat
- * Indicates what kind of compression will be done on the
- * snapshot archive. Recognized settings are:
- *
- * GITPHP_COMPRESS_BZ2 - create a tar.bz2 file (php must have bz2 support)
- * GITPHP_COMPRESS_GZ - create a tar.gz file (php must have gzip support)
- * GITPHP_COMPRESS_ZIP - create a zip file
- *
- * Any other setting, or no setting, will create uncompressed tar archives
- * If you choose a compression format and your php does not support it,
- * gitphp will fall back to uncompressed tar archives
- *
- * Note that users with javascript get to choose their snapshot format when
- * they request it, so this only applies to users without javascript or if
- * you turn the javascript setting off
- */
- $gitphp_conf['compressformat'] = GITPHP_COMPRESS_ZIP;
- /*
- * compresslevel
- * Sets the compression level for snapshots. Ranges from 1-9, with
- * 9 being the most compression but requiring the most processing
- * (bzip defaults to 4, gzip defaults to -1)
- */
- $gitphp_conf['compresslevel'] = 9;
- /*
- * geshi
- * Run blob output through geshi syntax highlighting
- * and line numbering
- */
- $gitphp_conf['geshi'] = true;
- /*
- * search
- * Set this to false to disable searching
- */
- $gitphp_conf['search'] = true;
- /*
- * filesearch
- * Set this to false to disable searching within files
- * (it can be resource intensive)
- */
- $gitphp_conf['filesearch'] = true;
- /*
- * filemimetype
- * Attempt to read the file's mimetype when displaying
- * (for example, displaying an image as an actual image
- * in a browser)
- * This requires either PHP >= 5.3.0, PECL fileinfo, or
- * Linux
- */
- $gitphp_conf['filemimetype'] = true;
- /*
- * abbreviateurl
- * Generates urls using abbreviated hashes instead of
- * full hashes.
- * Note that urls with abbreviated hashes are not safe
- * to be saved long term (eg bookmarks), as future objects
- * may be added to the repository that cause an abbreviated
- * hash to no longer be unique.
- * This option only takes effect with the 'compat' option
- * turned off.
- * Additionally, this option will automatically enable
- * 'uniqueabbrev', as an abbreviated hash must be unique
- * in order to resolve it to a full hash.
- */
- $gitphp_conf['abbreviateurl'] = false;
- /*
- * cleanurl
- * Uses clean, rest-style urls throughout gitphp.
- * This requires additional setup in your web server
- * to rewrite urls (mod_rewrite on Apache, HttpRewriteModule
- * on Nginx, etc). URLs must be rewritten to point
- * to index.php?q={query}.
- * For more instructions on how to set this up, see
- * http://www.gitphp.org/projects/gitphp/wiki/Clean_URLs
- */
- $gitphp_conf['cleanurl'] = false;
- /*
- * feedfilter
- * Sets a regular expression to use to filter commits out
- * of the project atom/rss feed. Commits that have a
- * commit message matching this pattern will be excluded.
- * For example, '/GIT_SILENT/' will exclude any commit
- * with the string GIT_SILENT in the commit message.
- */
- //$gitphp_conf['feedfilter'] = '/GIT_SILENT/';
- /*
- * showrestrictedprojects
- * By default, when user-based restrictions are enabled,
- * projects that are not available to the logged in user
- * will be hidden in the project list. Setting this option
- * will instead display these projects as disabled in the
- * project list.
- */
- $gitphp_conf['showrestrictedprojects'] = false;
- /*
- /*********************************************************
- * Executable/filesystem options
- * Important to check if you're running windows
- */
- /*
- * gitbin
- * Path to git binary
- * For example, /usr/bin/git on Linux
- * or C:\\Program Files\\Git\\bin\\git.exe on Windows
- * with msysgit. You can also omit the full path and just
- * use the executable name to search the user's $PATH.
- * Note: Versions of PHP below 5.2 have buggy handling of spaces
- * in paths. Use the 8.3 version of the filename if you're
- * having trouble, e.g. C:\\Progra~1\\Git\\bin\\git.exe
- */
- // Linux:
- $gitphp_conf['gitbin'] = 'git';
- // Windows (msysgit):
- $gitphp_conf['gitbin'] = 'C:\\Progra~1\\Git\\bin\\git.exe';
- /*
- * magicdb
- * Path to the libmagic db used to read mimetype
- * Only applies if filemimetype = true
- * You can leave this as null and let the system
- * try to find the database for you, but that method
- * is known to have issues
- * If the path is correct but it's still not working,
- * try removing the file extension if you have it on,
- * or vice versa
- */
- // Linux:
- $gitphp_conf['magicdb'] = '/usr/share/misc/magic';
- // Windows:
- $gitphp_conf['magicdb'] = 'C:\\wamp\\php\\extras\\magic';
- /*******************************************************
- * Cache options
- */
- /*
- * cache
- * Turns on template caching. If in doubt, leave it off
- * You will need to create a directory 'cache' and make it
- * writable by the server
- */
- $gitphp_conf['cache'] = false;
- /*
- * objectcache
- * Turns on object caching. This caches immutable pieces of
- * data from the git repository. You will need to create a
- * directory 'cache' and make it writable by the server.
- * This can be used in place of the template cache, or
- * in addition to it for the maximum benefit.
- */
- $gitphp_conf['objectcache'] = false;
- /*
- * cacheexpire
- * Attempts to automatically expire cache when a new commit renders
- * it out of date.
- * This is a good option for most users because it ensures the cache
- * is always up to date and users are seeing correct information,
- * although it is a slight performance hit.
- * However, if your commits are coming in so quickly that the cache
- * is constantly being expired, turn this off.
- */
- $gitphp_conf['cacheexpire'] = true;
- /*
- * cachelifetime
- * Sets how long a page will be cached, in seconds
- * If you are automatically expiring the cache
- * (see the 'cacheexpire' option above), then this can be set
- * relatively high - 3600 seconds (1 hour) or even longer.
- * -1 means no timeout.
- * If you have turned cacheexpire off because of too many
- * cache expirations, set this low (5-10 seconds).
- */
- $gitphp_conf['cachelifetime'] = 3600;
- /*
- * objectcachelifetime
- * Sets how long git objects will be cached, in seconds
- * The object cache only stores immutable objects from
- * the git repository, so there's no harm in setting
- * this to a high number. Set to -1 to never expire.
- */
- $gitphp_conf['objectcachelifetime'] = 86400;
- /*
- * objectcachecompress
- * Sets the size threshold at which objects will be compressed
- * when being stored into the object cache. Compression saves
- * cache space but adds a very slight decompression overhead.
- * Set to 0 to disable compression.
- */
- $gitphp_conf['objectcachecompress'] = 500;
- /*
- * memcache
- * Enables memcache support for caching data, instead of
- * Smarty's standard on-disk cache.
- * Only applies if cache = true or objectcache = true (or both)
- * Requires either the Memcached or Memcache PHP extensions.
- * This is an array of servers. Each server is specified as an
- * array.
- * Index 0 (required): The server hostname/IP
- * Index 1 (optional): The port, default is 11211
- * Index 2 (optional): The weight, default is 1
- */
- //$gitphp_conf['memcache'] = array(
- // array('127.0.0.1', 11211, 2),
- // array('memcacheserver1', 11211),
- // array('memcacheserver2')
- //);
- /*
- * objectmemory
- * If set, this will limit the number of git objects GitPHP
- * keeps in PHP's memory during execution, to this specific number.
- * This can be set if you have a low memory limit on your
- * webserver.
- * Please note that setting this too low will severely degrade
- * performance, as GitPHP will have to repeatedly load the same
- * objects off of the disk since the limit prevents them from
- * being kept in memory. It's strongly recommended that you
- * turn debug mode on and view the MemoryCache size on various
- * pages (in the debug output) to get a feel for the size of
- * your projects before setting this.
- * 0 means no limit.
- */
- $gitphp_conf['objectmemory'] = 0;
- /*******************************************************
- * Debugging options
- */
- /*
- * debug
- * Turns on extra warning messages
- * Not recommended for production systems, as it will give
- * way more info about what's happening than you care about, and
- * will screw up non-html output (rss, opml, snapshots, etc)
- */
- $gitphp_conf['debug'] = false;
- /*
- * benchmark
- * Turns on extra timestamp and memory benchmarking info
- * when debug mode is turned on. Generates lots of output.
- */
- $gitphp_conf['benchmark'] = false;
|