Changes between Version 6 and Version 7 of BugzillaIssueTrackingPlugin


Ignore:
Timestamp:
Dec 14, 2015, 3:20:12 PM (8 years ago)
Author:
figaro
Comment:

Further cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • BugzillaIssueTrackingPlugin

    v6 v7  
    77This plugin allows you to link to tickets in [https://www.bugzilla.org/ Bugzilla] from within Trac.
    88If you have Bugzilla deployed as your issue tracking system and are unable to move away from it, this plugin should enable you to use Trac and have the !#123 links automatically link back to your Bugzilla pages rather than Trac's pages.
     9
     10See also: t:TracImport
    911
    1012== Bugs/Feature Requests
     
    3234== Configuration
    3335
    34 Make sure you disable Trac's native tickets before the ticket numbers will link to your Bugzilla installation correctly. To do this just add 'trac.ticket.*= disabled' to the components section of your `trac.ini` file. If there isn't a [components] section, then create one.
     36Make sure you disable Trac's native tickets before the ticket numbers will link to your Bugzilla installation correctly. To do this just add `trac.ticket.* = disabled` to the components section of your `trac.ini` file. If there isn't a [components] section, then create one.
    3537
    36 Out-of-the-box bugzilla.py will try to link to a Bugzilla installation running on http://bugzilla. This probably isn't what you want and to have it point at your installation, add a new section to the `trac.ini file` named [bugzilla]. The Bugzilla plugin understands only one parameter, which is 'bugzilla_url'. Have this point to where your Bugzilla installation really resides (trailing slash is optional).
     38Out-of-the-box bugzilla.py will try to link to a Bugzilla installation running on http://bugzilla. This probably isn't what you want and to have it point at your installation, add a new section to the `trac.ini` file named [bugzilla]. The Bugzilla plugin understands only one parameter, which is 'bugzilla_url'. Have this point to where your Bugzilla installation really resides (trailing slash is optional).
    3739
    3840The end of your `trac.ini` file may now look like:
     
    4042{{{#!ini
    4143[components]
    42 trac.ticket.*= disabled
     44trac.ticket.* = disabled
    4345
    4446[bugzilla]
    45 bugzilla_url= http://bugzilla
     47bugzilla_url = http://bugzilla
    4648}}}
    4749