Module:ArgTracker: Revision history

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

13 July 2025

30 May 2025

  • curprev 14:2514:25, 30 May 2025 mw>Anterdc99 615 bytes +615 Created page with "local p = {} function p.main( f ) local args = f local frame = mw.getCurrentFrame() if f == frame then args = {} local parentArgs = frame:getParent().args local selfArgs = frame.args for k, v in pairs( parentArgs ) do args[ k ] = v end for k, v in pairs( selfArgs ) do if not args[ k ] then args[ k ] = v end end end local category = string.format( 'Category:%s', args[ '_cat' ] or '%s' ) local categories = {} for k, _ in pairs( args..."