Extension:UIFeedback
Appearance
A request to archive this extension has been made on Phabricator. See T423505 for the archival request and the rationale for the request, and to leave comments about the request. |
Release status: beta |
|
|---|---|
| Implementation | User interface, Database, Special page, Notify |
| Description | Allows users to send feedback about the user interface. |
| Author(s) | lbenedixtalk |
| Latest version | 0.5.0 |
| Compatibility policy | Snapshots releases along with MediaWiki. Master is not backward compatible. |
| Database changes | Yes |
|
|
| Licence | MIT License |
| Download | |
| Example | http://lbenedix.monoceres.uberspace.de/mediawiki/index.php?title=Main_Page |
| Translate the UIFeedback extension if it is available at translatewiki.net | |
| Issues | Open tasks · Report a bug |
The UIFeedback extension allows Users to give feedback about the user interface. It implements two different methods:
- a questionnaire with several questions about a found usability-flaw
- a JavaScript-based screenshot-renderer where a user can highlight and blackout areas
The Renderer is based on the html2canvas-library by Niklas von Hertzen.
Installation
[edit]- Download and move the extracted
UIFeedbackfolder to yourextensions/directory.
Developers and code contributors should install the extension from Git instead, using:cd extensions/ git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/UIFeedback
- Add the following code at the bottom of your LocalSettings.php file:
wfLoadExtension( 'UIFeedback' );
Done – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.
Configuration
[edit]The feedback method is chosen randomly by the JavaScript code. If you want to set it to use the screenshot method only you have to set 'var use_html2canvas = true;' in resources/ext.uiFeedback.js. If you only want the questionnaire method to 'var use_html2canvas = false'
