Extension:ArticleToCategory2
|
Article To Category 2 Release status: beta |
|||
|---|---|---|---|
![]() |
|||
| Implementation | Page action | ||
| Description | Adds an inputbox to each category page. The content of new page will contain "[[category:]]" automatically. See doc. for optional features. | ||
| Author(s) | (MikaelLindmarktalk) | ||
| Last version | 1.0 (15 March 2011) | ||
| MediaWiki | 1.13+ | ||
| License | GNU General Public License 3.0 | ||
| Download |
SVN [?]:
|
||
|
|||
|
|||
| Check usage and version matrix; To Category 2 stats | |||
Contents |
What can this extension do?[edit]
Article To Category 2 is based on the Add Article to Category extension by BiGreat (Liang Chen). It adds an inputbox to each category page. The content of new page will contain "[[Category:]]" automatically.[1] See section Configuration parameters for optional behavior. Suggested changes and additions (exclude categories, i18n localisation, adding category, etc) by Julien Devincre and Cynthia Mattingly on the Extension talk:Add Article to Category is included.
Installation instructions[edit]
Create a subdirectory in your extensions directory:
cd /your/wiki/extensions mkdir ArticleToCategory2
Download the extension and its dependencies using subversion (or use the info box on the right side of this page):
cd /your/wiki/extensions/ArticleToCategory2 svn checkout http://svn.wikimedia.org/svnroot/mediawiki/trunk/extensions/ArticleToCategory2/ArticleToCategory2.php svn checkout http://svn.wikimedia.org/svnroot/mediawiki/trunk/extensions/ArticleToCategory2/ArticleToCategory2.i18n.php
Add the following to LocalSettings.php:
require_once("$IP/extensions/ArticleToCategory2/ArticleToCategory2.php"); $wgarticletocategory2ConfigBlacklist=false; $wgGroupPermissions['*']['ArticleToCategory2'] = true; $wgGroupPermissions['*']['ArticleToCategory2AddCat'] = false;
Configuration parameters[edit]
$wgGroupPermissions['*']['ArticleToCategory2AddCat'][edit]
Set this flag to true and a second input box will be added, where the users may add categories into categories.
$wgarticletocategory2ConfigBlacklist[edit]
Set this flag to true to enable the category blacklist in "MediaWiki:Add Article to Category 2 excluded categories" page (you need to create this page first). Usage (example):
== Excluded Categories from Add To Article 2 Extension == ;My Excluded category 1 ;My Excluded category 2 ;Another one
If you don't like the name of this page, you can replace it by changing the following line in the GetExcludedCategories() function :
$specialcatpage='Add Article to Category 2 excluded categories';
See also[edit]
Notes[edit]
- ↑ The text (i.e "Category" in English) depends on what language the Mediwiki is using.
