Re: CVS Through Proxy

2004-03-11 Thread Fabian Cenedese

>How can a Windows CVS client like TortoiseCVS configured to access a CVS repository 
>through a proxy server?

I don't know if Tortoise uses an external cvs program or builtin routines. If it's
an external program you can try to replace it with the one from WinCvs. This
has support for proxies. The main cvs does not.

bye  Fabi




___
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs


Re: Can't change ascii/binary type of file

2004-03-11 Thread Fabian Cenedese

>A few months ago I mistakenly committed a Crystal Report (*.rpt) file into CVS as an 
>ASCII file.  This broke the file, but no one noticed for a while.  Recently, I 
>realized my error and tried to correct it by removing the file from CVS, then 
>re-committing it as binary.  
>
>It appears, however, that CVS remembers the original version of the file was ASCII, 
>and is treating the new version as ASCII, even though I explicitly uploaded it as 
>binary.  This is manifest in the fact that the report is still broken.
>
>All our other *.rpt files work properly, because we reconfigured CVS to treat these 
>files as binary by default.  Is there any way to get CVS to treat this report as 
>binary? 

Use the admin command to change the type, update your sandbox, copy
in the working version and commit it. Look in the manual for the admin
command or the mailing list archives for examples. This question has come
up a few times.

bye  Fabi




___
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs


WinCVS locking up on startup

2004-03-11 Thread Adie
Hi, I appear to have a problem with WinCVS -- when I start it, 100% of
cpu is consumed and around 70mb of ram and it just sits there turning
my laptop into a very expensive heating appliance.

>From what I can tell, the WinCVS folder explorer seems to have the
root C:\ selected and it's my guess that it is attempting to
--recursively-- display all the files under C:\ and hence is having a
bit of a tough time.

Anyone know of the best way to fix this?
___
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs


Re: WinCVS locking up on startup

2004-03-11 Thread Adie
Adie wrote:

>Hi, I appear to have a problem with WinCVS -- when I start it, 100% of
>cpu is consumed and around 70mb of ram and it just sits there turning
>my laptop into a very expensive heating appliance.
>
>From what I can tell, the WinCVS folder explorer seems to have the
>root C:\ selected and it's my guess that it is attempting to
>--recursively-- display all the files under C:\ and hence is having a
>bit of a tough time.
>
>Anyone know of the best way to fix this?

Also, there appears to be two instances of WinCVS running in the
windows "task manager":

Agent - [Re: WinCVS locking up...]
wincvs - [C:\]
wincvs - [C:\]

Oh hold on, it appears to have sorted itself out? I'm in. Bizzare.

Anyone know what was happening?
___
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs


Re: attaching hooks with specific activities in CVS

2004-03-11 Thread Andy Jones

>> The information transmitted is intended only for the person or entity to
>> whom it is addressed and may contain confidential and / or privileged
>[...]
>
>Such disclaimers on messages posted to public mailing lists are specious
>at best.

Err, guys?  I don't think he actually *typed* that bit.  He almost certainly doesn't 
have a choice about it appearing on the bottom of his mail... 



___
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs


Re: message "Local access to network share not supported (Use -N to override this error)"

2004-03-11 Thread Dennis Grinberg
Win2K does allow it -- you just have to convince it... I can do it with
emacs for example. In the meantime, I am just running CVS from the command
line, putting -N in manually. (I.e., not using Tortoise at all).

Where did you see the -N flag listed? I don't see it in a FAQ.

Thanks,

Dennis


"Ken Seto" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Hi Dennis,
>
> I'm having the same problem with my install of Tortoise.
> Except I don't know where to put the -N flag.
> The FAQ refers to putting it in a .cvsrc file in my home directory BUT
> Win2K doesn't allow a file to be named ".cvsrc"
>
> Can you tell me how to use the -N flag?
>
> Thanks,
> Ken
>
> "Dennis Grinberg" <[EMAIL PROTECTED]> wrote in message
news:<[EMAIL PROTECTED]>...
> > I was using (Tortoise)CVS with no problems. After upgrading, I now get
the
> > following message whenever I try to checkin, tag, etc. (even from the
> > command line)
> >
> > "Local access to network share not supported (Use -N to override
this
> > error)"
> >
> > Using -N does indeed work.
> >
> > 1. I can not find a description of -N in any of the man pages for CVS.
The
> > only -N I find is related to the -d option which does not seem relevant
> > here. Am I missing something?
> > 2. It worked before. Any idea what might have changed?
> > 3. It works for other people in my company without the -N flag. Any idea
> > what could be different with my machine?
> >
> > Thank you!
> >
> > Dennis


