Difference between revisions of "BugzillaBuglist"

From Wiki4Intranet
Jump to: navigation, search
(Created page with "{{Extension4info |name=BugzillaBuglist |description en=Insert bug lists fetched from under a configured user from Bugzilla4Intranet using a tag. '''Disabled by default''' ...")
 
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
{{Extension4info
 
{{Extension4info
 
|name=BugzillaBuglist
 
|name=BugzillaBuglist
|description en=Insert bug lists fetched from under a configured user from [[Bugzilla4Intranet]] using a tag. '''Disabled by default'''
+
|description en=Insert a configured user's saved searches from Bugzilla using a tag.
|description ru=Вставка списков багов, загружаемых из-под заданного пользователя, из [[Bugzilla4Intranet]] с помощью тега. '''Выключено по умолчанию'''
+
|description ru=Вставка сохранённых поисков заданного пользователя из Bugzilla с помощью тега.
|created=2008-10-14
+
|created=2010-11-12
|included=2008-10-14
+
|included=2010-11-12
 
|status=our
 
|status=our
|useful=likely
+
|useful=maybe
 +
|disabled=1
 
}}
 
}}
 
{{ExtensionFromInfo|lang=en|name=BugzillaBuglist}}
 
{{ExtensionFromInfo|lang=en|name=BugzillaBuglist}}
[[Category:Incomplete extension descriptions]]
+
 
 +
== Usage ==
 +
 
 +
After installation you can use a parser function and/or a tag via:
 +
* <tt><nowiki>{{#buglist:<alias>|<saved_search_name>}}</nowiki></tt>
 +
* <tt><nowiki><buglist user="<alias>" query="<saved_search_name>" /></nowiki></tt>
 +
 
 +
The extension will fetch buglist in query format=simple from Bugzilla installation using cURL and insert it on a page along with <tt><bugzilla_url>/skins/standard/buglist.css</tt> style.
 +
 
 +
== Installation ==
 +
 
 +
Add the following into your LocalSettings.php:
 +
 
 +
<code-php>
 +
require_once "$IP/extensions/BugzillaBuglist/BugzillaBuglist.php";
 +
</code-php>
 +
 
 +
Then configure Bugzilla settings and user(s) for the Wiki via:
 +
<code-php>
 +
$egBugzillaBuglistUrl = "http://<your-bugzilla-address>/";
 +
$egBugzillaBuglistUsers = array(
 +
  '<alias>' => array(
 +
    'login' => '<BUGZILLA LOGIN>',
 +
    'password' => '<BUGZILLA PASSWORD>',
 +
  ),
 +
);
 +
$egBugzillaBuglistCacheTime = 10; // seconds to cache
 +
</code-php>

Latest revision as of 15:03, 31 May 2013

BugzillaBuglist is a MediaWiki extension.

Status for Mediawiki4Intranet distribution:

  • Inclusion date: 2010-11-12* Disabled in the default configuration
  • Included version: newest available
  • Improvement status: Created by MediaWiki4Intranet project

Usage

After installation you can use a parser function and/or a tag via:

  • {{#buglist:<alias>|<saved_search_name>}}
  • <buglist user="<alias>" query="<saved_search_name>" />

The extension will fetch buglist in query format=simple from Bugzilla installation using cURL and insert it on a page along with <bugzilla_url>/skins/standard/buglist.css style.

Installation

Add the following into your LocalSettings.php:

require_once "$IP/extensions/BugzillaBuglist/BugzillaBuglist.php";

Then configure Bugzilla settings and user(s) for the Wiki via:

$egBugzillaBuglistUrl = "http://<your-bugzilla-address>/";
$egBugzillaBuglistUsers = array(
  '<alias>' => array(
     'login' => '<BUGZILLA LOGIN>',
     'password' => '<BUGZILLA PASSWORD>',
  ),
);
$egBugzillaBuglistCacheTime = 10; // seconds to cache