Plugin Information
This plugin integrates Bugzilla into Hudson. It hyperlinks bug numbers that appear in changeset descriptions to the bugzilla bug detail page. It can also, optionally, add a tooltip to each linked bug, showing the bug 'summary' text. Hudson needs to know the URL to your bugzilla server. In addition, you can specify a username and password to the bugzilla server. If login is required to see bug detail, then the username and password are necessary for the tooltip feature. Note that the password is stored in plaintext within Hudson's configuration files. Here is an example configuration page, with the bugzilla project's own bugzilla server: Change LogVersion 1.4.1 (Mar 25, 2012)
Version 1.4 (Jan 30, 2010)
Version 1.3 (Jan 29, 2009) |


Comments (9)
Oct 23, 2008
David Multer says:
I enter the base URL for my system without the trailing slash, but always get th...I enter the base URL for my system without the trailing slash, but always get the following error in my log when using the latest 1.2 plugin. The same URL works fine in the browser.
WARNING: XmlRpcException starting bugzilla session: Failed to parse servers response: White spaces are required between publicId and systemId.
Oct 31, 2008
Eduardo Cerqueira says:
I am getting the same error described before, and I can't replace the current pa...I am getting the same error described before, and I can't replace the current path "http://bugzilla" as example by normal way, so I changed directly in global.jelly file in plugins\bugzilla\WEB-INF\classes\hudson\plugins\bugzilla\BugzillaProjectProperty
What should I do to have this working as expected without this error?
Thanks
Eduardo Cerqueira
Nov 18, 2008
David Multer says:
The answer was easy, turns out my Bugzilla install didn't have XMLRPC configured...The answer was easy, turns out my Bugzilla install didn't have XMLRPC configured. You need to install the optional module using:
$ perl -MCPAN -e 'install "SOAP::Lite"'
$ ./checksetup.pl
Aug 04, 2009
Douglas Borg says:
Using a regex with a look-behind solves that nasty problem where it will hyperli...Using a regex with a look-behind solves that nasty problem where it will hyperlink ALL decimal numbers quite nicely.
Example:
The above regex matches ONLY the numbers in strings like the following:
The regex does NOT match just any number. The number must be preceded by something like "bug", "issue" or "SCR".
While there is no convention for what a bugzilla bug should be called, the regex above takes care of most of the ones we use at our shop. I am sure you could get even fancier with it, but this seems to work for now. I suggest something like the above be the default instead of matching all decimal numbers as the current default regex does.
Aug 22, 2010
Mark Lewis says:
Using lookbehind is a brilliant idea to avoid linking all decimal numbers. Star...Using lookbehind is a brilliant idea to avoid linking all decimal numbers. Starting with Douglas's regex, I've created the following:
(?<=[Bb]ug [\d, ]{0,64})(\d+)It will match and link multiple bug IDs. Examples:
Due to the limitations of lookbehind, you can't use + or * in the lookbehind, which is why I've resorted to the curly braces. I welcome any improvements.
Aug 07, 2009
Chuck Fox says:
I'm trying to set this up to work with a SSL required Bugzilla, but get this com...I'm trying to set this up to work with a SSL required Bugzilla, but get this complaint from the plugin, "Error contacting bugzilla XMLRPC at this URL" and no traffic is shown by tcpdump on the remote server. If I change the https:// to http:// then tcpdump shows traffic, but of course the plugin fails. Is there something special I need to do or is SSL unsupported? I see the sample shown uses SSL (https://qa.mandriva.com//show_bug.cgi?id=1659) so seems like it should be supported.
Oct 09, 2009
Aniruddha Dutta Chowdhury says:
Hi, Will it be possible to configure multiple bugzilla location in the system a...Hi,
Will it be possible to configure multiple bugzilla location in the system and in projects appropriate one is chosen. Like Ant of JDK...
Regards
Aniruddha Dutta Chowdhury
Dec 01, 2009
David Garcia says:
Hi, We are users of Fogbugz and a small change in the plugin will enable its us...Hi,
We are users of Fogbugz and a small change in the plugin will enable its use: instead of using a fixed string to access the case (now /show_bug.cgi?id=) set this string as a parameter of the plugin. In particular default.asp?. This will expand to: http://myfogbugz/default.asp?CASE_NUMBER instead of http://myfogbugz/default.asp?/show_bug.cgi?id=7449 (when I set the base URL to http://myfogbugz/default.asp?)
Thanks,
David
May 12, 2010
Tiffany Zeman says:
Hi David - Are you using the bugzilla plugin for fogbugz? If not is there...Hi David -
Are you using the bugzilla plugin for fogbugz? If not is there a fogbugz plugin?
Thanks,
Tiffany