Extension:AuthorInfo/da
Jump to navigation
Jump to search
Author Info Release status: beta |
|
---|---|
![]() |
|
Implementation | Tag |
Beskrivelse | Displays a list of authors that contributed to an article, sorted by number of edits. |
Forfatter(e) | ThomasKeldertalk |
MediaWiki | Tested on 1.12-1.13 (but could work on older versions) |
Licens | Apache License 2.0 |
Download | svn.bigcat.unimaas.nl |
Eksempel | Homo_sapiens:Sandbox |
Translate the AuthorInfo extension if it is available at translatewiki.net | |
Check usage and version matrix. |
The AuthorInfo extension displays a list of users that contributed to an article. The list is sorted by number of edits and you can optionally set maximum number of users to display.
This extension was built for the WikiPathways project. You can find an example here.
Usage
Add this text to the page where you want to show the list of authors for:
<AuthorInfo limit="4"></AuthorInfo>
Download instructions
Download the following files:
- http://svn.bigcat.unimaas.nl/wikipathways/trunk/wpi/extensions/AuthorInfo/AuthorInfo.css
- http://svn.bigcat.unimaas.nl/wikipathways/trunk/wpi/extensions/AuthorInfo/AuthorInfo.js
- http://svn.bigcat.unimaas.nl/wikipathways/trunk/wpi/extensions/AuthorInfo/AuthorInfo.php
And place them in $IP/extensions/ExtensionName/ExtensionName.php
.
$IP stands for the Installation Path (or "directory") of your MediaWiki installation, the same directory that holds LocalSettings.php, index.php etc..
Installation
To install this extension, add the following to LocalSettings.php :
#add configuration parameters here
#setup user rights here
require_once("$IP/extensions/AuthorInfo/AuthorInfo.php");
Notes
There appears to be a typo in AuthorInfo.php
which causes the incorrect path to be created for the javascript and therefore fails:
Linje 6:
$wfAuthorInfoPath = WPI_URL . "/extensions/AuthorInfo";
Burde være:
$wfAuthorInfoPath = $WPI_URL . "/extensions/AuthorInfo";