Related changes
Appearance
Enter a page name to see changes on pages linked to or from that page. (To see members of a category, enter Category:Name of category). Changes to pages on your Watchlist are in bold.
List of abbreviations:
- D
- Wikidata edit
- N
- This edit created a new page (also see list of new pages)
- m
- This is a minor edit
- b
- This edit was performed by a bot
- (±123)
- The page size changed by this number of bytes
- Temporarily watched page
11 December 2024
- diffhist Module:headword 10:42 −21 Benwing2 talk contribs (remove extraneous whitespace)
- diffhist Module:gender and number 05:25 +127 Benwing2 talk contribs (User:MuDavid if the noun class is specified as 'c?', add to 'Requests for noun class in LANG entries')
- diffhist Module:utilities 03:25 −2 Theknightwho talk contribs (Delegate checking for whether the page is a content page to is_content_page is Module:pages.)
- diffhist Module:pages 03:18 +476 Theknightwho talk contribs (Add is_content_page().)
- diffhist Module:pages 02:29 +529 Theknightwho talk contribs (Support gadget and user scripts/stylesheets, as well as documentation, sandboxes and testcases for various other page types.)
- diffhist Module:maintenance category 00:29 +144 Theknightwho talk contribs (Use new is_sandbox() and is_testcase_page() functions, which can handle various edge cases like testcase documentation pages properly.)
- diffhist Module:pages 00:20 +1,449 Theknightwho talk contribs (Templates and modules can now include up to all three of "testcase", "sandbox" and "documentation" as applicable. Also add is_documentation, is_testcase_page and is_sandbox functions)
10 December 2024
- diffhist Module:pages 22:25 +157 Theknightwho talk contribs (Distinguish user subpages in page types.)
- diffhist Module:pages 21:09 −40 Theknightwho talk contribs (Remove old alias.)
- diffhist Module:maintenance category 20:54 +20 Theknightwho talk contribs (pagetype() in Module:pages renamed to get_pagetype().)
- diffhist Module:pages 19:45 +43 Theknightwho talk contribs (Rename pagetype to get_pagetype.)
- diffhist Module:scripts/data 18:18 +107 Theknightwho talk contribs (Load Module:string utilities on demand.)
- diffhist Module:languages/data/3/u 18:13 +106 Theknightwho talk contribs (Load Module:string utilities on demand.)
- diffhist Module:languages/data/3/m 18:08 +106 Theknightwho talk contribs (Load Module:string utilities on demand.)
- diffhist Module:languages/data/2 17:59 +106 Theknightwho talk contribs (Load Module:string utilities on demand.)
- diffhist Module:languages 17:55 −74 Theknightwho talk contribs (Remove redundant addDefaultTypes, as it's no longer called anywhere.)
- diffhist Module:languages/data/3/u 17:39 −52 Theknightwho talk contribs (addDefaultTypes now merged into finalizeData.)
- diffhist Module:languages/data/3/m 17:31 −52 Theknightwho talk contribs (addDefaultTypes now merged into finalizeData.)
- diffhist Module:languages/data/2 17:12 −52 Theknightwho talk contribs (addDefaultTypes now merged into finalizeData.)
- diffhist Module:scripts 14:47 +33 Theknightwho talk contribs (Accept opts table in toJSON, matching the main toJSON function in Module:JSON, with the addition of a lua_table flag that replaces the previous returnTable flag.)
- diffhist m Module:languages 14:44 −19 Theknightwho talk contribs
- diffhist Module:languages 14:32 +51 Theknightwho talk contribs (Accept opts table in toJSON, matching the main toJSON function in Module:JSON, with the addition of a lua_table flag that replaces the previous returnTable flag.)
- diffhist Module:languages 14:25 −45 Theknightwho talk contribs (Minor optimisation.)
9 December 2024
- diffhist Module:headword/data 23:18 −39 Benwing2 talk contribs (add aliases 'compadv', 'supadv', 'propn', remove ambigous 'pre' and 'pro' that now throw errors)
- diffhist Module:headword 09:27 +183 Benwing2 talk contribs (temporary code to throw error if 'pre' or 'pro' is encountered as POS alias)
- diffhist Module:headword/data 00:05 +79 Benwing2 talk contribs (add 'pref' = prefix, 'suf' = suffix as POS aliases)
8 December 2024
- diffhist Module:headword 23:03 +91 Benwing2 talk contribs (add tracking for 'pro' = pronoun)
- diffhist Module:headword 22:58 +166 Benwing2 talk contribs (addt tracking for alias 'pre')
- diffhist Module:headword/data 22:52 +115 Benwing2 talk contribs (add 'compadj', 'supadj' as aliases, FIXME about 'pre')
- diffhist Module:headword/templates 22:50 −67 Benwing2 talk contribs (use canonicalize_pos() in Module:headword)
- diffhist Module:headword 22:47 +470 Benwing2 talk contribs (add canonicalize_pos() for canonicalizing part-of-speech aliases and pluralizing appropriately)
- Deletion log 01:01 Theknightwho talk contribs deleted page Module:parameters/remove holes (Obsolete and orphaned module: content was: " -- A helper function that removes empty numeric indexes in a table, -- so that the values are tightly packed like in a normal Lua table. -- equivalent to require("Module:table").compressSparseArray return function(t) local highest = 0 for num, _ in pairs(t) do if type(num) == "number" and num > 0 and num < math.huge and math.floor(num) == num then highest = math.max(highest, num) end end local need_to_compress = false for i = 1, highest...)
- diffhist Module:parameter utilities 00:57 +11 Theknightwho talk contribs (Bugfix.)
- Deletion log 00:50 Theknightwho talk contribs undeleted page Module:parameters/remove holes (3 revisions)
- Deletion log 00:40 Theknightwho talk contribs deleted page Module:parameters/remove holes (Obsolete and orphaned module: content was: " -- A helper function that removes empty numeric indexes in a table, -- so that the values are tightly packed like in a normal Lua table. -- equivalent to require("Module:table").compressSparseArray return function(t) local highest = 0 for num, _ in pairs(t) do if type(num) == "number" and num > 0 and num < math.huge and math.floor(num) == num then highest = math.max(highest, num) end end local need_to_compress = false for i = 1, highest...)
- diffhist Module:parameters 00:33 +272 Theknightwho talk contribs (When compressing holes, iterate only over the keys that are actually in the table instead of checking from 1 to the max index, as that's vulnerable to parameters with very high numbers.)
7 December 2024
- diffhist Module:parameter utilities 23:56 +52 Theknightwho talk contribs (Add note about abusive inputs.)
- diffhist Module:parameters 23:07 +451 Theknightwho talk contribs (More sophisticated checking of number inputs.)
- diffhist Module:pages 21:35 0 Theknightwho talk contribs (Apply that to templates as well.)
- diffhist Module:parameters 20:36 +257 Theknightwho talk contribs (Do the same for the strict flag for the title type.)
- diffhist Module:parameters 20:18 +853 Theknightwho talk contribs (Stricter handling of the "method" flag for languages, families and scripts, and use the "fallback" flag for WM languages instead.)
- diffhist Module:parameters 19:07 +16 Theknightwho talk contribs (Correct docs for boolean.)
- diffhist Module:parameters 18:32 −70 Theknightwho talk contribs (Remove uncapitalised type, which was retained for the transition.)
- diffhist Module:parameters 18:27 +49 Theknightwho talk contribs (Capitalise "Wikimedia language" as a parameter type, for consistency with the type given by WM language objects.)
- diffhist Module:parameters 17:51 −455 Theknightwho talk contribs (Use iterateList in Module:table.)
- diffhist Module:table 17:36 +195 Theknightwho talk contribs (Add iterateList.)
- diffhist m Module:fun 16:47 −18 Theknightwho talk contribs (Consistent variable names.)
- diffhist Module:parameters 15:21 +3,096 Theknightwho talk contribs (Load external functions on demand, and track cases with the type "number" that aren't positive integers.)
- diffhist m Module:maintenance category 07:37 −383 Benwing2 talk contribs (not correct; Reverted edits by Benwing2. If you think this rollback is in error, please leave a message on my talk page.) Tag: Rollback
- diffhist Module:pages 07:34 +73 Benwing2 talk contribs (documentation pages that are testcase pages should be categorized as 'module testcase page' not 'module documentation page')