___
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs


importing vendor branch and removed files

2004-03-11 Thread Spiro Trikaliotis
Hello,

I'm using cvs import for the first time, so I have a question on this. I
started importing a project with is some years old and has not been
managed by CVS so far into CVS. The project regularly sent out full
archives of the source files.

Now, I wrote a skript which untars each full archive and imports it into
the repository using the version number as tag (with "." replaced by
"-").

Everything works, except for one detail: If I checkout the latest
revision, CVS checks out every file, even ones that do not exist with
the latest revision anymore. This does not occur if I specifically check
out the release with the tag.

I read chapter 13 of the cederqvist, especially 13.2 which tells me:

   "Since import has no way to detect removed files, you should do a
   merge like this even if import doesn't tell you to."

So, this behaviour seems to be by design. Anyway, I ask myself if I can
do anything about this to change this behaviour? Section 13.2 seems to
tell me that I can change this in the main branch. Unfortunately, there
is no main branch currently (I want to track the changes without doing
local modifications. The reason for this is that the tar.gz take more
than 1 GB, while the CVS repository only takes 50 MB uncompressed, or 8
MB compressed).

Is there any chance I can change this behaviour? I would even move the
files around (to the attic?) or fiddle with any configuration files if
that would help me.

Any help is appreciated,
   Spiro.

-- 
Spiro R. Trikaliotis
http://www.trikaliotis.net/


___
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs


RE: Incompatible database version

2004-03-11 Thread Jim.Hyslop
Ting Abbey wrote:
> All,
> 
> I apologize for my endless question. CVS is a new technology to me. 
> 
> After fixing the unknown host problem, now I am getting the 
> following "Incompatible database version".
> I am running VSS 6.0.
Sorry, we can't help you here. VSS is Microsoft's Visual Source Safe, a
completely different product from CVS.

Please refer your question to a Microsoft support group.


-- 
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
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs


RE: Win<->Linux symbol case conflict

2004-03-11 Thread Jim.Hyslop
Iakov Glubokiy wrote:
> Hello all,
> 
> I met a problem tying to replace file AAA.EXT by aaa.ext. My
> client is NT while server is Linux.
> So when I do the following:
> 
> D:\main\cvs rm -f AAA.EXT
> [...]
> D:\main\cvs ci -m"Changing symbol case" AAA.EXT
> [...]
> D:\main\cvs add aaa.ext
> cvs server: re-adding file case.txt (in place of dead revision 1.2)
> cvs server: use 'cvs commit' to add this file permanently
> 
> (Note that server considers I'm going to re-add file, not add 
> new file)
> Of course, then I can't commit the file since server can't find file
> aaa.ext (it is not the same for server as AAA.EXT).
> 
> Jerzy Kaczorowski suggests it is a "server" side issue, that's
> why I'm asking it here.
Well, yes and no. The client sends the "Case" command to the server to tell
it to treat file names in a case-insensitive manner. So it's a combination
;=)

> 
> Versions, if needed:
> 
> Client: Concurrent Versions System (CVSNT) 2.0.9 (client/server)
> Server: Concurrent Versions System (CVS) 1.11.5 (client/server)
> 
> Is there any remedy for the problem?
What problem?

You have a file with a name. My name is Jim. It is also spelled JIM, jim,
jIm, etc. All variations on capitalization refer to me.

So, what's your problem? ;-)

Seriously, though, you could simply rename the repository file from
aaa.ext,v to AAA.EXT,v.

-- 
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
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs


Re: loginfo and RSS feeds

2004-03-11 Thread Philippe Casgrain
Frederic Brehm" <[EMAIL PROTECTED]> wrote:

