Bug Tracker Settings... how to

Asked by Muhammad Bashir Al-Noimi

I want to know how can I connect my project to bug tracker but I got 404 page error for this link:
http://doc.bazaar.canonical.com/explorer/en/guide/user-reference/index.html#bug-tracker-settings

the parent link is:
http://doc.bazaar.canonical.com/explorer/en/guide/integration/bug_trackers.html

Can any one helps me to learn how can I connect my project to bug tracker?

Question information

Language:
English Edit question
Status:
Solved
For:
Bazaar Explorer Edit question
Assignee:
No assignee Edit question
Solved by:
Muhammad Bashir Al-Noimi
Solved:
Last query:
Last reply:
Revision history for this message
Launchpad Janitor (janitor) said :
#1

This question was expired because it remained in the 'Open' state without activity for the last 15 days.

Revision history for this message
Muhammad Bashir Al-Noimi (mbnoimi) said :
#2

Bump

Revision history for this message
Alexander Belchenko (bialix) said :
#3

You should open User configuration dialog like that http://doc.bazaar.canonical.com/explorer/en/visual-tour-windows.html#user-configuration (select appropriate visual tour for your platform) and select "Bug Trackers". Then use "Add" to insert new line to the list of bug trackers.

To Abbreviation column put the short name of your bug tracker (that name you later will use in Commit dialog), for example: "bug".
Into URL column put the template of URL to specific bug ticket/issue; use {id} as placeholder for bug number in the URL. E.g. for trac you may use the following:

http://server.com/trac/ticket/{id}

After that you can put bug number into revision metadat when you commit new revision. In Commit dialog check "Fixed bugs" and type in edit box next to that checkbox space separated list of bug numbers with prefix of your bug tracker abbreviation. If you used "bug" as abbreviation then you may type:

bug:123

On commit your bug:123 will be expanded to full URL like http://server.com/trac/ticket/123 and that URL will be shown in Log window as small colored box on revision line and as URL link in detailed view on revision. You can click on such URL link to open it in your browser.

Also, please see http://doc.bazaar.canonical.com/bzr.2.5/en/user-reference/bugs-help.html

Revision history for this message
Muhammad Bashir Al-Noimi (mbnoimi) said :
#4

Thanks,

I'm using Alfresco "Data Lists issue" component as simple bug tracker. if you know how to configure it with Bzr Explorer could you tell me?

Any way, I'll try configure it by myself, in case I success I'll post the solution here.

Revision history for this message
Alexander Belchenko (bialix) said :
#5

If you can show example of bug/issue URL then I probably can help.
Something like that:
abbreviation: alf
URL: https://issues.alfresco.com/jira/browse/{id}

Then use

alf:WOR-123

to point to

https://issues.alfresco.com/jira/browse/WOR-123

issue.

There could be a problem with abbreviation/prefixes, e.g.

https://issues.alfresco.com/jira/browse/WOR-611

and

https://issues.alfresco.com/jira/browse/RM-611

Those won't be distinguished in qlog window and both will be shown as "bug #611" or you need to improve bug regexp logic in qbzr/qlog. I can show you place where you need to make changes.

Revision history for this message
Muhammad Bashir Al-Noimi (mbnoimi) said :
#6

I solved it:

http://<domain:8080>/share/page/site/<sitename>/data-lists?list={id}

Thanks guys :)