RE: keeping one's personal dotfiles under CVS

2002-05-14 Thread Glew, Andy
I was wondering what strategies do CVS gurus use to manage their personal collection of dotfiles. We all a favorite .vimrc, .exrc, .muttrc, ~/.w3m/bookmarks.html, etc. The problem is keeping them in sync on all the machines we use. CVS seems like a nice tool for that. How would you go

RE: merge mode for XML

2002-05-14 Thread Glew, Andy
Motivation: schema changes in most existing relational databases are onerous. For very good reason. And what is that reason? OK, I admit that some RDBMS applications in production need stability - just like some systems software applications (the kind Greg seems to work on, the kind I

How to keep unix eoln in repository

2002-05-14 Thread juhas
Hi, is there any simple way how to keep unix ends of lines (eolns) in the repository? Despite the fact that our compile link platform is UNIX, some of our developers edit source files on windows. And they always forget to change win eolns to unix eolns... Is it possible to set/write a trigger

Re: How to keep unix eoln in repository

2002-05-14 Thread juhas
On Tue, 14 May 2002, Shubhabrata Sengupta wrote: Why would you need to change it to unix eolns - if you are developing on windows and using cvs on windows to check the files in. Since win eolns are annoying ;-) In addition win eolns can confuse some tools I depend on. Well, I know that to

Re: How to keep unix eoln in repository

2002-05-14 Thread Joi Ellis
On Tue, 14 May 2002, juhas wrote: Hi, is there any simple way how to keep unix ends of lines (eolns) in the repository? Despite the fact that our compile link platform is UNIX, some of our developers edit source files on windows. And they always forget to change win eolns to unix eolns...

Re: How to keep unix eoln in repository

2002-05-14 Thread Frederic Brehm
At 12:55 +0200 5/14/02, juhas wrote: Hi, is there any simple way how to keep unix ends of lines (eolns) in the repository? ... Is it possible to set/write a trigger which would convert eolns in text files during cvs checkin? If not, is there another chance? Use CVSROOT/commitinfo to run a script

Multisite Mirroring

2002-05-14 Thread Mahantesh
Hello friends, I have unique requirememt in CVSUP.First let me give sime details about the problem. Our clients' enterprise is distributed into 3 locations.We want all three sites to have CVS servers which will be in sync with each other.Suppose there are 9 modules in the CVSROOT( repository).And

Re: how to implement user level security in cvs ?

2002-05-14 Thread Muhammad Shakeel
Dear Noel yap, AOA Sorry i am asking a question related to little older thread in mailing list. I implemeted ACL on directory level as was suggested, and do not implemented on files. But what is reason that it is not recomended ? If a user have a permission on folder but not on a file then he

Re: are there any log files for cvs client/server connection information?

2002-05-14 Thread david
Recently we had a cvs co command 'hang' and we are trying to debug what happened. The server side (RH 6.2 running CVS 10.7) show no processes running, but the solaris side (Solaris 8, running CVS 1.11) still shows the cvs co in process.So somehow the server side closed the connect,

RE: How to keep unix eoln in repository

2002-05-14 Thread Tim Aldrich
smime.p7m Description: application/pkcs7-mime

cvspserver ?

2002-05-14 Thread Zanabria, Moises
Hi guys, I've a question, I'm using cvs version 1.11.2 in a Linux Server, everything looks fine, EXT method and pserver, just for one repository, but I've more than 1 repository on my server and I need to access all of them by pserver, my /etc/xinetd.d/cvspserver looks like: service

Re: how to implement user level security in cvs ?

2002-05-14 Thread Noel Yap
Given: 1. CVS recreates (ie copies and removes) the archive file each time there is a checkin. 2. CVS, by default, creates locks within the repo directory. The location of the locks can be configured by setting LockDir within CVSROOT/config. 3. A user can create and remove files within a

connection to pserver through proxy with user authentication

2002-05-14 Thread Martin Roehrig
Hi, I would like to connect to a cvs pserver outside in the world and have to go through our proxy. The proxy wants my username and password. I have tried that with WinCVS 1.3b8 (with the appropriate proxy settings in the preferences tab) and always got: cvs [login aborted]: connect to

Re: cvspserver ?

2002-05-14 Thread Larry Jones
Zanabria, Moises writes: How can I set up the rest of them, on server_args??, something like this: server_args = -f --allow-root=/local/p1cvs/src --allow-root=/local/p2cvs/src --allow-root=/local/p3cvs/src --allow-root=/local/p4cvs/src pserver Exactly. -Larry Jones Who, ME?

Re: How to keep unix eoln in repository

2002-05-14 Thread Larry Jones
juhas writes: Despite the fact that our compile link platform is UNIX, some of our developers edit source files on windows. And they always forget to change win eolns to unix eolns... Developers who edit files on Windows should be using a Windows CVS client to checkout and commit the

Re: How to keep unix eoln in repository

2002-05-14 Thread Joi Ellis
On Tue, 14 May 2002, Larry Jones wrote: juhas writes: Despite the fact that our compile link platform is UNIX, some of our developers edit source files on windows. And they always forget to change win eolns to unix eolns... Developers who edit files on Windows should be using a

Re: How to keep unix eoln in repository

2002-05-14 Thread Wade Williams
On Tuesday, May 14, 2002, at 10:54 AM, Joi Ellis wrote: This is a problem when one wants to edit on windows but actually build and execute the app on unix. The obvious way of getting the files back into the unix environment is to commit them to the repository and then run cvs update on the

CVS for website maintenance ?

2002-05-14 Thread Tom Hall
Assume you have a website and you'd like to be able to have several people make changes to it. Would it make sense to use CVS for this ? Does anyone know of a website currently being maintained this way ? Is this the wrong list ? ___ Info-cvs

