Index: trunk/extensions/ApiExplorer/SpecialApiExplorer.php |
— | — | @@ -18,8 +18,7 @@ |
19 | 19 | $wgExtensionCredits['specialpage'][] = array( |
20 | 20 | 'path' => __FILE__, |
21 | 21 | 'name' => 'API Explorer', |
22 | | - //'url' => 'http://www.mediawiki.org/wiki/Extension:ApiExplorer', // TODO: Put into MediaWiki Extensions repo |
23 | | - 'description' => 'Extension for interactively viewing live API documentation', // TODO: Update this if we have forms for each function. |
| 22 | + 'url' => 'http://www.mediawiki.org/wiki/Extension:ApiExplorer', |
24 | 23 | 'descriptionmsg' => 'apiexplorer-desc', |
25 | 24 | 'author' => '[http://seancolombo.com Sean Colombo]' |
26 | 25 | ); |
Index: trunk/extensions/ApiExplorer/ApiExplorer.i18n.php |
— | — | @@ -13,14 +13,16 @@ |
14 | 14 | $messages['en'] = array( |
15 | 15 | 'apiexplorer' => 'API Explorer', |
16 | 16 | 'apiexplorer-desc' => 'Page for interactively exploring the documentation of the live version of the MediaWiki API running on this installation.', |
17 | | - 'apiexplorer-intro' => 'This page shows documentation for the current wiki\'s API. Please click on a function below to see more info about what parameters can be used in each call. For the general MediaWiki API documentation, see $1', |
| 17 | + 'apiexplorer-intro' => "This page shows documentation for the current wiki's API. Please click on a function below to see more info about what parameters can be used in each call. For the general MediaWiki API documentation, see $1", |
18 | 18 | |
19 | 19 | 'apiexplorer-loading' => 'Loading functions...', |
20 | 20 | ); |
21 | 21 | |
22 | 22 | /** Message documentation (Message documentation) |
| 23 | + * @author Sean Colombo |
23 | 24 | */ |
24 | 25 | $messages['qqq'] = array( |
25 | | - 'apiexplorer-desc' => "Description of the extension (for Special:Version, etc.).", |
26 | | - 'apiexplorer-intro' => "The intro at the top of the page to acquiant new users with what the page does." |
| 26 | + 'apiexplorer-desc' => 'Description of the extension (for Special:Version, etc.).', |
| 27 | + 'apiexplorer-intro' => 'The intro at the top of the page to acquiant new users with what the page does.', |
27 | 28 | ); |
| 29 | + |