Extension:ExtendedFilelist
If you need help, you should post there, and not on the talk page.
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 interface |
| Description | Provides a special page to interact with the wiki file repo |
| Author(s) | Hallo Welt! GmbH |
| Maintainer(s) | Hallo Welt! GmbH |
| Latest version | - |
| Compatibility policy | For every MediaWiki release that is a Long Term Support release there is a corresponding branch in the extension. |
| MediaWiki | 1.43 (LTS) |
|
|
| Licence | GNU General Public License 3.0 only |
| Download | |
| Translate the ExtendedFilelist extension if it is available at translatewiki.net | |
The BlueSpiceExtendedFilelist extension provides a special page to interact with the wiki file repo. It features a friendly user interface that allows sorting and filtering by a variety of fields.
Installation
[edit ]- Download and move the extracted
ExtendedFilelistfolder to yourextensions/directory.
Developers and code contributors should install the extension from Git instead, using:cdextensions/ gitclonehttps://gerrit.wikimedia.org/r/mediawiki/extensions/ExtendedFilelist - Add the following code at the bottom of your LocalSettings.php file:
wfLoadExtension( 'ExtendedFilelist' );
- Yes Done – Navigate to
Special:Versionon your wiki to verify that the extension is successfully installed.
Usage / features
[edit ]- ExtendedFileList contains a list with files.
- While typing a search string in the search filter, the number of listed files is reduced.
- If there are many results, these are shown on several pages. The maximum number of results per page can be set.
- Columns with different information can be toggled on and off. The columns can be (ascending/descending).
- Columns can be filtered.
- An upload button allows uploading files.
External links
[edit ]- Helpdesk: ExtendedFilelist
Installation
[edit ]- Add the repo url (https://github.com/wikimedia/mediawiki-extensions-ExtendedFilelist
.git) as a "vcs repository" and the package name (mediawiki/ExtendedFilelist) and version to the require section of your composer.local.json . Example:
{ "repositories":[ { "type":"vcs", "url":"https://github.com/wikimedia/mediawiki-extensions-ExtendedFilelist .git" } ], "require":{ "mediawiki/ExtendedFilelist":"ExtendedFilelist" } }
- Run the following command in your MediaWiki installation path
composer update --no-dev
- Add the following code at the bottom of your LocalSettings.php file:
wfLoadExtension( 'ExtendedFilelist' );
- Yes Done Navigate to Special:Version on your wiki to verify that the extension is successfully installed.