Merge "Use Linker::link() instead of Linker::linkKnown() when having options"
[lhc/web/wiklou.git] / includes / api / ApiEditPage.php
1 <?php
2 /**
3 *
4 *
5 * Created on August 16, 2007
6 *
7 * Copyright © 2007 Iker Labarga "<Firstname><Lastname>@gmail.com"
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 * http://www.gnu.org/copyleft/gpl.html
23 *
24 * @file
25 */
26
27 /**
28 * A module that allows for editing and creating pages.
29 *
30 * Currently, this wraps around the EditPage class in an ugly way,
31 * EditPage.php should be rewritten to provide a cleaner interface
32 * @ingroup API
33 */
34 class ApiEditPage extends ApiBase {
35
36 public function __construct( $query, $moduleName ) {
37 parent::__construct( $query, $moduleName );
38 }
39
40 public function execute() {
41 $user = $this->getUser();
42 $params = $this->extractRequestParams();
43
44 if ( is_null( $params['text'] ) && is_null( $params['appendtext'] ) &&
45 is_null( $params['prependtext'] ) &&
46 $params['undo'] == 0 )
47 {
48 $this->dieUsageMsg( 'missingtext' );
49 }
50
51 $pageObj = $this->getTitleOrPageId( $params );
52 $titleObj = $pageObj->getTitle();
53 if ( $titleObj->isExternal() ) {
54 $this->dieUsageMsg( array( 'invalidtitle', $params['title'] ) );
55 }
56
57 if ( !isset( $params['contentmodel'] ) || $params['contentmodel'] == '' ) {
58 $contentHandler = $pageObj->getContentHandler();
59 } else {
60 $contentHandler = ContentHandler::getForModelID( $params['contentmodel'] );
61 }
62
63 // @todo ask handler whether direct editing is supported at all! make allowFlatEdit() method or some such
64
65 if ( !isset( $params['contentformat'] ) || $params['contentformat'] == '' ) {
66 $params['contentformat'] = $contentHandler->getDefaultFormat();
67 }
68
69 $contentFormat = $params['contentformat'];
70
71 if ( !$contentHandler->isSupportedFormat( $contentFormat ) ) {
72 $name = $titleObj->getPrefixedDBkey();
73 $model = $contentHandler->getModelID();
74
75 $this->dieUsage( "The requested format $contentFormat is not supported for content model ".
76 " $model used by $name", 'badformat' );
77 }
78
79 $apiResult = $this->getResult();
80
81 if ( $params['redirect'] ) {
82 if ( $titleObj->isRedirect() ) {
83 $oldTitle = $titleObj;
84
85 $titles = Revision::newFromTitle( $oldTitle, false, Revision::READ_LATEST )
86 ->getContent( Revision::FOR_THIS_USER, $user )
87 ->getRedirectChain();
88 // array_shift( $titles );
89
90 $redirValues = array();
91 foreach ( $titles as $id => $newTitle ) {
92
93 if ( !isset( $titles[ $id - 1 ] ) ) {
94 $titles[ $id - 1 ] = $oldTitle;
95 }
96
97 $redirValues[] = array(
98 'from' => $titles[ $id - 1 ]->getPrefixedText(),
99 'to' => $newTitle->getPrefixedText()
100 );
101
102 $titleObj = $newTitle;
103 }
104
105 $apiResult->setIndexedTagName( $redirValues, 'r' );
106 $apiResult->addValue( null, 'redirects', $redirValues );
107 }
108 }
109
110 if ( $params['createonly'] && $titleObj->exists() ) {
111 $this->dieUsageMsg( 'createonly-exists' );
112 }
113 if ( $params['nocreate'] && !$titleObj->exists() ) {
114 $this->dieUsageMsg( 'nocreate-missing' );
115 }
116
117 // Now let's check whether we're even allowed to do this
118 $errors = $titleObj->getUserPermissionsErrors( 'edit', $user );
119 if ( !$titleObj->exists() ) {
120 $errors = array_merge( $errors, $titleObj->getUserPermissionsErrors( 'create', $user ) );
121 }
122 if ( count( $errors ) ) {
123 $this->dieUsageMsg( $errors[0] );
124 }
125
126 $toMD5 = $params['text'];
127 if ( !is_null( $params['appendtext'] ) || !is_null( $params['prependtext'] ) )
128 {
129 $content = $pageObj->getContent();
130
131 if ( !$content ) {
132 if ( $titleObj->getNamespace() == NS_MEDIAWIKI ) {
133 # If this is a MediaWiki:x message, then load the messages
134 # and return the message value for x.
135 $text = $titleObj->getDefaultMessageText();
136 if ( $text === false ) {
137 $text = '';
138 }
139
140 try {
141 $content = ContentHandler::makeContent( $text, $this->getTitle() );
142 } catch ( MWContentSerializationException $ex ) {
143 $this->dieUsage( $ex->getMessage(), 'parseerror' );
144 return;
145 }
146 } else {
147 # Otherwise, make a new empty content.
148 $content = $contentHandler->makeEmptyContent();
149 }
150 }
151
152 // @todo: Add support for appending/prepending to the Content interface
153
154 if ( !( $content instanceof TextContent ) ) {
155 $mode = $contentHandler->getModelID();
156 $this->dieUsage( "Can't append to pages using content model $mode", 'appendnotsupported' );
157 }
158
159 if ( !is_null( $params['section'] ) ) {
160 if ( !$contentHandler->supportsSections() ) {
161 $modelName = $contentHandler->getModelID();
162 $this->dieUsage( "Sections are not supported for this content model: $modelName.", 'sectionsnotsupported' );
163 }
164
165 // Process the content for section edits
166 $section = intval( $params['section'] );
167 $content = $content->getSection( $section );
168
169 if ( !$content ) {
170 $this->dieUsage( "There is no section {$section}.", 'nosuchsection' );
171 }
172 }
173
174 if ( !$content ) {
175 $text = '';
176 } else {
177 $text = $content->serialize( $contentFormat );
178 }
179
180 $params['text'] = $params['prependtext'] . $text . $params['appendtext'];
181 $toMD5 = $params['prependtext'] . $params['appendtext'];
182 }
183
184 if ( $params['undo'] > 0 ) {
185 if ( $params['undoafter'] > 0 ) {
186 if ( $params['undo'] < $params['undoafter'] ) {
187 list( $params['undo'], $params['undoafter'] ) =
188 array( $params['undoafter'], $params['undo'] );
189 }
190 $undoafterRev = Revision::newFromID( $params['undoafter'] );
191 }
192 $undoRev = Revision::newFromID( $params['undo'] );
193 if ( is_null( $undoRev ) || $undoRev->isDeleted( Revision::DELETED_TEXT ) ) {
194 $this->dieUsageMsg( array( 'nosuchrevid', $params['undo'] ) );
195 }
196
197 if ( $params['undoafter'] == 0 ) {
198 $undoafterRev = $undoRev->getPrevious();
199 }
200 if ( is_null( $undoafterRev ) || $undoafterRev->isDeleted( Revision::DELETED_TEXT ) ) {
201 $this->dieUsageMsg( array( 'nosuchrevid', $params['undoafter'] ) );
202 }
203
204 if ( $undoRev->getPage() != $pageObj->getID() ) {
205 $this->dieUsageMsg( array( 'revwrongpage', $undoRev->getID(), $titleObj->getPrefixedText() ) );
206 }
207 if ( $undoafterRev->getPage() != $pageObj->getID() ) {
208 $this->dieUsageMsg( array( 'revwrongpage', $undoafterRev->getID(), $titleObj->getPrefixedText() ) );
209 }
210
211 $newContent = $contentHandler->getUndoContent( $pageObj->getRevision(), $undoRev, $undoafterRev );
212
213 if ( !$newContent ) {
214 $this->dieUsageMsg( 'undo-failure' );
215 }
216
217 $params['text'] = $newContent->serialize( $params['contentformat'] );
218
219 // If no summary was given and we only undid one rev,
220 // use an autosummary
221 if ( is_null( $params['summary'] ) && $titleObj->getNextRevisionID( $undoafterRev->getID() ) == $params['undo'] ) {
222 $params['summary'] = wfMessage( 'undo-summary', $params['undo'], $undoRev->getUserText() )->inContentLanguage()->text();
223 }
224 }
225
226 // See if the MD5 hash checks out
227 if ( !is_null( $params['md5'] ) && md5( $toMD5 ) !== $params['md5'] ) {
228 $this->dieUsageMsg( 'hashcheckfailed' );
229 }
230
231 // EditPage wants to parse its stuff from a WebRequest
232 // That interface kind of sucks, but it's workable
233 $requestArray = array(
234 'wpTextbox1' => $params['text'],
235 'format' => $contentFormat,
236 'model' => $contentHandler->getModelID(),
237 'wpEditToken' => $params['token'],
238 'wpIgnoreBlankSummary' => ''
239 );
240
241 if ( !is_null( $params['summary'] ) ) {
242 $requestArray['wpSummary'] = $params['summary'];
243 }
244
245 if ( !is_null( $params['sectiontitle'] ) ) {
246 $requestArray['wpSectionTitle'] = $params['sectiontitle'];
247 }
248
249 // Watch out for basetimestamp == ''
250 // wfTimestamp() treats it as NOW, almost certainly causing an edit conflict
251 if ( !is_null( $params['basetimestamp'] ) && $params['basetimestamp'] != '' ) {
252 $requestArray['wpEdittime'] = wfTimestamp( TS_MW, $params['basetimestamp'] );
253 } else {
254 $requestArray['wpEdittime'] = $pageObj->getTimestamp();
255 }
256
257 if ( !is_null( $params['starttimestamp'] ) && $params['starttimestamp'] != '' ) {
258 $requestArray['wpStarttime'] = wfTimestamp( TS_MW, $params['starttimestamp'] );
259 } else {
260 $requestArray['wpStarttime'] = wfTimestampNow(); // Fake wpStartime
261 }
262
263 if ( $params['minor'] || ( !$params['notminor'] && $user->getOption( 'minordefault' ) ) ) {
264 $requestArray['wpMinoredit'] = '';
265 }
266
267 if ( $params['recreate'] ) {
268 $requestArray['wpRecreate'] = '';
269 }
270
271 if ( !is_null( $params['section'] ) ) {
272 $section = intval( $params['section'] );
273 if ( $section == 0 && $params['section'] != '0' && $params['section'] != 'new' ) {
274 $this->dieUsage( "The section parameter must be set to an integer or 'new'", "invalidsection" );
275 }
276 $requestArray['wpSection'] = $params['section'];
277 } else {
278 $requestArray['wpSection'] = '';
279 }
280
281 $watch = $this->getWatchlistValue( $params['watchlist'], $titleObj );
282
283 // Deprecated parameters
284 if ( $params['watch'] ) {
285 $watch = true;
286 } elseif ( $params['unwatch'] ) {
287 $watch = false;
288 }
289
290 if ( $watch ) {
291 $requestArray['wpWatchthis'] = '';
292 }
293
294 global $wgTitle, $wgRequest;
295
296 $req = new DerivativeRequest( $this->getRequest(), $requestArray, true );
297
298 // Some functions depend on $wgTitle == $ep->mTitle
299 // TODO: Make them not or check if they still do
300 $wgTitle = $titleObj;
301
302 $articleObject = new Article( $titleObj );
303 $ep = new EditPage( $articleObject );
304
305 // allow editing of non-textual content.
306 $ep->allowNonTextContent = true;
307
308 $ep->setContextTitle( $titleObj );
309 $ep->importFormData( $req );
310
311 // Run hooks
312 // Handle APIEditBeforeSave parameters
313 $r = array();
314 if ( !wfRunHooks( 'APIEditBeforeSave', array( $ep, $ep->textbox1, &$r ) ) ) {
315 if ( count( $r ) ) {
316 $r['result'] = 'Failure';
317 $apiResult->addValue( null, $this->getModuleName(), $r );
318 return;
319 } else {
320 $this->dieUsageMsg( 'hookaborted' );
321 }
322 }
323
324 // Do the actual save
325 $oldRevId = $articleObject->getRevIdFetched();
326 $result = null;
327 // Fake $wgRequest for some hooks inside EditPage
328 // @todo FIXME: This interface SUCKS
329 $oldRequest = $wgRequest;
330 $wgRequest = $req;
331
332 $status = $ep->internalAttemptSave( $result, $user->isAllowed( 'bot' ) && $params['bot'] );
333 $wgRequest = $oldRequest;
334 global $wgMaxArticleSize;
335
336 switch( $status->value ) {
337 case EditPage::AS_HOOK_ERROR:
338 case EditPage::AS_HOOK_ERROR_EXPECTED:
339 $this->dieUsageMsg( 'hookaborted' );
340
341 case EditPage::AS_PARSE_ERROR:
342 $this->dieUsage( $status->getMessage(), 'parseerror' );
343
344 case EditPage::AS_IMAGE_REDIRECT_ANON:
345 $this->dieUsageMsg( 'noimageredirect-anon' );
346
347 case EditPage::AS_IMAGE_REDIRECT_LOGGED:
348 $this->dieUsageMsg( 'noimageredirect-logged' );
349
350 case EditPage::AS_SPAM_ERROR:
351 $this->dieUsageMsg( array( 'spamdetected', $result['spam'] ) );
352
353 case EditPage::AS_BLOCKED_PAGE_FOR_USER:
354 $this->dieUsageMsg( 'blockedtext' );
355
356 case EditPage::AS_MAX_ARTICLE_SIZE_EXCEEDED:
357 case EditPage::AS_CONTENT_TOO_BIG:
358 $this->dieUsageMsg( array( 'contenttoobig', $wgMaxArticleSize ) );
359
360 case EditPage::AS_READ_ONLY_PAGE_ANON:
361 $this->dieUsageMsg( 'noedit-anon' );
362
363 case EditPage::AS_READ_ONLY_PAGE_LOGGED:
364 $this->dieUsageMsg( 'noedit' );
365
366 case EditPage::AS_READ_ONLY_PAGE:
367 $this->dieReadOnly();
368
369 case EditPage::AS_RATE_LIMITED:
370 $this->dieUsageMsg( 'actionthrottledtext' );
371
372 case EditPage::AS_ARTICLE_WAS_DELETED:
373 $this->dieUsageMsg( 'wasdeleted' );
374
375 case EditPage::AS_NO_CREATE_PERMISSION:
376 $this->dieUsageMsg( 'nocreate-loggedin' );
377
378 case EditPage::AS_BLANK_ARTICLE:
379 $this->dieUsageMsg( 'blankpage' );
380
381 case EditPage::AS_CONFLICT_DETECTED:
382 $this->dieUsageMsg( 'editconflict' );
383
384 // case EditPage::AS_SUMMARY_NEEDED: Can't happen since we set wpIgnoreBlankSummary
385 case EditPage::AS_TEXTBOX_EMPTY:
386 $this->dieUsageMsg( 'emptynewsection' );
387
388 case EditPage::AS_SUCCESS_NEW_ARTICLE:
389 $r['new'] = '';
390
391 case EditPage::AS_SUCCESS_UPDATE:
392 $r['result'] = 'Success';
393 $r['pageid'] = intval( $titleObj->getArticleID() );
394 $r['title'] = $titleObj->getPrefixedText();
395 $r['contentmodel'] = $titleObj->getContentModel();
396 $newRevId = $articleObject->getLatest();
397 if ( $newRevId == $oldRevId ) {
398 $r['nochange'] = '';
399 } else {
400 $r['oldrevid'] = intval( $oldRevId );
401 $r['newrevid'] = intval( $newRevId );
402 $r['newtimestamp'] = wfTimestamp( TS_ISO_8601,
403 $pageObj->getTimestamp() );
404 }
405 break;
406
407 case EditPage::AS_SUMMARY_NEEDED:
408 $this->dieUsageMsg( 'summaryrequired' );
409
410 case EditPage::AS_END:
411 default:
412 // $status came from WikiPage::doEdit()
413 $errors = $status->getErrorsArray();
414 $this->dieUsageMsg( $errors[0] ); // TODO: Add new errors to message map
415 break;
416 }
417 $apiResult->addValue( null, $this->getModuleName(), $r );
418 }
419
420 public function mustBePosted() {
421 return true;
422 }
423
424 public function isWriteMode() {
425 return true;
426 }
427
428 public function getDescription() {
429 return 'Create and edit pages.';
430 }
431
432 public function getPossibleErrors() {
433 global $wgMaxArticleSize;
434
435 return array_merge( parent::getPossibleErrors(),
436 $this->getTitleOrPageIdErrorMessage(),
437 array(
438 array( 'missingtext' ),
439 array( 'createonly-exists' ),
440 array( 'nocreate-missing' ),
441 array( 'nosuchrevid', 'undo' ),
442 array( 'nosuchrevid', 'undoafter' ),
443 array( 'revwrongpage', 'id', 'text' ),
444 array( 'undo-failure' ),
445 array( 'hashcheckfailed' ),
446 array( 'hookaborted' ),
447 array( 'code' => 'parseerror', 'info' => 'Failed to parse the given text.' ),
448 array( 'noimageredirect-anon' ),
449 array( 'noimageredirect-logged' ),
450 array( 'spamdetected', 'spam' ),
451 array( 'summaryrequired' ),
452 array( 'blockedtext' ),
453 array( 'contenttoobig', $wgMaxArticleSize ),
454 array( 'noedit-anon' ),
455 array( 'noedit' ),
456 array( 'actionthrottledtext' ),
457 array( 'wasdeleted' ),
458 array( 'nocreate-loggedin' ),
459 array( 'blankpage' ),
460 array( 'editconflict' ),
461 array( 'emptynewsection' ),
462 array( 'unknownerror', 'retval' ),
463 array( 'code' => 'nosuchsection', 'info' => 'There is no section section.' ),
464 array( 'code' => 'invalidsection', 'info' => 'The section parameter must be set to an integer or \'new\'' ),
465 array( 'code' => 'sectionsnotsupported', 'info' => 'Sections are not supported for this type of page.' ),
466 array( 'code' => 'editnotsupported', 'info' => 'Editing of this type of page is not supported using '
467 . 'the text based edit API.' ),
468 array( 'code' => 'appendnotsupported', 'info' => 'This type of page can not be edited by appending '
469 . 'or prepending text.' ),
470 array( 'code' => 'badformat', 'info' => 'The requested serialization format can not be applied to '
471 . 'the page\'s content model' ),
472 array( 'customcssprotected' ),
473 array( 'customjsprotected' ),
474 )
475 );
476 }
477
478 public function getAllowedParams() {
479 return array(
480 'title' => array(
481 ApiBase::PARAM_TYPE => 'string',
482 ),
483 'pageid' => array(
484 ApiBase::PARAM_TYPE => 'integer',
485 ),
486 'section' => null,
487 'sectiontitle' => array(
488 ApiBase::PARAM_TYPE => 'string',
489 ApiBase::PARAM_REQUIRED => false,
490 ),
491 'text' => null,
492 'token' => array(
493 ApiBase::PARAM_TYPE => 'string',
494 ApiBase::PARAM_REQUIRED => true
495 ),
496 'summary' => null,
497 'minor' => false,
498 'notminor' => false,
499 'bot' => false,
500 'basetimestamp' => null,
501 'starttimestamp' => null,
502 'recreate' => false,
503 'createonly' => false,
504 'nocreate' => false,
505 'watch' => array(
506 ApiBase::PARAM_DFLT => false,
507 ApiBase::PARAM_DEPRECATED => true,
508 ),
509 'unwatch' => array(
510 ApiBase::PARAM_DFLT => false,
511 ApiBase::PARAM_DEPRECATED => true,
512 ),
513 'watchlist' => array(
514 ApiBase::PARAM_DFLT => 'preferences',
515 ApiBase::PARAM_TYPE => array(
516 'watch',
517 'unwatch',
518 'preferences',
519 'nochange'
520 ),
521 ),
522 'md5' => null,
523 'prependtext' => null,
524 'appendtext' => null,
525 'undo' => array(
526 ApiBase::PARAM_TYPE => 'integer'
527 ),
528 'undoafter' => array(
529 ApiBase::PARAM_TYPE => 'integer'
530 ),
531 'redirect' => array(
532 ApiBase::PARAM_TYPE => 'boolean',
533 ApiBase::PARAM_DFLT => false,
534 ),
535 'contentformat' => array(
536 ApiBase::PARAM_TYPE => ContentHandler::getAllContentFormats(),
537 ),
538 'contentmodel' => array(
539 ApiBase::PARAM_TYPE => ContentHandler::getContentModels(),
540 )
541 );
542 }
543
544 public function getParamDescription() {
545 $p = $this->getModulePrefix();
546 return array(
547 'title' => "Title of the page you want to edit. Cannot be used together with {$p}pageid",
548 'pageid' => "Page ID of the page you want to edit. Cannot be used together with {$p}title",
549 'section' => 'Section number. 0 for the top section, \'new\' for a new section',
550 'sectiontitle' => 'The title for a new section',
551 'text' => 'Page content',
552 'token' => array( 'Edit token. You can get one of these through prop=info.',
553 "The token should always be sent as the last parameter, or at least, after the {$p}text parameter"
554 ),
555 'summary' => "Edit summary. Also section title when {$p}section=new and {$p}sectiontitle is not set",
556 'minor' => 'Minor edit',
557 'notminor' => 'Non-minor edit',
558 'bot' => 'Mark this edit as bot',
559 'basetimestamp' => array( 'Timestamp of the base revision (obtained through prop=revisions&rvprop=timestamp).',
560 'Used to detect edit conflicts; leave unset to ignore conflicts'
561 ),
562 'starttimestamp' => array( 'Timestamp when you obtained the edit token.',
563 'Used to detect edit conflicts; leave unset to ignore conflicts'
564 ),
565 'recreate' => 'Override any errors about the article having been deleted in the meantime',
566 'createonly' => 'Don\'t edit the page if it exists already',
567 'nocreate' => 'Throw an error if the page doesn\'t exist',
568 'watch' => 'Add the page to your watchlist',
569 'unwatch' => 'Remove the page from your watchlist',
570 'watchlist' => 'Unconditionally add or remove the page from your watchlist, use preferences or do not change watch',
571 'md5' => array( "The MD5 hash of the {$p}text parameter, or the {$p}prependtext and {$p}appendtext parameters concatenated.",
572 'If set, the edit won\'t be done unless the hash is correct' ),
573 'prependtext' => "Add this text to the beginning of the page. Overrides {$p}text",
574 'appendtext' => array( "Add this text to the end of the page. Overrides {$p}text.",
575 "Use {$p}section=new to append a new section" ),
576 'undo' => "Undo this revision. Overrides {$p}text, {$p}prependtext and {$p}appendtext",
577 'undoafter' => 'Undo all revisions from undo to this one. If not set, just undo one revision',
578 'redirect' => 'Automatically resolve redirects',
579 'contentformat' => 'Content serialization format used for the input text',
580 'contentmodel' => 'Content model of the new content',
581 );
582 }
583
584 public function getResultProperties() {
585 return array(
586 '' => array(
587 'new' => 'boolean',
588 'result' => array(
589 ApiBase::PROP_TYPE => array(
590 'Success',
591 'Failure'
592 ),
593 ),
594 'pageid' => array(
595 ApiBase::PROP_TYPE => 'integer',
596 ApiBase::PROP_NULLABLE => true
597 ),
598 'title' => array(
599 ApiBase::PROP_TYPE => 'string',
600 ApiBase::PROP_NULLABLE => true
601 ),
602 'nochange' => 'boolean',
603 'oldrevid' => array(
604 ApiBase::PROP_TYPE => 'integer',
605 ApiBase::PROP_NULLABLE => true
606 ),
607 'newrevid' => array(
608 ApiBase::PROP_TYPE => 'integer',
609 ApiBase::PROP_NULLABLE => true
610 ),
611 'newtimestamp' => array(
612 ApiBase::PROP_TYPE => 'string',
613 ApiBase::PROP_NULLABLE => true
614 )
615 )
616 );
617 }
618
619 public function needsToken() {
620 return true;
621 }
622
623 public function getTokenSalt() {
624 return '';
625 }
626
627 public function getExamples() {
628 return array(
629
630 'api.php?action=edit&title=Test&summary=test%20summary&text=article%20content&basetimestamp=20070824123454&token=%2B\\'
631 => 'Edit a page (anonymous user)',
632
633 'api.php?action=edit&title=Test&summary=NOTOC&minor=&prependtext=__NOTOC__%0A&basetimestamp=20070824123454&token=%2B\\'
634 => 'Prepend __NOTOC__ to a page (anonymous user)',
635 'api.php?action=edit&title=Test&undo=13585&undoafter=13579&basetimestamp=20070824123454&token=%2B\\'
636 => 'Undo r13579 through r13585 with autosummary (anonymous user)',
637 );
638 }
639
640 public function getHelpUrls() {
641 return 'https://www.mediawiki.org/wiki/API:Edit';
642 }
643
644 public function getVersion() {
645 return __CLASS__ . ': $Id$';
646 }
647 }