Changes between Version 1 and Version 2 of BugzillaIssueTrackingPlugin


Ignore:
Timestamp:
Apr 23, 2006, 1:37:27 PM (18 years ago)
Author:
anonymous
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BugzillaIssueTrackingPlugin

    v1 v2  
    2121You can check out BugzillaIssueTrackingPlugin from [http://trac-hacks.org/svn/bugzillaissuetrackingplugin here] using Subversion, or [source:bugzillaissuetrackingplugin browse the source] with Trac.
    2222
    23 == Example ==
     23== Deployment ==
     24Just copy the bugzilla.py file into the 'plugins' sub-folder of your Trac environment.
    2425
    25 .
     26It is important to 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 first.)
     27
     28Out-of-the-box bugzilla.py will try to link to a bugzilla installation running on http://bugzilla.  This probably isn't what you want, in order 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).
     29
     30The end of your trac.ini file may now look like:
     31
     32
     33{{{
     34[components]
     35trac.ticket.*= disabled
     36
     37[bugzilla]
     38bugzilla_url= http://bugzilla
     39}}}
     40
     41
     42
    2643
    2744== Recent Changes ==