All public logs
Jump to navigation
Jump to search
Combined display of all available logs of Saintapedia. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 20:42, 30 August 2024 Tom talk contribs created page Module:List/doc (Created page with "{{used in system|in MediaWiki:Citethispage-content}} {{module rating|protected}} {{Lua|Module:TableTools|Module:Arguments}} {{Uses TemplateStyles|Template:Plainlist/styles.css|Template:Hlist/styles.css}} This module outputs various kinds of lists. At present, it supports bulleted lists, unbulleted lists, horizontal lists, ordered lists (numbered or alphabetical), and horizontal ordered lists. It allows for easy css styling of the list or of the individual list items...")
- 20:42, 30 August 2024 Tom talk contribs created page Module:List (Created page with "local libUtil = require('libraryUtil') local checkType = libUtil.checkType local mTableTools = require('Module:TableTools') local p = {} local listTypes = { ['bulleted'] = true, ['unbulleted'] = true, ['horizontal'] = true, ['ordered'] = true, ['horizontal_ordered'] = true } function p.makeListData(listType, args) -- Constructs a data table to be passed to p.renderList. local data = {} -- Classes and TemplateStyles data.classes = {} data.templatestyles = ''...")
- 20:42, 30 August 2024 Tom talk contribs created page Module:Namespace detect/data/doc (Created page with "{{Module rating|protected}} {{used in system}} {{Lua|Module:Namespace detect/config}} This is a data page for Module:Namespace detect and Module:Category handler/shared. It is loaded by the main module using mw.loadData, which means it is only processed once per page rather than once per #invoke.")
- 20:41, 30 August 2024 Tom 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...")
- 20:40, 30 August 2024 Tom talk contribs created page User page (https://saintapedia.org/wiki/Help:User_page) Tag: New redirect
- 20:30, 30 August 2024 Tom talk contribs created page Module:Arguments/doc (Created page with "{{Used in system}} {{Module rating|p}} This module provides easy processing of arguments passed from <code>#invoke</code>. It is a meta-module, meant for use by other modules, and should not be called from <code>#invoke</code> directly (for a module directly invocable by templates you might want to have a look at {{ml|params|}}). Its features include: * Easy trimming of arguments and removal of blank arguments. * Arguments can be passed by both the current frame and by...")
- 20:30, 30 August 2024 Tom talk contribs created page Module:Arguments (Created page with "-- This module provides easy processing of arguments passed to Scribunto from -- #invoke. It is intended for use by other Lua modules, and should not be -- called from #invoke directly. local libraryUtil = require('libraryUtil') local checkType = libraryUtil.checkType local arguments = {} -- Generate four different tidyVal functions, so that we don't have to check the -- options every time we call it. local function tidyValDefault(key, val) if type(val) == 'string'...")
- 20:29, 30 August 2024 Tom talk contribs created page Module:Yesno/doc (Created page with "{{used in system}} {{Module rating|protected}} This module provides a consistent interface for processing boolean or boolean-style string input. While Lua allows the <code>true</code> and <code>false</code> boolean values, wikicode templates can only express boolean values through strings such as "yes", "no", etc. This module processes these kinds of strings and turns them into boolean input for Lua to process. It also returns <code>nil</code> values as <code>nil</code>,...")
- 20:29, 30 August 2024 Tom talk contribs created page Module:Yesno (Created page with "-- Function allowing for consistent treatment of boolean-like wikitext input. -- It works similarly to the template {{yesno}}. return function (val, default) -- If your wiki uses non-ascii characters for any of "yes", "no", etc., you -- should replace "val:lower()" with "mw.ustring.lower(val)" in the -- following line. val = type(val) == 'string' and val:lower() or val if val == nil then return nil elseif val == true or val == 'yes' or val == 'y' or val =...")
- 20:28, 30 August 2024 Tom talk contribs created page Module:Lua banner/doc (Created page with "{{high use}} {{Lua|Module:Yesno|Module:List|Module:TableTools|Module:Message box}} This module implements the {{tl|lua}} template. == Usage from wikitext == This module cannot be used directly from wikitext. It can only be used through the {{tl|lua}} template. Please see the template page for documentation. == Usage from Lua modules == To use this module from other Lua modules, first load the module. <syntaxhighlight lang="lua"> local mLuaBanner = require('Module:Lu...")
- 20:28, 30 August 2024 Tom talk contribs created page Module:Lua banner (Created page with "-- This module implements the {{lua}} template. local yesno = require('Module:Yesno') local mList = require('Module:List') local mTableTools = require('Module:TableTools') local mMessageBox = require('Module:Message box') local p = {} function p.main(frame) local origArgs = frame:getParent().args local args = {} for k, v in pairs(origArgs) do v = v:match('^%s*(.-)%s*$') if v ~= '' then args[k] = v end end return p._main(args) end function p._main(args)...")
- 20:28, 30 August 2024 Tom talk contribs created page Template:Lua (Created page with "<includeonly>{{#invoke:Lua banner|main}}</includeonly><noinclude> {{Lua|Module:Lua banner}} {{documentation}} <!-- Categories go on the /doc subpage and interwikis go on Wikidata. --> </noinclude>")
- 20:27, 30 August 2024 Tom talk contribs created page Module:Namespace detect/doc (Created page with "{{Used in system}} {{Module rating|protected}} {{Lua|Module:Namespace detect/data|Module:Yesno|Module:Arguments|Module:TableTools}} This module allows you to output different text depending on the namespace that a given page is in. It is a Lua implementation of the {{tl|namespace detect}} template, with a few improvements: all namespaces and all namespace aliases are supported, and namespace names are detected automatically for the local wiki...")
- 20:27, 30 August 2024 Tom talk contribs created page Module:Namespace detect (Created page with "--[[ -------------------------------------------------------------------------------- -- -- -- NAMESPACE DETECT -- -- -- -- This module implements the {{namespace detect}} template in Lua, with a -- -- few improvements: all namespaces and all namespace aliases are...")
- 20:25, 30 August 2024 Tom talk contribs created page Module:Bananas/doc (Created page with "Example module referenced by Extension:Scribunto/Lua reference manual")
- 20:25, 30 August 2024 Tom talk contribs created page Module:Bananas (Created page with "local p = {} --p stands for package function p.hello( frame ) return "Hello, world!" end return p")
- 20:14, 30 August 2024 Tom talk contribs created page User:Tom/Sandbox5 (How do I create a new page?) Tag: Visual edit: Switched
- 20:12, 30 August 2024 Tom talk contribs created page Labeled Section Transclusion (Labeled Section Transclusion) Tag: New redirect
- 20:06, 30 August 2024 Tom talk contribs created page Namespace (Redirected page to Help:Namespace) Tag: New redirect
- 08:20, 30 August 2024 (username removed) (log details removed) (edit summary removed)
- 08:19, 30 August 2024 (username removed) (log details removed) (edit summary removed)
- 08:18, 30 August 2024 (username removed) (log details removed) (edit summary removed)
- 08:18, 30 August 2024 (username removed) (log details removed) (edit summary removed)
- 08:13, 30 August 2024 (username removed) (log details removed) (edit summary removed)
- 08:13, 30 August 2024 TomO talk contribs moved page Help:Getting started with Powerpedia to Help:Getting started with Saintapedia
- 08:13, 30 August 2024 TomO talk contribs moved page Frequently Asked Questions about Powerpedia to Frequently Asked Questions about Saintapedia (Saintapedia)
- 08:12, 30 August 2024 TomO talk contribs moved page Help:Editing Powerpedia to Help:Editing Saintapedia (Saintapedia)
- 08:09, 30 August 2024 (username removed) (log details removed) (edit summary removed)
- 08:09, 30 August 2024 (username removed) (log details removed) (edit summary removed)
- 08:09, 30 August 2024 (username removed) (log details removed) (edit summary removed)
- 08:08, 30 August 2024 TomO talk contribs moved page Help:Powerpedia badges to Help:Saintapedia badges
- 08:08, 30 August 2024 (username removed) (log details removed) (edit summary removed)
- 08:04, 30 August 2024 (username removed) (log details removed) (edit summary removed)
- 08:04, 30 August 2024 (username removed) (log details removed) (edit summary removed)
- 08:04, 30 August 2024 (username removed) (log details removed) (edit summary removed)
- 08:04, 30 August 2024 (username removed) (log details removed) (edit summary removed)
- 22:01, 29 August 2024 Tom talk contribs created page File:Saint icon.jpg
- 22:01, 29 August 2024 Tom talk contribs uploaded File:Saint icon.jpg
- 21:53, 29 August 2024 Tom talk contribs created page Help:Cargo (Created page with "The Cargo MediaWiki extension is designed to enhance MediaWiki's capabilities by providing a structured way to store and query data within wiki templates, particularly useful for managing data in infoboxes or similar structured data representations. Cargo stands out as a powerful tool for those looking to leverage MediaWiki not just for content but for structured data management, offering a balance between complexity and usability for wiki administrators and developers...")
- 21:33, 29 August 2024 Tom talk contribs created page Help:Portal (Created page with "==Help pages== ==Special pages pages== * Special:ClearPendingReviews")
- 21:24, 29 August 2024 Tom talk contribs created page User talk:TomO (Test: new section)
- 22:16, 28 August 2024 Tom talk contribs created page User:Tom/Sandbox4 (Created page with "== Installed extensions == Check Special:Version * Cargo * Maps * Page Forms * CommentStreams * WatchAnalytics * Popups * GoogleAnalyticsMetrics * RottenLinks * WhosOnline * Echo * TemplateStyles * WikiSEO * Contribution Scores == Needed extensions ==") Tag: Visual edit
- 22:11, 28 August 2024 Tom talk contribs created page User:Tom/Sandbox3 (Created page with "Pages needed: * Template:DC headquarters map * Category:Map box templates * Help:Maps (Open Layers examples) * Help:Maps (City) * Help:Maps (Open Layers examples) * Help:Maps (Address) * Help:Mapping services * Help:Maps (Multiple locations) * Help:Maps (Info boxes) * Help:Maps (Centered) * Traffic (Headquarters) * Template:Map examples") Tag: Visual edit
- 22:08, 28 August 2024 Tom talk contribs moved page Powerpedia:Visual editor to Saintapedia:Visual editor
- 22:08, 28 August 2024 Tom talk contribs created page Powerpedia:Visual editor (Redirected page to Help:VisualEditor) Tags: New redirect Visual edit
- 20:10, 28 August 2024 Tom talk contribs created page Saintapedia:About (Created page with "Saintapedia is under development")
- 20:10, 28 August 2024 Tom talk contribs created page User:Tom/Sandbox2 (Created page with "== Saints == === Fields === === Sources === Parish/Church") Tag: Visual edit
- 21:51, 27 August 2024 (username removed) (log details removed) (edit summary removed)
- 21:45, 27 August 2024 Tom talk contribs created the Cargo table Movie
- 21:45, 27 August 2024 Tom talk contribs created page Template:Movie