diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2015-12-20 09:00:55 +0100 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2015-12-20 09:00:55 +0100 |
commit | a2190ac74dd4d7080b12bab90e552d7aa81209ef (patch) | |
tree | 8b31f38de9882d18df54cf8d9e0de74167a094eb /includes/api/ApiQuery.php | |
parent | 15e69f7b20b6596b9148030acce5b59993b95a45 (diff) | |
parent | 257401d8b2cf661adf36c84b0e3fd1cf85e33c22 (diff) |
Merge branch 'mw-1.26'
Diffstat (limited to 'includes/api/ApiQuery.php')
-rw-r--r-- | includes/api/ApiQuery.php | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/includes/api/ApiQuery.php b/includes/api/ApiQuery.php index bfe32052..5378e925 100644 --- a/includes/api/ApiQuery.php +++ b/includes/api/ApiQuery.php @@ -292,7 +292,7 @@ class ApiQuery extends ApiBase { // Write the continuation data into the result $this->setContinuationManager( null ); - if ( $this->mParams['continue'] === null ) { + if ( $this->mParams['rawcontinue'] ) { $data = $continuationManager->getRawContinuation(); if ( $data ) { $this->getResult()->addValue( null, 'query-continue', $data, @@ -302,15 +302,14 @@ class ApiQuery extends ApiBase { $continuationManager->setContinuationIntoResult( $this->getResult() ); } + /// @todo: Remove this after a suitable period of time. When REL1_26 is cut, if not before. if ( $this->mParams['continue'] === null && !$this->mParams['rawcontinue'] && - $this->getResult()->getResultData( 'query-continue' ) !== null + $this->getResult()->getResultData( 'continue' ) !== null ) { - $this->logFeatureUsage( 'action=query&!rawcontinue&!continue' ); $this->setWarning( - 'Formatting of continuation data will be changing soon. ' . - 'To continue using the current formatting, use the \'rawcontinue\' parameter. ' . - 'To begin using the new format, pass an empty string for \'continue\' ' . - 'in the initial query.' + 'Formatting of continuation data has changed. ' . + 'To receive raw query-continue data, use the \'rawcontinue\' parameter. ' . + 'To silence this warning, pass an empty string for \'continue\' in the initial query.' ); } } @@ -407,8 +406,8 @@ class ApiQuery extends ApiBase { $pages[$fakeId] = $vals; } // Report any invalid titles - foreach ( $pageSet->getInvalidTitles() as $fakeId => $title ) { - $pages[$fakeId] = array( 'title' => $title, 'invalid' => true ); + foreach ( $pageSet->getInvalidTitlesAndReasons() as $fakeId => $data ) { + $pages[$fakeId] = $data + array( 'invalid' => true ); } // Report any missing page ids foreach ( $pageSet->getMissingPageIDs() as $pageid ) { @@ -485,7 +484,7 @@ class ApiQuery extends ApiBase { public function setGeneratorContinue( $module, $paramName, $paramValue ) { wfDeprecated( __METHOD__, '1.24' ); $this->getContinuationManager()->addGeneratorContinueParam( $module, $paramName, $paramValue ); - return $this->getParameter( 'continue' ) !== null; + return !$this->getParameter( 'rawcontinue' ); } /** @@ -549,7 +548,9 @@ class ApiQuery extends ApiBase { 'export' => false, 'exportnowrap' => false, 'iwurl' => false, - 'continue' => null, + 'continue' => array( + ApiBase::PARAM_HELP_MSG => 'api-help-param-continue', + ), 'rawcontinue' => false, ); if ( $flags ) { |