Main public logs
Appearance
Combined display of all available logs of Marxist Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 01:04, 13 March 2025 Thehighwayman talk contribs created page Module:File link (Created page with "-- This module provides a library for formatting file wikilinks. local yesno = require('Module:Yesno') local checkType = require('libraryUtil').checkType local p = {} function p._main(args) checkType('_main', 1, args, 'table') -- This is basically libraryUtil.checkTypeForNamedArg, but we are rolling our -- own function to get the right error level. local function checkArg(key, val, level) if type(val) ~= 'string' then error(string.format( "type error in...")
- 01:02, 13 March 2025 Thehighwayman talk contribs protected Module:Excerpt/portals [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 01:02, 13 March 2025 Thehighwayman talk contribs created page Module:Excerpt/portals (Created page with "-- ATTENTION ! -- This version of Excerpt is designed specifically for the portal namespace and its associated templates -- Prefer Module:Excerpt whenever possible -- Name of the category to track content pages with errors local errorCategory = "Articles with broken excerpts" -- Error messages local errorMessages = { prefix = "Excerpt error: ", noPage = "No page given", pageNotFound = "Page '%s' not found", leadEmpty = "Lead section is empty", sectionEmpty = "Sect...")
- 00:58, 13 March 2025 Thehighwayman talk contribs protected Module:Excerpt [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 00:58, 13 March 2025 Thehighwayman talk contribs created page Module:Excerpt (Created page with "-- Module:Excerpt implements the Excerpt template -- Documentation and master version: https://en.wikipedia.org/wiki/Module:Excerpt -- Authors: User:Sophivorus, User:Certes & others -- License: CC-BY-SA-3.0 local Transcluder = require( 'Module:Transcluder' ) local yesno = require( 'Module:Yesno' ) local ok, config = pcall( require, 'Module:Excerpt/config' ) if not ok then config = {} end local p = {} -- Helper function to get arguments local args function getArg( ke...")
- 00:57, 13 March 2025 Thehighwayman talk contribs protected Module:Essay sidebar [Edit=Allow only administrators] (indefinite) (hist)
- 00:56, 13 March 2025 Thehighwayman talk contribs created page Module:Essay sidebar (Created page with "-- This module implements collapsing a div for the "Last Updated" section. -- doesn't work yet. local p = {} function p.collapse(frame) local content = frame.args[1] or '' local isExpanded = frame.args.expanded == 'yes' local collapseClass = isExpanded and '' or 'mw-collapsed' local result = mw.html.create('div') result:addClass('lastupdate-container') result :wikitext('\'\'\'<span class="collapse-icon">▼</span> Last Updated\'\'\'')...")
- 00:55, 13 March 2025 Thehighwayman talk contribs protected Module:Documentation/styles.css [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 00:54, 13 March 2025 Thehighwayman talk contribs created page Module:Documentation/styles.css (Created page with "{{pp|small=yes}}: .documentation, .documentation-metadata { border: 1px solid #a2a9b1; background-color: #ecfcf4; clear: both; } .documentation { margin: 1em 0 0 0; padding: 1em; } .documentation-metadata { margin: 0.2em 0; same margin left-right as .documentation: font-style: italic; padding: 0.4em 1em; same padding left-right as .documentation: } .documentation-startbox { padding-bottom: 3px; border-bottom: 1px solid #aaa; margin-bott...")
- 00:53, 13 March 2025 Thehighwayman talk contribs protected Module:Documentation/config [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 00:53, 13 March 2025 Thehighwayman talk contribs created page Module:Documentation/config (Created page with "---------------------------------------------------------------------------------------------------- -- -- Configuration for Module:Documentation -- -- Here you can set the values of the parameters and messages used in Module:Documentation to -- localise it to your wiki and your language. Unless specified otherwise, values given here -- should be string values. ---------------------------------------------------------------------------------...")
- 00:52, 13 March 2025 Thehighwayman talk contribs protected Module:Documentation [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 00:52, 13 March 2025 Thehighwayman talk contribs created page Module:Documentation (Created page with "-- This module implements {{documentation}}. -- Get required modules. local getArgs = require('Module:Arguments').getArgs -- Get the config table. local cfg = mw.loadData('Module:Documentation/config') local p = {} -- Often-used functions. local ugsub = mw.ustring.gsub ---------------------------------------------------------------------------- -- Helper functions -- -- These are defined as local functions, but are made available in the p -- table for testing purpos...")
- 00:50, 13 March 2025 Thehighwayman talk contribs protected Module:Distinguish [Edit=Allow only administrators] (indefinite) (hist)
- 00:50, 13 March 2025 Thehighwayman talk contribs created page Module:Distinguish (Created page with "local mHatnote = require('Module:Hatnote') local mHatlist = require('Module:Hatnote list') local mArguments --initialize lazily local mTableTools --initialize lazily local libraryUtil = require('libraryUtil') local checkType = libraryUtil.checkType local p = {} function p.distinguish(frame) mArguments = require('Module:Arguments') mTableTools = require('Module:TableTools') local args = mArguments.getArgs(frame) local selfref = args.selfref local text = args.text a...")
- 00:50, 13 March 2025 Thehighwayman talk contribs protected Module:Date [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 00:49, 13 March 2025 Thehighwayman talk contribs created page Module:Date (Created page with "-- Date functions for use by other modules. -- I18N and time zones are not supported. local MINUS = '−' -- Unicode U+2212 MINUS SIGN local floor = math.floor local Date, DateDiff, diffmt -- forward declarations local uniq = { 'unique identifier' } local function is_date(t) -- The system used to make a date read-only means there is no unique -- metatable that is conveniently accessible to check. return type(t) == 'table' and t._id == uniq end local function is_...")
- 00:49, 13 March 2025 Thehighwayman talk contribs protected Module:Data [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 00:48, 13 March 2025 Thehighwayman talk contribs created page Module:Data (Created page with "local mt = {} function mt.__index(t, k) return function(frame) local data = mw.loadData(k) local i = 1 for _,v in ipairs(frame.args) do local ty = type(data) if ty ~= 'table' then local args = {} for j = 1, i - 1 do args[j] = frame.args[j] end if frame.args.softfail then return '<span class="error">Category:Pages with failed Module:Data lookupsError: Tried to read index "' .. mw.text.nowiki(v) .. '" of mw.loadData("' .. mw.text...")
- 00:47, 13 March 2025 Thehighwayman talk contribs protected Module:Color contrast/colors [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 00:44, 13 March 2025 Thehighwayman talk contribs created page Module:Color contrast/colors (Created page with "return { aliceblue = 0.92880068253475, antiquewhite = 0.84646951707754, aqua = 0.7874, aquamarine = 0.8078549208338, azure = 0.97265264954166, beige = 0.8988459998705, bisque = 0.80732327372979, black = 0, blanchedalmond = 0.85084439608156, blue = 0.0722, blueviolet = 0.12622014321946, brown = 0.098224287876511...")
- 00:43, 13 March 2025 Thehighwayman talk contribs protected Module:Color contrast [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 00:43, 13 March 2025 Thehighwayman talk contribs created page Module:Color contrast (Created page with "-- -- This module implements -- {{Color contrast ratio}} -- {{Greater color contrast ratio}} -- {{ColorToLum}} -- {{RGBColorToLum}} -- local p = {} local HTMLcolor = mw.loadData( 'Module:Color contrast/colors' ) local function sRGB (v) if (v <= 0.03928) then v = v / 12.92 else v = math.pow((v+0.055)/1.055, 2.4) end return v end local function rgbdec2lum(R, G, B) if ( 0 <= R and R < 256 and 0 <= G and G < 256 and 0 <= B and B < 256 ) then return 0.2126 *...")
- 00:42, 13 March 2025 Thehighwayman talk contribs protected Module:Collapsible list [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 00:42, 13 March 2025 Thehighwayman talk contribs created page Module:Collapsible list (Created page with "-- This module implements {{collapsible list}}. local p = {} local function gettitlestyletracking( ts ) if not ts then return '' end ts = mw.ustring.gsub(mw.ustring.lower(ts), '%s', '') local tsvals = mw.text.split(ts, ';') table.sort(tsvals) local skey = table.concat(tsvals,';') skey = mw.ustring.gsub(skey, '^;', '') skey = mw.text.encode(mw.text.encode(skey),'%c%[%]=') if (mw.ustring.match(';' .. ts, ';background:') or mw.ustring.match(';' .. ts, ';background...")
- 00:41, 13 March 2025 Thehighwayman talk contribs protected Module:Citation/CS1/styles.css [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 00:41, 13 March 2025 Thehighwayman talk contribs created page Module:Citation/CS1/styles.css (Created page with "Overrides Some wikis do not override user agent default styles for HTML <cite> and <q>, unlike en.wp. On en.wp, keep these the same as MediaWiki:Common.css: cite.citation { font-style: inherit; Remove italics for <cite>: } .citation q { quotes: '"' '"' "'" "'"; Straight quote marks for <q>: } /* ID and URL access Both core and Common.css have selector .mw-parser-output a[href$=".pdf"].external for PDF pages. All TemplateStyles pages are hoisted to...")
- 00:40, 13 March 2025 Thehighwayman talk contribs protected Module:Citation/CS1/Whitelist [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 00:40, 13 March 2025 Thehighwayman talk contribs created page Module:Citation/CS1/Whitelist (Created page with " --[[--------------------------< S U P P O R T E D P A R A M E T E R S >-------------------------------------- Because a steady-state signal conveys no useful information, whitelist.basic_arguments[] list items can have three values: true - these parameters are valid and supported parameters false - these parameters are deprecated but still supported nil - these parameters are no longer supported. remove entirely ]] local basic_arguments = { ['accessdate'] = tr...")
- 00:39, 13 March 2025 Thehighwayman talk contribs protected Module:Citation/CS1/Utilities [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 00:39, 13 March 2025 Thehighwayman talk contribs created page Module:Citation/CS1/Utilities (Created page with " local z = { error_categories = {}; -- for categorizing citations that contain errors error_ids = {}; message_tail = {}; maintenance_cats = {}; -- for categorizing citations that aren't erroneous per se, but could use a little work properties_cats = {}; -- for categorizing citations based on certain properties, language of source for instance }; --[[--------------------------< F O R W A R D D E C L A R A T I O N S >--------...")
- 00:38, 13 March 2025 Thehighwayman talk contribs protected Module:Citation/CS1/Identifiers [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 00:38, 13 March 2025 Thehighwayman talk contribs created page Module:Citation/CS1/Identifiers (Created page with " --[[--------------------------< F O R W A R D D E C L A R A T I O N S >-------------------------------------- ]] local has_accept_as_written, is_set, in_array, set_message, select_one, -- functions in Module:Citation/CS1/Utilities substitute, make_wikilink; local z; -- table of tables defined in Module:Citation/CS1/Utilities local cfg; -- table of configuration tables that are defined in Module:Citation/CS1/Configuration --[[...")
- 00:21, 13 March 2025 Thehighwayman talk contribs protected Module:Citation/CS1/Date validation [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 00:21, 13 March 2025 Thehighwayman talk contribs created page Module:Citation/CS1/Date validation (Created page with " --[[--------------------------< F O R W A R D D E C L A R A T I O N S >-------------------------------------- ]] local add_prop_cat, is_set, in_array, set_message, substitute, wrap_style; -- imported functions from selected Module:Citation/CS1/Utilities local cfg; -- table of tables imported from selected Module:Citation/CS1/Configuration --[[--------------------------< F I L E - S C O P E D E C L A R A T I O N S >-------------------------------...")
- 00:20, 13 March 2025 Thehighwayman talk contribs protected Module:Citation/CS1/Configuration [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 00:20, 13 March 2025 Thehighwayman talk contribs created page Module:Citation/CS1/Configuration (Created page with " --[[--------------------------< U N C A T E G O R I Z E D _ N A M E S P A C E S >------------------------------ List of namespaces that should not be included in citation error categories. Same as setting notracking = true by default. Note: Namespace names should use underscores instead of spaces. ]] local uncategorized_namespaces = { 'User', 'Talk', 'User_talk', 'Wikipedia_talk', 'File_talk', 'Template_talk', 'Help_talk', 'Category_talk', 'Portal_talk', 'Book_tal...")
- 00:18, 13 March 2025 Thehighwayman talk contribs protected Module:Citation/CS1/COinS [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 00:18, 13 March 2025 Thehighwayman talk contribs created page Module:Citation/CS1/COinS (Created page with " --[[--------------------------< F O R W A R D D E C L A R A T I O N S >-------------------------------------- ]] local is_set, in_array, remove_wiki_link, strip_apostrophe_markup; -- functions in Module:Citation/CS1/Utilities local cfg; -- table of configuration tables that are defined in Module:Citation/CS1/Configuration --[[--------------------------< M A K E _ C O I N S _ T I T L E >---------------------------------------------- Makes a tit...")
- 00:17, 13 March 2025 Thehighwayman talk contribs protected Module:Citation/CS1 [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 00:17, 13 March 2025 Thehighwayman talk contribs created page Module:Citation/CS1 (Created page with " require('Module:No globals'); --[[--------------------------< F O R W A R D D E C L A R A T I O N S >-------------------------------------- each of these counts against the Lua upvalue limit ]] local validation; -- functions in Module:Citation/CS1/Date_validation local utilities; -- functions in Module:Citation/CS1/Utilities local z ={}; -- table of tables in Module:Citation/CS1/Utilities local identifiers;...")
- 00:16, 13 March 2025 Thehighwayman talk contribs protected Module:Check for unknown parameters [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 00:15, 13 March 2025 Thehighwayman talk contribs created page Module:Check for unknown parameters (Created page with "-- This module may be used to compare the arguments passed to the parent -- with a list of arguments, returning a specified result if an argument is -- not on the list local p = {} local function trim(s) return s:match('^%s*(.-)%s*$') end local function isnotempty(s) return s and s:match('%S') end local function clean(text) -- Return text cleaned for display and truncated if too long. -- Strip markers are replaced with dummy text representing the original wikitext...")
- 00:13, 13 March 2025 Thehighwayman talk contribs protected Module:Category handler/shared [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 00:13, 13 March 2025 Thehighwayman talk contribs created page Module:Category handler/shared (Created page with "-- This module contains shared functions used by Module:Category handler -- and its submodules. local p = {} function p.matchesBlacklist(page, blacklist) for i, pattern in ipairs(blacklist) do local match = mw.ustring.match(page, pattern) if match then return true end end return false end function p.getParamMappings(useLoadData) local dataPage = 'Module:Namespace detect/data' if useLoadData then return mw.loadData(dataPage).mappings else return...")
- 00:12, 13 March 2025 Thehighwayman talk contribs protected Module:Category handler/data [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 00:12, 13 March 2025 Thehighwayman talk contribs created page Module:Category handler/data (Created page with "-- This module assembles data to be passed to Module:Category handler using -- mw.loadData. This includes the configuration data and whether the current -- page matches the title blacklist. local data = require('Module:Category handler/config') local mShared = require('Module:Category handler/shared') local blacklist = require('Module:Category handler/blacklist') local title = mw.title.getCurrentTitle() data.currentTitleMatchesBlacklist = mShared.matchesBlacklist(...")
- 00:10, 13 March 2025 Thehighwayman talk contribs protected Module:Category handler/config [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 00:10, 13 March 2025 Thehighwayman talk contribs created page Module:Category handler/config (Created page with "-------------------------------------------------------------------------------- -- Module:Category handler configuration data -- -- Language-specific parameter names and values can be set here. -- -- For blacklist config, see Module:Category handler/blacklist. -- -------------------------------------------------------------------------------- local cfg = {} -- Don't edit this line. ----------------------------...")
- 00:05, 13 March 2025 Thehighwayman talk contribs protected Module:Category handler/blacklist [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)