RE: ClearCase implementation

2005-11-14 Thread Jeff Jensen
rom: Emmanuel Venisse [mailto:[EMAIL PROTECTED] > Sent: Monday, November 14, 2005 4:26 AM > To: scm-dev@maven.apache.org > Subject: Re: ClearCase implementation > > > > Wim Deblauwe a écrit : [snip] > > 2) About the checkout command: In ClearCase, you are looking at &

Re: ClearCase implementation

2005-11-14 Thread Wim Deblauwe
instance, where checkout means, get me all the files of a certain project. Am I correct? How should I then implement checkout. What is it used for in Maven/Continuum? 3) What are the *Consumer classes for in the ClearCase implementation? Looking at the SVN implementation, they don't have that the

Re: ClearCase implementation

2005-11-14 Thread Emmanuel Venisse
e for Maven and continuum for obtaining all files and build a project. For Clearcase implementation, you can get all files in read-only mode (if it's a clearcase standard) and eventually add an optional parameter in checkout command for editing a file (Is it an equivalent to a lock command?).

Re: Re: ClearCase implementation

2005-11-11 Thread Emmanuel Venisse
Wim Deblauwe a écrit : What should I try to implement first? I think update command should be the first. I don't know if clearcase have this mechanism or if it's only a checkout, but our update command run too a changelog for obtain all update info. You can look at cvs or svn providers for

Re: ClearCase implementation

2005-11-11 Thread Wim Deblauwe
What should I try to implement first? I see that checkout and changelog is implemented. Should I try: - adding a new file (add method, but which one?) - tag ( also 2 methods) -> I suppose this is a label in clearcase - checkin (also 2 methods, and they even have different case!) regards, Wim20