User contributions for U2e
Jump to navigation
Jump to search
18 May 2025
- 08:5508:55, 18 May 2025 diff hist +888 N 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..."
- 08:5408:54, 18 May 2025 diff hist 0 m Module:Category handler/config Protected "Module:Category handler/config" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)) current
- 08:5408:54, 18 May 2025 diff hist +5,755 N Module:Category handler/config Created page with "-------------------------------------------------------------------------------- -- Module:Category handler configuration data -- -- Language-specific parameter names and values can be set here. -- -- For blacklist config, see Module:Category handler/blacklist. -- -------------------------------------------------------------------------------- local cfg = {} -- Don't edit this line. ----------------------------..."
- 08:5408:54, 18 May 2025 diff hist 0 m Module:Category handler/data Protected "Module:Category handler/data" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)) current
- 08:5408:54, 18 May 2025 diff hist +631 N Module:Category handler/data Created page with "-- This module assembles data to be passed to Module:Category handler using -- mw.loadData. This includes the configuration data and whether the current -- page matches the title blacklist. local data = require('Module:Category handler/config') local mShared = require('Module:Category handler/shared') local blacklist = require('Module:Category handler/blacklist') local title = mw.title.getCurrentTitle() data.currentTitleMatchesBlacklist = mShared.matchesBlacklist(..."
- 08:5308:53, 18 May 2025 diff hist 0 Template:Userbox No edit summary current
- 08:5308:53, 18 May 2025 diff hist 0 m Module:Color contrast/colors Protected "Module:Color contrast/colors" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)) current
- 08:5308:53, 18 May 2025 diff hist +6,119 N Module:Color contrast/colors Created page with "return { aliceblue = 0.92880068253475, antiquewhite = 0.84646951707754, aqua = 0.7874, aquamarine = 0.8078549208338, azure = 0.97265264954166, beige = 0.8988459998705, bisque = 0.80732327372979, black = 0, blanchedalmond = 0.85084439608156, blue = 0.0722, blueviolet = 0.12622014321946, brown = 0.098224287876511..."
- 08:5208:52, 18 May 2025 diff hist 0 m Module:Color contrast Protected "Module:Color contrast" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)) current
- 08:5208:52, 18 May 2025 diff hist +6,967 N Module:Color contrast Created page with "-- -- This module implements -- {{Color contrast ratio}} -- {{Greater color contrast ratio}} -- {{ColorToLum}} -- {{RGBColorToLum}} -- local p = {} local HTMLcolor = mw.loadData( 'Module:Color contrast/colors' ) local function sRGB (v) if (v <= 0.03928) then v = v / 12.92 else v = math.pow((v+0.055)/1.055, 2.4) end return v end local function rgbdec2lum(R, G, B) if ( 0 <= R and R < 256 and 0 <= G and G < 256 and 0 <= B and B < 256 ) then return 0.2126 *..."
- 08:5108:51, 18 May 2025 diff hist 0 m Module:Arguments Protected "Module:Arguments" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)) current
- 08:5108:51, 18 May 2025 diff hist +10,054 N 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'..."
- 08:5008:50, 18 May 2025 diff hist 0 m Module:Namespace detect Protected "Module:Namespace detect" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)) current
- 08:5008:50, 18 May 2025 diff hist +5,992 N 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..."
- 08:5008:50, 18 May 2025 diff hist 0 m Module:Yesno Protected "Module:Yesno" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)) current
- 08:5008:50, 18 May 2025 diff hist +745 N 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 =..."
- 08:4908:49, 18 May 2025 diff hist 0 m Module:Category handler Protected "Module:Category handler" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)) current
- 08:4908:49, 18 May 2025 diff hist +7,871 N 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..."
- 08:4808:48, 18 May 2025 diff hist 0 m Module:Userbox Protected "Module:Userbox" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)) current
- 08:4808:48, 18 May 2025 diff hist +13,211 N Module:Userbox Created page with "-- This module implements {{userbox}}. local categoryHandler = require('Module:Category handler').main local p = {} -------------------------------------------------------------------------------- -- Helper functions -------------------------------------------------------------------------------- local function checkNum(val, default) -- Checks whether a value is a number greater than or equal to zero. If so, -- returns it as a number. If not, returns a default valu..."
- 08:4708:47, 18 May 2025 diff hist 0 Template:Userbox No edit summary
- 08:4308:43, 18 May 2025 diff hist −160 Template:Userbox No edit summary
- 08:4308:43, 18 May 2025 diff hist +187 Template:Userbox No edit summary
- 08:4208:42, 18 May 2025 diff hist +6,119 N Module:Color contrast/colors Created page with "return { aliceblue = 0.92880068253475, antiquewhite = 0.84646951707754, aqua = 0.7874, aquamarine = 0.8078549208338, azure = 0.97265264954166, beige = 0.8988459998705, bisque = 0.80732327372979, black = 0, blanchedalmond = 0.85084439608156, blue = 0.0722, blueviolet = 0.12622014321946, brown = 0.098224287876511..." current
- 08:4108:41, 18 May 2025 diff hist +6,967 N Module:Color contrast Created page with "-- -- This module implements -- {{Color contrast ratio}} -- {{Greater color contrast ratio}} -- {{ColorToLum}} -- {{RGBColorToLum}} -- local p = {} local HTMLcolor = mw.loadData( 'Module:Color contrast/colors' ) local function sRGB (v) if (v <= 0.03928) then v = v / 12.92 else v = math.pow((v+0.055)/1.055, 2.4) end return v end local function rgbdec2lum(R, G, B) if ( 0 <= R and R < 256 and 0 <= G and G < 256 and 0 <= B and B < 256 ) then return 0.2126 *..." current
- 08:4008:40, 18 May 2025 diff hist 0 m Module:Arguments Protected "Module:Arguments" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)) current
- 08:3908:39, 18 May 2025 diff hist +10,054 N 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'..."
- 08:3808:38, 18 May 2025 diff hist 0 m Module:Yesno Protected "Module:Yesno" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)) current
- 08:3708:37, 18 May 2025 diff hist +744 N 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 ==..."
- 08:3708:37, 18 May 2025 diff hist 0 m Module:Category handler Protected "Module:Category handler" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)) current
- 08:3708:37, 18 May 2025 diff hist +7,871 N 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..."
- 08:3208:32, 18 May 2025 diff hist 0 m Module:Userbox Protected "Module:Userbox": Template ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)) current
- 08:3208:32, 18 May 2025 diff hist +13,211 N Module:Userbox Created page with "-- This module implements {{userbox}}. local categoryHandler = require('Module:Category handler').main local p = {} -------------------------------------------------------------------------------- -- Helper functions -------------------------------------------------------------------------------- local function checkNum(val, default) -- Checks whether a value is a number greater than or equal to zero. If so, -- returns it as a number. If not, returns a default valu..."
- 08:3108:31, 18 May 2025 diff hist +1,876 N U2E:Blocking policy Created page with "= U2E Blocking Policy = At U2E, we strive to maintain a respectful, factual, and legally compliant community. Blocking users is a serious action reserved for situations where disruptive behavior threatens the quality or safety of the project. == When May Users Be Blocked? == Users may be blocked if they: * Persistently violate our content policies, including posting libelous, false, or hateful information. * Engage in harassment, threats, or doxxing of individuals. *..." current
- 08:2908:29, 18 May 2025 diff hist 0 User:U2e No edit summary Tag: Visual edit: Switched
- 08:2908:29, 18 May 2025 diff hist +39 N User:U2e Created page with "Hi! I'm the owner of U2E. {{I-use-Tor}}"
- 08:2808:28, 18 May 2025 diff hist 0 m Template:I-use-the-clearnet Protected "Template:I-use-the-clearnet" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)) current
- 08:2808:28, 18 May 2025 diff hist +270 N Template:I-use-the-clearnet Created page with "<div style="border: 2px solid #4a7ebb; background-color: #eef3fb; padding: 8px 12px; border-radius: 6px; font-size: 95%; color: #3a3a3a; max-width: 320px; margin: 6px 0;"> <strong>Note:</strong> I access U2E via the clearnet and understand this is less private. </div>"
- 08:2708:27, 18 May 2025 diff hist −193 Template:Userbox Blanked the page Tag: Blanking
- 08:2708:27, 18 May 2025 diff hist −119 Template:I-use-Tor No edit summary current
- 08:2708:27, 18 May 2025 diff hist +240 Template:I-use-Tor No edit summary
- 08:2608:26, 18 May 2025 diff hist −6 Template:I-use-Tor No edit summary
- 08:2608:26, 18 May 2025 diff hist +171 N Template:I-use-Tor Created page with "{{Userbox|<a href="https://www.torproject.org/" target="_blank" rel="noopener" style="color:#1a3d7c; text-decoration:none;">🧅 I use Tor Browser for better privacy</a>}}"
- 08:2508:25, 18 May 2025 diff hist 0 m Template:Userbox Protected "Template:Userbox" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite))
- 08:2508:25, 18 May 2025 diff hist +193 N Template:Userbox Created page with "<span class="userbox" style="border: 1px solid #4a7ebb; background-color: #dbe9ff; padding: 2px 8px; border-radius: 4px; font-size: 90%; color: #1a3d7c; white-space: nowrap;"> {{{1}}} </span>"
- 08:2408:24, 18 May 2025 diff hist 0 m U2E:How to access U2E Protected "U2E:How to access U2E" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite))
- 08:2308:23, 18 May 2025 diff hist +34 U2E:How to access U2E No edit summary
- 08:2308:23, 18 May 2025 diff hist +1,378 N U2E:How to access U2E Created page with "= How to Access U2E = Welcome! This page explains the two primary ways to access and contribute to U2E. == Access via Tor (Most Secure, Most Preferred) == For the highest privacy and security, we strongly recommend accessing U2E through the [https://www.torproject.org/ Tor Browser]. * Connect to our hidden service at: '''3gce2pnorhrrnrkugdwy3jrjgndbh3vzewqjs2x3jw7gujamr4c26tad.onion''' * Benefits of using Tor: ** Anonymity and protection of your IP address *..."
- 08:2108:21, 18 May 2025 diff hist +648 Main Page No edit summary
- 08:2008:20, 18 May 2025 diff hist 0 m Main Page Protected "Main Page": High traffic page: This is U2E's home page. ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite))