58 return $this->
msg(
'history-title', $this->
getTitle()->getPrefixedText() )->text();
63 $linkRenderer = MediaWikiServices::getInstance()->getLinkRenderer();
64 $subtitle = $linkRenderer->makeKnownLink(
66 $this->
msg(
'viewpagelogs' )->text(),
68 [
'page' => $this->
getTitle()->getPrefixedText() ]
76 . $this->
msg(
'word-separator' )->escaped()
77 . $this->
msg(
'parentheses' )
78 ->rawParams( $this->
getLanguage()->pipeList( $links ) )
81 return Html::rawElement(
'div', [
'class' =>
'mw-history-subtitle' ], $subtitle );
90 if ( !isset( $this->message ) ) {
92 $msgs = [
'cur',
'last',
'pipe-separator' ];
93 foreach ( $msgs as $msg ) {
94 $this->message[$msg] = $this->
msg( $msg )->escaped();
105 $year = $request->
getInt(
'year' );
106 $month = $request->
getInt(
'month' );
108 if ( $year !== 0 || $month !== 0 ) {
110 $year = MWTimestamp::getLocalInstance()->format(
'Y' );
112 if ( $month < 1 || $month > 12 ) {
117 $day = cal_days_in_month( CAL_GREGORIAN, $month, $year );
120 $month = str_pad( $month, 2,
"0", STR_PAD_LEFT );
121 $day = str_pad( $day, 2,
"0", STR_PAD_LEFT );
124 $before = $request->
getVal(
'date-range-to' );
126 $parts = explode(
'-', $before );
129 if ( count( $parts ) === 3 ) {
134 return $year && $month && $day ? $year .
'-' . $month .
'-' . $day :
'';
144 $config = $this->context->getConfig();
145 $services = MediaWikiServices::getInstance();
155 $hasUnseenRevisionMarkers = $config->get(
'ShowUpdatedMarker' ) &&
161 !$hasUnseenRevisionMarkers &&
162 $out->checkLastModified( $this->getWikiPage()->getTouched() )
169 # Fill in the file cache if not set already
172 if ( !
$cache->isCacheGood( ) ) {
173 ob_start( [ &
$cache,
'saveToFileCache' ] );
178 $out->setFeedAppendQuery(
'action=history' );
179 $out->addModules(
'mediawiki.action.history' );
180 $out->addModuleStyles( [
181 'mediawiki.interface.helpers.styles',
182 'mediawiki.action.history.styles',
183 'mediawiki.special.changeslist',
185 if ( $config->get(
'UseMediaWikiUIEverywhere' ) ) {
186 $out->addModuleStyles( [
187 'mediawiki.ui.input',
188 'mediawiki.ui.checkbox',
193 $feedType = $request->getRawVal(
'feed' );
194 if ( $feedType !==
null ) {
195 $this->
feed( $feedType );
200 'https://meta.wikimedia.org/wiki/Special:MyLanguage/Help:Page_history',
208 $out->setStatusCode( 404 );
210 $out->addWikiMsg(
'nohistory' );
214 # show deletion/move log if there is an entry
215 LogEventsList::showLogExtract(
217 [
'delete',
'move',
'protect' ],
221 'conds' => [
'log_action != ' .
$dbr->addQuotes(
'revision' ) ],
222 'showIfEmpty' =>
false,
223 'msgKey' => [
'moveddeleted-notice' ]
231 $tagFilter = $request->getVal(
'tagfilter' );
236 if ( $request->getBool(
'deleted' ) ) {
237 $conds = [
'rev_deleted != 0' ];
247 'default' => $this->
getTitle()->getPrefixedDBkey(),
252 'default' =>
'history',
257 'label' => $this->
msg(
'date-range-to' )->text(),
258 'name' =>
'date-range-to',
261 'label-message' =>
'tag-filter',
262 'type' =>
'tagfilter',
264 'name' =>
'tagfilter',
265 'value' => $tagFilter,
271 'label' => $this->
msg(
'history-show-deleted' )->text(),
272 'default' => $request->getBool(
'deleted' ),
282 ->setCollapsibleOptions(
true )
283 ->setId(
'mw-history-searchform' )
284 ->setSubmitTextMsg(
'historyaction-submit' )
285 ->setWrapperAttributes( [
'id' =>
'mw-history-search' ] )
286 ->setWrapperLegendMsg(
'history-fieldset-title' );
287 $htmlForm->loadData();
289 $out->addHTML( $htmlForm->getHTML(
false ) );
297 $dateComponents = explode(
'-', $ts );
298 if ( count( $dateComponents ) > 1 ) {
299 $y = $dateComponents[0];
300 $m = $dateComponents[1];
301 $d = $dateComponents[2];
314 $services->getLinkBatchFactory(),
318 $pager->getNavigationBar() .
320 $pager->getNavigationBar()
322 $out->preventClickjacking( $pager->getPreventClickjacking() );
345 if ( $direction === self::DIR_PREV ) {
346 list( $dirs, $oper ) = [
"ASC",
">=" ];
348 list( $dirs, $oper ) = [
"DESC",
"<=" ];
352 $offsets = [
"rev_timestamp $oper " .
$dbr->addQuotes(
$dbr->timestamp( $offset ) ) ];
359 $revQuery = MediaWikiServices::getInstance()->getRevisionStore()->getQueryInfo();
361 $revIndex =
$dbr->indexExists(
'revision',
'page_timestamp', __METHOD__ )
363 :
'rev_page_timestamp';
367 array_merge( [
'rev_page' => $page_id ], $offsets ),
370 'ORDER BY' =>
"rev_timestamp $dirs",
371 'USE INDEX' => [
'revision' => $revIndex ],
389 $feedClasses = $this->context->getConfig()->get(
'FeedClasses' );
391 $feed =
new $feedClasses[
$type](
392 $this->
getTitle()->getPrefixedText() .
' - ' .
393 $this->
msg(
'history-feed-title' )->inContentLanguage()->text(),
394 $this->
msg(
'history-feed-description' )->inContentLanguage()->text(),
395 $this->
getTitle()->getFullURL(
'action=history' )
400 $limit = $request->getInt(
'limit', 10 );
403 $this->context->getConfig()->get(
'FeedLimit' )
410 if ( $items->numRows() ) {
411 foreach ( $items as $row ) {
412 $feed->outItem( $this->
feedItem( $row ) );
422 $this->
msg(
'nohistory' )->inContentLanguage()->text(),
423 $this->
msg(
'history-feed-empty' )->inContentLanguage()->parseAsBlock(),
427 $this->
getTitle()->getTalkPage()->getFullURL()
440 $revisionStore = MediaWikiServices::getInstance()->getRevisionStore();
441 $rev = $revisionStore->newRevisionFromRow( $row, 0, $this->
getTitle() );
442 $prevRev = $revisionStore->getPreviousRevision( $rev );
443 $revComment = $rev->getComment() ===
null ? null : $rev->getComment()->text;
446 $prevRev ? $prevRev->getId() :
false,
448 $rev->getTimestamp(),
451 $revUserText = $rev->getUser() ? $rev->getUser()->getName() :
'';
452 if ( $revComment ==
'' ) {
453 $contLang = MediaWikiServices::getInstance()->getContentLanguage();
454 $title = $this->
msg(
'history-feed-item-nocomment',
456 $contLang->timeanddate( $rev->getTimestamp() ),
457 $contLang->date( $rev->getTimestamp() ),
458 $contLang->time( $rev->getTimestamp() )
459 )->inContentLanguage()->text();
462 $this->
msg(
'colon-separator' )->inContentLanguage()->text() .
463 FeedItem::stripComment( $revComment );
469 $this->
getTitle()->getFullURL(
'diff=' . $rev->getId() .
'&oldid=prev' ),
470 $rev->getTimestamp(),
472 $this->getTitle()->getTalkPage()->getFullURL()
WatchlistManager $watchlistManager
$wgSend404Code
Some web hosts attempt to rewrite all responses with a 404 (not found) status code,...
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
wfScript( $script='index')
Get the path to a specified script file, respecting file extensions; this is a wrapper around $wgScri...
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
getWikiPage()
Get a WikiPage object.
addHelpLink( $to, $overrideBaseUrl=false)
Adds help link with an icon via page indicators.
getTitle()
Shortcut to get the Title object from the page.
getContext()
Get the IContextSource in use here.
getOutput()
Get the OutputPage being used for this instance.
getUser()
Shortcut to get the User being used for this instance.
static exists(string $name)
Check if a given action is recognised, even if it's disabled.
getArticle()
Get a Article object.
msg( $key,... $params)
Get a Message object with context set Parameters are the same as wfMessage()
array $fields
The fields used to create the HTMLForm.
getLanguage()
Shortcut to get the user Language being used for this instance.
getRequest()
Get the WebRequest being used for this instance.
A base class for outputting syndication feeds (e.g.
static formatDiffRow( $title, $oldid, $newid, $timestamp, $comment, $actiontext='')
Really format a diff for the newsfeed.
static checkFeedOutput( $type, $output=null)
Check whether feeds can be used and that $type is a valid feed type.
Page view caching in the file system.
static useFileCache(IContextSource $context, $mode=self::MODE_NORMAL)
Check if pages can be cached for this request/user.
This class handles printing the history page for an article.
onView()
Print the history page for an article.
feed( $type)
Output a subscription feed listing recent edits to this page.
preCacheMessages()
As we use the same small set of messages in various methods and that they are called often,...
array $message
Array of message keys and strings.
getName()
Return the name of the action this object responds to.
requiresWrite()
Whether this action requires the wiki not to be locked.
getPageTitle()
Returns the name that goes in the <h1> page title.
fetchRevisions( $limit, $offset, $direction)
Fetch an array of revisions, specified by a given limit, offset and direction.
feedItem( $row)
Generate a FeedItem object from a given revision table row Borrows Recent Changes' feed generation fu...
getTimestampFromRequest(WebRequest $request)
getDescription()
Returns the description that goes below the <h1> tag.
requiresUnblock()
Whether this action can still be executed by a blocked user.
static getTitleFor( $name, $subpage=false, $fragment='')
Get a localised Title object for a specified special page name If you don't need a full Title object,...
The WebRequest class encapsulates getting at data passed in the URL or via a POSTed form stripping il...
getVal( $name, $default=null)
Fetch a text string and partially normalized it.
getInt( $name, $default=0)
Fetch an integer value from the input or return $default if not set.