[phpcvsview-cvs-updates] phpcvsview func_DiffFile.php,1.2,1.3 func_DirListing.php,1.9,1.10 func_File
Status: Pre-Alpha
Brought to you by:
bcheesem
Update of /cvsroot/phpcvsview/phpcvsview In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1606 Modified Files: func_DiffFile.php func_DirListing.php func_FileAnnotation.php func_FileDownload.php func_FileHistory.php func_FileView.php Log Message: Changed access to CVS details to support multiple CVS repositories. Index: func_FileDownload.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/func_FileDownload.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** func_FileDownload.php 1 Feb 2005 15:11:01 -0000 1.2 --- func_FileDownload.php 3 Feb 2005 23:50:36 -0000 1.3 *************** *** 21,25 **** // Create our CVS connection object and set the required properties. ! $CVSServer = new CVS_PServer($config['cvsroot'], $config['pserver'], $config['username'], $config['password']); // Connect to the CVS server. --- 21,25 ---- // Create our CVS connection object and set the required properties. ! $CVSServer = new CVS_PServer($env['CVSSettings']['cvsroot'], $env['CVSSettings']['server'], $env['CVSSettings']['username'], $env['CVSSettings']['password']); // Connect to the CVS server. Index: func_FileHistory.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/func_FileHistory.php,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** func_FileHistory.php 2 Feb 2005 11:56:18 -0000 1.10 --- func_FileHistory.php 3 Feb 2005 23:50:36 -0000 1.11 *************** *** 21,28 **** // Create our CVS connection object and set the required properties. ! $CVSServer = new CVS_PServer($config['cvsroot'], $config['pserver'], $config['username'], $config['password']); // Start the output process. ! echo GetPageHeader($config['html_title'], $config['html_header']); // Connect to the CVS server. --- 21,28 ---- // Create our CVS connection object and set the required properties. ! $CVSServer = new CVS_PServer($env['CVSSettings']['cvsroot'], $env['CVSSettings']['server'], $env['CVSSettings']['username'], $env['CVSSettings']['password']); // Start the output process. ! echo GetPageHeader($env['CVSSettings']['html_title'], $env['CVSSettings']['html_header']); // Connect to the CVS server. Index: func_DirListing.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/func_DirListing.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** func_DirListing.php 1 Feb 2005 15:11:01 -0000 1.9 --- func_DirListing.php 3 Feb 2005 23:50:36 -0000 1.10 *************** *** 17,24 **** // Create our CVS connection object and set the required properties. ! $CVSServer = new CVS_PServer($config['cvsroot'], $config['pserver'], $config['username'], $config['password']); // Start the output process. ! echo GetPageHeader($config['html_title'], $config['html_header']); // Connect to the CVS server. --- 17,24 ---- // Create our CVS connection object and set the required properties. ! $CVSServer = new CVS_PServer($env['CVSSettings']['cvsroot'], $env['CVSSettings']['server'], $env['CVSSettings']['username'], $env['CVSSettings']['password']); // Start the output process. ! echo GetPageHeader($env['CVSSettings']['html_title'], $env['CVSSettings']['html_header']); // Connect to the CVS server. Index: func_DiffFile.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/func_DiffFile.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** func_DiffFile.php 3 Feb 2005 07:29:50 -0000 1.2 --- func_DiffFile.php 3 Feb 2005 23:50:36 -0000 1.3 *************** *** 23,30 **** // Create our CVS connection object and set the required properties. ! $CVSServer = new CVS_PServer($config['cvsroot'], $config['pserver'], $config['username'], $config['password']); // Start the output process. ! echo GetPageHeader($config['html_title'], $config['html_header']); // Connect to the CVS server. --- 23,30 ---- // Create our CVS connection object and set the required properties. ! $CVSServer = new CVS_PServer($env['CVSSettings']['cvsroot'], $env['CVSSettings']['server'], $env['CVSSettings']['username'], $env['CVSSettings']['password']); // Start the output process. ! echo GetPageHeader($env['CVSSettings']['html_title'], $env['CVSSettings']['html_header']); // Connect to the CVS server. Index: func_FileView.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/func_FileView.php,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** func_FileView.php 1 Feb 2005 15:11:01 -0000 1.13 --- func_FileView.php 3 Feb 2005 23:50:36 -0000 1.14 *************** *** 25,32 **** // Create our CVS connection object and set the required properties. ! $CVSServer = new CVS_PServer($config['cvsroot'], $config['pserver'], $config['username'], $config['password']); // Start the output process. ! echo GetPageHeader($config['html_title'], $config['html_header']); // Connect to the CVS server. --- 25,32 ---- // Create our CVS connection object and set the required properties. ! $CVSServer = new CVS_PServer($env['CVSSettings']['cvsroot'], $env['CVSSettings']['server'], $env['CVSSettings']['username'], $env['CVSSettings']['password']); // Start the output process. ! echo GetPageHeader($env['CVSSettings']['html_title'], $env['CVSSettings']['html_header']); // Connect to the CVS server. Index: func_FileAnnotation.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/func_FileAnnotation.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** func_FileAnnotation.php 1 Feb 2005 15:11:01 -0000 1.8 --- func_FileAnnotation.php 3 Feb 2005 23:50:36 -0000 1.9 *************** *** 21,28 **** // Create our CVS connection object and set the required properties. ! $CVSServer = new CVS_PServer($config['cvsroot'], $config['pserver'], $config['username'], $config['password']); // Start the output process. ! echo GetPageHeader($config['html_title'], $config['html_header']); // Connect to the CVS server. --- 21,28 ---- // Create our CVS connection object and set the required properties. ! $CVSServer = new CVS_PServer($env['CVSSettings']['cvsroot'], $env['CVSSettings']['server'], $env['CVSSettings']['username'], $env['CVSSettings']['password']); // Start the output process. ! echo GetPageHeader($env['CVSSettings']['html_title'], $env['CVSSettings']['html_header']); // Connect to the CVS server. |