56 return $this->
msg(
'history-title', $this->
getTitle()->getPrefixedText() )->text();
63 $this->
msg(
'viewpagelogs' )->escaped(),
65 [
'page' => $this->
getTitle()->getPrefixedText() ]
82 if ( !isset( $this->
message ) ) {
83 $msgs = [
'cur',
'last',
'pipe-separator' ];
84 foreach ( $msgs
as $msg ) {
85 $this->
message[$msg] = $this->
msg( $msg )->escaped();
100 if (
$out->checkLastModified( $this->page->getTouched() ) ) {
105 $config = $this->context->getConfig();
107 # Fill in the file cache if not set already
110 if ( !
$cache->isCacheGood( ) ) {
111 ob_start( [ &
$cache,
'saveToFileCache' ] );
116 $out->setFeedAppendQuery(
'action=history' );
117 $out->addModules(
'mediawiki.action.history' );
118 $out->addModuleStyles( [
119 'mediawiki.action.history.styles',
120 'mediawiki.special.changeslist',
122 if ( $config->get(
'UseMediaWikiUIEverywhere' ) ) {
124 $out->addModuleStyles( [
125 'mediawiki.ui.input',
126 'mediawiki.ui.checkbox',
131 $feedType =
$request->getVal(
'feed' );
133 $this->
feed( $feedType );
138 $this->
addHelpLink(
'//meta.wikimedia.org/wiki/Special:MyLanguage/Help:Page_history',
true );
141 if ( !$this->
page->exists() ) {
143 if ( $wgSend404Code ) {
144 $out->setStatusCode( 404 );
146 $out->addWikiMsg(
'nohistory' );
147 # show deletion/move log if there is an entry
150 [
'delete',
'move' ],
154 'conds' => [
"log_action != 'revision'" ],
155 'showIfEmpty' =>
false,
156 'msgKey' => [
'moveddeleted-notice' ]
167 $month =
$request->getInt(
'month' );
168 $tagFilter =
$request->getVal(
'tagfilter' );
174 if (
$request->getBool(
'deleted' ) ) {
175 $conds = [
'rev_deleted != 0' ];
179 if ( $this->
getUser()->isAllowed(
'deletedhistory' ) ) {
181 'deleted',
'mw-show-deleted-only',
$request->getBool(
'deleted' ) ) .
"\n";
187 $action = htmlspecialchars(
wfScript() );
189 "<form action=\"$action\" method=\"get\" id=\"mw-history-searchform\">" .
191 $this->
msg(
'history-fieldset-title' )->
text(),
193 [
'id' =>
'mw-history-search' ]
201 ( $tagSelector ? ( implode(
' ', $tagSelector ) .
' ' ) :
'' ) .
204 $this->
msg(
'historyaction-submit' )->
text(),
206 [
'mw-ui-progressive' ]
214 $pager =
new HistoryPager( $this, $year, $month, $tagFilter, $conds );
216 $pager->getNavigationBar() .
218 $pager->getNavigationBar()
220 $out->preventClickjacking( $pager->getPreventClickjacking() );
242 if ( $direction === self::DIR_PREV ) {
249 $offsets = [
"rev_timestamp $oper " .
$dbr->addQuotes(
$dbr->timestamp( $offset ) ) ];
254 $page_id = $this->
page->getId();
256 return $dbr->select(
'revision',
258 array_merge( [
'rev_page' => $page_id ], $offsets ),
260 [
'ORDER BY' =>
"rev_timestamp $dirs",
261 'USE INDEX' =>
'page_timestamp',
'LIMIT' =>
$limit ]
276 $feedClasses = $this->context->getConfig()->get(
'FeedClasses' );
278 $feed =
new $feedClasses[
$type](
279 $this->
getTitle()->getPrefixedText() .
' - ' .
280 $this->
msg(
'history-feed-title' )->inContentLanguage()->text(),
281 $this->
msg(
'history-feed-description' )->inContentLanguage()->text(),
282 $this->
getTitle()->getFullURL(
'action=history' )
290 $this->context->getConfig()->get(
'FeedLimit' )
297 if ( $items->numRows() ) {
298 foreach ( $items
as $row ) {
299 $feed->outItem( $this->
feedItem( $row ) );
309 $this->
msg(
'nohistory' )->inContentLanguage()->
text(),
310 $this->
msg(
'history-feed-empty' )->inContentLanguage()->parseAsBlock(),
314 $this->
getTitle()->getTalkPage()->getFullURL()
331 $this->
getTitle()->getPreviousRevisionID(
$rev->getId() ),
333 $rev->getTimestamp(),
336 if (
$rev->getComment() ==
'' ) {
338 $title = $this->
msg(
'history-feed-item-nocomment',
340 $wgContLang->timeanddate(
$rev->getTimestamp() ),
341 $wgContLang->date(
$rev->getTimestamp() ),
342 $wgContLang->time(
$rev->getTimestamp() ) )->inContentLanguage()->text();
345 $this->
msg(
'colon-separator' )->inContentLanguage()->text() .
352 $this->
getTitle()->getFullURL(
'diff=' .
$rev->getId() .
'&oldid=prev' ),
353 $rev->getTimestamp(),
355 $this->
getTitle()->getTalkPage()->getFullURL()
390 function __construct( $historyPage, $year =
'', $month =
'', $tagFilter =
'', $conds = [] ) {
391 parent::__construct( $historyPage->getContext() );
393 $this->tagFilter = $tagFilter;
401 return $this->historyPage->getArticle();
405 if ( $this->conds ) {
406 return 'history page filtered';
408 return 'history page unfiltered';
414 'tables' => [
'revision',
'user' ],
416 'conds' => array_merge(
419 'options' => [
'USE INDEX' => [
'revision' =>
'page_timestamp' ] ],
423 $queryInfo[
'tables'],
424 $queryInfo[
'fields'],
426 $queryInfo[
'join_conds'],
427 $queryInfo[
'options'],
430 Hooks::run(
'PageHistoryPager::getQueryInfo', [ &$this, &$queryInfo ] );
436 return 'rev_timestamp';
444 if ( $this->lastRow ) {
446 $firstInList = $this->counter == 1;
449 $notifTimestamp = $this->
getConfig()->get(
'ShowUpdatedMarker' )
454 $this->lastRow, $row, $notifTimestamp, $latest, $firstInList );
458 $this->lastRow = $row;
464 if ( !
Hooks::run(
'PageHistoryPager::doBatchLookups', [ $this, $this->mResult ] ) ) {
468 # Do a link batch query
469 $this->mResult->seek( 0 );
472 foreach ( $this->mResult
as $row ) {
473 if ( $row->rev_parent_id ) {
474 $revIds[] = $row->rev_parent_id;
476 if ( !is_null( $row->user_name ) ) {
479 }
else { #
for anons
or usernames
of imported revisions
486 $this->mResult->seek( 0 );
495 $this->lastRow =
false;
497 $this->oldIdChecked = 0;
499 $this->
getOutput()->wrapWikiMsg(
"<div class='mw-history-legend'>\n$1\n</div>",
'histlegend' );
501 'id' =>
'mw-history-compare' ] ) .
"\n";
507 $this->buttons =
'<div>';
508 $className =
'historysubmit mw-history-compareselectedversions-button';
509 $attrs = [
'class' => $className ]
517 if (
$user->isAllowed(
'deleterevision' ) ) {
518 $actionButtons .= $this->
getRevisionButton(
'revisiondelete',
'showhideselectedversions' );
520 if ( $this->showTagEditUI ) {
521 $actionButtons .= $this->
getRevisionButton(
'editchangetags',
'history-edit-tags' );
523 if ( $actionButtons ) {
524 $this->buttons .=
Xml::tags(
'div', [
'class' =>
525 'mw-history-revisionactions' ], $actionButtons );
532 $this->buttons .=
'</div>';
535 $s .=
'<ul id="pagehistory">' .
"\n";
542 # Note bug #20966, <button> is non-standard in IE<8
549 'class' =>
"historysubmit mw-history-$name-button",
557 if ( $this->lastRow ) {
559 $firstInList = $this->counter == 1;
560 if ( $this->mIsBackwards ) {
561 # Next row is unknown, but for UI reasons, probably exists if an offset has been specified
562 if ( $this->mOffset ==
'' ) {
568 # The next row is the past-the-end row
573 $notifTimestamp = $this->
getConfig()->get(
'ShowUpdatedMarker' )
578 $this->lastRow, $next, $notifTimestamp, $latest, $firstInList );
583 # Add second buttons only if there is more than one rev
600 # Disable submit button if history has 1 revision only
622 function historyLine( $row, $next, $notificationtimestamp =
false,
623 $latest =
false, $firstInList =
false ) {
627 if ( is_object( $next ) ) {
629 $prevRev->setTitle( $this->
getTitle() );
636 $curLastlinks = $curlink . $this->historyPage->message[
'pipe-separator'] . $lastlink;
639 [
'class' =>
'mw-history-histlinks' ],
640 $this->
msg(
'parentheses' )->rawParams( $curLastlinks )->escaped()
644 $s = $histLinks . $diffButtons;
651 $canRevDelete =
$user->isAllowed(
'deleterevision' );
654 if ( $canRevDelete || $this->showTagEditUI ) {
659 $del =
Xml::check(
'deleterevisions',
false, [
'disabled' =>
'disabled' ] );
662 $del =
Xml::check(
'showhiderevisions',
false,
663 [
'name' =>
'ids[' .
$rev->getId() .
']' ] );
666 } elseif (
$rev->getVisibility() &&
$user->isAllowed(
'deletedhistory' ) ) {
672 $query = [
'type' =>
'revision',
673 'target' => $this->
getTitle()->getPrefixedDBkey(),
'ids' =>
$rev->getId() ];
683 $dirmark =
$lang->getDirMark();
687 $s .=
" <span class='history-user'>" .
691 if (
$rev->isMinor() ) {
695 # Sometimes rev_len isn't populated
696 if (
$rev->getSize() !== null ) {
697 # Size is always public data
698 $prevSize = isset( $this->parentLens[$row->rev_parent_id] )
699 ? $this->parentLens[$row->rev_parent_id]
703 $s .=
' <span class="mw-changeslist-separator">. .</span> ' .
"$fSize $sDiff";
706 # Text following the character difference is added just before running hooks
709 if ( $notificationtimestamp && ( $row->rev_timestamp >= $notificationtimestamp ) ) {
710 $s2 .=
' <span class="updatedmarker">' . $this->
msg(
'updatedmarker' )->escaped() .
'</span>';
711 $classes[] =
'mw-history-line-updated';
716 # Rollback and undo links
717 if ( $prevRev && $this->
getTitle()->quickUserCan(
'edit',
$user ) ) {
718 if ( $latest && $this->
getTitle()->quickUserCan(
'rollback',
$user ) ) {
723 [
'verify',
'noBrackets' ]
725 if ( $rollbackLink ) {
727 $tools[] = $rollbackLink;
734 # Create undo tooltip for the first (=latest) line only
735 $undoTooltip = $latest
736 ? [
'title' => $this->
msg(
'tooltip-undo' )->text() ]
740 $this->
msg(
'editundo' )->escaped(),
744 'undoafter' => $prevRev->getId(),
745 'undo' =>
$rev->getId()
748 $tools[] =
"<span class=\"mw-history-undo\">{$undolink}</span>";
755 $s2 .=
' ' . $this->
msg(
'parentheses' )->rawParams(
$lang->pipeList( $tools ) )->escaped();
764 $classes = array_merge( $classes, $newClasses );
765 if ( $tagSummary !==
'' ) {
766 $s2 .=
" $tagSummary";
769 # Include separator between character difference and following text
771 $s .=
' <span class="mw-changeslist-separator">. .</span> ' . $s2;
774 Hooks::run(
'PageHistoryLineEnding', [ $this, &$row, &
$s, &$classes ] );
778 $attribs[
'class'] = implode(
' ', $classes );
792 $date = htmlspecialchars( $date );
797 [
'class' =>
'mw-changeslist-date' ],
798 [
'oldid' =>
$rev->getId() ]
804 $link =
"<span class=\"history-deleted\">$link</span>";
818 $cur = $this->historyPage->message[
'cur'];
828 'oldid' =>
$rev->getId()
844 $last = $this->historyPage->message[
'last'];
846 if ( $next === null ) {
847 # Probably no next row
851 if ( $next ===
'unknown' ) {
852 # Next row probably exists but is unknown, use an oldid=prev link
858 'diff' => $prevRev->getId(),
877 'diff' => $prevRev->getId(),
878 'oldid' => $next->rev_id
894 $radio = [
'type' =>
'radio',
'value' => $id ];
896 if ( $firstInList ) {
898 array_merge( $radio, [
899 'style' =>
'visibility:hidden',
901 'id' =>
'mw-oldid-null' ] )
903 $checkmark = [
'checked' =>
'checked' ];
905 # Check visibility of old revisions
907 $radio[
'disabled'] =
'disabled';
909 } elseif ( !$this->oldIdChecked ) {
910 $checkmark = [
'checked' =>
'checked' ];
911 $this->oldIdChecked = $id;
916 array_merge( $radio, $checkmark, [
918 'id' =>
"mw-oldid-$id" ] ) );
922 array_merge( $radio, $checkmark, [
924 'id' =>
"mw-diff-$id" ] ) );
926 return $first . $second;
Class for generating clickable toggle links for a list of checkboxes.
addHelpLink($to, $overrideBaseUrl=false)
Adds help link with an icon via page indicators.
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
static revComment(Revision $rev, $local=false, $isPublic=false)
Wrap and format the given revision's comment block, if the current user is allowed to view it...
wfGetDB($db, $groups=[], $wiki=false)
Get a Database object.
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out
getOutput()
Get the OutputPage being used for this instance.
null for the local wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query
getLanguage()
Get the Language object.
static checkFeedOutput($type)
Check whether feeds can be used and that $type is a valid feed type.
wfScript($script= 'index')
Get the path to a specified script file, respecting file extensions; this is a wrapper around $wgScri...
static element($element, $attribs=null, $contents= '', $allowShortTag=true)
Format an XML element with given attributes and, optionally, text content.
processing should stop and the error should be shown to the user * false
getTitle()
Shortcut to get the Title object from the page.
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...
static rawElement($element, $attribs=[], $contents= '')
Returns an HTML element in a string.
globals txt Globals are evil The original MediaWiki code relied on globals for processing context far too often MediaWiki development since then has been a story of slowly moving context out of global variables and into objects Storing processing context in object member variables allows those objects to be reused in a much more flexible way Consider the elegance of
database rows
static useFileCache(IContextSource $context, $mode=self::MODE_NORMAL)
Check if pages can be cached for this request/user.
if(!isset($args[0])) $lang
getUser()
Shortcut to get the User being used for this instance.
static formatRevisionSize($size)
static hidden($name, $value, array $attribs=[])
Convenience function to produce an input element with type=hidden.
Page view caching in the file system.
static exists($name)
Check if a given action is recognised, even if it's disabled.
static check($name, $checked=false, $attribs=[])
Convenience function to build an HTML checkbox.
when a variable name is used in a it is silently declared as a new local masking the global
static stripComment($text)
Quickie hack...
getTitle()
Get the Title object.
static tooltipAndAccesskeyAttribs($name, array $msgParams=[])
Returns the attributes for the tooltip and access key.
static showLogExtract(&$out, $types=[], $page= '', $user= '', $param=[])
Show log extract.
static getLocalInstance($ts=false)
Get a timestamp instance in the server local timezone ($wgLocaltimezone)
usually copyright or history_copyright This message must be in HTML not wikitext & $link
Class representing a list of titles The execute() method checks them all for existence and adds them ...
wfTimestamp($outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
static fieldset($legend=false, $content=false, $attribs=[])
Shortcut for creating fieldsets.
msg()
Get a Message object with context set Parameters are the same as wfMessage()
onView()
Print the history page for an article.
static openElement($element, $attribs=[])
Identical to rawElement(), but has no third parameter and omits the end tag (and the self-closing '/'...
preCacheMessages()
As we use the same small set of messages in various methods and that they are called often...
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a message
getConfig()
Get the Config object.
static dateMenu($year, $month)
static showCharacterDifference($old, $new, IContextSource $context=null)
Show formatted char difference.
getContext()
Get the base IContextSource object.
static revDeleteLinkDisabled($delete=true)
Creates a dead (show/hide) link for deleting revisions/log entries.
static selectFields()
Return the list of revision fields that should be selected to create a new revision.
const TS_MW
MediaWiki concatenated string timestamp (YYYYMMDDHHMMSS)
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses after processing & $attribs
namespace and then decline to actually register it file or subcat img or subcat $title
static linkKnown($target, $html=null, $customAttribs=[], $query=[], $options=[ 'known'])
Identical to link(), except $options defaults to 'known'.
getContext()
Get the IContextSource in use here.
static run($event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add text
presenting them properly to the user as errors is done by the caller return true use this to change the list i e etc $rev
A base class for basic support for outputting syndication feeds in RSS and other formats.
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
$page
Page on which we're performing the action.
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account $user
feedItem($row)
Generate a FeedItem object from a given revision table row Borrows Recent Changes' feed generation fu...
This class handles printing the history page for an article.
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
static tags($element, $attribs=null, $contents)
Same as Xml::element(), but does not escape contents.
static submitButton($contents, array $attrs, array $modifiers=[])
Returns an HTML link element in a string styled as a button (when $wgUseMediaWikiUIEverywhere is enab...
error also a ContextSource you ll probably need to make sure the header is varied on $request
Overloads the relevant methods of the real ResultsWrapper so it doesn't go anywhere near an actual da...
static generateRollback($rev, IContextSource $context=null, $options=[ 'verify'])
Generate a rollback link for a given revision.
array $message
Array of message keys and strings.
fetchRevisions($limit, $offset, $direction)
Fetch an array of revisions, specified by a given limit, offset and direction.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context the output can only depend on parameters provided to this hook not on global state indicating whether full HTML should be generated If generation of HTML may be but other information should still be present in the ParserOutput object to manipulate or replace but no entry for that model exists in $wgContentHandlers if desired whether it is OK to use $contentModel on $title Handler functions that modify $ok should generally return false to prevent further hooks from further modifying $ok inclusive $limit
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the local content language as $wgContLang
static flag($flag, IContextSource $context=null)
Make an "
" element for a given change flag.
static getParentLengths($db, array $revIds)
Do a batched query to get the parent revision lengths.
static checkLabel($label, $name, $id, $checked=false, $attribs=[])
Convenience function to build an HTML checkbox with a label.
static formatDiffRow($title, $oldid, $newid, $timestamp, $comment, $actiontext= '')
Really format a diff for the newsfeed.
feed($type)
Output a subscription feed listing recent edits to this page.
msg()
Get a Message object with context set Parameters are the same as wfMessage()
static userJoinCond()
Return the value of a select() JOIN conds array for the user table.
$wgSend404Code
Some web hosts attempt to rewrite all responses with a 404 (not found) status code, mangling or hiding MediaWiki's output.
getRequest()
Get the WebRequest being used for this instance.
static revUserTools($rev, $isPublic=false)
Generate a user tool link cluster if the current user is allowed to view it.
getWikiPage()
Get the WikiPage object.
static element($element, $attribs=[], $contents= '')
Identical to rawElement(), but HTML-escapes $contents (like Xml::element()).
static selectUserFields()
Return the list of user fields that should be selected from user table.
getUser()
Get the User object.
static revDeleteLink($query=[], $restricted=false, $delete=true)
Creates a (show/hide) link for deleting revisions/log entries.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached one of or reset my talk page
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached one of or reset my talk my contributions etc etc otherwise the built in rate limiting checks are if enabled allows for interception of redirect as a string mapping parameter names to values & $type
if the prop value should be in the metadata multi language array format
getOutput()
Get the OutputPage object.
Allows to change the fields on the form that will be generated $name