CVS Commit Problem

2001-06-28 Thread Todd Rosner - Syoni Communications Inc.
To whom it may concern, I seem to be having troubles committing files to the repository, whenever I commit a file, cvs complains that it cannot be done under the user root when infact I am logged an as a different user. I am using Tortoise CVS Client for Windows and a RedHat Linux 7.1 pserver.

exporting without deleting, I need help !!!

2001-06-28 Thread William Boileau
I know I already posted a message about this tpoic, but I had no answer... If it can't be done, just tell me !! I really need an answer... The original message follows... William Boileau Is there any way to do a cvs export without deleting the previous versions in the directories ? Or is

RE: cvsweb

2001-06-28 Thread Furmaniuk, Michael
If you put the scripts in the proper directory and changed the conf file to meet your settings then it should be working, took me a few minutes to get the configuration correct after putting in the necessary RCS utilities. I'm not sure, but this sounds more like a usability question, rather

answer to query regarding problems using commit as root

2001-06-28 Thread pavan kumar korlepara
its there that cvs doesnot allow you to commit files as root. but if u still want to do ur development work as root, whatever may be the reasons, i dont see any problems, if its ok with the user. linux users are free to do whatever they want and however they like. thatz the beauty of it. so if u

Re: Does cvs update return anything?

2001-06-28 Thread Matthew Riechers
Dorthe Luebbert wrote: Hi, I wrote a script in Perl to update a directory tree with several installations of the same cvs module. The script traverses the directory tree, whenever it reaches the searched directory it updates with cvs update. The problem is that the script works fast and

Re: cvs update: cvs server: ignoring . (CVS/Repository missing)

2001-06-28 Thread Heiko Rupp
Hi, to followup on myself: Heiko Rupp wrote: on client and server. Both talk over ssh. Platform is RH7.0 with the rpm from cvshome This seems to be a RedHat 7.0 problem. A cvs binary built from source shows the same behaviour. Also the sanity.sh shows errors. The same source compiled under

Re: exporting without deleting, I need help !!!

2001-06-28 Thread Daniel Beckham
You may not have gotten an answer because your questions aren't very clear. What do you mean, without deleting previous version in the directories? What directory do you mean? Have you exported a module to a certain directory in the past and are trying to export a newer copy of the module on top

Re: answer to query regarding problems using commit as root

2001-06-28 Thread Daniel Beckham
Of course, you can do what you wish.. simply modify the source code of cvs. The GNU license specifically allows that. As a matter of fact, I believe there is a answer in a FAQ or in some document in the distribution that explains exactly how to turn on behavior that allows root to commit files.

Re: Does cvs update return anything?

2001-06-28 Thread Daniel Beckham
Actually.. you should be using the system() call to get the error code returned. See the perlfunc manpage for details. 'perldoc -f system'. e.g. chdir(/my/cvs/directory/); if (system('/usr/local/bin/cvs', 'update') == 0) { print it worked!\n; } Daniel - Original Message - From:

Re: Exporting without deleting

2001-06-28 Thread Larry Jones
William Boileau writes: Is there any way to do a cvs export without deleting the previous versions in the directories ? No. Or is there a way to take send revised files in a place where older revisions exists (in non-cvs places, I mean) ? You might be able to use checkout or update

Re: exporting without deleting, I need help !!!

2001-06-28 Thread Harald Kucharek
Well, I guess he has the problem that he wants from time to time to make an export always to the same directory, what cvs doesn't allows. I also hit this once and then used the method to export and copy the content overwriting files into the target directory, deleting the directory I exported to

Re: Does cvs update return anything?

2001-06-28 Thread Larry Jones
Dorthe Luebbert writes: The script traverses the directory tree, whenever it reaches the searched directory it updates with cvs update. The problem is that the script works fast and the cvs server cannot stand the amount of requests (hypothesis). I assume you're using pserver. If so,

Re: CVS Commit Problem

2001-06-28 Thread Larry Jones
Todd Rosner - Syoni Communications Inc. writes: I seem to be having troubles committing files to the repository, whenever I commit a file, cvs complains that it cannot be done under the user root when infact I am logged an as a different user. I am using Tortoise CVS Client for Windows and

Re: CVS Commit Problem

2001-06-28 Thread Steven Rosenstein
Todd, I had the same problem. What I discovered was a bogus entry in my /home/srosenst/.cvspass file (I use pserver mode) that contained the info for a root login to my CVS server : Was: :pserver:root@mercury-nfs:/cvsroot/REPOSITORY/gplus Should be:

Re: exporting without deleting, I need help !!!

2001-06-28 Thread Daniel Beckham
- Original Message - From: Harald Kucharek [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, June 28, 2001 9:46 AM Subject: Re: exporting without deleting, I need help !!! PS: A few remarks:-) 1) English is not only spoken in the US. 2) In the US, not only english is

Re: cvsweb

