Here is an example of how the "cvs diff -Nu" look like:
RCS file: /src/myproduct/main.core/src/webclient/com/jareva/webclient/ui/servlets/AddLicenseServlet.java,v
retrieving revision 1.14
I cannot get the "Diff for <file_link>" working in the review topic screen. Do you know how to solve this problem?
Thanks,
Edmond
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I think you are missing a single quote and a forward slash, though perhaps cut-n-paste or some aspect of posting your syntax chopped it out. At any rate, I'm going to try putting my guess at a correction here:
Hi David,
The URL for CVS web in my environment is something like:
http://my.domain.com/cgi-bin/cvsweb.cgi/myproduct/main.core/?cvsroot=Some_Repositories
So I set @valid_repositories in my codestriker.conf as follow:
@valid_repositories =
(
'http://my.domain.com/cgi-bin/cvsweb.cgi Some_Repositories
);
Here is an example of how the "cvs diff -Nu" look like:
RCS file: /src/myproduct/main.core/src/webclient/com/jareva/webclient/ui/servlets/AddLicenseServlet.java,v
retrieving revision 1.14
I cannot get the "Diff for <file_link>" working in the review topic screen. Do you know how to solve this problem?
Thanks,
Edmond
I think you are missing a single quote and a forward slash, though perhaps cut-n-paste or some aspect of posting your syntax chopped it out. At any rate, I'm going to try putting my guess at a correction here:
@valid_repositories =
(
'http://my.domain.com/cgi-bin/cvsweb.cgi' /Some_Repositories
);
Whoops heh, even I made a syntax mistake there in my last post -- the other single quote should go at the end:
@valid_repositories =
(
'http://my.domain.com/cgi-bin/cvsweb.cgi /Some_Repositories'
);
Thanks for the suggestion. However, it still doesn't work.