1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | <?php /* * defs.constants.php * gitphp: A PHP git repository browser * Component: Definitions - constants * * Copyright (C) 2009 Christopher Han <xiphux@gmail.com> */ define("GITPHP_TRIM_LENGTH", 50); define("GITPHP_RSS_ITEMS", 150); define("GITPHP_COMPRESS_BZ2", 1); define("GITPHP_COMPRESS_GZ", 2); ?> |