Has anyone setup loginfo to produce an RSS feed?
I tried to install cvs2rss  on MacOSX 
but never got it to work correctly; I have execution problems in the 
XML::RSS module. So I went back to emails with activitymail.pl 


If anyone has another source for RSS feeds from CVS, I'd love to try it!

Philippe Casgrain
Corel Corp.


___
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs


Bug with entering Log messages using editor other than vi

2004-03-11 Thread g murkumar
Background :
PC :Intel Pentium 4
OS :Linux redhat 9
CVS version: 1.11.13 (client/server)

Initially my $EDITOR environment variable was set to
gvim

After making changes to a or many files i do

$cvs commit

the cvs would open a gvim editor window. AND at the
same time say
log message empty or unmodified
a)abort c)continue

I would enter log message exit gvim and
say continue (i tried ! option also)

The bug was that NONE of my log messages were ever
registered even though the
cvs made successful updates of my changes, But i lost
my log messages.

THen i thought id change my EDITOR in my .cshrc i did
so and made it vi

and Voila! the log messages started getting
registered. I didnt even get the
'log message empty or unmodified' error

Is this a bug.I wanted to bring this to the attention
of the developers so that
they may fix it. If not please advise what was wrong
on my part.
Regards


__
Do you Yahoo!?
Yahoo! Search - Find what you’re looking for faster
http://search.yahoo.com


___
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs


WinCVS and CVS on AIX

2004-03-11 Thread evil_bastard
I have been evaluating WinCVS and wether or not we can use this with a
CVS Server running on AIX.  The documentation mentions using it with a
Unix server, but doesn't specifically mention AIX.  Is combination
possible?
___
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs


Setuid/gid Error in CVS

2004-03-11 Thread Gagneet Singh
Hi! 

I am getting a peculiar problem with CVS.

In the output pane of WinCVS, the following message is coming whenever I
try to commit anything and the commit falls through.

cvs commit -m "Redundant test files have been removed from the CVS
repository.\nThese files had ..." data_section1.asm data_section2.asm
data_section4.asm (in directory D:\My Documents\Test\TestBase\)

Can't do setuid

cvs server: Pre-commit check failed

cvs [server aborted]: correct above errors first!

* CVS exited normally with code 1 * 



I have got the scripts 'cvslog' and 'cvs_acls' in the repository of the
CVS server and these are being used for Acess control and formatting the
mail to be sent to the users.

The problem occured when I changed some settings and users in the
/etc/passwd file. I am using CVS as a pserver with the passwords coming
from the /etc/passwd file. So that this change made all the users UserID
change. Now when I tried to change the users in the repository also, I
had no problems initially, but after restarting the CVS services, I got
the problem.

When I changed the permissions of the 'cvs_acls' script from 2775 to
2777, the follwoing message is coming, and the loginfo script is not
sending the mails, but commits are going through:

Setuid/gid script is writable by world.

* CVS exited normally with code 0 * 



Please help.



Gagneet



___
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs


Updating local directory to Match repository

2004-03-11 Thread Saad Malik
Hi,
I have searched the man pages and googled but was unable to find the
anwser, so I ask it here.

How am I able to make my local directory (module) match exactly like a
repository module. THe obvious answer is to cvs release (module) &&
cvs co (module)...

But what if the module is huge? Like the kdelibs... Basically what I
want to do, is for the cvs update command to somehow get rid of all
the (?) mark files it finds when updating the module. Also kdelibs and
other modules, say "This file is no longer in repository".. it would
be nice if it could delete those too.

I tried update -PC, but it did not remove files that were created by
configure script (and files I manually put in there).



Thanks in Advance.
___
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs


Re: Win<->Linux symbol case conflict

2004-03-11 Thread Kaz Kylheku
On Fri, 5 Mar 2004, Iakov Glubokiy wrote:

