Does anyone know how to set proxy in WinCVS 1.3?

2005-03-08 Thread Brian Lu
Hi,All,
I have downloaded WinCVS 1.3 but I found that proxy settings panel is 
removed from Admin--Perferences window. Does anyone know how to set 
proxy in 1.3, which I can do it in 1.2. Thanks

Boying
___
Info-cvs mailing list
Info-cvs@gnu.org
http://lists.gnu.org/mailman/listinfo/info-cvs


cvsweb or viewcvs

2005-03-08 Thread Gleidson Sá Barreto
What is better cvsweb or viewcvs?





___ 
Yahoo! Acesso Grátis - Instale o discador do Yahoo! agora. 
http://br.acesso.yahoo.com/ - Internet rápida e grátis


___
Info-cvs mailing list
Info-cvs@gnu.org
http://lists.gnu.org/mailman/listinfo/info-cvs


Re: recursive add

2005-03-08 Thread Spiro Trikaliotis
Hello,

an answer to an older post:

* On Tue, Mar 01, 2005 at 10:59:32AM -0800 Wei Shi wrote:
 
 Maybe this question has been brought up before.  Is
 there a recursive add command in CVS?

I'm not sure what you mean with recursive add. Possibly, the following
commands might accomplish what you want to do:

$ cvs add `find . -type d`
$ cvs add `find . -type f`

(I expect you are running on a Unix box, or with Cygwin on Windows)

If there are too much files/directories, you might encounter problems
with the maximum line length of the shell interpreter. In this case,
replacing the second command with

$ find . -type f -exec cvs add \{\} \;

is a good replacement, neglecting the fact this this command will be
much slower for a remote repository.

HTH,
   Spiro.

-- 
Spiro R. Trikaliotis  http://cbm4win.sf.net/
http://www.trikaliotis.net/ http://www.viceteam.org/


___
Info-cvs mailing list
Info-cvs@gnu.org
http://lists.gnu.org/mailman/listinfo/info-cvs


RE: cvsweb or viewcvs

2005-03-08 Thread Dey Arindam, Milton Keynes
Title: RE: cvsweb or viewcvs





We have been using Viewcvs since the inception of the current project we are working on.It seems to be quite good as it caters to BROWSE ONLY criteria allowing user to browse through the contents of the repository. Option to download files is also available.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Gleidson Sá Barreto

Sent: 08 March 2005 11:48
To: info-cvs@gnu.org
Subject: cvsweb or viewcvs


What is better cvsweb or viewcvs?



 
 
  
___ 
Yahoo! Acesso Grátis - Instale o discador do Yahoo! agora. http://br.acesso.yahoo.com/ - Internet rápida e grátis



___
Info-cvs mailing list
Info-cvs@gnu.org
http://lists.gnu.org/mailman/listinfo/info-cvs


Scanned for viruses by MessageLabs




Scanned for viruses by MessageLabs. The integrity and security of this message cannot be guaranteed. This email is intended for the named recipient only, and may contain confidential information and proprietary material. Any unauthorised use or disclosure is prohibited.

___
Info-cvs mailing list
Info-cvs@gnu.org
http://lists.gnu.org/mailman/listinfo/info-cvs


RE: Checkout after a change

2005-03-08 Thread Jim.Hyslop
[EMAIL PROTECTED] wrote:
 I'm starting on a new project, and I only have one file in the
 repository now, but I've noticed that CVS does not keep the 
 actual file
 on hand, but another type of file that keeps track of edits and
 revisions. But I want to be able to use the actual file, so is it
 possible for me to have a script enter a certain directory 
 and do a cvs
 checkout [to get all the actual files from that folder] so that I can
 have a copy that I can actaully test on the server?
Yes. See Keeping a checked out copy in the manual:
https://www.cvshome.org/docs/manual/cvs-1.11.19/cvs_18.html#SEC175

