Extension:Contributors

From MediaWiki.org

Jump to: navigation, search

           

Manual on MediaWiki Extensions
List of MediaWiki Extensions
Crystal Clear action run.png
Contributors

Release status: beta

Contributors.png
Implementation  User activity, Special page
Description Summarises the most prominent contributors to an article
Author(s)  Rob Church
Last Version  1.0.1beta (2008-01-09)
MediaWiki  1.8.0+
License No license specified
Download Download snapshot

Subversion [Help]
Browse source code

check usage (experimental)

The Contributors extension provides an includable special page which summarises the most prominent contributors to an article. The page can be accessed as a normal special page, or included into other pages to provide an automated list, which is useful for attribution.

Contents

[edit] Requirements

The Contributors extension requires MediaWiki 1.8.0 or above.

[edit] Installation

  1. Download the latest snapshot and extract it to your extensions directory.
  2. Add the line require_once( "{$IP}/extensions/Contributors/Contributors.php" ); to your LocalSettings.php file

Installation can be verified through the Special:Version page on the wiki.

[edit] Usage

The list can be accessed as a conventional special page, or through inclusion into another page.

[edit] Special page

The special page is located at Special:Contributors and provides an interface to select an article. You can also access this page using the "main contributors" link in the toolbox when viewing an article; the results for that page will be shown.

[edit] Inclusion

You can include a list of names into another page using the inclusion mechanism, e.g.

{{Special:Contributors/Article}}

You can also create a template with the following code on it, and add it to your articles.

{{Special:Contributors/{{FULLPAGENAME}}}}

will produce a list of the most prominent contributors to Article.

[edit] Output criteria

This extension lists "prominent contributors" to a page. The default behaviour will show all contributors, in order of number of edits, if the number of contributors is ten or less. Once the limit is hit, contributors with over two edits will continue to be listed. Contributors who are not listed are acknowledged as "X others".

These limits can be changed:

  • $wgContributorsLimit defines the "intelligent cut-off" limit (default 10)
  • $wgContributorsThreshold defines the edit threshold for additional users (default 2)

[edit] Change log

A complete log of changes to the extension code (including internationalisation updates from third parties) is available from the Subversion log, however, summarised information on changes between point releases is given below:

Version Release Date Comments
1.0.1beta 2008-01-09 Beta release using wfLoadExtensionMessages
1.0beta 2006-12-23 Beta release
1.0beta 2006-06-01 Minor bug fix

[edit] Addon

Extension:ContributorsAddon

[edit] Other Extensions