RE: are there any log files for cvs client/server connection information?

2002-05-14 Thread Teala Spitzbarth
Thanks for your reply David, - we are using pserver access - the checkout proceeded through about 1/3 of the files in the module, the hang happened after pulling over (successfully) a 15Mb file, and (presumably) during pulling over the next file in that directory (6Mb). - The checkout was

on commit command run

2002-05-14 Thread Patrick Nelson
Or really any command. I realize that this may not work but, I thought I'd ask the cvs pros. I've been reading through cvs documentation and have setup a emailing process in the loginfo file of CVSROOT with a command line like: ALL mail -s CVS Commit [EMAIL PROTECTED] great works

enabling cvs logs at the beggining of a C file

2002-05-14 Thread Rashmi Vittal
Hi, I am adding a new file to the repository. Can somebody tell me what I need to add in this C file so that I shall be able to see the logs printed at the beggining of the file next time I check it out from the repository. Thank you Rashmi __

Re: enabling cvs logs at the beggining of a C file

2002-05-14 Thread Eric Siegerman
On Tue, May 14, 2002 at 01:23:22PM -0700, Rashmi Vittal wrote: Can somebody tell me what I need to add [...] so that I shall be able to see the logs printed at the beggining of the file next time I check it out from the repository. This is almost always a bad idea; see

RE: are there any log files for cvs client/server connectioninformation?

2002-05-14 Thread Lee Fellows
On Tue, 2002-05-14 at 15:35, Teala Spitzbarth wrote: Thanks for your reply David, - we are using pserver access - the checkout proceeded through about 1/3 of the files in the module, the hang happened after pulling over (successfully) a 15Mb file, and (presumably) during pulling over the

Re: enabling cvs logs at the beggining of a C file

2002-05-14 Thread Larry Jones
Rashmi Vittal writes: I am adding a new file to the repository. Can somebody tell me what I need to add in this C file so that I shall be able to see the logs printed at the beggining of the file next time I check it out from the repository.

RE: How to keep unix eoln in repository

2002-05-14 Thread Peter Ring
Your repository files do have unix-style eol ... it's just that there's a CR at the end of each line ;) This will happen un-intentionally if you use a cvs client with no eol conversion (e.g., the Cygwin port) and stupid editors that munge eol. If your Windows-hosted developers really need DOS

Re: CVS for website maintenance ?

2002-05-14 Thread Tom Hall
On Tue, May 14, 2002 at 11:47:00AM -0600, Tom Hall wrote: Assume you have a website and you'd like to be able to have several people make changes to it. Would it make sense to use CVS for this ? Does anyone know of a website currently being maintained this way ? In case someone else

Re: CVS for website maintenance ?

2002-05-14 Thread Les Bell
Tom Hall [EMAIL PROTECTED] wrote: Assume you have a website and you'd like to be able to have several people make changes to it. Would it make sense to use CVS for this ? Does anyone know of a website currently being maintained this way ? See the article by Philip Greenspun at

Symlinks and CVSROOT

2002-05-14 Thread Dan Peterson
We're in the process of setting up a new server for CVS access and for various fallback, redundancy and recovery reasons the directory part of the users CVSROOT environment variable must point to a symlink. During testing of the system, we discovered commands don't always work right. In

RE: merge mode for XML

2002-05-14 Thread Peter Ring
A paper that will interest you: (preliminary version) http://citeseer.nj.nec.com/cache/papers/cs/15339/http:zSzzSzwww.cs.arizona.e duzSzpeoplezSztodszSzacceptedzSz2000zSzParsonsEmancipating.pdf/parsons00eman cipating.pdf (published)

Re: CVS for website maintenance ?

2002-05-14 Thread R P Herrold
On Tue, 14 May 2002, Tom Hall wrote: Assume you have a website and you'd like to be able to have several people make changes to it. Would it make sense to use CVS for this ? yes Does anyone know of a website currently being maintained this way ? yes -- see fourth link at:

RE: are there any log files for cvs client/server connectioninformation?

2002-05-14 Thread Teala Spitzbarth
Thanks for your help Lee, The CVS_CLIENT_LOG looks good - I'll have to get it set up for when we are having the network problems and see the hangs again. What I realized from your inquiry about specifying the port number in the CVSROOT variable is that it doesn't work for versions 1.10.x

RE: rtag not tagging everything?

2002-05-14 Thread Teala Spitzbarth
I use rtag command on a nightly basis to tag the top of our tree, and then pull from that tag to do our nightly builds. I've never seen any instance where all files in the module were not tagged (i.e. this would result in a build failure for us if it did...), and the rtag command used in this

RE: can't add file to branch, not permissions problem

2002-05-14 Thread Teala Spitzbarth
Oh, that sounds nasty - is it a case issue with using WinCVS? I can't imagine you would get case issues on a Unix client We get directory issues with lower case getting converted to all caps frequently while using WinCVS back to a Linux server. I sure hope all the log fixes syntax changes

RE: How to keep unix eoln in repository

2002-05-14 Thread Tim Aldrich
very sorry about the signed message ... http://www.devguy.com/fp/cfgmgmt/download/Win2Unix.zip is a utility that your developers could run before they commit, it converts Windows to unix EOL's -HTH -Original Message- From: juhas [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 14,

Re: CVS for website maintenance ?

2002-05-14 Thread Rob Helmer
On Wed, May 15, 2002 at 08:31:53AM +1000, Les Bell wrote: snip public server. I *think* it's do-able, but I haven't given it a great deal of thought so far - the big problem is going to be providing a user-friendly interface for completely non-technical users (teachers). Hello, There are