MODULE:SearchParser: Revision history

Jump to navigation Jump to search

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.

26 August 2024

  • curprev 00:1400:14, 26 August 2024Admin talk contribs 1,795 bytes +1,795 Created page with "local p = {} local letterToNs = { Q = 0, P = 120, L = 146, E = 640, } local function strafter(arg, pre) local length = mw.ustring.len(pre) if mw.ustring.sub(arg, 1, length) == pre then return mw.ustring.sub(arg, length + 1) end return nil end local function booleanOutput(val) local map = {[true] = '1', [false] = ''} return map[val] end local function namespaceIdFromEntityId(entityId) if not mw.wikibase.isValidEntityId(entityId) then return nil e..."