Index: trunk/extensions/ApiSandbox/SpecialApiSandbox.php |
— | — | @@ -23,7 +23,6 @@ |
24 | 24 | } |
25 | 25 | |
26 | 26 | $this->setHeaders(); |
27 | | - $out->setPageTitle( wfMessage( 'apisb-title' )->parse() ); |
28 | 27 | $out->addModules( 'ext.apiSandbox' ); |
29 | 28 | |
30 | 29 | $out->addHTML( '<noscript>' . wfMessage( 'apisb-no-js' )->escaped() . '</noscript> |
Index: trunk/extensions/ApiSandbox/ApiSandbox.i18n.php |
— | — | @@ -4,7 +4,7 @@ |
5 | 5 | |
6 | 6 | $messages['en'] = array( |
7 | 7 | 'apisb-desc' => 'Allows to debug [http://www.mediawiki.org/wiki/API MediaWiki API] calls from browser', |
8 | | - 'apisb-title' => 'API sandbox', |
| 8 | + 'apisandbox' => 'API sandbox', |
9 | 9 | 'apisb-no-js' => "'''Error''': this feature requires JavaScript.", |
10 | 10 | 'apisb-intro' => 'Blah blah intro, dude!', |
11 | 11 | 'apisb-api-disabled' => 'API is disabled on this site.', |
Index: trunk/extensions/ApiSandbox/ApiSandbox.php |
— | — | @@ -21,12 +21,11 @@ |
22 | 22 | $wgAutoloadClasses['SpecialApiSandbox'] = $dir . 'SpecialApiSandbox.php'; |
23 | 23 | |
24 | 24 | $wgSpecialPages['ApiSandbox'] = 'SpecialApiSandbox'; |
25 | | -$wgSpecialPageGroups['Gadgets'] = 'wiki'; |
| 25 | +$wgSpecialPageGroups['ApiSandbox'] = 'wiki'; |
26 | 26 | |
27 | 27 | $wgResourceModules['ext.apiSandbox'] = array( |
28 | 28 | 'scripts' => 'ext.apiSandbox.js', |
29 | 29 | 'styles' => 'ext.apiSandbox.css', |
30 | | - 'dependencies' => array( 'jquery.json' ), |
31 | 30 | 'localBasePath' => dirname( __FILE__ ), |
32 | 31 | 'remoteExtPath' => 'ApiSandbox', |
33 | 32 | 'messages' => array( 'apisb-loading', 'apisb-load-error', 'apisb-select-value' ), |