Gets information about bugs (with depends on) via XML-RPC Bugzilla::WebService
Compatible with DokuWiki
No compatibility info given!
Similar to eventum
Download and install the plugin using the Plugin Manager using the URL given above. Refer to Plugins on how to install plugins manually.
First we make changes to source code Bugzilla (for v.3.2) in file Bugzilla/WebService/Bug.pm, this change is optional :
diff -u Bugzilla/WebService/Bug.pm.original Bugzilla/WebService/Bug.pm --- Bug.pm.original 2010-09-13 10:42:17.000000000 +0300 +++ Bug.pm 2010-09-13 11:08:38.000000000 +0300 @@ -95,6 +95,7 @@ $item{'internals'} = $bug; $item{'id'} = type('int')->value($bug->bug_id); $item{'summary'} = type('string')->value($bug->short_desc); + $item{'dependson'} = $bug->dependson; if (Bugzilla->params->{'usebugaliases'}) { $item{'alias'} = type('string')->value($bug->alias);
Now, Bugzilla will give us information about the bugs that affect the specified bug (“Depends on” field).
Configure the plugin using the “Admin” panel - > “Configuration Settings” → “Plugin Settings” or edit file lib/plugins/bugzillaxmlrpc/conf/default.php
Syntax simple :
bugz#XXXXX
where the XXXXX - numeric id of bug.
For example :
bugz#12345
The plugin will generate output to screen like :