2001-06-28 Thread Daniel Beckham
- Original Message - From: Schwenk, Jeanie [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Thursday, June 28, 2001 11:03 AM Subject: Re: cvsweb If I had more than a one day of experience with web servers or cgi scripts I might have a clue. The sysadmin doesn't

rcs graphical gui?

2001-06-28 Thread Ian Gilmour
Anyone know of a Unix-based graphical front-end to RCS. We've got some users here that seem to prefer a graphical GUI to a command line driven one. Can't understand it myself! Something like TKCVS but for RCS. cheers, Ian ___ Info-cvs mailing

Re: cvs status not showing unknown files ?

2001-06-28 Thread Olivier Fambon
Olivier Fambon [28 Jun 2001 18:03:45 +0200] wrote: ... I tried it with several cvs versions [1.9, 1.5, 1.10], and with a fresh cvs init'ed repository, but gave the same result. ... And I'm not using pserver, only the local filesystem... ___

Re: cvsweb

2001-06-28 Thread John Minnihan
Hi Jeanie, The first time I set up cvsweb (about 4 or 5 years ago), I had problems too. The key definitely is the configuration of the web server- don't give up. Of more import is the issue with the two engineers. Are you using Clearcase now? If so, abandon cvs and cvsweb and learn CC in

Re: cvsweb

2001-06-28 Thread David Luchin
Using the browser I can get to the top of that file system ... It says HP Apache-based Web Server at the top of the page. To start the script, in the location bar of the browser I typed every permutation I could think of from http://pilot/cvsweb.cgi to the absolute complete path with port

RE: cvsweb

2001-06-28 Thread Furmaniuk, Michael
Some relevant settings to make sure you have: From my Apache httpd.conf: Script Alias needs to be turned on - uncommented. ScriptAlias /cgi-bin/ /usr/local/apache/htdocs/ And your Options for the directory mentioned in ScriptAlias needs to include ExecCGI. Directory

Re: cvsweb

2001-06-28 Thread Maarten de Boer
Using the browser I can get to the top of that file system ... It says HP Apache-based Web Server at the top of the page. To start the script, in the location bar of the browser I typed every permutation I could think of from http://pilot/cvsweb.cgi to the absolute complete path with port

Re: cvs status not showing unknown files ?

2001-06-28 Thread Larry Jones
Olivier Fambon writes: If I have a directory under CVS, and a file _not_ under CVS in it, say bz.txt, cvs status does not report the usual: ? bz.txt Yep, that's the way status works. -Larry Jones Something COULD happen today. And if anything DOES, by golly, I'm going to be ready for

CVS and PR-Tracker

2001-06-28 Thread Alex Flores
Hi, Does anybody know if CVS can be integrated with the bug defect tracking tool, PR-Traker. Thanks, Alex

Re: answer to query regarding problems using commit as root

2001-06-28 Thread Greg A. Woods
[ On Thursday, June 28, 2001 at 04:57:33 (-0700), pavan kumar korlepara wrote: ] Subject: answer to query regarding problems using commit as root its there that cvs doesnot allow you to commit files as root. but if u still want to do ur development work as root, whatever may be the reasons,

Strange dir behavior and Emptydir

2001-06-28 Thread Pyatt, Scott
When doing a checkout from the trunk, CVS creates directories in the workspace even if they are empty. You can prevent empty directories from being created by using -P to prune empty directories or if -r or -D are specified. Therefore, if you are checking out a branch using -r branch, empty

Module aliases Entries file

2001-06-28 Thread Mike lemoine
Not sure if this belongs on here or on bugs, but I figured I'd bug people here first. background: both client and server are using 1.10.8 doing CVS over ssh server is sol8-sparc, clients vary (sol[2.6,7,8]-[sparc,i86]) symptoms: Checking out a the module results in the top level CVS/Entries

doc on establishing pserver ...

2001-06-28 Thread Matthew Von-Maszewski
Ok, I stupid. Would someone be so kind as to tell me where the information exists for establishing cvs as a daemon, not inetd? If it is in the html manual, I apologies for being blind (and stupid). Thanks, Matthew == Matthew Von-Maszewski [EMAIL PROTECTED] 508-870-0118

Re: doc on establishing pserver ...

2001-06-28 Thread Daniel Beckham
It doesn't work as a daemon. You either have to use it as a pserver with inetd (or whatever flavor of inetd) or you have to use rsh/ssh/etc to connect and execute the cvs command remotely. I think it's quite odd that it works like this, but I think the reasons are that cvs was never meant to

Re: Strange dir behavior and Emptydir

2001-06-28 Thread Larry Jones
Pyatt, Scott writes: I tried the following: cd parentDir mkdir theDir cvs add theDir For this example assume parentDir is /dirA/dirB/dirC. The command produced the following output. Directory /cvsroot/CVSROOT/Emptydir/theDir added to the repository You're running

Re: doc on establishing pserver ...

2001-06-28 Thread Larry Jones
Matthew Von-Maszewski writes: Ok, I stupid. Would someone be so kind as to tell me where the information exists for establishing cvs as a daemon, not inetd? If it is in the html manual, I apologies for being blind (and stupid). CVS doesn't run as a daemon -- it requires an external agent

RE: Strange dir behavior and Emptydir

2001-06-28 Thread Chris Cameron
Emptydir is a placeholder used in CVS for when directories which may not exist in the repository are created as part of the checkout process (if you follow what I mean), such as a -d in the modules file or -d on the command line. CVS needs a Repository file and places Emptydir in there. You are

change date of a commit

2001-06-28 Thread Matthew Herrmann
Hi people, this one's a particularly straightforward one (except it might be impossible). basically, we are using a network file-based system (as opposed to client/server, with win2k clients, linux server). Anyway, one of the computers had the date wrong by 2 months when something was committed

Re: cvsweb

2001-06-28 Thread Daniel Beckham
- Original Message - From: Schwenk, Jeanie [EMAIL PROTECTED] To: 'John Minnihan' [EMAIL PROTECTED]; 'Daniel Beckham' [EMAIL PROTECTED]; [EMAIL PROTECTED]; 'David Luchin' [EMAIL PROTECTED]; 'Furmaniuk, Michael' [EMAIL PROTECTED]; 'Maarten de Boer' [EMAIL PROTECTED] Sent: Thursday, June 28,

Client for BBedit remote access?

2001-06-28 Thread Burk Braun
Hi, cvs- I am investigating the use of CVS for my organization, and have to say that we are addicted to BBedit to work on all the code for a set of UNIX-hosted web sites, using its own on-board FTP functions. After reading several web sites on CVS installation, I can not quite figure out

Re: doc on establishing pserver ...

2001-06-28 Thread Jonathan M. Gilligan
cvs is designed to leak memory like a sieve and to exit from the middle of deeply nested function calls. To make it a persistent process would require a rewrite from the ground up. Tony Hoyle established a better cvs project on SourceForge (http://sourceforge.net/projects/bcvs/) to attempt to

RE: Strange dir behavior and Emptydir - root cause

2001-06-28 Thread Pyatt, Scott
Larry, If I understand correctly, CVS version 1.11.1p1 solves the problem of inadvertently creating directories in $CVSROOT/Emptydir, but what about the root cause of this problem which is CVS losing track of which repository directory is mapped to the workspace directory when -d used in a

Re: change date of a commit

2001-06-28 Thread Eric Siegerman
On Fri, Jun 29, 2001 at 09:52:30AM +1000, Matthew Herrmann wrote: [...] one of the computers had the date wrong by 2 months when something was committed so there's now some entries for 26 August instead of 26 June. Since the dates are to be used for an automatic versioning system, this is

CVS Proxy

2001-06-28 Thread loony
Hi, I'm new to the list so be a little patient if I dont make too much sense... ;) Anyway, I'm admin for a group inside Verizon and we're using CVS for all our development. The biggest problem we faced with CVS was that every checkout would transfer the whole tree (around 400 MB) onto the

Re: Client for BBedit remote access?

2001-06-28 Thread Eric Siegerman
On Thu, Jun 28, 2001 at 06:38:44PM -0700, Burk Braun wrote: reading several web sites on CVS installation, I can not quite figure out whether the basic functions of CVS would be accessible by a basic FTP client like BBedit, Ummm, you don't say which platform. I'll guess Mac -- only BBedit

Re: rcs graphical gui?

2001-06-28 Thread Gerhard Sittig
On Thu, Jun 28, 2001 at 17:27 +0100, Ian Gilmour wrote: Anyone know of a Unix-based graphical front-end to RCS. We've got some users here that seem to prefer a graphical GUI to a command line driven one. Can't understand it myself! Something like TKCVS but for RCS. Emacs? SCNR. But

cvs diff problem

2001-06-28 Thread Boris
Hello info-cvs, I have a little (misunderstanding?) problem with cvs diff, I hope someone can help me -(( I just want to create a diff file from the beginning of a project until the latest version, tagged as Feature08. The start tag is start. Normally, hey just use cvs diff -r start -r

RE: Strange dir behavior and Emptydir

2001-06-28 Thread Pyatt, Scott
Larry, We are currently running over 100 clients around the world connecting to a single server. Both client and server CVS versions are 1.10. To fix this problem, would I need to upgrade the client or server or both? If the problem is in the client, can I run a 1.11.1p1 client with a 1.10

CVS and PAM

2001-06-28 Thread Konrad Rosenbaum
Hello there, I PAM'ificed CVS 1.11.1p1: the company I work for plans to unify the login structure via LDAP, but that doesn't yet work with CVS, so I just modified it a little bit to use PAM. I hope this patch is useful for some of you. For reasons of memory consumption I stripped it down to

Re: using cvs with packages

2001-06-28 Thread Matthew Riechers
Alexandre ARNAUD [EMAIL PROTECTED] wrote: I would like to get a package that someone else created. When I try to update the project on my workspace, I don't get this new package and its classes. What can I do ? Is the 'package' in a directory that already exists in your sandbox? If not, try