All public logs
Combined display of all available logs of Terra Nostra. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 12:57, 6 September 2024 Maria talk contribs uploaded File:Test Template Info-Icon - Version (2).svg
- 12:57, 6 September 2024 Maria 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. ---------------------------------------------------------------------------------...")
- 12:56, 6 September 2024 Maria 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...")
- 12:55, 6 September 2024 Maria talk contribs created page Module:Category handler (Created page with "-------------------------------------------------------------------------------- -- -- -- CATEGORY HANDLER -- -- -- -- This module implements the {{category handler}} template in Lua, -- -- with a few improvements: all namespaces and all namespace alia...")
- 12:55, 6 September 2024 Maria talk contribs created page Module:Delink (Created page with "-- This module de-links most wikitext. require("strict") local p = {} local getArgs local function delinkReversePipeTrick(s) if s:match("^%[%[|.*[|\n]") then -- Check for newlines or multiple pipes. return s end return s:match("%[%[|(.*)%]%]") end local function delinkPipeTrick(s) -- We need to deal with colons, brackets, and commas, per Help:Pipe trick. -- First, remove the text before the first colon, if any. if s:match(":") then s = s:match("%[%[.-...")
- 12:54, 6 September 2024 Maria talk contribs created page Module:Clickable button (Created page with "-- This module implements {{clickable button 2}}. local yesno = require('Module:Yesno') local delink = require('Module:Delink')._delink local p = {} function p.main(frame) local getArgs = require('Module:Arguments').getArgs local args = getArgs(frame) return p._main(args) end function p._main(args) -- If first arg or a url is not provided, -- but we have a second arg, make a button. -- Otherwise, return nothing. args.originalInput = args[1] args[1] = delink({...")
- 12:53, 6 September 2024 Maria talk contribs created page Module:Clickable button 2 (Redirected page to Module:Clickable button) Tag: New redirect
- 12:53, 6 September 2024 Maria talk contribs created page Module:String (Created page with "--[[ This module is intended to provide access to basic string functions. Most of the functions provided here can be invoked with named parameters, unnamed parameters, or a mixture. If named parameters are used, Mediawiki will automatically remove any leading or trailing whitespace from the parameter. Depending on the intended use, it may be advantageous to either preserve or remove such whitespace. Global options ignore_errors: If set to 'true' or 1, any error c...")
- 12:53, 6 September 2024 Maria talk contribs created page Module:Redirect (Created page with "-- This module provides functions for getting the target of a redirect page. local p = {} -- Gets a mw.title object, using pcall to avoid generating script errors if we -- are over the expensive function count limit (among other possible causes). local function getTitle(...) local success, titleObj = pcall(mw.title.new, ...) if success then return titleObj else return nil end end -- Gets the name of a page that a redirect leads to, or nil if it isn't a -- redi...")
- 12:52, 6 September 2024 Maria talk contribs created page Module:Submit an edit request (Created page with "-- This module implements {{Submit an edit request}}. local CONFIG_MODULE = 'Module:Submit an edit request/config' -- Load necessary modules local mRedirect = require('Module:Redirect') local cfg = mw.loadData(CONFIG_MODULE) local effectiveProtectionLevel = require('Module:Effective protection level')._main local escape = require("Module:String")._escapePattern local lang = mw.language.getContentLanguage() local p = {} local validLevels = { semi = 'semi', extended...")
- 12:52, 6 September 2024 Maria talk contribs created page Module:Effective protection expiry (Created page with "local p = {} -- Returns the expiry of a restriction of an action on a given title, or unknown if it cannot be known. -- If no title is specified, the title of the page being displayed is used. function p._main(action, pagename) local title if type(pagename) == 'table' and pagename.prefixedText then title = pagename elseif pagename then title = mw.title.new(pagename) else title = mw.title.getCurrentTitle() end pagename = title.prefixedText if action == 'auto...")
- 12:51, 6 September 2024 Maria 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...")
- 12:51, 6 September 2024 Maria talk contribs created page Module:Effective protection level (Created page with "local p = {} -- Returns the permission required to perform a given action on a given title. -- If no title is specified, the title of the page being displayed is used. function p._main(action, pagename) local title if type(pagename) == 'table' and pagename.prefixedText then title = pagename elseif pagename then title = mw.title.new(pagename) else title = mw.title.getCurrentTitle() end pagename = title.prefixedText if action == 'autoreview' then local leve...")
- 12:50, 6 September 2024 Maria 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 =...")
- 12:49, 6 September 2024 Maria talk contribs created page Module:Message box/configuration (Created page with "-------------------------------------------------------------------------------- -- Message box configuration -- -- -- -- This module contains configuration data for Module:Message box. -- -------------------------------------------------------------------------------- return { ambox = { types = { speedy = { class = 'ambox-spee...")
- 12:49, 6 September 2024 Maria talk contribs created page Module:Message box (Created page with "require('strict') local getArgs local yesno = require('Module:Yesno') local lang = mw.language.getContentLanguage() local CONFIG_MODULE = 'Module:Message box/configuration' local DEMOSPACES = {talk = 'tmbox', image = 'imbox', file = 'imbox', category = 'cmbox', article = 'ambox', main = 'ambox'} -------------------------------------------------------------------------------- -- Helper functions ---------------------------------------------------------------------------...")
- 12:48, 6 September 2024 Maria talk contribs created page Module:Protection banner (Created page with "-- This module implements {{pp-meta}} and its daughter templates such as -- {{pp-dispute}}, {{pp-vandalism}} and {{pp-sock}}. -- Initialise necessary modules. require('strict') local makeFileLink = require('Module:File link')._main local effectiveProtectionLevel = require('Module:Effective protection level')._main local effectiveProtectionExpiry = require('Module:Effective protection expiry')._main local yesno = require('Module:Yesno') -- Lazily initialise modules and...")
- 12:48, 6 September 2024 Maria 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'...")
- 12:47, 6 September 2024 Maria 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 local format = mw.ustring.format ---------------------------------------------------------------------------- -- Helper functions -- -- These are defined as local functions, but are made available in...")
- 12:47, 6 September 2024 Maria talk contribs created page Template:Documentation (Created page with "{{#invoke:documentation|main|_content={{ {{#invoke:documentation|contentTitle}}}}}}<noinclude> <!-- Add categories to the /doc subpage --> </noinclude>")
- 12:33, 6 September 2024 Maria talk contribs created page Template:Photo montage (Created page with "{{#invoke:photo montage|montage}}<noinclude> {{documentation}} </noinclude>")
- 12:32, 6 September 2024 Maria talk contribs created page Module:Photo montage (Created page with "-- implements template:photomontage local p = {} local function isnotempty(s) return s and s:match( '^%s*(.-)%s*$' ) ~= '' end local function photomontage( frame ) local tracking = '' local args = frame:getParent().args local size = tonumber(args['size'] or '200') or 200 local border = tonumber(args['border'] or '1') or 1 local spacing = tonumber(args['spacing'] or '1') or 1 local color = args['color'] or 'black' local color_border = args['color_border'] o...")
- 12:31, 6 September 2024 Maria talk contribs created page Template:Image frame (Created page with "<includeonly>{{#switch: {{{align|}}} | center | centre= <div class="center"> }}<div class="thumb {{#switch: {{{align|}}} | right |#default=tright | left=tleft | center | centre | none=tnone}}" {{#ifeq: {{{mode|}}} | scrollable|style="overflow:hidden;width:{{{width|auto}}};max-width:{{#if:{{{max-width|}}}|{{#expr:{{{max-width|}}}+8}}px|100%}} {{{style|}}}"|style="{{{style|}}}"}}><div class="thumbinner" {{#ifeq: {{{mode|}}} | scrollable||style="width:{{#if:{{{width|}}}| {{...")
- 10:28, 6 September 2024 Maria talk contribs created page Greenhill Bay (Created page with "thumb|Greenhill Bay pictured from the northern bank of the Seine before the settlement of Greenhill '''Greenhill Bay''' is a bight on the southern bank of the River Seine where it meanders northwards. It is so named for the city of Greenhill which was founded there.")
- 10:28, 6 September 2024 Maria talk contribs created page File:GreenhillBayUntouched.png
- 10:28, 6 September 2024 Maria talk contribs uploaded File:GreenhillBayUntouched.png
- 08:09, 6 September 2024 Maria talk contribs moved page Gabeina’s Bay to Gabeina's Bay
- 23:36, 5 September 2024 Maria talk contribs created page List of roads in Greenhill (Created page with "This article lists all the roads in Greenhill. {| class="wikitable sortable" |- ! Name ! Borough(s) ! Notes |- | Cassony Street | Highbridge | |- | The Promenade | Greenhill | |- | Skeleton Street | Greenhill | |- | North Street | Greenhill, Northweald | |- | Occult Street | Greenhill | |- | Blossom Plaza | Greenhill (borough)|G...")
- 21:29, 5 September 2024 Maria talk contribs created page Le Café de Flore (Created page with "thumb|Le Café de Flore pictured from [[Blossom Plaza to the east]] '''Le Café de Flore''' is a shop on Coffee Street in Greenhill that provides a variety of food free of charge to visitors.")
- 21:18, 5 September 2024 Maria talk contribs created page File:LeCafeDeFlore.png
- 21:18, 5 September 2024 Maria talk contribs uploaded File:LeCafeDeFlore.png
- 21:05, 5 September 2024 Maria talk contribs created page Template:IPA (Created page with "[[wikipedia:Help:IPA/{{{language|{{{l|English}}}}}}|/{{{1}}}/]]")
- 20:53, 5 September 2024 Maria talk contribs created page Chicken Island French (Created page with "'''Chicken Island French'''<span class="noexcerpt"> (<small>Chicken Island French:</small> Le Français de l'Île aux Poulets)</span> is the variety of French spoken in Chicken Island. It is largely based on Louisiana French.")
- 20:34, 5 September 2024 User account Inwin talk contribs was created by Maria talk contribs
- 19:23, 5 September 2024 Maria talk contribs created page Casson Catholicism (Created page with "'''Casson Catholicism''' is the name given to Catholicism as practiced in Cassony.")
- 19:18, 5 September 2024 Maria talk contribs created page Chapel of the Holy Virgin (Created page with "The '''Chapel of the Holy Virgin''' is a Catholic chapel located in Llanfair Cwmlân.")
- 18:21, 5 September 2024 Maria talk contribs moved page File:KawaByGreenhill.png.png to File:KawaByGreenhill.png
- 13:58, 5 September 2024 Maria talk contribs created page Category:Islands by region (Created page with "Category:Islands")
- 13:58, 5 September 2024 Maria talk contribs created page Category:Islands in Nostria (Created page with "Category:Islands by region")
- 13:56, 5 September 2024 Maria talk contribs created page Category:Islands (Created page with "Category:Nature")
- 13:56, 5 September 2024 Maria talk contribs created page Category:Archipelagoes (Created page with "Category:Islands")
- 13:56, 5 September 2024 Maria talk contribs created page Category:Archipelagoes by region (Created page with "Category:Archipelagoes")
- 13:56, 5 September 2024 Maria talk contribs created page Category:Archipelagoes of Nostria (Created page with "Category:Archipelagoes by region")
- 13:52, 5 September 2024 Maria talk contribs moved page Category:Natural features to Category:Nature
- 13:52, 5 September 2024 Maria talk contribs created page Category:Continents (Created page with "Category:Natural features")
- 13:50, 5 September 2024 Maria talk contribs created page Category:Llanfair Cwmlân residents (Created page with "Category:People by settlementCategory:Celtic Commonwealth people")
- 13:50, 5 September 2024 Maria talk contribs created page Category:Celtic Commonwealth people (Created page with "Category:People by region")
- 13:50, 5 September 2024 Maria talk contribs created page Category:Ballymena residents (Created page with "Category:People by settlement")
- 13:50, 5 September 2024 Maria talk contribs created page An Bhantiarna Cocoíli (Created page with "Category:Ballymena residentsCategory:Celtic Commonwealth people")
- 13:49, 5 September 2024 Maria talk contribs created page Category:Chicken Islanders (Created page with "Category:People by region")