-- 
Jim Hyslop
Senior Software Designer
Leitch Technology International Inc. ( http://www.leitch.com )
Columnist, C/C++ Users Journal ( http://www.cuj.com/experts )


___
Info-cvs mailing list
Info-cvs@gnu.org
http://lists.gnu.org/mailman/listinfo/info-cvs


Re: CVSIGNORE file help?

2005-03-08 Thread OTESAO
Well

basically I've checkout a set of jsp and java
files from a brand a repository into an eclipse project.

Then I added some gif, html, psd, class files into the checked out
folders, but wanna ignore them when doing a commit.

any way to do a global .cvsignore rather than a .cvsignore
in each folder and subfolders?

Thanks again
Peter

On Tue, 08 Mar 2005 00:55:51 +, Pierre Asselin wrote:

 OTESAO [EMAIL PROTECTED] wrote:
 I have a whole bunch of files in my local client directory that I wanted
 to ignore whenever doing and update or commit to the server.
 [ ... ]
 
 Not sure what you want to do but:  once a file is under CVS control,
 you can't ignore it.  The .cvsignore and related options are for files
 *not* known to CVS.

___
Info-cvs mailing list
Info-cvs@gnu.org
http://lists.gnu.org/mailman/listinfo/info-cvs


Failied to access the CVS repository

2005-03-08 Thread MEI-XING ZHAO
Hi,
I am having a problem of accessing our CVS repository. Here is an 
example when I run a CVS command:

$ cvs log file1
can't create temporary directory /tmp/root/cvs-serv4896
Permission denied
$
Basicly, I am getting this error on any cvs command(cvs ci, cvs update...).
Any idea on where the problem is and how to fix it?
I vaguely remember that I was trying to checkin some code to this CVS 
repository when I had my CVSROOT set to another CVS repository. I am not 
sure if this messed up this CVS repository.

Thanks,
Mei

___
Info-cvs mailing list
Info-cvs@gnu.org
http://lists.gnu.org/mailman/listinfo/info-cvs


RE: cvsweb or viewcvs

2005-03-08 Thread Matt Doar
ViewCVS seems to be more commonly used nowadays. It was a rewrite of CVSWeb but 
has also made the effort to support Subversion recently.

It's not the only choice. FishEye has web-based view and more of your project 
in CVS.

~Matt 

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] 
 On Behalf Of Dey Arindam, Milton Keynes
 Sent: Tuesday, March 08, 2005 5:13 AM
 To: Gleidson Sá Barreto; info-cvs@gnu.org
 Subject: RE: cvsweb or viewcvs
 
 We have been using Viewcvs since the inception of the current 
 project we are working on.It seems to be quite good as it 
 caters to BROWSE ONLY criteria allowing user to browse 
 through the contents of the repository. Option to download 
 files is also available.
 
 -Original Message- 
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On 
 Behalf Of Gleidson Sá Barreto
 
 Sent: 08 March 2005 11:48 
 To: info-cvs@gnu.org 
 Subject: cvsweb or viewcvs 
 
 What is better cvsweb or viewcvs? 
 
 
 
 
 
 ___ 
 Yahoo! Acesso Grátis - Instale o discador do Yahoo! agora. 
 http://br.acesso.yahoo.com/ - Internet rápida e grátis 
 
 
 ___ 
 Info-cvs mailing list 
 Info-cvs@gnu.org 
 http://lists.gnu.org/mailman/listinfo/info-cvs 
 
 Scanned for viruses by MessageLabs 
 
 
 Scanned for viruses by MessageLabs. The integrity and 
 security of this message cannot be guaranteed. This email is 
 intended for the named recipient only, and may contain 
 confidential information and proprietary material. Any 
 unauthorised use or disclosure is prohibited.
 
 


___
Info-cvs mailing list
Info-cvs@gnu.org
http://lists.gnu.org/mailman/listinfo/info-cvs


Re: Failied to access the CVS repository

2005-03-08 Thread Larry Jones
MEI-XING ZHAO writes:
 
 $ cvs log file1
 can't create temporary directory /tmp/root/cvs-serv4896
 Permission denied

You don't have permission to create subdirectories in /tmp/root (on the
server), which is apparently where you have the server's temp directory
set to:

https://www.cvshome.org/docs/manual/cvs-1.11.19/cvs_2.html#SEC37

-Larry Jones

The surgeon general should issue a warning about playing with girls. -- Calvin


___
Info-cvs mailing list
Info-cvs@gnu.org
http://lists.gnu.org/mailman/listinfo/info-cvs


Re: Failied to access the CVS repository

2005-03-08 Thread MEI-XING ZHAO
Larry Jones wrote:
MEI-XING ZHAO writes:
$ cvs log file1
can't create temporary directory /tmp/root/cvs-serv4896
Permission denied

You don't have permission to create subdirectories in /tmp/root (on the
server), which is apparently where you have the server's temp directory
set to:
	https://www.cvshome.org/docs/manual/cvs-1.11.19/cvs_2.html#SEC37
