[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Phpgroupware-cvs] CVS: phpgroupware/doc cvs_full_checkout.php,1.7,1.8 c
From: |
Jason Wies <address@hidden> |
Subject: |
[Phpgroupware-cvs] CVS: phpgroupware/doc cvs_full_checkout.php,1.7,1.8 cvs_full_checkout.pl,1.3,1.4 |
Date: |
Sat, 12 Jan 2002 21:34:11 -0500 |
Update of /cvsroot/phpgroupware/phpgroupware/doc
In directory subversions:/tmp/cvs-serv9501
Modified Files:
cvs_full_checkout.php cvs_full_checkout.pl
Log Message:
Fixes for developer checkout (no port and no password)
Index: cvs_full_checkout.php
===================================================================
RCS file: /cvsroot/phpgroupware/phpgroupware/doc/cvs_full_checkout.php,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -r1.7 -r1.8
*** cvs_full_checkout.php 9 Jan 2002 09:08:34 -0000 1.7
--- cvs_full_checkout.php 13 Jan 2002 02:34:08 -0000 1.8
***************
*** 26,30 ****
// Only needed if you have developers cvs access
$cvs_login = '';
- $cvs_password = '';
--- 26,29 ----
***************
*** 94,98 ****
function docvscommand($command, $anonymous_login = False)
{
! global $tmp_dir, $cvs_password, $cvs_anonymous;
$fp = fopen($tmp_dir . '/createrelease.exp','w');
--- 93,97 ----
function docvscommand($command, $anonymous_login = False)
{
! global $tmp_dir, $cvs_anonymous;
$fp = fopen($tmp_dir . '/createrelease.exp','w');
***************
*** 111,120 ****
$contents .= "match_max 100000\n";
! if (! $cvs_anonymous)
! {
! $contents .= "expect \":\"\n";
! $contents .= "send -- \"" . $cvs_password . "\\r\"\n";
! }
! else if ($cvs_anonymous && $anonymous_login)
{
$contents .= "expect \"CVS password:\"\n";
--- 110,114 ----
$contents .= "match_max 100000\n";
! if ($cvs_anonymous && $anonymous_login)
{
$contents .= "expect \"CVS password:\"\n";
***************
*** 137,141 ****
else
{
! docvscommand('cvs -d' . $cvs_login .
'@subversions.gnu.org:443/cvsroot/phpgroupware co phpgroupware');
}
--- 131,135 ----
else
{
! docvscommand('cvs -d' . $cvs_login .
'@subversions.gnu.org:/cvsroot/phpgroupware co phpgroupware');
}
***************
*** 148,152 ****
else
{
! docvscommand('cvs -d' . $cvs_login .
'@subversions.gnu.org:443/cvsroot/phpgroupware co ' . implode(' ',$co_modules));
}
--- 142,146 ----
else
{
! docvscommand('cvs -d' . $cvs_login .
'@subversions.gnu.org:/cvsroot/phpgroupware co ' . implode(' ',$co_modules));
}
Index: cvs_full_checkout.pl
===================================================================
RCS file: /cvsroot/phpgroupware/phpgroupware/doc/cvs_full_checkout.pl,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** cvs_full_checkout.pl 9 Jan 2002 09:08:34 -0000 1.3
--- cvs_full_checkout.pl 13 Jan 2002 02:34:08 -0000 1.4
***************
*** 24,28 ****
# Only needed if you have developers cvs access
$cvs_login = '';
- $cvs_password = '';
# Modules you want to checkout, do NOT add the phpgroupware module
--- 24,27 ----
***************
*** 111,120 ****
$contents .= "match_max 100000\n";
! if (!$cvs_anonymous)
! {
! $contents .= "expect \":\"\n";
! $contents .= "send -- \"" . $cvs_password . "\\r\"\n";
! }
! elsif ($cvs_anonymous and $anonymous_login)
{
$contents .= "expect \"CVS password:\"\n";
--- 110,114 ----
$contents .= "match_max 100000\n";
! if ($cvs_anonymous and $anonymous_login)
{
$contents .= "expect \"CVS password:\"\n";
***************
*** 137,141 ****
else
{
! &docvscommand('cvs -d' . $cvs_login .
'@subversions.gnu.org:443/cvsroot/phpgroupware co phpgroupware');
}
--- 131,135 ----
else
{
! &docvscommand('cvs -d' . $cvs_login .
'@subversions.gnu.org:/cvsroot/phpgroupware co phpgroupware');
}
***************
*** 148,152 ****
else
{
! &docvscommand('cvs -d' . $cvs_login .
'@subversions.gnu.org:443/cvsroot/phpgroupware co ' . join(' ',@co_modules));
}
--- 142,146 ----
else
{
! &docvscommand('cvs -d' . $cvs_login .
'@subversions.gnu.org:/cvsroot/phpgroupware co ' . join(' ',@co_modules));
}
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Phpgroupware-cvs] CVS: phpgroupware/doc cvs_full_checkout.php,1.7,1.8 cvs_full_checkout.pl,1.3,1.4,
Jason Wies <address@hidden> <=