Index: trunk/phase3/includes/api/ApiLogin.php |
— | — | @@ -227,12 +227,11 @@ |
228 | 228 | |
229 | 229 | protected function getDescription() { |
230 | 230 | return array ( |
231 | | - 'This module is used to login and get the authentication tokens. ' . |
232 | | - 'In the event of a successful log-in, a cookie will be attached ' . |
233 | | - 'to your session. In the event of a failed log-in, you will not ' . |
234 | | - 'be able to attempt another log-in through this method for 60 ' . |
235 | | - 'seconds--this is to prevent its use in aiding automated password ' . |
236 | | - 'crackers.' |
| 231 | + 'This module is used to login and get the authentication tokens. ', |
| 232 | + 'In the event of a successful log-in, a cookie will be attached', |
| 233 | + 'to your session. In the event of a failed log-in, you will not ', |
| 234 | + 'be able to attempt another log-in through this method for 60 seconds.', |
| 235 | + 'This is to prevent password guessing by automated password crackers.' |
237 | 236 | ); |
238 | 237 | } |
239 | 238 | |
Index: trunk/phase3/includes/api/ApiMain.php |
— | — | @@ -322,14 +322,24 @@ |
323 | 323 | protected function getDescription() { |
324 | 324 | return array ( |
325 | 325 | '', |
326 | | - 'This API allows programs to access various functions of MediaWiki software.', |
327 | | - 'For more details see API Home Page @ http://www.mediawiki.org/wiki/API', |
| 326 | + '******************************************************************', |
| 327 | + '** **', |
| 328 | + '** This is an auto-generated MediaWiki API documentation page **', |
| 329 | + '** **', |
| 330 | + '** Documentation and Examples: **', |
| 331 | + '** http://www.mediawiki.org/wiki/API **', |
| 332 | + '** **', |
| 333 | + '******************************************************************', |
328 | 334 | '', |
329 | 335 | 'Status: ALPHA -- all features shown on this page should be working,', |
330 | 336 | ' but the API is still in active development, and may change at any time.', |
331 | 337 | ' Make sure you monitor changes to this page, wikitech-l mailing list,', |
332 | 338 | ' or the source code in the includes/api directory for any changes.', |
333 | | - '' |
| 339 | + '', |
| 340 | + 'Bugs & Requests: http://bugzilla.wikimedia.org/buglist.cgi?component=API&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&order=bugs.delta_ts', |
| 341 | + '', |
| 342 | + '', |
| 343 | + '', |
334 | 344 | ); |
335 | 345 | } |
336 | 346 | |
Index: trunk/phase3/includes/api/ApiFormatBase.php |
— | — | @@ -110,8 +110,8 @@ |
111 | 111 | <small> |
112 | 112 | You are looking at the HTML representation of the <?=$this->mFormat?> format.<br/> |
113 | 113 | HTML is good for debugging, but probably is not suitable for your application.<br/> |
114 | | -Please see "format" parameter documentation at the <a href='api.php'>API help</a> |
115 | | -for more information. |
| 114 | +See <a href='http://www.mediawiki.org/wiki/API'>complete documentation</a>, or |
| 115 | +<a href='api.php'>API help</a> for more information. |
116 | 116 | </small> |
117 | 117 | <?php |
118 | 118 | |