(no subject)

2003-11-26 Thread Pardeep Duggal
Hi, I want to use java api's over cvs code. want ot connect to cvs thru my java application in a windows environment. Some sample code if possible. Can somebody help me with the same ? pradeep ___ Info-cvs mailing list [EMAIL PROTECTED]

Re: Preventing users from Tagging files

2003-11-26 Thread Mike
Thanks. Everyone has been very helpful. You hit the nail on the head. Adding tags is quite safe, it is the removal of a tag that messes up our repository structure. We do back things up nightly, but its a huge waste of time recovering from the backups when a tagging mistake occurs.

RE: Loading files into CVS with a declared date

2003-11-26 Thread Schrum, Allan (Allan)
Please take a look at the sccs2rcs.csh script (You can browse to this source at http://ccvs.cvshome.org/source/browse/ccvs/contrib/sccs2rcs.in ) which converts SCCS files to RCS files. After the procedure you move the RCS files into the CVS repository directly. While your tools are not SCCS, this

Re: cvs rlog -rTAG1::TAG2 doesn't handle newly added files

2003-11-26 Thread Larry Jones
Matthew Herrmann writes: I'm having problems with cvs rlog and -rTAG1::TAG2 not outputting changes for newly created tags. Update your server to the most recent release (1.11.9). -Larry Jones Do you think God lets you plea bargain? -- Calvin ___

Please help..

2003-11-26 Thread John Wards
Hi All, I am seriously new to CVS. I have a large project that has been developed by my self for the past 18 months but is about to be taken on by a few other people so I though CVS would be a good way of working. I seem to have turned all of my original source files within the directory to

Exporting with 1 tag name

2003-11-26 Thread Andy Jones
Can anyone help me think around this one? We are finally getting around to making releases from CVS. We have a product that is split up into a number of seperate modules. Ideally we would like to be able to release the whole project, or just a module. I intend to follow the simplest solution

affect of large numbers of tags on performance

2003-11-26 Thread Dickson, Craig
Hi, We use an automated build tool that performs many builds each day. Each time there is a successful build it applies an appropriate tag to our CVS repository. This has been running for a number of months now and on many files there are well over 100 tags - for files that don't change

Re: Please help..

2003-11-26 Thread David Wood
Two things. First, did you work for 18 months on something without making backups? If you never made backups, then whether it was a mistake setting up CVS, some other kind of mistake, hardware failure, fire, or theft, you were destined to lose your work. I hope, however you resolve this

Re: Please help..

2003-11-26 Thread David Wood
You need to spend some time with the manual, and/or the various tutorials on the subject. As you are discovering, if you're not understanding the manual, forging ahead anyway may not be the best decision. A repository is a database (that holds its data in RCS files - ending in .v). You create

Re: affect of large numbers of tags on performance

2003-11-26 Thread Paul Sander
There's a small incremental cost per tag per file: Each tag is represented by a line in each RCS file. This is typically less than 100 bytes but it depends on the length of the tag and the depth of the branch to which the tag is applied. In terms of time, this amounts to probably a few

Re: Case insensitivity ad nauseum

2003-11-26 Thread Derek Robert Price
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I settled on a compromise for the nonce. I fixed the latest case insensitivity bug I knew of in 1.11.x and removed case insensitivity support from feature entirely. I've also added some tests of behavior involving heterogeneous combinations of case

Re: Please help..

2003-11-26 Thread Steve deRosier
David, Perhaps John could try this? A suggestion to untangle: 1. Create a repository properly. 2. Copy the .v.v files into the repository manually. 3. Checkout the files into a working directory. (getting a .v file) 4. Copy the .v files manually into the repository. 5. Checkout the files into a

CVS check in privileges

2003-11-26 Thread Hamid Ghassemi
Is there a way in CVS to allow check in privileges for a directory or a file in repository to a certain group of developers so that only they can make changes to files while others can work on the rest of the repository, without creating an entirely new repository? What we are trying to do is

Re: Case insensitivity ad nauseum

2003-11-26 Thread David Wood
Is the problem that you're not sure how to get the network drive into the sshd filesystem root? Or that when you try to that it fails? If it were the latter, it would be reminiscent of a similar problem I had trying to get apache to serve files from a network drive on Windows XP. We found that

RE: CVS check in privileges

2003-11-26 Thread Jim.Hyslop
Hamid Ghassemi [mailto:[EMAIL PROTECTED] wrote: What we are trying to do is limiting check in access to only few developers for some specific files or directories. http://www.cvshome.org/docs/manual/cvs-1.11.7/cvs_18.html#SEC167 -- Jim Hyslop Senior Software Designer Leitch Technology

Re: Please help..

2003-11-26 Thread David Wood
I had the same thought, Steve, and I think the same concern - given what he did, the repository _might_ have been a valid one the first time through - and it might be a valid repository of the repository now. But without knowing the nuts and bolts of the repository and import process, I can

Re: CVS check in privileges

2003-11-26 Thread JacobRhoden
On Thu, 27 Nov 2003 07:14 am, Hamid Ghassemi wrote: Is there a way in CVS to allow check in privileges for a directory or a file in repository to a certain group of developers so that only they can make changes to files while others can work on the rest of the repository, without creating an

Re: Loading files into CVS with a declared date

2003-11-26 Thread Kevin Oberman
From: [EMAIL PROTECTED] (Paul Sander) Date: Tue, 25 Nov 2003 14:34:00 -0800 CVS has no such option, but RCS does. The ci program, which creates a new revision in a ,v file, can override the system time when storing a timestamp. To use it, you must muck directly with the repsitory. ---

Re: Loading files into CVS with a declared date

2003-11-26 Thread Paul Sander
--- Forwarded mail from [EMAIL PROTECTED] From: [EMAIL PROTECTED] (Paul Sander) Date: Tue, 25 Nov 2003 14:34:00 -0800 CVS has no such option, but RCS does. The ci program, which creates a new revision in a ,v file, can override the system time when storing a timestamp. To use it, you

Re: Please help..

2003-11-26 Thread [EMAIL PROTECTED]
David, Have you tried to check out files from the repository you created? I understand there is some question as to the integrity of the repository you created, but I can think of no better way to determine if all is well than to try a checkout. The safest way to do this is the following:

Re: affect of large numbers of tags on performance

2003-11-26 Thread Paul Sander
In addition to tagging, we also built a manifest of the source files, checked it in, and applied the same tag as was applied to the rest of the build. The manifest was stored separately from the source code so that developers wouldn't muck with its tags. Our rebuild procedure used that file to

Importing into Different Repositories

2003-11-26 Thread Narendhran K
Hi All, I am having more than 2 repositaries. I am importing source files into the repositories. I want to know how to do this. Is there any option in the import command. It always goes into only one repository. Advice is highly Appreciated. Thanks in Adv Narendhran.K Do you Yahoo!? Free