Extension:ArticleCreationHelp
From MediaWiki.org
Article Creation Help Release status: experimental |
|||
---|---|---|---|
Implementation | User interface | ||
Description | Helps users learn to create new articles effectively; provides popups over red links and an article creation landing page. | ||
Author(s) | Andrew Green (AndrewRussellGreentalk) | ||
Latest version | 0.1 | ||
MediaWiki | 1.21+ | ||
PHP | 5.3+ | ||
License | GNU General Public License 2.0 or later | ||
Download |
GitHub: Note: |
||
|
|||
Translate the ArticleCreationHelp extension if it is available at translatewiki.net |
|||
Check usage and version matrix; code metrics |
The ArticleCreationHelp extension helps users learn to create new articles effectively. It provides popups over red links and an article creation landing page.
Contents
Installation[edit | edit source]
- Download and extract the file(s) in a directory called
ArticleCreationHelp
in yourextensions/
folder. If you're a developer and this extension is in a Git repository, then instead you should clone the repository. - Add the following code at the bottom of your LocalSettings.php:
require_once "$IP/extensions/ArticleCreationHelp/ArticleCreationHelp.php";
- Done! Navigate to "Special:Version" on your wiki to verify that the extension is successfully installed.
Dependencies[edit | edit source]
Appropriateness for Various Mediawiki Configurations[edit | edit source]
The behaviour of this extension is appropriate for wikis where users must log in to create articles (like on Wikipedia). It hasn't yet been adapted for other possible MediaWiki configurations.
Documentation[edit | edit source]
See this document for graphs of this workflow and a summary of related issues.
Git Repository[edit | edit source]
Some rough bits of code are here:
https://github.com/AndrewGreen/mediawiki-extensions-ArticleCreationHelp
Changes[edit | edit source]
2013-09-10[edit | edit source]
- Improved separation of concerns and use of Javascript objects in
ext.articlecreationhelp.js
. - HTML generation via Javascript templates, so the code's easier to read.
- Uses a new proposed API for modifying guided tours, described here.
- A link to more information in the second guider for anonymous users.
- Error handling on the Special Page.
- Improved interaction for guiders that appear when the user hovers over a red link without clicking.
- Client-side logging with the EventLogging extension.