All public logs
Jump to navigation
Jump to search
Combined display of all available logs of Imperivm Romanvm. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)- 16:01, 22 February 2022 Procurator-Imperii-Romani talk contribs created page Template:Error (Created page with "{{#invoke:Error|error|{{{message|{{{1}}}}}}|tag={{{tag|}}}}}<noinclude> {{documentation}} </noinclude>")
- 16:01, 22 February 2022 Procurator-Imperii-Romani talk contribs created page Module:Error (Created page with "-- This module implements {{error}}. local p = {} local function _error(args) local tag = mw.ustring.lower(tostring(args.tag)) -- Work out what html tag we should use. if not (tag == 'p' or tag == 'span' or tag == 'div') then tag = 'strong' end -- Generate the html. return tostring(mw.html.create(tag) :addClass('error') :wikitext(tostring(args.message or args[1] or error('no message specified', 2))) ) end function...")
- 16:00, 22 February 2022 Procurator-Imperii-Romani talk contribs created page Template:Center (Created page with "<includeonly><div class="center" style="width:auto; margin-left:auto; margin-right:auto;{{#if: {{{style|}}} | {{{style}}};}}">{{{1|Category:Pages using center with no arguments}}}</div></includeonly><noinclude> {{documentation}} <!-- Add categories to the /doc subpage, interwikis to Wikidata, not here --> </noinclude>")
- 15:59, 22 February 2022 Procurator-Imperii-Romani talk contribs created page Template:Align (Created page with "{{#switch: {{lc:{{{1|center}}}}} |left = <div style="float: left;{{#if: {{{style|}}} | {{{style}}};}}">{{{2}}}</div> |right = <div style="float: right;{{#if: {{{style|}}} | {{{style}}};}}">{{{2}}}</div> |center = {{center|{{{2}}}|style={{{style|}}} }} |#default = Error in Template:Align: the alignment setting "{{{1}}}" is invalid. }}<noinclude> {{documentation}} </noinclude>")
- 15:59, 22 February 2022 Procurator-Imperii-Romani talk contribs created page Template:Mono (Created page with "{{<includeonly>safesubst:</includeonly>ifsubst|1=|2=<templatestyles src="Mono/styles.css" />}}<span class="monospaced">{{{2|{{{1}}}}}}</span><noinclude> {{Documentation}} <!-- Categories go on the /doc subpage and interwikis go on Wikidata. --> </noinclude>")
- 15:59, 22 February 2022 Procurator-Imperii-Romani talk contribs created page Template:Min (Created page with "<includeonly>{{safesubst:#invoke:Math|min}}</includeonly><noinclude> {{Documentation}} </noinclude>")
- 15:58, 22 February 2022 Procurator-Imperii-Romani 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>")
- 15:58, 22 February 2022 Procurator-Imperii-Romani talk contribs created page Module:TableTools (Created page with "------------------------------------------------------------------------------------ -- TableTools -- -- -- -- This module includes a number of functions for dealing with Lua tables. -- -- It is a meta-module, meant to be called from other Lua modules, and should not -- -- be called directly from #invoke....")
- 15:57, 22 February 2022 Procurator-Imperii-Romani talk contribs created page Module:List (Created page with "-- This module outputs different kinds of lists. At the moment, bulleted, -- unbulleted, horizontal, ordered, and horizontal ordered lists are supported. 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, ar...")
- 15:56, 22 February 2022 Procurator-Imperii-Romani 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)...")
- 15:56, 22 February 2022 Procurator-Imperii-Romani talk contribs created page Template:Aligned table (Created page with "{{<includeonly>safesubst:</includeonly>#invoke:aligned table|table}}<noinclude> {{documentation}} <!-- Add categories to the /doc subpage, interwikis to Wikidata, not here --> </noinclude>")
- 15:55, 22 February 2022 Procurator-Imperii-Romani talk contribs created page Module:Aligned table (Created page with "-- This module implements {{aligned table}} local p = {} local function isnotempty(s) return s and s:match( '^%s*(.-)%s*$' ) ~= '' end function p.table(frame) local args = (frame.args[3] ~= nil) and frame.args or frame:getParent().args local entries = {} local colclass = {} local colstyle = {} local cols = tonumber(args['cols']) or 2 -- create the root table local root = mw.html.create('table') -- add table style for fullwidth if isnotempty(args['fullwidth'...")
- 15:55, 22 February 2022 Procurator-Imperii-Romani talk contribs created page Template:= (Created page with "=<noinclude> {{documentation}} </noinclude>")
- 15:54, 22 February 2022 Procurator-Imperii-Romani talk contribs created page Template:Template link general/doc (Created page with "{{Documentation subpage}} <!-- PLEASE ADD CATEGORIES WHERE INDICATED AT THE BOTTOM OF THIS PAGE --> {{#ifeq:{{FULLPAGENAME}}|Template:Template link with subst|{{used in system}}| {{#ifexpr:{{#invoke:Transclusion count|fetch|0}} > 2000|{{high-use}}}}}} {{tsh|{{{1|tlg}}}|{{{2|}}}}} {{lua|Module:Template link general}} This template, often abbreviated as {{tlf|{{#switch:{{lc:{{ROOTPAGENAME}}}} | tlg | template link general = tlg | tlb | template link with bold = tlb | tlc...")
- 15:53, 22 February 2022 Procurator-Imperii-Romani talk contribs created page Module:Template link general (Created page with "-- This implements Template:Tlg local getArgs = require('Module:Arguments').getArgs local p = {} -- Is a string non-empty? local function _ne(s) return s ~= nil and s ~= "" end local nw = mw.text.nowiki local function addTemplate(s) local i, _ = s:find(':', 1, true) if i == nil then return 'Template:' .. s end local ns = s:sub(1, i - 1) if ns == '' or mw.site.namespaces[ns] then return s else return 'Template:' .. s end end local function trimTemplate(...")
- 15:53, 22 February 2022 Procurator-Imperii-Romani talk contribs created page Template:Tlg/doc (Redirected page to Template:Template link general/doc) Tag: New redirect
- 15:51, 22 February 2022 Procurator-Imperii-Romani talk contribs created page Template:Tlx (Redirected page to Template:Template link expanded) Tag: New redirect
- 15:51, 22 February 2022 Procurator-Imperii-Romani talk contribs created page Template:Tlf (Redirected page to Template:Template link with link off) Tag: New redirect
- 15:49, 22 February 2022 Procurator-Imperii-Romani talk contribs created page Template:R from move (Created page with "<noinclude>{{hatnote|This rcat template is automatically added to all new redirects that result from page moves; it must be added manually to older redirects when appropriate.}}{{This is a redirect/rcat}} </noinclude>{{Redirect template |id=R from move |name=From a page move |from=a page that has been moved (renamed) or is the result of a page move |info=One reason this page was kept as a redirect is to avoid breaking links, both internal and external, that may h...")
- 15:49, 22 February 2022 Procurator-Imperii-Romani talk contribs created page Template:R from move/except (Created page with "<noinclude>This is the exception page for {{tl|R from move}}. This page makes exceptions that include certain pages that should not inhabit either {{cat|Unsynchronized talk page redirects}} or {{cat|Redirects from moves}}. If necessary, new exceptions may be added with no need to edit the main template, {{tl|R from move}}. </noinclude>{{#switch: {{FULLPAGENAME}} |MediaWiki:Move-redirect-text= |Template:R from move/except= |#default=Category:Redirects from moves }}{...")
- 15:48, 22 February 2022 Procurator-Imperii-Romani talk contribs created page Template:This is a redirect/rcat (Created page with "{{#ifeq:{{NAMESPACE}}|Template talk||'''{{small|{{smallcaps|When used with the}} "Redirect category shell" (Rcat shell) {{smallcaps|template:}}}}}}''' {{Mbox | name = This is a redirect/rcat | type = move | image = none | style = margin-top: 1.1em; border: solid 1px darkblue; border-left-width: 0.5em; | textstyle = padding-top: 0.9em; padding-bottom: 0.9em; | text = 25px|link= '''This page is a Wikipedia:Redirect|red...")
- 15:48, 22 February 2022 Procurator-Imperii-Romani talk contribs created page Template:Template link (Created page with "{{[[Template:{{{1}}}|{{{1}}}]]}}<noinclude>{{documentation}} <!-- Categories go on the /doc subpage and interwikis go on Wikidata. --> </noinclude>")
- 15:47, 22 February 2022 Procurator-Imperii-Romani talk contribs created page Template:Tl (Redirected page to Template:Template link) Tag: New redirect
- 15:46, 22 February 2022 Procurator-Imperii-Romani talk contribs created page Template:Smallcaps (Created page with "{{<includeonly>safesubst:</includeonly>ifsubst | 1=<span style="font-variant:small-caps">{{{1}}}</span> | 2=<templatestyles src="smallcaps/styles.css"/><span class="smallcaps">{{{1}}}</span> }}<noinclude> <!-- Add categories and interwikis to the /doc subpage, not here! --> {{documentation}} </noinclude>")
- 15:46, 22 February 2022 Procurator-Imperii-Romani talk contribs created page Template:Ifsubst (Created page with "{{ safesubst:<noinclude/>#if:{{{demo|}}} |{{ safesubst:<noinclude/>#ifeq:{{{demo}}} |no |{{{no|{{{2|}}}}}} |{{{yes|{{{1|}}}}}} }} |{{ safesubst:<noinclude/>#ifeq:{{ safesubst:<noinclude/>NAMESPACE}}|{{NAMESPACE}} |{{{no|{{{2|}}}}}} |{{{yes|{{{1|}}}}}} }}}}<noinclude> {{Documentation}} </noinclude>")
- 15:45, 22 February 2022 Procurator-Imperii-Romani talk contribs created page Template:Small (Created page with "<span style="font-size:85%;">{{{1}}}</span><includeonly>{{SAFESUBST:#if:{{{1|}}}||Category:Pages using small with an empty input parameter}}</includeonly><noinclude> {{Documentation}}<!--Categories and interwikis go in the /doc sub-page.--> </noinclude>")
- 15:43, 22 February 2022 Procurator-Imperii-Romani talk contribs created page Template:Redirect template (Created page with "{{#invoke:Redirect template|main}}<noinclude> {{Documentation}}</noinclude>")
- 15:43, 22 February 2022 Procurator-Imperii-Romani talk contribs created page Module:Redirect template (Created page with "require('Module:No globals') local p = {} -- key is beginning of arg name. value is table with namespace number and link -- alternatively, a function taking the namespace number and returning a validity -- can be used local namespaceCategories = { all = { function() return true end }, main = { 0, 'main' }, help = { 12, 'help' }, portal = { 100, 'portal' }, talk = { function(n) return n > 0 and n%2 == 1 end, '[[H...")
- 15:40, 22 February 2022 Procurator-Imperii-Romani talk contribs created page Template:Redirect category shell (Created page with "{{Mbox | name = Redirect category shell | type = move | image = none | style = margin-top: 1.1em; border: solid 1px darkblue; border-left-width: 0.5em; | textstyle = padding-top: 0.9em; padding-bottom: 0.9em; | text = 25px|link= '''This page is a redirect. <small>The following categories are used to track and monitor this redirect:</small>'''{{#if:{{{h|}}} |:...")
- 15:40, 22 February 2022 Procurator-Imperii-Romani talk contribs created page Template:Cat (Created page with "[[:Category:{{PAGENAME:{{{1}}}}}]]<noinclude> {{documentation}} </noinclude>")
- 15:35, 22 February 2022 Procurator-Imperii-Romani talk contribs created page Template:Str left (Created page with "<includeonly>{{safesubst:padleft:|{{{2|1}}}|{{{1}}}}}</includeonly><noinclude> {{documentation}} <!-- Categories go on the /doc subpage, and interwikis go on Wikidata. --> </noinclude>")
- 15:34, 22 February 2022 Procurator-Imperii-Romani talk contribs created page Template:Sandbox other (Created page with "{{#if:{{#ifeq:{{#invoke:String|sublength|s={{SUBPAGENAME}}|i=0|len=7}}|sandbox|1}}{{#ifeq:{{SUBPAGENAME}}|doc|1}}{{#invoke:String|match|{{PAGENAME}}|/sandbox/styles.css$|plain=false|nomatch=}}|{{{1|}}}|{{{2|}}}}}<!-- --><noinclude>{{documentation}}</noinclude>")
- 15:32, 22 February 2022 Procurator-Imperii-Romani talk contribs created page Template:Template other (Created page with "{{#switch: <!--If no or empty "demospace" parameter then detect namespace--> {{#if:{{{demospace|}}} | {{lc: {{{demospace}}} }} <!--Use lower case "demospace"--> | {{#ifeq:{{NAMESPACE}}|{{ns:Template}} | template | other }} }} | template = {{{1|}}} | other | #default = {{{2|}}} }}<!--End switch--><noinclude> {{documentation}} <!-- Add categories and interwikis to the /doc subpage, not here! --> </noinclude>")
- 15:31, 22 February 2022 Procurator-Imperii-Romani talk contribs created page Template:TemplateData header (Created page with "<div class="templatedata-header">{{#if:{{{noheader|}}}|<!-- noheader: -->{{Template parameter usage|based=y}}|<!-- +header: -->This is the {{#if:{{{nolink|}}}|<!-- +header, nolink TD -->TemplateData|<!-- +header, +link TD; DEFAULT: -->TemplateData}}<!-- e.o. #if:nolink; DEFAULT: --> for this template used by TemplateWizard, VisualEditor and other tools. {{Template parame...")
- 15:31, 22 February 2022 Procurator-Imperii-Romani talk contribs created page Template:Template parameter usage (Created page with "{{#switch:{{{label|}}} |=[https://bambots.brucemyers.com/TemplateParam.php?wiki=enwiki&template={{Urlencode:{{#if:{{{1|}}}|{{ROOTPAGENAME:{{{1|}}}}}|{{ROOTPAGENAME}}}}}} {{#ifeq:{{yesno-no|{{{lc}}}}}|no|C|c}}lick here] to see a monthly parameter usage report for {{#if:{{{1|}}}|[[Template:{{ROOTPAGENAME:{{{1|}}}}}]]|this template}}{{#ifeq:{{yesno-no|{{{based}}}}}|yes| based on {{#if:{{{1|}}}|its|this}} TemplateData}}. |None|none=[https://bambots.brucemyers.com/Templ...")
- 15:31, 22 February 2022 Procurator-Imperii-Romani talk contribs created page Template:Yesno-no (Created page with "{{safesubst:<noinclude />yesno|{{{1}}}|yes={{{yes|yes}}}|no={{{no|no}}}|blank={{{blank|no}}}|¬={{{¬|no}}}|def={{{def|no}}}}}<noinclude> {{Documentation|Template:Yesno/doc}} <!--Categories go in the doc page referenced above; interwikis go in Wikidata.--> </noinclude>")
- 15:30, 22 February 2022 Procurator-Imperii-Romani talk contribs created page Template:Yesno (Created page with "{{<includeonly>safesubst:</includeonly>#switch: {{<includeonly>safesubst:</includeonly>lc: {{{1|¬}}} }} |no |n |f |false |off |0 = {{{no|<!-- null -->}}} | = {{{blank|{{{no|<!-- null -->}}}}}} |¬ = {{{¬|}}} |yes |y |t |true |on |1 = {{{yes|yes}}} |#default = {{{def|{{{yes|yes}}}}}} }}<noinclude> {{Documentation}} </noinclude>")
- 15:28, 22 February 2022 Procurator-Imperii-Romani talk contribs created page Template:Sidebar (Created page with "{{#invoke:Sidebar|sidebar}}<noinclude> {{documentation}}</noinclude>")
- 15:28, 22 February 2022 Procurator-Imperii-Romani talk contribs created page Module:Sidebar/configuration (Created page with "return { i18n = { child_yes = 'yes', float_none = 'none', float_left = 'left', wrap_true = 'true', navbar_none = 'none', navbar_off = 'off', default_list_title = 'List', title_not_to_add_navbar = 'Template:Sidebar', collapse_title_not_to_add_navbar = 'Template:Sidebar with collapsible lists', templatestyles = 'Module:Sidebar/styles.css', category = { child = 'Category:Pages using sidebar with the child parameter', conversion = '[[Category...")
- 15:28, 22 February 2022 Procurator-Imperii-Romani talk contribs created page Module:Sidebar (Created page with "-- -- This module implements {{Sidebar}} -- require('Module:No globals') local cfg = mw.loadData('Module:Sidebar/configuration') local p = {} local getArgs = require('Module:Arguments').getArgs --[[ Categorizes calling templates and modules with a 'style' parameter of any sort for tracking to convert to TemplateStyles. TODO after a long cleanup: Catch sidebars in other namespaces than Template and Module. TODO would probably want to remove /log and /archive as CS1 do...")
- 15:26, 22 February 2022 Procurator-Imperii-Romani talk contribs created page Template:Parameter names example (Created page with "<includeonly>{{#invoke:Parameter names example|main}}</includeonly><noinclude> {{hatnote|Template:Generic template demo and Template:Pnex redirect here.}}<!--(hatnote more noticeable here than within Documentation)--> {{Documentation}} </noinclude>")
- 15:26, 22 February 2022 Procurator-Imperii-Romani talk contribs created page Module:Hatnote (Created page with "-------------------------------------------------------------------------------- -- Module:Hatnote -- -- -- -- This module produces hatnote links and links to related articles. It -- -- implements the {{hatnote}} and {{format link}} meta-templates and includes -- -- helper functions for other Lua hatnote modules....")
- 15:26, 22 February 2022 Procurator-Imperii-Romani talk contribs created page Template:Hatnote (Created page with "<includeonly>{{#invoke:Hatnote|hatnote}}</includeonly><noinclude> {{documentation}} <!-- Categories go on the /doc subpage, and interwikis go on Wikidata. --> </noinclude>")
- 15:25, 22 February 2022 Procurator-Imperii-Romani talk contribs created page Template:Para (Created page with "<code class="nowrap" style="{{SAFESUBST:<noinclude />#if:{{{plain|}}}|border: none; background-color: inherit;}} {{SAFESUBST:<noinclude />#if:{{{plain|}}}{{{mxt|}}}{{{green|}}}{{{!mxt|}}}{{{red|}}}|color: {{SAFESUBST:<noinclude />#if:{{{mxt|}}}{{{green|}}}|#006400|{{SAFESUBST:<noinclude />#if:{{{!mxt|}}}{{{red|}}}|#8B0000|inherit}}}};}} {{SAFESUBST:<noinclude />#if:{{{style|}}}|{{{style}}}}}">|{{SAFESUBST:<noinclude />#if:{{{1|}}}|{{{1}}}=}}{{{2|}}}</code><noinc...")
- 15:23, 22 February 2022 Procurator-Imperii-Romani talk contribs created page Template:Documentation subpage (Created page with "<includeonly><!-- -->{{#ifeq:{{lc:{{SUBPAGENAME}}}} |{{{override|doc}}} | <!--(this template has been transcluded on a /doc or /{{{override}}} page)--> </includeonly><!-- -->{{#ifeq:{{{doc-notice|show}}} |show | {{Mbox | type = notice | style = margin-bottom:1.0em; | image = 40px|alt=|link= | text = {{strong|This is a documentation...")
- 15:23, 22 February 2022 Procurator-Imperii-Romani talk contribs created page Template:Terminate sentence (Created page with "{{{1}}}{{#if:{{#invoke:text|sentenceTerminated|{{{1|}}}}}||{{{2|.}}}}}<noinclude>{{documentation}}</noinclude>")
- 15:22, 22 February 2022 Procurator-Imperii-Romani talk contribs created page Module:Text (Created page with "local Text = { serial = "2017-11-01", suite = "Text" } --[=[ Text utilities ]=] -- local globals local PatternCJK = false local PatternCombined = false local PatternLatin = false local PatternTerminated = false local QuoteLang = false local QuoteType = false local RangesLatin = false local SeekQuote = false local function factoryQuote() -- Create quote definitions QuoteLang = { af = "bd",...")
- 15:22, 22 February 2022 Procurator-Imperii-Romani talk contribs created page Template:Strong (Created page with "<strong {{#if:{{{role|}}}|role="{{{role}}}"}} {{#if:{{{class|}}}|class="{{{class}}}"}} {{#if:{{{id|}}}|id="{{{id}}}"}} {{#if:{{{style|}}}|style="{{{style}}}"}} {{#if:{{{title|}}}|title="{{{title}}}"}}>{{{1}}}</strong><noinclude> {{documentation}} <!-- Add cats and interwikis to the /doc subpage, not here! --> </noinclude>")
- 15:20, 22 February 2022 Procurator-Imperii-Romani talk contribs created page Template:Mbox (Created page with "{{#invoke:Message box|mbox}}<noinclude> {{documentation}} <!-- Categories go on the /doc subpage, and interwikis go on Wikidata. --> </noinclude>")
- 15:20, 22 February 2022 Procurator-Imperii-Romani 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...")