> Date: Fri, 5 Mar 2004 09:26:22 +0300
> From: Iakov Glubokiy <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
> Subject: Win<->Linux symbol case conflict
> 
> Hello all,
> 
> I met a problem tying to replace file AAA.EXT by aaa.ext. My
> client is NT while server is Linux.
> So when I do the following:
> 
> D:\main\cvs rm -f AAA.EXT
> [...]
> D:\main\cvs ci -m"Changing symbol case" AAA.EXT
> [...]
> D:\main\cvs add aaa.ext

Meta-CVS, has proper renaming.

   mcvs mv AAA.EXT aaa.ext
   mcvs ci -m "Case-changing rename"

Meta-CVS can also deal with the case of names that do not conflict on
UNIX, but do conflict on Windows.

Suppose that the project contains "FOO.C" and a UNIX user renames
an existing "blorg.c" to "foo.c" and commits. On his machine, there is
no conflict, because "FOO.C" and "foo.c" are distinct names. 
But you are on Cygwin/NTFS and do a ``mcvs up''.

When reshaping the tree, Meta-CVS will try to create "FOO.C" and
get an error from the filesystem. 

This is turned into a condition about a local file being in the way.
Although this is not quite accurate because it's not really a local
file, if you choose to terminate, the behavior is fail safe.

$ mcvs up
cvs update: Updating .
M MAP

The following error has occured:

some moves or adds want to overwrite local files or directories.

You have these alternatives:

?) Re-print this menu.
I) (Info) Print list of adds or moves which want to overwrite.
C) (Continue) Go ahead and overwrite the target files.
A) Auto-continue all continuable errors.
T) Recover, clean-up and terminate.

>I
move blorg.c -> FOO.C
>T
restoring blorg.c

$

The filesystem reshaping is rolled back, and so now you have an
inconsistent tree; there are outstanding changes in the MAP which are
not reflected in the tree structure. You now have an opportunity to fix
the MAP to eliminate the inconsistencies, either by hand or using the
command interface.

Check this out. You rename your file out of the way, and now that there
are no problems, the tree restructuring completes itself. Two files
are in fact moved, because after your local move request, there are two
outstanding moves, which can now complete without conflict:

$ mcvs mv foo.c out-of-the-way.c
* moving foo.c -> out-of-the-way.c
* moving blorg.c -> FOO.C

The tree reshaping is done and everything is now consistent and cool
as far as version control is concerned. 

We need is a more accurate diagnostic in Meta-CVS, since this is not a
case of a local file being in the way, but a case conflict.  Choosing C)
in the menu would be a pretty bad idea (overwrite the file). That choice
must not be available when it's a case-insensitivity conflict between
two versioned files.

-- 
Meta-CVS: the working replacement for CVS that has been stable for two
years.  It versions the directory structure, symbolic links and execute
permissions. It figures out renaming on import. Plus it babysits the kids
and does light housekeeping! http://freshmeat.net/projects/mcvs



___
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs


EOF while looking for end of string in RCS file : How to delete problem file?

2004-03-11 Thread Fred Phase
I imported some MP3s into CVS by mistake (yes I do own the
copywrite!).

With my limited knowlege I only know how to delete them by checking
the project out and using "cvs delete" to remove the MP3s one by one.

However, there is one that produces the following error message...
"EOF while looking for end of string in RCS file
/var/cvsroot/intranet/audio/Mon27Oct03e0723.mp3,v"

This sort of thing is not unexpected because I told CVS all about
jpgs, gifs & pngs being binary but not MP3!

If I can't check it out then how do I delete the thing? I heard that
doing stuff directly in the CVSROOT directory is most inadvisable and
could break stuff if I am no careful.

Anyone know how I can get out of this pickle?
___
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs


Re: How to create a list of files which changed during two dates in a

2004-03-11 Thread Larry Jones
Masanori Watanabe writes:
>
> When I use the update command I can specify both
> tagnaem and date together as follows.
> 
> cvs update -j: -j:
> 
> Does anyone know if 'diff' command has similar option

Unfortunately, it does not.

-Larry Jones

My upbringing is filled with inconsistent messages. -- Calvin


___
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs


Querying log messages and more

