Main public logs
Jump to navigation
Jump to search
Combined display of all available logs of Zombie Panic! Official Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 18:49, 9 June 2025 Wuffesan talk contribs created page Module:Languages (Created page with "-- <nowiki> -------------------------------------------------------------------------------- -- Lua templating and link generation for language subpages. -- -- @module languages -- @alias l -- @release stable -- @require Module:Arguments -- @require Module:I18n -- @require Module:Fallbacklist -- @require Module:Common/i18n -- @author...")
- 18:49, 9 June 2025 Wuffesan talk contribs created page Module:Mbox (Created page with "-- <nowiki> local Mbox = {} local getArgs = require('Module:Arguments').getArgs local i18n = require('Module:I18n').loadMessages('Mbox') function Mbox.main(frame) local args = getArgs(frame) -- styles local styles = {} styles['border-left-color'] = i18n:parameter('bordercolor', args) styles['background-color'] = i18n:parameter('bgcolor', args) -- images local image = i18n:parameter('image', args) or '' local imageadjust = '' if args...")
- 18:48, 9 June 2025 Wuffesan talk contribs created page Module:Namespace detect (Created page with "-- <nowiki> --[[ -------------------------------------------------------------------------------- -- -- -- NAMESPACE DETECT -- -- -- -- This module implements the {{namespace detect}} template in Lua, with a -- -- few improvements: all namespaces and all namespace...")
- 18:48, 9 June 2025 Wuffesan talk contribs created page Module:Namespace detect/config (Created page with "-------------------------------------------------------------------------------- -- Namespace detect configuration data -- -- -- -- This module stores configuration data for Module:Namespace detect. Here -- -- you can localise the module to your wiki's language. -- --...")
- 18:48, 9 June 2025 Wuffesan talk contribs created page Module:Namespace detect/data (Created page with "-------------------------------------------------------------------------------- -- Namespace detect data -- -- This module holds data for Module:Namespace detect to be loaded per -- -- page, rather than per #invoke, for performance reasons. -- -------------------------------------------------------------------------------- local cfg = require('Module:Namespace detect/config') local function...")
- 18:47, 9 June 2025 Wuffesan talk contribs created page Module:TableTools (Created page with "-- <nowiki> -------------------------------------------------------------------------------- -- This module includes a number of functions for dealing with Lua tables. -- -- @script TableTools -- @alias p -- @release stable -- @require libraryUtil -- @attribution Module:TableTools (Wikipedia) -- @see Wikipedia:Module:TableTools for a similar module. ---------------------------...")
- 18:46, 9 June 2025 Wuffesan talk contribs created page Module:Yesno (Created page with "-- <nowiki> --- Yesno module for processing of boolean-like wikitext input. -- -- It works similarly to the Yesno Wikipedia -- template. This module is a consistent Lua interface for wikitext -- input from templates. -- -- Wikitext markup used by MediaWiki templates only permit -- string parameters like `"0"`, `"yes"`, `"no"` etc. As Lua -- has a boolean primitive type, Yesno converts this -- wikitext into boolean output for Lua t...")
- 18:46, 9 June 2025 Wuffesan talk contribs created page Module:Formatting (Created page with "-- Module copied from the Genshin Impact wiki local p = {} local lib = require('Module:Feature') local search = lib.inArray local nw = mw.text.nowiki function p.main(frame) local args = require('Module:Arguments').getArgs(frame, { parentFirst = true, removeBlanks = false }) -- helper function to parse params function FP(arr, val, def, noBlk) local param = nil for _, v in ipairs(arr) do if param == nil and args[v]~=nil then param = val and args[v] or...")
- 18:45, 9 June 2025 Wuffesan talk contribs created page Module:Documentation/i18n (Created page with "-- <nowiki> return { ["_metadata"] = { ["order"] = { "add-categories-blurb", "configuration", "configuration-text", "dependencies", "description", "documentation-heading", "documentation-visibility", "example", "examples", "experiment-blurb-module", "experiment-blurb-module-nosandbox", "experiment-blurb-template",...")
- 18:45, 9 June 2025 Wuffesan talk contribs created page Module:Documentation/config (Created page with "--<pre> ---------------------------------------------------------------------------------------------------- -- -- '''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. -- -- @submodule documentation.config -- @alias cfg -------------...")
- 18:44, 9 June 2025 Wuffesan talk contribs created page Module:Config (Created page with "-- <pre> -------------------------------------------------------------------------------- -- Allows wikis to locally override `/config` subpages of modules. -- -- @script config -- @alias p -- @release experimental -- @require Module:No globals -- @require Module:TableTools -- @author User:ExE Boss -- @see Module:I18n - Inspired the way in which the @{Config} class works. -------------------------------------------------------------------------------- lo...")
- 18:44, 9 June 2025 Wuffesan talk contribs created page Module:Common/i18n (Created page with "-- <nowiki> return { ["_metadata"] = { ["order"] = { "application", "custom-languages-notice", "global", "local", "module", "personal", "reason", "recommended", "script", "sitewide", "stylesheet", "template", "unknown", "vanilla-mw" } }, ["en"] = { ["application"] = "{{p...")
- 18:43, 9 June 2025 Wuffesan talk contribs created page Module:Exists (Created page with "local p = {} function p.main(frame) local args = require('Module:Arguments').getArgs(frame, { parentFirst = true, wrapper = {'Template:Exists'} }) return p._main(args) end function p._main(args) local page = args[1] or '' local trueResult = args[2] or args['then'] or '' local falseResult = args[3] or args['else'] or '' if (p.checkExists(page)) then return trueResult else return falseResult end end function p.checkExists(page) p...")
- 18:41, 9 June 2025 Wuffesan talk contribs created page Module:Arguments/i18n (Created page with "-- <nowiki> return { ["en"] = { ["error-value-func"] = "bad value assigned to option \"valueFunc\" (function expected, got $1)", ["error-overwrite-permission"] = "could not write to argument table key \"$1\"; overwriting existing arguments is not permitted", ["error-write-permission"] = "could not write to argument table key \"$1\"; the table is read-only" }, ["qqq"] = { ["error-value-func"] = "Error thrown when options.valueFu...")
- 18:40, 9 June 2025 Wuffesan talk contribs created page Module:Entrypoint (Created page with "--- Entrypoint templating wrapper for Scribunto packages. -- The module generates an entrypoint function that can execute Scribunto -- package calls in the template context. This allows a package to support -- both direct and template invocations. -- -- @script entrypoint -- @release stable -- @author 8nml -- @param {table} package Scribunto package. -- @error[85] {string} 'you must specify...")
- 18:40, 9 June 2025 Wuffesan talk contribs created page Module:Fallbacklist (Created page with "-- Language fallback rules for other Lua modules. -- @see https://commons.wikimedia.org/wiki/Module:Fallbacklist -- @release 2017-01-01T20:33:00.000Z -- @submodule return { -- crh (Crimean Tatar) cluster: crh-cyrl , crh-latn -> crh (Crimean Tatar) ['crh'] = {'crh-latn'}, ['crh-cyrl'] = {'crh', 'ru'}, ['crh-latn'] = {'crh'}, -- de (German) cluster: ['als'] = {'gsw', 'de'}, -- Alemannisch...")
- 18:39, 9 June 2025 Wuffesan talk contribs created page Module:I18n (Created page with "--- I18n library for message storage in Lua datastores. -- The module is designed to enable message separation from modules & -- templates. It has support for handling language fallbacks. This -- module is a Lua port of I18n-js and i18n modules that can be loaded -- by it are editable through I18nEdit. -- -- @module i18n -- @version 1.4.0 -- @require Module:Entrypoint -- @require Module:Fallbacklist -- @author [[Use...")
- 18:39, 9 June 2025 Wuffesan talk contribs created page Module:Arguments (Created page with "-- based on https://dev.fandom.com/wiki/Module:Arguments?oldid=160378 --- Arguments invocation argument extractor for Scribunto modules. -- It is intended for use by other Lua modules, and should not be -- called from an invocation (`#invoke`) directly. -- -- This module supports the following features: -- * Trimming and blank argument removal. -- * Argument inheritance between child and parent frames. -- * Argument extraction for external modules and console...")
- 18:38, 9 June 2025 Wuffesan talk contribs created page Module:Feature (Created page with "--- Miscellaneous useful functions. local lib = {} local util = require('libraryUtil') local checkType = util.checkType local checkTypeMulti = util.checkTypeMulti local NIL_OK = true --- Choose one of two values to return. -- @param {boolean} cond Determines which value to return. -- @param T The value to return if `cond` is true (or truthy). -- @param F The value to return if `cond` is false (or falsey). function lib.ternary(cond, T, F) if cond then ret...")
- 18:37, 9 June 2025 Wuffesan talk contribs created page Template:Documentation (Created page with "<includeonly>{{#invoke:Documentation|main}}</includeonly><!-- --><noinclude>{{Documentation|type=Documentation}}</noinclude>")
- 18:37, 9 June 2025 Wuffesan talk contribs created page Module:Documentation (Created page with "-------------------------------------------------------------------------------- -- This module implements {{T|Documentation}}. -- -- @module documentation -- @alias p -- @release stable -- @require Dev:Arguments -- @require Dev:Config -- @require Dev:I18n -- @require Dev:Languages -- @require Dev:Message box -- @...")
- 18:20, 9 June 2025 MediaWiki default talk contribs created page Main Page