Thanks for your reply Larry. You are correct about the problem. I found 
I can access the CVS repository locally(on the same server) OK. But run 
cvs command remotely still not working. I am not sure where the 
/tmp/root set set. It use to be just create the temp files on /tmp. From 
the link you provided, I am still not sure how to set the temp dir so 
the client cvs will use this setting. I feel somehow the system sets the 
temp dir to /tmp/root. Here is ar paragraph from the CVS manual about 
$TMPDIR:
Directory in which temporary files are located. The CVS server uses 
TMPDIR. See section Global options, for a description of how to specify 
this. Some parts of CVS will always use `/tmp' (via the tmpnam function 
provided by the system).

I tried to set TMPDIR, but it only applies to client not the server. Not 
sure where in the CVS uses '/tmp', I think maybe this is messed up to 
become '/tmp/root'. Anyidea as how to fix this problem?

Thanks,
Mei
-Larry Jones
The surgeon general should issue a warning about playing with girls. -- Calvin

--

Mei-Xing Zhao
Enterprise Messaging  Integration, CSSIT
Sun Microsystems, Inc.
(510) 936-3520
x13520 (internal)
~~
NOTICE:  This email message is for the sole use of the intended
recipient(s) and may contain confidential and privileged
information.  Any unauthorized review, use, disclosure or
distribution is prohibited.  If you are not the intended
recipient, please contact the sender by reply email and destroy
all copies of the original message.
~~

___
Info-cvs mailing list
Info-cvs@gnu.org
http://lists.gnu.org/mailman/listinfo/info-cvs


Re: Failied to access the CVS repository

2005-03-08 Thread Larry Jones
MEI-XING ZHAO writes:
 
 Thanks for your reply Larry. You are correct about the problem. I found 
 I can access the CVS repository locally(on the same server) OK. But run 
 cvs command remotely still not working. I am not sure where the 
 /tmp/root set set. It use to be just create the temp files on /tmp.

What has most likely happened is that someone has changed $TMPDIR for
root to be /tmp/root and that setting is getting inherited by everything
that root starts, including [x]inetd and then CVS.  Check your [x]inetd
config file against what's shown in the CVS manual:

https://www.cvshome.org/docs/manual/cvs-1.11.19/cvs_2.html#SEC30

If that doesn't help, add an explicit ``-T /tmp'' before ``pserver'' to
the CVS command in [x]inetd.conf.

-Larry Jones

Life's a lot more fun when you're not responsible for your actions. -- Calvin


___
Info-cvs mailing list
Info-cvs@gnu.org
http://lists.gnu.org/mailman/listinfo/info-cvs


Re: Checkout after a change

2005-03-08 Thread rublind
The example they give is with unix, how would I do it with linux
(Fedora C3, I think it is).

Thanks.

___
Info-cvs mailing list
Info-cvs@gnu.org
http://lists.gnu.org/mailman/listinfo/info-cvs


Re: Failied to access the CVS repository

2005-03-08 Thread Larry Jones
MEI-XING ZHAO writes:
 
 BTW, any way to reinitilize the changes made in inetd.conf without 
 rebooting the machine?

Probably -- ``man inetd''.

-Larry Jones

I've got more brains than I know what to do with. -- Calvin


___
Info-cvs mailing list
Info-cvs@gnu.org
http://lists.gnu.org/mailman/listinfo/info-cvs


Re: Failied to access the CVS repository

2005-03-08 Thread MEI-XING ZHAO
Thanks! I made it working by adding ``-T /tmp'' before ``pserver'' to 
the CVS command in [x]inetd.conf.

BTW, any way to reinitilize the changes made in inetd.conf without 
rebooting the machine?

Thanks,
Mei
Larry Jones wrote:
MEI-XING ZHAO writes:
Thanks for your reply Larry. You are correct about the problem. I found 
I can access the CVS repository locally(on the same server) OK. But run 
cvs command remotely still not working. I am not sure where the 
/tmp/root set set. It use to be just create the temp files on /tmp.

What has most likely happened is that someone has changed $TMPDIR for
root to be /tmp/root and that setting is getting inherited by everything
that root starts, including [x]inetd and then CVS.  Check your [x]inetd
config file against what's shown in the CVS manual:

https://www.cvshome.org/docs/manual/cvs-1.11.19/cvs_2.html#SEC30
If that doesn't help, add an explicit ``-T /tmp'' before ``pserver'' to
the CVS command in [x]inetd.conf.
-Larry Jones
Life's a lot more fun when you're not responsible for your actions. -- Calvin

--

Mei-Xing Zhao
Enterprise Messaging  Integration, CSSIT
Sun Microsystems, Inc.
(510) 936-3520
x13520 (internal)
~~
NOTICE:  This email message is for the sole use of the intended
recipient(s) and may contain confidential and privileged
information.  Any unauthorized review, use, disclosure or
distribution is prohibited.  If you are not the intended
recipient, please contact the sender by reply email and destroy
all copies of the original message.
~~

___
Info-cvs mailing list
Info-cvs@gnu.org
http://lists.gnu.org/mailman/listinfo/info-cvs


Re: Checkout after a change

2005-03-08 Thread Jim Hyslop
[EMAIL PROTECTED] wrote:
The example they give is with unix, how would I do it with linux
(Fedora C3, I think it is).
Same principle. Remember, Linus *is* a port of UNIX.
--
Jim

___
Info-cvs mailing list
Info-cvs@gnu.org
http://lists.gnu.org/mailman/listinfo/info-cvs


Re: Checkout after a change

2005-03-08 Thread Larry Jones
[EMAIL PROTECTED] writes:
 
 The example they give is with unix, how would I do it with linux

That's like asking how to drive a Toyota Corolla given that you only
know how to drive a Honda Civic.

-Larry Jones

Yep, we'd probably be dead by now if it wasn't for Twinkies. -- Calvin


___
Info-cvs mailing list
Info-cvs@gnu.org
http://lists.gnu.org/mailman/listinfo/info-cvs


RE: Failied to access the CVS repository

2005-03-08 Thread Matt Doar
Find the pid with 

ps auxww | grep inetd 

Then as root

kill -HUP pid

~Matt

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] 
 On Behalf Of MEI-XING ZHAO
 Sent: Tuesday, March 08, 2005 2:47 PM
 To: Larry Jones
 Cc: info-cvs@gnu.org
 Subject: Re: Failied to access the CVS repository
 
 Thanks! I made it working by adding ``-T /tmp'' before ``pserver'' to 
 the CVS command in [x]inetd.conf.
 
 BTW, any way to reinitilize the changes made in inetd.conf without 
 rebooting the machine?
 
 Thanks,
 Mei
 
 
 Larry Jones wrote:
  MEI-XING ZHAO writes:
  
 Thanks for your reply Larry. You are correct about the 
 problem. I found 
 I can access the CVS repository locally(on the same server) 
 OK. But run 
 cvs command remotely still not working. I am not sure where the 
 /tmp/root set set. It use to be just create the temp files on /tmp.
  
  
  What has most likely happened is that someone has changed 
 $TMPDIR for
  root to be /tmp/root and that setting is getting inherited 
 by everything
  that root starts, including [x]inetd and then CVS.  Check 
 your [x]inetd
  config file against what's shown in the CVS manual:
  
  
 https://www.cvshome.org/docs/manual/cvs-1.11.19/cvs_2.html#SEC30
  
  If that doesn't help, add an explicit ``-T /tmp'' before 
 ``pserver'' to
  the CVS command in [x]inetd.conf.
  
  -Larry Jones
  
  Life's a lot more fun when you're not responsible for your 
 actions. -- Calvin
 
 
 -- 
 
 Mei-Xing Zhao
 Enterprise Messaging  Integration, CSSIT
 Sun Microsystems, Inc.
 (510) 936-3520
 x13520 (internal)
 
 
 ~~
 NOTICE:  This email message is for the sole use of the intended
 recipient(s) and may contain confidential and privileged
 information.  Any unauthorized review, use, disclosure or
 distribution is prohibited.  If you are not the intended
 recipient, please contact the sender by reply email and destroy
 all copies of the original message.
 ~~
 
 
 
 
 ___
 Info-cvs mailing list
 Info-cvs@gnu.org
 http://lists.gnu.org/mailman/listinfo/info-cvs
 


___
Info-cvs mailing list
Info-cvs@gnu.org
http://lists.gnu.org/mailman/listinfo/info-cvs


Re: Checkout after a change

2005-03-08 Thread rublind
[EMAIL PROTECTED] [/home/rublind/public_html]# ^blindmonkey  (date; cat;
(sleep 2; cd /home/rublind/public_html/blindmonkey; cvs -q update -d)
)  /var/chroot/cvs/cvs/CVSROOT/updatelog 21
bash: :s^blindmonkey  (date; cat; (sleep 2; cd
/home/rublind/public_html/blindmonkey; cvs -q update -d) ) 
/var/chroot/cvs/cvs/CVSROOT/updatelog 21: substitution failed

I got an error. Did I do something?

___
Info-cvs mailing list
Info-cvs@gnu.org
http://lists.gnu.org/mailman/listinfo/info-cvs