2004-03-11 Thread Jeeva Sarma
Hi
I want to do the following.
Query the log messages of all the files in the
repository, get the file names and revision numbers
associated with the log messages that contain a
certain number(task number) and then checkout those
revisions into a directory.
Is there anyway to do this other than writing a
complex script?
Any command I can use? ( other than the cvs log
command) If anyone has done something similar, can you
pls give me a few ideas? I would appreciate any help
on this.

Thanks,
Jeeva

__
Do you Yahoo!?
Yahoo! Search - Find what you’re looking for faster
http://search.yahoo.com


___
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs


find out check in files in CVS

2004-03-11 Thread Ben Kial
How can I generate a list of files that are checked in for a given
time period (e.g. between Mar. 1 and Mar. 10) with the following
information?

   1. Check in time
   2. Check in version
   3. Check in comment
   4. Check in user account

I tried "cvs log" but it prints lots of information. Is there any tool
that I can use to generate such report?

Any help will be very much appreciated.


Ben


___
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs


specify "." (current dir) as working dir via "-d" in modules?

2004-03-11 Thread Jeff
Is there any way to set up a module so that it will be checked out into the
current directory rather than a subdirectory of it?

For example, suppose a repository contains the following three projects -- 
"src", "fooweb", and "barweb":

"src" --
src/org/foo/FooClass.java
src/com/bar/BarClass.java

"fooweb" --
fooweb/index.jsp
fooweb/WEB-INF/web.xml
fooweb/WEB-INF/lib/foolib.jar

"barweb" --
barweb/index.jsp
barweb/WEB-INF/web.xml
barweb/WEB-INF/lib/barlib.jar


suppose further that my ultimate goal is to aggregate one of the two
webmodule projects with the "com" and "org" sub-projects of "src" using
ampersand modules to make Netbeans happy and put WEB-INF in what Netbeans
believes to be the rootdir of a mounted filesystem (it won't recognize it
any other way), and put "com" and "org" in WEB-INF/classes (to keep
Netbeans' web module autodeployment from breaking).

In an ideal universe, the following additions to the "modules" file would to
the trick nicely:

_com -d ./WEB-INF/classes/com src/com
_org -d ./WEB-INF/classes/org src/org
_fooweb -d . fooweb

foonetbeanswebapp &_fooweb &_com &_org

then, from the command prompt:

cd c:\cvs
cvs co foonetbeanswebapp

which would create the following files:
c:/cvs/foonetbeanswebapp/index.jsp
c:/cvs/foonetbeanswebapp/WEB-INF/web.xml
c:/cvs/foonetbeanswebapp/WEB-INF/classes/org/foo/FooClass.java
c:/cvs/foonetbeanswebapp/WEB-INF/classes/com/bar/BarClass.java
... as well as CVS' own workfiles, of course.


The problem is, it doesn't work. Attempting to run "cvs co
foonetbeanswebapp" produces the following error message:

cvs checkout: existing repository c:\cvs/CVSROOT/Emptydir does not match
c:\cvs/foonetbeanswebapp
cvs checkout: ignoring module _fooweb

Ironically, the _com and _org aliases DO work... FooClass.java and
BarClass.java both end up exactly where I want them. It looks like "-d"
doesn't mind "." unless it's sitting there by itself.

Is there any way to make this work? By hacking another one of the files in
CVSROOT or creating a dummy/decoy directory named Emptydir somewhere,
perhaps? By using a special directory name like ROOT (the way Tomcat does)?
By doing it under cygwin so there won't be an issue with forward slashes vs
backward slashes?

I wish it were possible to just let the fooweb module check out into
c:/cvs/foonetbeanswebapp/fooweb... but unfortunately, there's just no good
way to do it. Netbeans won't recognize a web module anywhere besides the
rootdir of a mounted CVS filesystem, and putting the class sourcefiles
anywhere besides WEB-INF/classes breaks Netbeans' whole automated
webapp-deployment subsystem (it's a long-standing design shortcoming of
Netbeans that's apparently scheduled to be fixed by the end of 2004). So
trying to find some way to forcibly merge classfiles from one or more
projects with a web module that itself is another project via ampersand
modules has kind of been a holy quest of mine for the past 3 years or so
[something I work on for a few days whenever I'm about to start a new major
project, seem to come within minutes of solving, then wind up back at square
one again, bashing my head against the wall in rage before giving up and
just dumping the whole web module into a single CVS project for lack of a
better alternative ].

If my idea STILL won't work due to deeper issues with CVS, might it be
somehow possible to hack things further using symlinks (or NTFS junctions)?
Say, checking out "fooweb" into c:\cvs\fooweb, "src/com" into c:\cvs\com,
and "src/org" into c:\cvs\org, then creating NTFS junctions so the imaginary
directory c:\fooweb\WEB-INF\classes\com will point to c:\cvs\com and the
imaginary directory c:\fooweb\WEB-INF\classes\org will point to c:\cvs\org?
Or will CVS crash and burn (or just ignore the change) if I do something
like edit FooClass.java then do a cvs commit from c:\cvs\fooweb (because of
some subtle rule or architectural limit of CVS?)

Thanks :-)




___
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs


Bug with entering Log messages using editor other than vi

2004-03-11 Thread g murkumar
Background :
PC :Intel Pentium 4
OS :Linux redhat 9
CVS version: 1.11.13 (client/server)
I am using latest sources of stable version

Initially my $EDITOR environment variable was set to
gvim

After making changes to a OR many files i do

$cvs commit

the cvs would open a gvim editor window. AND at the
same time say

log message empty or unmodified:
a)abort c)continue e)edit !)use same message for all
directories

