If I already have a home grown bug tracking application is there any documentation on how I can get SGV to talk to my application.
I see through the FogBUGZ integration how I can integrate my bug tracking with SGV but I'm looking at what kind of service/page and what params do I need to support to allow SGV to interoperate.
Thank you for your time and any information you can provide.
Bug Tracking Integration
Moderator: SourceGear
My understanding of this may be wrong, but I think that we make a call to FogBugz in the following manner for checkins.
FOGBUGZURL/cvsSubmit.asp?ixBug={1}&sFile={2}&sPrev={3}&sNew={4}
where
{1} = bugID
{2} = the repository/path of the file, in the format REPOSITORYNUMBER$/path/to/file
{3} = object id of the file
{4} = version of the file
If you code to this, and it works, great. We make no promises to continue to support this URL. Good luck.
FOGBUGZURL/cvsSubmit.asp?ixBug={1}&sFile={2}&sPrev={3}&sNew={4}
where
{1} = bugID
{2} = the repository/path of the file, in the format REPOSITORYNUMBER$/path/to/file
{3} = object id of the file
{4} = version of the file
If you code to this, and it works, great. We make no promises to continue to support this URL. Good luck.
-
- Posts: 3
- Joined: Thu Mar 11, 2004 5:37 pm
Thanks, that's great information and I won't hold you to supporting it in the future.
One final thing, do you need to login to the FogBUGZ to submit this information. If so do I just need to provide basic digest support or do you also support Windows Authentication?
As a suggestion maybe in the future you could provide an interface to allow bug tracking integration.
One final thing, do you need to login to the FogBUGZ to submit this information. If so do I just need to provide basic digest support or do you also support Windows Authentication?
As a suggestion maybe in the future you could provide an interface to allow bug tracking integration.
I'm researching this idea a bit and found this http://www.fogcreek.com/FogBUGZ/help/Se ... ntegr.html which would seem to suggest that {3} is really the old version number; can I assume from your comments that Vault will pass the objVerID?
jeremy_sg wrote:My understanding of this may be wrong, but I think that we make a call to FogBugz in the following manner for checkins.
FOGBUGZURL/cvsSubmit.asp?ixBug={1}&sFile={2}&sPrev={3}&sNew={4}
where
{1} = bugID
{2} = the repository/path of the file, in the format REPOSITORYNUMBER$/path/to/file
{3} = object id of the file
{4} = version of the file
If you code to this, and it works, great. We make no promises to continue to support this URL. Good luck.