Extension:ShoutWiki API
Release status: beta |
|
|---|---|
| Implementation | API |
| Description | A collection of ShoutWiki-specific API modules |
| Author(s) | Jack Phoenix |
| Latest version | 0.5 (2015-04-17) |
| MediaWiki | 1.35.8+ |
| License | Creative Commons Zero v1.0 Universal |
| Download | |
| Example | ShoutWiki |
| Translate the ShoutWiki API extension if it is available at translatewiki.net | |
ShoutWiki API extension is a collection of ShoutWiki-specific API modules; as of 03:58, 30 May 2012 (CDT) it consists of only one module.
Installation[edit]
- Download and place the file(s) in a directory called
ShoutWikiAPIin yourextensions/folder. - Add the following code at the bottom of your
LocalSettings.php:wfLoadExtension( 'ShoutWikiAPI' );
Done – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.
Modules[edit]
listwikis[edit]
| listwikis | |
|---|---|
| The listwikis module allows to query the wiki_list database table (the one created and used by ShoutWiki's CreateWiki extension) for information about ShoutWiki's wikis. This module cannot be used as a generator. | |
| Prefix | |
| Required rights | staff |
| Post only? | Yes |
| Generated help | Current |
api.php?action=query&list=listwikis— get a list of all wikis (in practise it gets the list in groups of 100 wikis per group)api.php?action=query&list=listwikis&swdeleted=1— also show deleted wikisapi.php?action=query&list=listwikis&swwid=177— show only information about the wiki with the ID number 177api.php?action=query&list=listwikis&swfrom=100&swto=150— show the wikis with IDs from 100 to 150api.php?action=query&list=listwikis&swfrom=10000&swto=15000&swlang=de— show the German (language code de) wikis that have an ID number between 10000 and 15000api.php?action=query&list=listwikis&swcountonly=1— show only the amount of wikis and nothing else (equivalent to the SQL query SELECT COUNT(*) FROM wiki_list WHERE wl_deleted = 0;)api.php?action=query&list=listwikis&swdeleted=1&swcountonly=1— show total amount of wikis, including deleted ones, and nothing else (equivalent to the SQL query SELECT COUNT(*) FROM wiki_list;)