I would enter log message exit gvim and
say continue (i tried ! option also)

The problem was that NONE of my log messages were ever
registered even though the
cvs made successful updates of my changes, But i lost
my log messages, when i tried seeing cvs log


Then i thought i'd change my $EDITOR in my .cshrc i
did so and made it 'vi' instead of gvim
...and Voila! the log messages started getting
registered. I didnt even get the

'log message empty or unmodified' error

Is this a bug? I wanted to bring this to the attention
of the developers so that
they may fix it, if it is a bug. If not please advise
what was wrong on my part.
Regards

__
Do you Yahoo!?
Yahoo! Search - Find what you’re looking for faster
http://search.yahoo.com


___
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs


Empty working dir deleted

2004-03-11 Thread Sven Jacobs
Sorry my system date was wrong (2 month in the past) so I guess this 
email got lost. Here it is again:

Dear newsgroup,

I'm sure this is a common question but I did not find any help in the
FAQ. I accidently deleted an empty working directory before I removed it
via the cvs command. How do I get this directory now removed from the
repository? Can I just delete it from the repository itself?
Thank you!

--
Sven Jacobs


___
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs


repository on network share

2004-03-11 Thread Marty
I'd like to use Tortoise CVS, putting the repository on a network
share.  Everyone's work area (sandbox) would be on their own machines,
we would not share sandboxes.
I need clarification - I know and understand that we should not share
sandboxes. But I hear also that we should not use a network share for
the repository?  Is that true, and if so, how else would a group of
developers (in the same building) create the repository?  Thanks
___
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs


CVS plugin for Visual Studio

2004-03-11 Thread Aditya Gandhi
Hi all,
If I were to use CVS and Visual Studio is there a decent plugin that I
can use to integrate the two.

I know of two such plugins
1. Jalindi Igloo
2. PushOk plugin

Are there any other plugins available?

Can people share there experience, advantages and common problems faced
with Igloo/PushOk and any other plugin they may have used.

Which plugin would the group recommend?

Thanks and regards
Aditya Gandhi


___
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs


How to compose a new module out of dirs in other modules !

2004-03-11 Thread Peter Biechele

I have the following problem:

I have a project which contains many dirs and subdirs.
Now I want to compose a new module containing some arbitrary subdirs in 
different dir levels to a new module.
BUT the dirs in the new module should be also in different levels.

E.g. (I checkout moduleSrc and see)
moduleSrc/dir1
moduleSrc/dir2
moduleSrc/dir1/dir11

I want to have: (when I checkout moduleNEW)
moduleNEW/Test/dir11 (ampersand module of moduleSrc/dir1/dir11)
moduleNEW/oneDir/twoDir/threeDir/dir2 (ampersand module of moduleSrc/dir2)


