Difference between revisions of "BugzillaBuglist"
From Wiki4Intranet
(3 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
{{Extension4info | {{Extension4info | ||
|name=BugzillaBuglist | |name=BugzillaBuglist | ||
− | |description en=Insert | + | |description en=Insert a configured user's saved searches from Bugzilla using a tag. |
− | |description ru=Вставка | + | |description ru=Вставка сохранённых поисков заданного пользователя из Bugzilla с помощью тега. |
|created=2010-11-12 | |created=2010-11-12 | ||
|included=2010-11-12 | |included=2010-11-12 | ||
|status=our | |status=our | ||
− | |useful= | + | |useful=maybe |
+ | |disabled=1 | ||
}} | }} | ||
{{ExtensionFromInfo|lang=en|name=BugzillaBuglist}} | {{ExtensionFromInfo|lang=en|name=BugzillaBuglist}} | ||
− | + | ||
+ | == 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.
- Main purpose: Insert a configured user's saved searches from Bugzilla using a tag.
- Repository: https://github.com/mediawiki4intranet/BugzillaBuglist
- Homepage: http://wiki.4intra.net/BugzillaBuglist
- License: GPLv2.0+
- Created: 2010-11-12
- Our rating: May be useful (3)
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