所有公开日志
跳转到导航
跳转到搜索
所有NeuroWiki公开日志的联合展示。您可以通过选择日志类型、输入用户名(区分大小写)或相关页面(区分大小写)筛选日志条目。
- 2025年3月8日 (六) 23:41 Selfice 留言 贡献创建了页面NeuroWiki:条目收录范围 (创建页面,内容为“{{Info/Policies}} 本方针明确界定本站允许收录条目的具体标准,构成内容创建的基本门槛要求。 == 核心原则 == * '''主体中心原则''':所有条目必须围绕Neuro-sama生态系统展开 * '''现实影响原则''':虚拟角色相关条目需具备现实世界影响力 * '''数字遗产原则''':收录内容应具有长期保存价值 * '''法律安全原则''':排除可能引致法律风险的内容 == 明确收录…”)
- 2025年3月8日 (六) 23:25 Selfice 留言 贡献创建了页面NeuroWiki:内容管理方针 (创建页面,内容为“{{Info/Policies}} 本方针确立本站内容的收录标准与管理规范,所有编辑者必须确保内容符合以下核心原则。 == 内容标准 == * '''法律合规''': ** 严格遵守中华人民共和国香港特别行政区现行法例 ** 任何涉政内容需提前获得行政员批准 * '''内容质量''': ** 真实性:需提供可验证来源(优先级别:…”)
- 2025年3月8日 (六) 22:32 Selfice 留言 贡献创建了页面Vedal987 (重定向页面至Vedal) 标签:新重定向
- 2025年3月8日 (六) 21:42 Selfice 留言 贡献创建了页面NeuroWiki:最终裁决权 (创建页面,内容为“{{Info/Policies}} 本方针确立站长对NeuroWiki所有事务的最终裁决权,构成全站规范体系的最高效力层级。 包括但不限于最终解释权、最终处置权等。 === 权力来源与性质 === * '''权力基础''':基于域名所有权与服务器控制权产生的自然法权 * '''效力特征''': ** 不可分割性:权力完整归属于现任站长 ** 天然性:无需社区授权即永久存在 ** 不可剥夺性:任…”)
- 2025年3月8日 (六) 21:40 Selfice 留言 贡献创建了页面NeuroWiki:最终解释权 (重定向页面至最终裁决权) 标签:新重定向
- 2025年3月8日 (六) 21:29 Selfice 留言 贡献创建了页面NeuroWiki:方针、指引与帮助 (创建页面,内容为“{{Info/Policies}} == NeuroWiki的文件类型 == 本方针确立NeuroWiki的三级规范文件体系,所有用户须理解并遵守以下文件效力层级。 === 方针(Policies) === '''效力等级:'''<span style="color:#b32424">强制约束力</span> * 定义:确立网站运作的基石原则与底线要求 * 特征: ** 阐述基础性、方向性的规范框架 ** 规定不可逾越的禁止性条款 ** 需经社区正式表决通过 * 方针…”)
- 2025年3月1日 (六) 21:07 Selfice 留言 贡献创建了页面Module:Tabs (创建页面,内容为“local p = {} function p.main(frame) local args = frame:getParent().args local tabs = {} local indices = {} -- 收集所有存在的标签索引 for k, _ in pairs(args) do local num = k:match('^bt(%d+)$') or k:match('^tab(%d+)$') if num then num = tonumber(num) indices[num] = true end end -- 转换并排序索引 local sorted = {} for k in pairs(indices) do tab…”)
- 2025年3月1日 (六) 20:53 Selfice 留言 贡献删除页面Module:Tabs (内容为:“local p = {} function p.main(frame) local args = frame.args local getArgs = require('Module:Arguments').getArgs args = getArgs(frame, {parentFirst = true}) -- 生成唯一ID前缀 local tabID = 'tab-' .. tostring(math.random(10000,99999)) -- 确定默认标签 local defaultTab = tonumber(args.DefaultTab) or 1 -- 收集标签数…”,唯一贡献者是“Selfice”(讨论))
- 2025年3月1日 (六) 20:19 Selfice 留言 贡献创建了页面Module:Tabs (创建页面,内容为“local p = {} function p.main(frame) local args = frame.args local getArgs = require('Module:Arguments').getArgs args = getArgs(frame, {parentFirst = true}) -- 处理容器属性 local containerAttrs = { ['class'] = 'Tabs ' .. (args.color or 'black'), ['data-label-side'] = ({left=1, right=1, bottom=1, top=1})[args.LabelSide] and args.LabelSide or 'top', ['data-label-color-side-reverse'] = args.LabelColorSideRevers…”)
- 2025年3月1日 (六) 20:09 Selfice 留言 贡献创建了页面Template:Tabs (创建页面,内容为“<includeonly><templatestyles src="Template:Tabs/styles.css" /><div id="mc{{{id|0}}}" class="mc{{{color|Lila}}}"> <div class=skin-invert> {{#if:{{{bt1|}}}| <div id="mc{{{id|0}}}bt1" {{#ifexpr: {{{sel|0}}}=1 | class="mcBotoSel" | class="mcBoto" }}>{{#if: {{{bticon1|}}} | {{{bticon1}}} }}[[{{{link1|{{{PageName|{{PAGENAMEE}}}}}/{{{urlPrev|}}}{{{bt1|}}}{{{urlPost|}}}}}}|{{{bt1|}}}]]</div>}}{{#if:{{{bt2|}}}| <div id="mc{{{id|0}}}bt2" {{#ifexpr: {{{sel|0}}}=2 |…”)
- 2025年3月1日 (六) 19:59 Selfice 留言 贡献删除页面Module:Tabs (内容为:“local p = {} function p._main(args) local root = mw.html.create() local id = args.id or '0' local color = args.color or 'Lila' local sel = tonumber(args.sel) or 0 -- 生成容器 local container = root :tag('div') :addClass('mc' .. color) :attr('id', 'mc' .. id) -- 生成按钮容器 local buttonConta…”,唯一贡献者是“Selfice”(讨论))
- 2025年3月1日 (六) 18:59 Selfice 留言 贡献创建了页面Module:Tabs (创建页面,内容为“local p = {} -- Helper function to generate a single button local function generateButton(id, index, label, icon, link, isSelected) local class = isSelected and "mcBotoSel" or "mcBoto" local iconHtml = icon and (icon .. " ") or "" return string.format( '<div id="mc%sbt%d" class="%s">%s%s</div>', id, index, class, iconHtml, link, label ) end -- Helper function to generate a single tab content local function generateT…”)
- 2025年3月1日 (六) 18:59 Selfice 留言 贡献创建了页面Template:Tabs/styles.css (创建页面,内容为“Nou esquema de colors per a la Plantilla:Metacaixa usada a la portada: Configuració per defecte en lila Tons usats; 1; 7050a0 2; 9070c0 3; b090e0 4; d0b0ff 5; f0d0ff: .mcBoto { background-color: #d0b0ff; 4: border: 0.15em solid #000000; border-color: #f0d0ff #b090e0 #9070c0 #f0d0ff; 5 3 3 5: cursor:pointer; display: inline; margin-right: 0.1em; padding: 0.2em 0.3em 0.2em 0.3em; position: relative;} .mcBoto a, .mcB…”)
- 2025年3月1日 (六) 18:35 Selfice 留言 贡献创建了页面Module:PageTemplate (创建页面,内容为“local module = {} local getArgs = require('Module:Arguments').getArgs function module._main(args, frame) if args['define'] ~= nil then return end local tl = args['tl'] or '' if tl == '' then error('未定义“'..(args['use'] or '')..'”模板!') return end tl = mw.text.unstripNoWiki(tl) tl = mw.text.decode(tl) local params = args params['tl'] = nil params['use'] = nil local frame_child = frame:newChild({args = params}) return frame_child:…”)
- 2025年3月1日 (六) 18:32 Selfice 留言 贡献创建了页面Template:Tabs/doc (创建页面,内容为“{{noteTA|1=zh-cn:支持;zh-tw:支援|2=zh-cn:移动版;zh-tw:手機版;}} 此模板创意來自於加泰罗尼亚文維基百科([https://ca.wikipedia.org/wiki/Plantilla:Metacaixa])。 本模板默认使用黑色主题,如果不想要主题可以使用Template:tabs/core。 模板效果為分頁顯示,并使用了Extension:Loops。 在手機版支援分页显示。項目過多,標籤會溢出。 部分信息模板有增設加入Tabs的位置,…”)
- 2025年2月16日 (日) 18:11 用户账号余事星空 留言 贡献已创建
- 2025年2月14日 (五) 13:32 LingAgo 留言 贡献创建了页面直播记录/vedal987频道/2025年 (创建页面,内容为“{{noteTA |1=zh-tw:超級大富翁; zh-hk:百萬富翁; zh-sg:百万大赢家; zh-cn:谁会成为百万富翁; }} <div style="display:none;"><templatestyles src="直播记录/styles.css"/></div> 下文的月份划分以开播时的伦敦日期为准。 '''点击“日期”大列中的“英国”小列内具体日期,可进入该场直播的直播记录详情页面。''' {| class="wikitable" style="text-align:center;" |- ! colspan="4"|色彩图例 |- ! 单…”)
- 2025年2月14日 (五) 05:35 LingAgo 留言 贡献创建了页面Kitanya (创建页面,内容为“{{信息栏/人物 |标题=Kitanya |图片=x250px |图片说明= |本名= |别名=Kitanya_Is_Here |译名=基坦妮娅 |生日= |物种=琵琶鱼 |灵魂=人类 |出生地区= |现居地区= |状态=活动中 |语言='''主要:'''英语''' |频道={{TwitchButton2|Kitanya_Is_Here}}<br>{{YoutubeButton2|@kitanya_is_here|nickname=Kitanya_Is_Here}} |粉丝数= |粉丝名=Max |Tag= |人际关系='''???:'''Neuro |圆角…”)
- 2025年2月12日 (三) 23:23 LingAgo 留言 贡献创建了页面DougDoug (创建页面,内容为“{{信息栏/人物 |标题=DougDoug |图片=x250px |图片说明=I'm a bell pepper who teaches how to play videogames good. |本名=Douglas Scott Wreden |别名=Aged Beef Dad, Bald, Davey Wreden's Brother, Diablo the Cheater, Sheep King |译名=道格道格 |生日={{Birthday|1991|January|18}} |物种=灯笼椒 |灵魂=人类 |出生地区=加州 |现居地区=美国(UTC-7/UTC-8) |状态=活动中 |语言=英语 |频道={{Twitc…”)
- 2025年2月10日 (一) 17:06 LingAgo 留言 贡献创建了页面LIFE (创建页面,内容为“{{Infobox |bodystyle=border: 4px solid #942E42; padding: 0 |headerstyle=background:#942E42;color:#fff |labelstyle=background:#B57F7F;color:#4E2C2C |datastyle=text-align:start |title=LIFE |image=300px |header1=音乐信息 |label2=发布日期 |data2=2024年12月20日 |label3=作曲 |data3=monii, Johnny R ([https://asteroidmusic.com/ Asteroid Music]) |label4=编曲 |data4=Ari |label5=人声 |data5=Neuro-sama, pb, monii |label6=作词 |data6=m…”)
- 2025年1月28日 (二) 00:05 用户账号Last omega 留言 贡献已创建
- 2025年1月24日 (五) 02:57 Selfice 留言 贡献创建了页面Template:BouncingDiv/neuro-minecraft (创建页面,内容为“<templatestyles src="Template:BouncingDiv/neuro-minecraft/styles.css" />{{Template:BouncingDiv|speed=0.2|width=auto|height=auto|style=background-color: #000;color:#fff;font-size:18px;display: flex;align-items: center;justify-content: center;|1= <div class="random-text"> {{#invoke:RandomText|choose|heart33333333|Evil is watching you.|Happy birthday Shiro!|Gymbag!|Erm|Neuro-sama moment.|heart heart heart.|Skin by moenie}} </div> |2= File:Neuro Minecraft v3.png|…”)
- 2025年1月24日 (五) 02:42 Selfice 留言 贡献创建了页面Template:BouncingDiv/neuro-minecraft/styles.css (创建页面,内容为“.random-text{ font-family: 'Mojangles', sans-serif; 使用自定义字体并指定后备字体: }”)
- 2025年1月24日 (五) 01:34 Selfice 留言 贡献创建了页面Module:RandomText (创建页面,内容为“-- Module:RandomText local p = {} -- Function to randomly select one of the provided arguments function p.choose(frame) -- Get all the arguments passed to the template local args = frame.args -- Collect all non-nil, non-empty arguments local options = {} for _, value in ipairs(args) do if value and value ~= "" then table.insert(options, value) end end -- If there are no valid arguments, return empty…”)
- 2025年1月24日 (五) 01:25 Selfice 留言 贡献创建了页面Template:BouncingDiv (创建页面,内容为“<templatestyles src="Template:BouncingDiv/styles.css" /><div class="bouncing-container"> <div class="bouncing-div"></div> </div>”)
- 2025年1月24日 (五) 01:24 Selfice 留言 贡献创建了页面Template:BouncingDiv/styles.css (创建页面,内容为“.bouncing-container { position: relative; width: 300px; 父容器宽度: height: 300px; 父容器高度: border: 2px solid #333; overflow: hidden; margin: 20px auto; 居中显示: background-color: #f9f9f9; } .bouncing-div { position: absolute; width: 50px; height: 50px; background-color: #3498db; border-radius: 50%; 圆形: }”)
- 2025年1月24日 (五) 01:12 Selfice 留言 贡献创建了页面NeuroWiki:首页/网站信息 (创建页面,内容为“*网站域名: ::www.neuro-book.com(共享站 / 中心) zh.mooncell.wiki(中文站) en.mooncell.wiki(英文站) ''ja.mooncell.wiki(日语站)<sup>[计划中]</sup>'' *关注 ::24px|link=https://qm.qq.com/q/pEaU78cFoc 24px|link=https://discord.gg/A2W97eWGdY *了解更多 ::NeuroWiki:收支一览 ::NeuroWiki:如何帮助我们完善网站<noinclude>en:NeuroWiki:Main Page/Site Information…”)
- 2025年1月23日 (四) 17:06 Selfice 留言 贡献创建了页面NeuroWiki:首页/最新条目 (创建页面,内容为“{{DynamicListFormatter}} <div style="clear: both; text-align: left;margin: -10px;"> *<small>如未更新,请清理页面缓存。</small></div><div style="clear: both; text-align: right;">'''统计 {{!}} 日志 {{!}} 最近更改 {{!}} 更多'''</div><noinclude>en:NeuroWiki:Main Page/Recent Streams</noinclude>”)
- 2025年1月23日 (四) 16:56 Selfice 留言 贡献创建了页面Template:DynamicListFormatter (创建页面,内容为“<templatestyles src="Template:DynamicListFormatter/styles.css"/><div class="dynamic-list-container"> <td> <DynamicPageList> namespace=main ordermethod=created mode=inline notcategory=即将删除的页面 notcategory=在主名字空间下的CSS页面 count=7 mode=unordered </DynamicPageList> </td> <td> <DynamicPageList> namespace=main ordermethod=created mode=inline notcategory=即将删除的页面 notcategory=在主名字空间下的CSS页面 offset=7 count=…”)
- 2025年1月23日 (四) 16:13 Selfice 留言 贡献删除页面Module:DynamicListFormatter (内容为:“local p = {} function p.render_list(frame) -- 接收参数 local args = frame:getParent().args local columns = tonumber(args["columns"]) or 2 -- 列数,默认为 2 列 local class_name = args["class"] or "my-dynamic-list" -- 默认类名为 my-dynamic-list -- 创建占位符结构 local result = {} table.insert(result, string.format('<div clas…”,唯一贡献者是“Selfice”(讨论))
- 2025年1月23日 (四) 16:01 Selfice 留言 贡献创建了页面Module:DynamicListFormatter (创建页面,内容为“local p = {} function p.render_list(frame) -- 接收参数 local args = frame:getParent().args local dpl_output = args["content"] or "" -- 获取 DynamicPageList 的输出内容 local columns = tonumber(args["columns"]) or 2 -- 列数,默认为 2 列 local gap = args["gap"] or "10px" -- 列间距,默认为 10px local class_name = args["class"] or "custom-wrapper" -- 自定义类名 -- 移除顿号(、),并提取所有链…”)
- 2025年1月23日 (四) 16:01 Selfice 留言 贡献移动页面Template:首页/最新条目/styles.css至Template:DynamicListFormatter/styles.css,不留重定向
- 2025年1月23日 (四) 15:56 Selfice 留言 贡献创建了页面Template:首页/最新条目/styles.css (创建页面,内容为“.custom-wrapper { display: flex; flex-wrap: wrap; 允许内容换行分布: width: 100%; 父元素宽度: } .custom-wrapper > * { width: 50%; 两列,各占父元素的50%宽度: box-sizing: border-box; 包括内边距和边框在内计算宽度: white-space: nowrap; 禁止换行: overflow: hidden; 超出部分隐藏: text-overflow: ellipsis; 超出部分用省略号代替: padding: 5px; /* 给每个元素一些内…”)
- 2025年1月23日 (四) 08:49 Selfice 留言 贡献创建了页面NeuroWiki:首页/本周预告 (创建页面,内容为“{{ScheduleList | date=0122 | week=3 | leap_year=no | title1= | title2= | title3= | title4= | title5= | title6= | title7= }} <div style="clear: both; text-align: left;margin: -10px;"> *<small>日期均为开播时之东八区日期。</small></div><div style="clear: both; text-align: right;">'''[https://www.bilibili.com/opus/1007376118195421216 Bilibili]''' {{!}} '''[https://discord.com/channels/574720535888396288/1086343861670006854/1313275781081727069 Discord]…”)
- 2025年1月23日 (四) 07:46 Selfice 留言 贡献创建了页面Template:ScheduleList/date (创建页面,内容为“<div style="display: flex;align-items: center;"><div class="schedule-week">{{{3}}}</div><div class="schedule-date">{{{1}}}</div><div><div class="schedule-title">{{{4}}}</div><div class="time">{{{2|}}}</div></div></div>”)
- 2025年1月23日 (四) 07:00 Selfice 留言 贡献创建了页面Template:ScheduleList (创建页面,内容为“<templatestyles src="Template:ScheduleList/styles.css" /><div class="date-title-list">{{#invoke:ScheduleList|main}}</div><noinclude>{{doc}}en:Template:ScheduleListCategory:首页模板Category:使用模板样式的模板</noinclude>”)
- 2025年1月23日 (四) 07:00 Selfice 留言 贡献创建了页面Template:ScheduleList/styles.css (创建页面,内容为“.date-title-list { font-family: Arial, sans-serif; line-height: 1.6; 行高: margin: 1px 0 0 0; } .date-title-list li { display: flex; align-items: baseline; gap:16px; margin-bottom: 1px; padding: 2px 5px; } .date-title-list li b{ min-width:4.6em; 固定宽度,确保对齐: } .date-title-list li .date { text-align: right; 日期右对齐: } .date-title-list li .content { flex-grow: 1; } 表格页通用样式: .neuro{ backgr…”)
- 2025年1月23日 (四) 06:59 Selfice 留言 贡献创建了页面Module:ScheduleList (创建页面,内容为“local p = {} -- 工具函数:判断是否为闰年 local function is_leap_year(year) return (year % 4 == 0 and year % 100 ~= 0) or (year % 400 == 0) end -- 工具函数:计算每月天数 local function days_in_month(month, year, leap_year) local days = {31, leap_year and 29 or 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31} return days[month] end -- 工具函数:计算下一个日期 local function get_next_date(date, leap_year) local mont…”)
- 2025年1月23日 (四) 02:42 Selfice 留言 贡献创建了页面NeuroWiki:首页/新闻 (创建页面,内容为“*? *? *? *? *? *? *? <div style="clear: both; text-align: right;">更多'''</div><noinclude>en:NeuroWiki:Main Page/Recent Streams</noinclude>”)
- 2025年1月23日 (四) 02:31 Selfice 留言 贡献创建了页面MediaWiki:Vector.js (创建页面,内容为“此处所有JavaScript将为使用Vector皮肤的用户加载: document.addEventListener("DOMContentLoaded", function () { // 获取当前页面的标题和页面名称 var pageTitle = document.querySelector('.firstHeading'); // 页面标题的 DOM 元素 var pageName = mw.config.get('wgPageName'); // 获取页面名称,格式如 "Main_Page" // 判断是否为首页或 Main Page if (pageName === 'Main_Page' || pageName === '首页')…”)
- 2025年1月23日 (四) 02:26 Selfice 留言 贡献删除页面Template:RemoveTitle (内容为:“<includeonly>{{DISPLAYTITLE: }}</includeonly><noinclude> {{Documentation}} </noinclude>”,唯一贡献者是“Selfice”(讨论))
- 2025年1月23日 (四) 02:26 Selfice 留言 贡献删除页面Template:RemoveTitle/styles.css (内容为:“隐藏页面标题: .no-title-wrapper ~ .firstHeading { display: none; }”,唯一贡献者是“Selfice”(讨论))
- 2025年1月23日 (四) 02:16 Selfice 留言 贡献创建了页面Template:移除标题 (重定向页面至Template:RemoveTitle) 标签:新重定向
- 2025年1月23日 (四) 02:15 Selfice 留言 贡献创建了页面Template:RemoveTitle/styles.css (创建页面,内容为“.mw-body .firstHeading { display: none; }”)
- 2025年1月23日 (四) 02:15 Selfice 留言 贡献创建了页面Template:RemoveTitle (创建页面,内容为“<templatestyles src="Template:RemoveTitle/styles.css" />”)
- 2025年1月23日 (四) 01:26 Selfice 留言 贡献创建了页面NeuroWiki:首页/最近直播 (创建页面,内容为“{{DateTitleList | year=2024 | date1=20241121 | title1=[双子回]两位小丑之间的战争 | date2=20241123 | title2=[联动回]layna和neuro游玩《直到黎明》 | date3=20241126 | title3=[单人回]喵直播 | date4=20241127 | title4=[歌回]Evil喜欢黑布丁 | date5=20241130 | title5=[联动回]geoguessr vs @dougdoug的AI | date6=20241202 | title6=[开发回]商务会议 | date7=20241219 | title7=[马拉松]本世纪最大的NEURO-SAMA之事 }} <div s…”)
- 2025年1月23日 (四) 01:09 用户账号HanZero 留言 贡献已创建
- 2025年1月23日 (四) 00:35 Selfice 留言 贡献创建了页面Template:DateTitleList (创建页面,内容为“<templatestyles src="Template:DateTitleList/styles.css"/> {{#invoke:DateTitleList|render}}”)
- 2025年1月23日 (四) 00:34 Selfice 留言 贡献创建了页面Template:DateTitleList/styles.css (创建页面,内容为“固定日期宽度并设置样式: .date-link { display: inline-block; width: 8em; 固定宽度,确保对齐: text-align: right; 日期内容靠右对齐: } 调整链接的整体外观: .date-link a { text-decoration: none; 去掉下划线: color: inherit; 使用默认颜色: } 小号斜体年份样式: .small-year { font-size: 0.9em; 调整字号为小号: font-style: italic; /* 设置斜…”)
- 2025年1月23日 (四) 00:31 Selfice 留言 贡献创建了页面Module:DateTitleList (创建页面,内容为“local p = {} -- 格式化日期和生成链接 local function formatDate(date, title, year, baseYear) local dateYear = string.sub(date, 1, 4) local monthDay = os.date("%m月%d日", os.time{year=string.sub(date, 1, 4), month=string.sub(date, 5, 6), day=string.sub(date, 7, 8)}) local categoryLink = "" .. monthDay .. "" local pageLink = "[[直播记录/vedal987频道/" .. dateYear .. "年" .. monthDay .. "|" .. tit…”)