How can I accomplish this ??
If i use ampersand modules I can not tell the new path in the new module!!


Thank you for any help.

Peter Biechele

#
Dr. Peter Biechele, E-Mail: [EMAIL PROTECTED]




___
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs


Re: repository on network share

2004-03-11 Thread Larry Jones
Marty writes:
> 
> I need clarification - I know and understand that we should not share
> sandboxes. But I hear also that we should not use a network share for
> the repository?  Is that true, and if so, how else would a group of
> developers (in the same building) create the repository?  Thanks

Network filesystems are notoriously unreliable, particularly when
dealing with large, somewhat randomly accessed files, which is a perfect
description of what's in a typical repository.  You usually share a
repository by placing it on a server machine and using some form of
client/server CVS to access it (with the CVS server running on the
machine with the repository).  However, all of the reported problems
have been interoperability problems, so if you have a completely
homogeneous environment (e.g., all Windows machines), you probably won't
have any problems using a network share for the repository.

-Larry Jones

My dreams are getting way too literal. -- Calvin


___
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs


RE: EOF while looking for end of string in RCS file : How to deleteproblem file?

2004-03-11 Thread Hamid Ghassemi
This might help;

cvs admin -kb [yourfile]
cvs update -A [yourfile]

Then you can do what you need.

Good luckl

Hope this helps

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Fred Phase
Sent: Tuesday, March 09, 2004 4:28 AM
To: [EMAIL PROTECTED]
Subject: EOF while looking for end of string in RCS file : How to
deleteproblem file?

I imported some MP3s into CVS by mistake (yes I do own the
copywrite!).

With my limited knowlege I only know how to delete them by checking
the project out and using "cvs delete" to remove the MP3s one by one.

However, there is one that produces the following error message...
"EOF while looking for end of string in RCS file
/var/cvsroot/intranet/audio/Mon27Oct03e0723.mp3,v"

This sort of thing is not unexpected because I told CVS all about
jpgs, gifs & pngs being binary but not MP3!

If I can't check it out then how do I delete the thing? I heard that
doing stuff directly in the CVSROOT directory is most inadvisable and
could break stuff if I am no careful.

Anyone know how I can get out of this pickle?
___
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs



___
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs


RE: EOF while looking for end of string in RCS file : How to dele te problem file?

2004-03-11 Thread Matthew . Riechers

> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] Behalf
> Of [EMAIL PROTECTED]
> Sent: Tuesday, March 09, 2004 7:28 AM
> To: [EMAIL PROTECTED]
> Subject: EOF while looking for end of string in RCS file : 
> How to delete
> problem file?
> 
> I imported some MP3s into CVS by mistake (yes I do own the
> copywrite!).
> 
> With my limited knowlege I only know how to delete them by checking
> the project out and using "cvs delete" to remove the MP3s one by one.
> 
> However, there is one that produces the following error message...
> "EOF while looking for end of string in RCS file
> /var/cvsroot/intranet/audio/Mon27Oct03e0723.mp3,v"

> If I can't check it out then how do I delete the thing? I heard that
> doing stuff directly in the CVSROOT directory is most inadvisable and
> could break stuff if I am no careful.

In this case, if you can't delete the file through cvs, and you're *sure*
you really don't want it there, manually deleting the file is fine.

-Matt


___
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs


Re: Setuid/gid Error in CVS

2004-03-11 Thread Larry Jones
Gagneet Singh writes:
> 
> Can't do setuid

Standard CVS has no such message.

> cvs server: Pre-commit check failed

That implies that you have a commitinfo script that's failing -- my
guess is that the above error message is comming from the script.

> When I changed the permissions of the 'cvs_acls' script from 2775 to
> 2777, the follwoing message is coming, and the loginfo script is not
> sending the mails, but commits are going through:
> 
> Setuid/gid script is writable by world.

That implies that the script is setuid, probably to the wrong UID now
that you've changed them.  (And note that a world-writable setuid script
is a gaping security hole.)

-Larry Jones

Something COULD happen today.  And if anything DOES,
by golly, I'm going to be ready for it! -- Calvin


___
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs