TheOriginalOneの投稿記録
利用者の編集は47回。 2024年10月22日 (火)にアカウント作成。
2024年10月28日 (月)
- 20:102024年10月28日 (月) 20:10 差分 履歴 +210 利用者・トーク:Waki285 →wiki: 返信 タグ: 返信 モバイル編集
2024年10月27日 (日)
- 16:172024年10月27日 (日) 16:17 差分 履歴 +107 利用者:TheOriginalOne 編集の要約なし 最新 タグ: モバイル編集
- 16:142024年10月27日 (日) 16:14 差分 履歴 −72 利用者:TheOriginalOne 編集の要約なし タグ: モバイル編集
- 14:492024年10月27日 (日) 14:49 差分 履歴 +348 利用者・トーク:Waki285 →wiki: 返信 タグ: 返信 モバイル編集
2024年10月25日 (金)
- 20:292024年10月25日 (金) 20:29 差分 履歴 −2 利用者:TheOriginalOne 編集の要約なし タグ: モバイル編集
- 20:252024年10月25日 (金) 20:25 差分 履歴 +81 利用者:TheOriginalOne 編集の要約なし タグ: モバイル編集
- 20:102024年10月25日 (金) 20:10 差分 履歴 +798 新 テンプレート:User wikicreator ページの作成:「{{Userbox | id = {{#ifeq: {{{icon|}}} | flat | 43px | 43px }} | float = {{{float|右}}} <!-- 'right' translated as '右' --> | border-c = #808080 | id-c = #FFFFFF | info-c = #DBDBDB | info = {{#if:{{{username|}}}|'''{{PAGENAME}}'''|この利用者}} は '''ウィキ作成者''' です 教育ポータル上で。 <small>(<span class="plainlinks">[{{fullur…」 タグ: モバイル編集
- 09:422024年10月25日 (金) 09:42 差分 履歴 +216 新 利用者:TheOriginalOne ページの作成:「こんにちは、私は ''TheOriginalOne'' です。私はここの Wiki 作成者で、通常は機能リクエスト、バグ レポート、その他のメンテナンス関連の仕事を手伝っています。」
2024年10月23日 (水)
- 21:042024年10月23日 (水) 21:04 差分 履歴 +761 新 モジュール:Category handler/blacklist ページの作成:「-- This module contains the blacklist used by Module:Category handler. -- Pages that match Lua patterns in this list will not be categorised unless -- categorisation is explicitly requested. return { '^Main Page$', -- don't categorise the main page. -- Don't categorise the following pages or their subpages. -- "%f[/\0]" matches if the next character is "/" or the end of the string. '^Wikipedia:Cascade%-protected items%f[/\0]', '^User:UBX%f[/\0]', -- The u…」 最新
- 21:032024年10月23日 (水) 21:03 差分 履歴 +888 新 モジュール:Category handler/shared ページの作成:「-- 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 re…」 最新
- 21:032024年10月23日 (水) 21:03 差分 履歴 +5,755 新 モジュール:Category handler/config ページの作成:「-------------------------------------------------------------------------------- -- 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. -----------------------…」 最新
- 21:022024年10月23日 (水) 21:02 差分 履歴 +631 新 モジュール:Category handler/data ページの作成:「-- 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.matchesBlackl…」 最新
- 21:012024年10月23日 (水) 21:01 差分 履歴 +7,871 新 モジュール:Category handler ページの作成:「-------------------------------------------------------------------------------- -- -- -- CATEGORY HANDLER -- -- -- -- This module implements the {{category handler}} template in Lua, -- -- with a few improvements: all namespaces and all namespace…」 最新
- 20:572024年10月23日 (水) 20:57 差分 履歴 +745 新 モジュール:Yesno ページの作成:「-- 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…」 最新
- 20:552024年10月23日 (水) 20:55 差分 履歴 +458 新 モジュール:No globals ページの作成:「local mt = getmetatable(_G) or {} function mt.__index (t, k) if k ~= 'arg' then -- perf optimization here and below: do not load Module:TNT unless there is an error error(require('Module:TNT').format('I18n/No globals', 'err-read', tostring(k)), 2) end return nil end function mt.__newindex(t, k, v) if k ~= 'arg' then error(require('Module:TNT').format('I18n/No globals', 'err-write', tostring(k)), 2) end rawset(t, k, v) end setmetatable(_G, mt)」 最新
- 20:542024年10月23日 (水) 20:54 差分 履歴 +6,474 新 モジュール:Message box/configuration ページの作成:「-------------------------------------------------------------------------------- -- Message box configuration -- -- -- -- This module contains configuration data for Module:Message box. -- -------------------------------------------------------------------------------- return { ambox = { types = { speedy = { class = 'ambox…」 最新
- 20:542024年10月23日 (水) 20:54 差分 履歴 +2,385 新 モジュール:Message box/ambox.css ページの作成:「→* * {{ambox}} (article message box) styles * * @source https://www.mediawiki.org/wiki/MediaWiki:Gadget-enwp-boxes.css * @revision 2021-07-15: table.ambox { →10% = Will not overlap with other elements: margin: 0 10%; border: 1px solid #a2a9b1; →Default "notice" blue: border-left: 10px solid #36c; background-color: #fbfbfb; box-sizing: border-box; } →Single border between stacked boxes.: table.ambox + table.ambox, table.ambox + link + tabl…」 最新
- 20:532024年10月23日 (水) 20:53 差分 履歴 +18,591 新 モジュール:Message box ページの作成:「require('Module:No globals') 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 -----------------------------------------------------------…」 最新
- 20:522024年10月23日 (水) 20:52 差分 履歴 +9,312 新 テンプレート:Mbox/styles.css ページの作成:「→* @source http://en.wikipedia.org/wiki/MediaWiki:Common.css | 2020-02-03: →* [[Module:Message box]]: →* WARNING * Some wikis use the styles located here in their local CSS with an import * directive. Do not remove classes from this page until those wikis have * transitioned to TemplateStyles. MediaWiki wiki uses TemplateStyles and does * not load this gadget; see Module:Message box for more details.: /** NOTE: These do not include .messagebox styles…」 最新
- 20:502024年10月23日 (水) 20:50 差分 履歴 +195 新 テンプレート:Mbox ページの作成:「<templatestyles src="Template:Mbox/styles.css" /> {{#invoke:Message box|mbox}}<noinclude> {{documentation}} <!-- Categories go on the /doc subpage, and interwikis go on Wikidata. --> </noinclude>」 最新
- 09:412024年10月23日 (水) 09:41 差分 履歴 +381 新 テンプレート:Box/styles.css ページの作成:「.wd-box { box-shadow: 0 0 0.2em #999; border-radius: 0.2em; margin: 0 0 2em 0; padding: 10px; width: 100%; box-sizing: border-box; background: white; } .wd-box .header { padding: 1em 1.6em 1em; font-size: 220%; color: #484848; } .wd-box .subheader { padding: 0.5em 1.6em 0.5em; font-size: 120%; color: #484848; } .wd-box .description { color: #666; }」 最新
- 09:402024年10月23日 (水) 09:40 差分 履歴 +1,167 新 テンプレート:Box ページの作成:「<onlyinclude><templatestyles src="Template:Box/styles.css" /> {| {{#if:{{{lang|}}}|lang="{{{lang}}}"}} dir="{{Dir|{{{lang}}}}}" class="wd-box {{{class|}}} mw-content-{{Dir|{{{lang}}}}}" style="box-shadow: 0 0 .2em {{{border-color|{{{border|#999}}}}}}; background-color:{{{background-color|white}}}; {{{style|}}}" {{#if:{{{header|<noinclude>header</noinclude>}}}|{{!}} class="header" {{!}} <strong>{{{header}}}</strong> {{#if:{{{image|}}} | {{!}}{{!}} class="image" {{!}}…」 最新
- 09:292024年10月23日 (水) 09:29 差分 履歴 +7 MediaWiki:Sidebar 編集の要約なし 最新
- 09:282024年10月23日 (水) 09:28 差分 履歴 −19 MediaWiki:Sidebar 編集の要約なし
- 09:262024年10月23日 (水) 09:26 差分 履歴 +9 MediaWiki:Sidebar 編集の要約なし
- 09:232024年10月23日 (水) 09:23 差分 履歴 +15 新 MediaWiki:Specialpages-group-wikimanage ページの作成:「Wiki management」 最新
- 09:202024年10月23日 (水) 09:20 差分 履歴 +1 MediaWiki:Sidebar 編集の要約なし
- 09:192024年10月23日 (水) 09:19 差分 履歴 +8 MediaWiki:Sidebar 編集の要約なし
- 09:192024年10月23日 (水) 09:19 差分 履歴 −5 MediaWiki:Sidebar 編集の要約なし
- 09:182024年10月23日 (水) 09:18 差分 履歴 +6 細 MediaWiki:Sidebar 編集の要約なし