Building up url's to link other webbased components with loggerhead

Asked by Craig Hewetson

I would like to link code changes in bzr-hudson and fogbugz with loggerhead. Configuring these applications so that url links will direct the user to webpages on loggerhead.

Is there documentation describing how the url would have to be built up in order to have it link the following data on loggerhead:
A particular revision in a branch.
A single file for a particular revision of a particular branch.
A tag and bug fix for a particular branch.

If there is no documentation about this, can someone please direct me to necessary source file(s) that would help me in acquiring this information?

Question information

Language:
English Edit question
Status:
Solved
For:
loggerhead Edit question
Assignee:
No assignee Edit question
Solved by:
Michael Hudson-Doyle
Solved:
Last query:
Last reply:
Revision history for this message
Craig Hewetson (craighewetson-deactivatedaccount) said :
#1

nudge

Revision history for this message
Best Michael Hudson-Doyle (mwhudson) said :
#2

Assuming that $branch is the URL for the branch in loggerhead (e.g. http://bazaar.launchpad.net/~bzr/bzr/trunk), it's as follows:

A particular revision in a branch.

$branch/revision/$revno

A single file for a particular revision of a particular branch.

$branch/revision/$revno/$path-to-file

A tag and bug fix for a particular branch.

Can't do this yet :/

Revision history for this message
Craig Hewetson (craighewetson-deactivatedaccount) said :
#3

Thanks for the reply, this will help alot.

Revision history for this message
Craig Hewetson (craighewetson-deactivatedaccount) said :
#4

Thanks Michael Hudson, that solved my question.