Update of /cvsroot/phpcvsview/phpcvsview
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27470
Modified Files:
config.php
Log Message:
- changed configuration data from strings to arrays
Index: config.php
===================================================================
RCS file: /cvsroot/phpcvsview/phpcvsview/config.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** config.php 2 Oct 2004 01:47:17 -0000 1.4
--- config.php 5 Oct 2004 17:41:47 -0000 1.5
***************
*** 12,36 ****
**/
! // The CVSROOT path to access. For sourceforge you need the usual expansion
// of the path based on the project name.
! $CVSROOT = "/cvsroot/phpcvsview";
// The hostname (or IP Address) of the server providing the PServer services.
! $PServer = "cvs.sourceforge.net";
// The username to pass to the PServer for authentication purposes.
! $UserName = "anonymous";
// The password associated with the username above for authentication process.
! $Password = "";
! // The HTMLTitle and HTMLHeading are used purely for the generation of the
// resultant web pages.
! $HTMLTitle = "phpCVSView Source Code Library";
! $HTMLHeading = "phpCVSView Source Code Library";
! $HTMLTblHdBg = "#CCCCCC";
! $HTMLTblCell1 = "#FFFFFF";
! $HTMLTblCell2 = "#CCCCEE";
! ?>
\ No newline at end of file
--- 12,36 ----
**/
! // The CVSROOT path to access. For sourceforge you need the usual expansion
// of the path based on the project name.
! $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";
! $config['html_tbl_head_bg'] = "#CCCCCC";
! $config['html_tbl_cell_one'] = "#FFFFFF";
! $config['html_tbl_cell_two'] = "#CCCCEE";
! ?>
|