More actions
Combined display of all available logs of AoM Retold. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 19:26, 10 October 2024 Adam talk contribs created page File:Background.webp (Uploaded own work with UploadWizard)
- 19:26, 10 October 2024 Adam talk contribs uploaded File:Background.webp (Uploaded own work with UploadWizard) Tag: Upload Wizard
- 19:19, 10 October 2024 Adam talk contribs deleted page File:Background.webp
- 19:14, 10 October 2024 Adam talk contribs created page File:Background.webp (Uploaded own work with UploadWizard)
- 19:14, 10 October 2024 Adam talk contribs uploaded File:Background.webp (Uploaded own work with UploadWizard) Tag: Upload Wizard
- 19:00, 10 October 2024 Adam talk contribs deleted page File:AOMR-BG.webp
- 18:14, 10 October 2024 Adam talk contribs created page File:AOMR-BG.webp (Uploaded own work with UploadWizard)
- 18:14, 10 October 2024 Adam talk contribs uploaded File:AOMR-BG.webp (Uploaded own work with UploadWizard) Tag: Upload Wizard
- 18:06, 10 October 2024 Adam talk contribs deleted page File:AOMR-BG.webp (error)
- 17:36, 10 October 2024 Adam talk contribs deleted page File:AOMR-BG.webp (Deleted old revision 20241010173555!AOMR-BG.webp: outdated)
- 17:35, 10 October 2024 Adam talk contribs uploaded a new version of File:AOMR-BG.webp (gradient change)
- 16:07, 10 October 2024 Adam talk contribs created page Module:InfoboxNeue/example/doc (Created page with "This is the documentation page for Module:InfoboxNeue/example")
- 16:04, 10 October 2024 Adam talk contribs created page Module:InfoboxNeue/example (Created page with "local p = {} local infobox = require( 'Module:InfoboxNeue' ):new() function p.makeComponentsExample() local sectionTable = {} infobox:renderImage( 'Pico at New Babbage 1 1.jpg' ) infobox:renderIndicator( { data = 'Indicator', desc = 'Indicator message', } ) infobox:renderHeader( { title = 'Title', subtitle = 'Subtitle' } ) sectionTable = { infobox:renderItem( { label = 'Item label', data = 'Item data' } ), infobox:renderItem( { label = 'I...")
- 16:02, 10 October 2024 Adam talk contribs created page Module:InfoboxNeue/i18n.json (Created page with "{ "license": "CC0-1.0", "description": { "en": "Translation table for the Module:InfoboxNeue" }, "schema": { "fields": [ { "name": "id", "type": "string" }, { "name": "message", "type": "localized" }, { "name": "type", "type": "string" }, { "name": "label", "type": "localized" }, { "name": "required", "type": "boolean" }, { "name": "suggested", "type": "boolean" }, { "name"...")
- 16:01, 10 October 2024 Adam talk contribs created page Template:InfoboxNeue/doc (Created page with "{{Documentation}} {{t|InfoboxNeue}} is a general use infobox template. See Module:InfoboxNeue for more documentation. === Usage === <syntaxhighlight> {{InfoboxNeue | snippet = <!-- Text that goes after "Quick facts: ", defaults to the page's root name --> | image = <!-- File name without namespace prefix --> | indicator = <!-- Indicator data, required for the other indicator arguments --> | indicatorClass = <!-- Indicator class -->...")
- 16:00, 10 October 2024 Adam talk contribs created page Template:InfoboxNeue (Created page with "<includeonly>{{#invoke:InfoboxNeue|fromArgs}}</includeonly><noinclude>{{/doc}}</noinclude>")
- 15:59, 10 October 2024 Adam talk contribs created page Module:InfoboxNeue/styles.css (Created page with ".infobox { margin-bottom: var(--space-md); width: 100%; max-width: 400px; border-radius: var(--border-radius--medium); background-color: var(--color-surface-2); font-size: var(--font-size-small); line-height: var(--line-height-sm); } .infobox.mw-collapsed { background-color: transparent; box-shadow: inset 0 0 0 1px var(--border-color-base); } .infobox__content { position: relative; } .infobox__image { position: relative; margin-bottom: -2rem; } .infobox__...")
- 15:56, 10 October 2024 Adam talk contribs created page Module:InfoboxNeue/doc (Created page with "{{Documentation|scwShared=true}} This module is used by Lua modules to build infobox. == Components == {{#invoke:InfoboxNeue/example|makeComponentsExample}} === Image === <syntaxhighlight lang="lua"> infobox:renderImage( 'Pico at New Babbage 1 1.jpg' ) </syntaxhighlight> === Indicator === {| class="wikitable" ! Parameter !! Description !! Type !! Status |- | <code>data</code> || Data of the indicator || string || '''required''' |- | <code>desc</code> || De...")
- 15:56, 10 October 2024 Adam talk contribs created page Module:InfoboxNeue (Created page with "local InfoboxNeue = {} local metatable = {} local methodtable = {} local libraryUtil = require( 'libraryUtil' ) local checkType = libraryUtil.checkType local checkTypeMulti = libraryUtil.checkTypeMulti local i18n = require( 'Module:i18n' ):new() metatable.__index = methodtable metatable.__tostring = function ( self ) return tostring( self:renderInfobox() ) end --- Wrapper function for Module:i18n.translate --- --- @param key string The translation key --- @return...")
- 15:06, 10 October 2024 Adam talk contribs deleted page Template:Units1 (not needed)
- 15:05, 10 October 2024 Adam talk contribs deleted page Module:Units1 (not needed)
- 15:02, 10 October 2024 Adam talk contribs created page Template:Units1 (Created page with "<includeonly> {{#invoke:Units1|main | name = {{{name|}}} | image = {{{image|}}} | intro = {{{intro|}}} | removal = {{{removal|}}} | type = {{{type|}}} | civilization = {{{civilization|}}} | age = {{{age|}}} | god = {{{god|}}} | pronunciation = {{{pronunciation|}}} | internal_name = {{{internal_name|}}} | train_at = {{{train_at|}}} | created_through = {{{created_through|}}} | requires = {{{requires|}}} | cheat_code = {{{cheat_code|}}} | wood = {{{wood|}}} | food = {{{food...")
- 15:02, 10 October 2024 Adam talk contribs created page Module:Units1 (Created page with "local p = {} function p.main(frame) local args = frame:getParent().args -- Function to safely get values local function getValue(key) return args[key] and args[key] ~= "" and args[key] or "N/A" end -- Collecting data local unitData = { name = getValue("name"), image = getValue("image"), unit_info = { intro = getValue("intro"), removal = getValue("removal"), type = getValue("typ...")
- 14:44, 10 October 2024 Adam talk contribs created page Module:Common/Api/doc (Created page with "{{Documentation|scwShared=true}}")
- 14:43, 10 October 2024 Adam talk contribs created page Module:Common/Api (Created page with "local common = {} --- Checks if Api Request was successful and if the Response is valid --- @param response table --- @param errorOnData boolean --- @param errorOnData boolean --- @return boolean function common.checkResponseStructure( response, errorOnStatus, errorOnData ) if response[ 'status_code' ] ~= nil and response[ 'status_code' ] ~= 200 then if errorOnStatus == nil or errorOnStatus == true then error( 'API request returns the error code...")
- 14:42, 10 October 2024 Adam talk contribs created page Module:Pluralize/doc (Created page with "{{Documentation}}")
- 14:42, 10 October 2024 Adam talk contribs created page Module:Pluralize (Created page with "local p = {} -- Pluralize a word based on local dictionary or rules. -- To use this directly in Lua, use common.pluralize instead function p.pluralize( frame ) local base = frame.args[ 1 ] local return_val local base_len = string.len( base ) local base_end = string.sub( base, -1 ) local base_last2 = string.sub( base, -2 ) -- dictionary first - irregular plurals if (string.lower( base ) == 'nebula') then return_val = string.sub( base,...")
- 14:41, 10 October 2024 Adam talk contribs created page Module:Common/doc (Created page with "{{Documentation|scwShared=true}}")
- 14:41, 10 October 2024 Adam talk contribs created page Module:Common (Created page with "local common = {} --- Convert an input to number ---@param num string|integer Input ---@param onFail string|integer Output if conversion fails ---@param base integer Base for tonumber, defaults to 10 ---@return number function common.toNumber( num, onFail, base ) base = base or 10 if num == nil then return onFail end local numCopy = num if type( num ) == 'string' then numCopy = num:gsub( ',', '.' ) end numCopy = tonumber( numCopy...")
- 14:41, 10 October 2024 Adam talk contribs created page Module:Common/SMW/doc (Created page with "{{Documentation|scwShared=true}}")
- 14:40, 10 October 2024 Adam talk contribs created page Module:Common/SMW (Created page with "local commonSMW = {} local common = require( 'Module:Common' ) local libraryUtil = require( 'libraryUtil' ) local checkType = libraryUtil.checkType local checkTypeMulti = libraryUtil.checkTypeMulti --- Formats a value to be used by smw.set --- --- @param datum table An entry from data.json --- @param val any The value to be formatted --- @param moduleConfig table Optional, only used for multilingual text (phasing out) --- @param lang table Content language, uses page l...")
- 14:37, 10 October 2024 Adam talk contribs created page Template:Infobox/doc (Created page with "{{Documentation|fromWikipedia=true}} <!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE --> Please refer to {{t|Infobox}} on Wikipedia for more details <noinclude></noinclude> <includeonly> <!-- Template catergories go here --> Category:Infobox templates </includeonly>")
- 14:37, 10 October 2024 Adam talk contribs created page Template:Infobox (Created page with "{{Documentation|fromWikipedia=true}} <!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE --> Please refer to {{t|Infobox}} on Wikipedia for more details <noinclude></noinclude> <includeonly> <!-- Template catergories go here --> Category:Infobox templates </includeonly>")
- 14:35, 10 October 2024 Adam talk contribs created page Module:Infobox/doc (Created page with "{{Documentation|fromWikipedia=true}} '''Module:Infobox''' is a module that implements the {{tl|Infobox}} template. Please see the template page for usage instructions.")
- 14:35, 10 October 2024 Adam talk contribs created page Module:Infobox (Created page with "-- -- This module implements {{Infobox}} -- local p = {} -- local navbar = require('Module:Navbar')._navbar local args = {} local origArgs local root local function notempty( s ) return s and s:match( '%S' ) end local function fixChildBoxes(sval, tt) if notempty(sval) then local marker = '<span class=special_infobox_marker>' local s = sval s = mw.ustring.gsub(s, '(<%s*[Tt][Rr])', marker .. '%1') s = mw.ustring.gsub(s, '(</[Tt][Rr]%s*>)', '%1' .. marker) i...")
- 14:33, 10 October 2024 Adam talk contribs created page Template:Units (Created page with "<noinclude> This template displays information about a unit in the game. </noinclude> {{#invoke:Units|main |image = {{#if: {{{image|}}}|{{{image}}}|}} |name = {{{name|}}} |intro = {{{intro|}}} |removal = {{{removal|}}} |type = {{{type|}}} |civilization = {{{civilization|}}} |age = {{{age|}}} |god = {{{god|}}} |pronunciation = {{{pronunciation|}}} |internal_name = {{{internal_name|}}} |train_at = {{{train_at|}}} |created_through = {{{created_through|}}} |requires = {{{re...")
- 14:32, 10 October 2024 Adam talk contribs created page Module:Units (Created page with "local Units = {} local metatable = { __index = Units } local infobox = require('Module:Infobox') -- Assuming you have an Infobox rendering module local mw = mw or {} -- If 'mw' is undefined, create a dummy table to prevent errors -- Utility function to validate image file types local function isValidImageFile(fileName) local validExtensions = { "jpg", "jpeg", "png", "webp" } local extension = fileName:match("^.+%.(.+)$") if extension then extension = extension:low...")
- 13:35, 6 October 2024 Adam talk contribs created page Titan Prometheus (main pages import)
- 13:35, 6 October 2024 Adam talk contribs created page Titan Egyptians (main pages import)
- 13:35, 6 October 2024 Adam talk contribs created page The Argo (main pages import)
- 13:35, 6 October 2024 Adam talk contribs created page Petsuchos (main pages import)
- 13:35, 6 October 2024 Adam talk contribs created page Boar of Set (main pages import)
- 13:35, 6 October 2024 Adam talk contribs created page Tyr (main pages import)
- 13:35, 6 October 2024 Adam talk contribs created page Automaton (main pages import)
- 13:35, 6 October 2024 Adam talk contribs created page Behemoth (main pages import)
- 13:35, 6 October 2024 Adam talk contribs created page Oracle Hero (main pages import)
- 13:35, 6 October 2024 Adam talk contribs created page Baboon of Set (main pages import)
- 13:35, 6 October 2024 Adam talk contribs created page Oracle (main pages import)
- 13:35, 6 October 2024 Adam talk contribs created page Fanatic (main pages import)
- 13:35, 6 October 2024 Adam talk contribs created page Aphrodite (main pages import)