[phpcvsview-cvs-updates] phpcvsview config.php,1.10,1.11
Status: Pre-Alpha
Brought to you by:
bcheesem
From: Sijis A. <si...@us...> - 2005-02-01 15:13:23
|
Update of /cvsroot/phpcvsview/phpcvsview In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24971 Modified Files: config.php Log Message: - added $config option for internationalization (i18n) support - added $config option for default theme - updated copyright year Index: config.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/config.php,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** config.php 23 Jan 2005 01:47:56 -0000 1.10 --- config.php 1 Feb 2005 15:13:00 -0000 1.11 *************** *** 9,13 **** * @author Brian A Cheeseman <bch...@us...> * @version $Id$ ! * @copyright 2003-2004 Brian A Cheeseman **/ --- 9,13 ---- * @author Brian A Cheeseman <bch...@us...> * @version $Id$ ! * @copyright 2003-2005 Brian A Cheeseman **/ *************** *** 30,33 **** --- 30,36 ---- $config['html_header'] = "phpCVSView Source Code Library"; + // The default theme + $config['theme'] = "Default"; + // Setup whether to use GeSHi project code for syntax highlighting or not. $config['GeSHi']['Enable'] = true; *************** *** 35,37 **** $config['GeSHi']['HighlightersPath'] = "geshi/geshi"; ! ?> \ No newline at end of file --- 38,43 ---- $config['GeSHi']['HighlightersPath'] = "geshi/geshi"; ! // The default language ! $config['language'] = "en"; ! ! ?> |