[phpcvsview-cvs-updates] phpcvsview config.php,1.8,1.9
Status: Pre-Alpha
Brought to you by:
bcheesem
From: Brian C. <bch...@us...> - 2005-01-08 04:35:08
|
Update of /cvsroot/phpcvsview/phpcvsview In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12911 Modified Files: config.php Log Message: Changed Configuration for the GeSHi connectivity. Index: config.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/config.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** config.php 22 Dec 2004 11:18:47 -0000 1.8 --- config.php 8 Jan 2005 04:34:59 -0000 1.9 *************** *** 1,37 **** ! <?php ! ! /** ! * This source code is distributed under the terms as layed out in the ! * GNU General Public License. ! * ! * Purpose: To store the configuration for this instance of phpCVSView ! * ! * @author Brian A Cheeseman <bch...@us...> ! * @version $Id$ ! * @copyright 2003-2004 Brian A Cheeseman ! **/ ! ! // The CVSROOT path to access as it is on the server, ie for this projects ! // repository the value should be "/cvsroot/phpcvsview" ! $config['cvsroot'] = "/cvsroot/phpcvsview"; ! ! // The hostname (or IP Address) of the server providing the PServer services. ! $config['pserver'] = "cvs.sourceforge.net"; ! ! // The username to pass to the PServer for authentication purposes. ! $config['username'] = "anonymous"; ! ! // The password associated with the username above for authentication process. ! $config['password'] = ""; ! ! // The HTMLTitle and HTMLHeading are used purely for the generation of the ! // resultant web pages. ! $config['html_title'] = "phpCVSView Source Code Library"; ! $config['html_header'] = "phpCVSView Source Code Library"; ! ! // Setup whether to use GeSHi project code for syntax highlighting or not. ! $config['UseGeSHi'] = true; ! $config['GeSHiPath'] = "geshi"; ! $config['GeSHiHighlightersPath'] = "geshi/geshi"; ! ! ?> --- 1,38 ---- ! <?php ! ! /** ! * This source code is distributed under the terms as layed out in the ! * GNU General Public License. ! * ! * Purpose: To store the configuration for this instance of phpCVSView ! * ! * @author Brian A Cheeseman <bch...@us...> ! * @version $Id$ ! * @copyright 2003-2004 Brian A Cheeseman ! **/ ! ! // The CVSROOT path to access as it is on the server, ie for this projects ! // repository the value should be "/cvsroot/phpcvsview" ! $config['cvsroot'] = "/cvsroot/phpcvsview"; ! ! // The hostname (or IP Address) of the server providing the PServer services. ! $config['pserver'] = "cvs.sourceforge.net"; ! ! // The username to pass to the PServer for authentication purposes. ! $config['username'] = "anonymous"; ! ! // The password associated with the username above for authentication process. ! $config['password'] = ""; ! ! // The HTMLTitle and HTMLHeading are used purely for the generation of the ! // resultant web pages. ! $config['html_title'] = "phpCVSView Source Code Library"; ! $config['html_header'] = "phpCVSView Source Code Library"; ! ! // Setup whether to use GeSHi project code for syntax highlighting or not. ! $config['GeSHi']['Enable'] = true; ! $config['GeSHi']['Path'] = "geshi"; ! $config['GeSHi']['HighlightersPath'] = "geshi/geshi"; ! ! ?> ! |