Recent changes transclusion: Difference between revisions

(Changed categories.)
(Changed categories.)
Line 69: Line 69:
[[en:{{FULLPAGENAME}}]]
[[en:{{FULLPAGENAME}}]]
[[de:Letzte Änderungen Transklusion]]
[[de:Letzte Änderungen Transklusion]]
[[Category:Organiz]]
 
[[Category:Organization]]
[[Category:Organization]]
[[Category:Portal]]
[[Category:Portal]]

Revision as of 09:43, 6 May 2022

It is possible to include the results of the "Recent changes" special page in a wiki page.

Adding the changelist to a page

To show the Recent changes list on any page in the wiki, you can simply transclude it by adding the following to your page source:

{{Special:RecentChanges}}

This will simply output the same content as is shown on the page Special:RecentChanges.

Recent changes included in a wiki page
Recent changes included in a wiki page

Limiting the displayed information

Sometimes, you might want to limit the information that is shown for recent changes.

Recent changes filtered view
Recent changes filtered view


To do this, you need to make two changes:

  1. Add a wrapper and filter paramters: Apply a wrapper around your transclusion for formatting purposes and add some filter parameters to limit the results in the list.
  2. Format the output: Remove the unnecessary information through some style adjustment in the page MediaWiki:Common.css (admin rights required)

Add a wrapper and filter parameters

You can set some parameters in the tag to filter some information. The following example shows up to the latest 100 changes in the last 7 days in the main namespace (Pages):

<div class="rcinclude">{{Special:RecentChanges|limit=100|days=7|namespace=0}}</div>

To show changes in additional namespaces, add them to the namepace parameter, separated by a semi-colon:

<div class="rcinclude">{{Special:RecentChanges|limit=100|days=7|namespace=0;3010}}</div>

Format the output

After adding the <div class="rinclude">...</div> wrapper around your transclusion content, you can now use this rinclude class to style the output and to hide some unnecessary information. This class is important, because it ensures that other pages in the wiki, such as the actual "Recent changes" special page or the version history pages in your wiki are not affected by these changes.

To filter out additional detail information — such as change in file size, markers, or direct links to the version comparison —, add the following to the page MediaWiki:Common.css (admin rights required):

/** custom formatting for recent changes that are included on a wiki page with a div-wrapper of css-class .rcinclude **/

/* first style declaration hides all unnecessary info such as bytes, direct links to differences, links related to user, and markers */
.rcinclude .mw-changeslist-line-inner-userTalkLink,
.rcinclude .mw-diff-bytes, 
.rcinclude .mw-tag-markers,
.rcinclude .mw-changeslist-legend,
.rcinclude .mw-changeslist-line-inner-rollback,
.rcinclude .mw-changeslist-links,
.rcinclude .mw-changeslist-separator,
.rcinclude.mw-rollback-link, 
.rcinclude .mw-rollback-link {display:none}

/* remove the "New" indicator from the time in front of each entry - they can only be removed together */
.rcinclude td.mw-enhanced-rc {display:none} 

/* increase spacing between entries */
.rcinclude .mw-changeslist-line {margin-bottom:0.6em} 

/* separate page title and user name */
.rcinclude .mw-title::after {content:" -"} 

/* make the day heading more compact */
.rcinclude .mw-changeslist h4 {font-size:0.95em; margin:1em 0 0.5em 0}  

/* remove unnecessary space in the expanded version rows */
.rcinclude tr.mw-rcfilters-ui-highlights-enhanced-nested td:nth-child(3){display:none}   

/** end recent changes formatting  **/

After saving these changes in MediaWiki:Common.css, you should now see the modified output of the transcluded content as shown in the previous screenshot.

If you still see the original formatting, you will need to clear the network cache:

  1. Right-click on the wiki page that contains the "Recent changes" transclusion.
  2. Click Inspect.
  3. Activate Disable cache
  4. Press F5 on your keyboard to refresh the page.
disable network cache
disable network cache



To submit feedback about this documentation, visit our community forum.

Discussions