Extension:Contributors/de-formal
![]() | This extension is currently not actively maintained! Although it may still work, any bug reports or feature requests will more than likely be ignored. If you are interested in taking on the task of developing and maintaining this extension, you can request repository ownership. As a courtesy, you may want to contact the author. You should also remove this template and list yourself as maintaining the extension in the page's {{extension}} infobox. |
![]() Release status: unmaintained |
|
---|---|
![]() |
|
Implementation | User activity , Special page |
Description | Summarizes the most prominent contributors to an article |
Author(s) | Rob Church (original), Yaron Koren, Ike Hecht |
Latest version | 2.0 (2015-07-08) |
MediaWiki | 1.25-1.36 |
PHP | 5.4+ |
Database changes | Yes |
Tables | contributors |
License | GNU General Public License 2.0 or later |
Download | |
|
|
Quarterly downloads | 19 (Ranked 142nd) |
Translate the Contributors extension if it is available at translatewiki.net | |
Issues | Open tasks · Report a bug |
The Contributors extension provides an includable special page which summarizes 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.
Installation
- Die Erweiterung herunterladen und die Datei(en) in ein Verzeichnis namens
Contributors
im Ordnerextensions/
ablegen. - Folgenden Code am Ende Ihrer LocalSettings.php -Datei hinzufügen:
require_once "$IP/extensions/Contributors/Contributors.php";
- Führen Sie das Aktualisierungsskript aus, welches automatisch die notwendigen Datenbanktabellen erstellt, die diese Erweiterung braucht.
- Run the script that will populate the database with contributors from existing articles:
php extensions/Contributors/maintenance/PopulateContributorsTable.php
Done – Zu Special:Version in dem Wiki (bei Einstellung auf deutsch nach Spezial:Version) navigieren, um die erfolgreiche Installierung der Erweiterung zu überprüfen.
- upgrade:
php extensions/Contributors/maintenance/PopulateContributorsTable.php
Usage
The list can be accessed as a conventional special page, or through inclusion into another page.
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.
Transclusion
You can transclude 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
.
Parser function
There's also a parser function that displays the contributors in a plain list, like so: Joe, Moe and Jane.
{{#contributors:{{FULLPAGENAME}}}}
You can also filter anons from the list of contributors, like so:
{{#contributors:{{FULLPAGENAME}}|filteranon}}
Parameters
$wgContributorsLinkUsers
links the user names to their User page. Doesn't affect the Special page, which is always linked. (defaulttrue
)
Siehe auch
- Extension:PageAuthors - Gets a sensible list of the main page authors.
- Extension:ContributionCredits - adds a ==Contributors== footer on each page.
- Extension:DynamicPageList - can produce lists of revision history for multiple articles.
- Extension:Semantic Extra Special Properties - See property
_EUSER
. - Manual:$wgMaxCredits - displays credits without requiring an extension, appending
?action=credits
to the url builtin MediaWiki feature
- Unmaintained extensions/de-formal
- User activity extensions/de-formal
- Special page extensions/de-formal
- GPL licensed extensions/de-formal
- Extensions in Wikimedia version control/de-formal
- ArticleRevisionVisibilitySet extensions/de-formal
- LoadExtensionSchemaUpdates extensions/de-formal
- PageSaveComplete extensions/de-formal
- ParserFirstCallInit extensions/de-formal
- SidebarBeforeOutput extensions/de-formal
- SkinTemplateToolboxEnd extensions/de-formal
- All extensions/de-formal
- Edit extensions/de-formal