RE: PowerBuild 7 and 8 with CVS.

2003-02-18 Thread Ruprecht Helms
Hi Nitin Dube, Hi, I am doing development using PowerBuilder 7 and CVS is being used for versioning. Is there any tools for integrating PowerBuilder and CVS? Possible StarTeam. Regards, Ruprecht -- Ruprecht Helms IT-Service und Softwareentwicklung

Commit inconsistency: Up-to-date check did not fail though it should have !

2003-02-18 Thread Reinstein, Shlomo
Hi, I've always trusted CVS to do its work well, but today for the first time I found out that it doesn't. The problem might not be in CVS itself, but it's a very basic thing in CVS that does not work. The scenario is as follows: - User A checks-out the latest version of project p. - User B

Re: NEWBIE: Using CVS to track SQL database structures?

2003-02-18 Thread Kenneth Porter
--On Wednesday, February 05, 2003 4:19 PM -0500 KEVIN ZEMBOWER [EMAIL PROTECTED] wrote: Is there a way to include MySQL structures and data, either together or separately, in a CVS project? CVS is best when used with text. So convert the DB to SQL source with something like mysqldump and

Re: Commit inconsistency: Up-to-date check did not fail though itsho uld have !

2003-02-18 Thread Brandon Craig Rhodes
Reinstein, Shlomo [EMAIL PROTECTED] writes: - User A checks-out the latest version of project p. - User B checks-out the latest version of project p. - User A changes one of the files in p, and commits his changes to the repository. - User B changes one of the files in p (not the same file

Re: Module defination

2003-02-18 Thread Larry Jones
Amit Sharma writes: I can't rename the directories and can't tell admin to do this as it will affect lot of project settings, Does it mean Module defination can't take spaces. Exactly. Nor can most of the other administrative files. -Larry Jones Don't you hate it when your boogers freeze?

Re: Commit inconsistency: Up-to-date check did not fail though it sho

2003-02-18 Thread Larry Jones
Reinstein, Shlomo writes: - User A checks-out the latest version of project p. - User B checks-out the latest version of project p. - User A changes one of the files in p, and commits his changes to the repository. - User B changes one of the files in p (not the same file that user A

RE: Commit inconsistency: Up-to-date check did not fail though it sho

2003-02-18 Thread Reinstein, Shlomo
No, B had done a cvs commit without specifying the files to commit on the command-line. This is why it is so suprising for me. CVS with a local repository does not let such commits take place, but the client/server does. Shlomo -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

RE: Commit inconsistency: Up-to-date check did not fail though itsho uld have !

2003-02-18 Thread Reinstein, Shlomo
This would be fine if CVS had consistent behavior when using a local repository and when using client/server. Until a short time ago, we used to work with a local repository (on a network drive), and we got used to that behavior. Our set of scripts around CVS rely on this behavior. Shlomo

cvs via http

2003-02-18 Thread Christopher Mihaly
Is there a way to access a remote cvs repository via http? I've looked on-line and found some web browsers, but not any tools that allow you to access your CVS repository using the http protocol. I saw one reference about a patch that might be applied but no responses to it. Anyway, if

Re: cvs via http

2003-02-18 Thread gabriel rosenkoetter
On Tue, Feb 18, 2003 at 04:44:06PM +, Christopher Mihaly wrote: Is there a way to access a remote cvs repository via http? Depends on how much access you want, but cvsweb may be enough: http://www.freebsd.org/projects/cvsweb.html -- gabriel rosenkoetter [EMAIL PROTECTED]

Re: cvs via http

2003-02-18 Thread Gianni Mariani
Christopher Mihaly wrote: Is there a way to access a remote cvs repository via http? I've looked on-line and found some web browsers, but not any tools that allow you to access your CVS repository using the http protocol. I saw one reference about a patch that might be applied but no

Re: cvs via http

2003-02-18 Thread Eric Siegerman
On Tue, Feb 18, 2003 at 04:44:06PM +, Christopher Mihaly wrote: Is there a way to access a remote cvs repository via http? httptunnel (http://www.nocrew.org/software/httptunnel.html) might be what you're looking for. (I've never used it, so can't offer any more than the URL.) -- | | /\

Re: Commit inconsistency: Up-to-date check did not fail though itsho uld have !

2003-02-18 Thread Eric Siegerman
On Tue, Feb 18, 2003 at 06:35:35PM +0200, Reinstein, Shlomo wrote: This would be fine if CVS had consistent behavior when using a local repository and when using client/server. Until a short time ago, we used to work with a local repository (on a network drive), and we got used to that

cvs history for checkout.

2003-02-18 Thread DAS, AJAY (SBCSI)
Hi, When I execute a cvs history command for checked out files, it only displays the modules and not the files. Say I have a module named 'test' and it has got 2 sub directories 'src' and 'include' . The directory structure and the files in them will look like : test/src/test1.c

RE: Commit inconsistency: Up-to-date check did not fail though itsho uld have !

2003-02-18 Thread Reinstein, Shlomo
I've also been very surprised by this behavior, having used CVS for a couple of years now, as an admin of our CVS repository. I was able to generate a tiny example that demonstrates this behavior, even for a single user working on the same project, in two different working directories (and using

Re: Commit inconsistency: Up-to-date check did not fail though it

2003-02-18 Thread Larry Jones
Reinstein, Shlomo writes: What's wrong with the repository being on NFS? Isn't that the case with most CVS repositories? I didn't know there can be problems between an NFS client and server being on different platforms, but I bet that the machine on which the repository is located is also a

Re: Commit inconsistency: Up-to-date check did not fail though itsho uld have !

2003-02-18 Thread Eric Siegerman
On Tue, Feb 18, 2003 at 08:37:12PM +0200, Reinstein, Shlomo wrote: I also checked that this strange behavior was not fixed in CVS 1.11.1p1. I don't know about the newer versions (e.g., 1.15.1), I will check this as well. Darn! I was really hoping that was it. Well, maybe it's fixed in

Re: Commit inconsistency: Up-to-date check did not fail though itsho uld have !

2003-02-18 Thread Kaz Kylheku
Reinstein, Shlomo [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED]... - User B commits his changes to p, without first updating his working copy. Against all expectations, user B succeeds to commit even though his working copy is not up to date, leading to an unstable latest version

RE: Commit inconsistency: Up-to-date check did not fail though itsho uld have !

2003-02-18 Thread Reinstein, Shlomo
Reinstein, Shlomo [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED]... - User B commits his changes to p, without first updating his working copy. Against all expectations, user B succeeds to commit even though his working copy is not up to date, leading to an unstable latest

RE: cvs via http

2003-02-18 Thread Shishir Singhai
You can serch for VIEWCVS on google or www.sourceforge.net to get the tool. regds Shishir -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Gianni Mariani Sent: Tuesday, February 18, 2003 10:26 PM To: Christopher Mihaly Cc: [EMAIL PROTECTED] Subject: Re:

Watch problem

2003-02-18 Thread Murali Potla
Hello there, I have configured a cvs repository(Pserver method) . When I am trying to add a watch its saying cvs [server aborted]: unknown command: watch_on Here is the procedure i have followed to create a repository As root: useradd cvs export CVSROOT=/home/cvsroot cvs init As murali (i