User contributions for Shia.k
Appearance
25 January 2026
- 17:5817:58, 25 January 2026 diff hist +40 Yehuda Shmotkin No edit summary current
- 17:5117:51, 25 January 2026 diff hist +24 User:Shia.k No edit summary current
- 17:4817:48, 25 January 2026 diff hist −1 m MediaWiki:DisableRegistration Reverted edit by Shia.k (talk) to last revision by Abhishek.it current Tag: Rollback
- 13:5313:53, 25 January 2026 diff hist +188 N File:אייקון תורת החסידות.png https://chabadpedia.co.il/index.php/%D7%A7%D7%95%D7%91%D7%A5:%D7%90%D7%99%D7%99%D7%A7%D7%95%D7%9F_%D7%AA%D7%95%D7%A8%D7%AA_%D7%94%D7%97%D7%A1%D7%99%D7%93%D7%95%D7%AA.png#file current
- 13:1813:18, 25 January 2026 diff hist +1 MediaWiki:DisableRegistration בדיקה האם עדיין יהיו לנו חשבונות ספאם Tags: Manual revert Reverted
- 13:1713:17, 25 January 2026 diff hist +9 User:Shia.k No edit summary
- 13:1713:17, 25 January 2026 diff hist +62 User:Shia.k No edit summary
6 January 2026
- 13:0813:08, 6 January 2026 diff hist +13 MediaWiki:DisableAccountMessage No edit summary current
- 13:0613:06, 6 January 2026 diff hist +19 MediaWiki:DisableAccountMessage ניסוח
30 December 2025
- 15:5315:53, 30 December 2025 diff hist +62 N File:אייקון גאולה ומשיח.png בגלל תקלה בנראות בדף הראשי current
11 November 2025
- 18:2518:25, 11 November 2025 diff hist −121 Main Page זמנית בגלל הספאם, ועד שיווצרו ערכים חדשים current
4 November 2025
- 13:0413:04, 4 November 2025 diff hist −1 m MediaWiki:BlockAnonEdits Reverted edit by Shia.k (talk) to last revision by Abhishek.it Tags: Rollback Reverted
- 12:5012:50, 4 November 2025 diff hist +1 MediaWiki:BlockAnonEdits No edit summary Tag: Reverted
25 September 2025
- 10:1810:18, 25 September 2025 diff hist +13,105 Pinchas Hirschprung תיקון
- 10:1610:16, 25 September 2025 diff hist −16,032 Pinchas Hirschprung →A True Chassid: פסקה תמוהה ללא מקור, ראו בערך בעברית Tags: Replaced Visual edit
8 August 2025
- 08:0908:09, 8 August 2025 diff hist +104 Talk:Template/styles.css Reply Tag: Reply
23 July 2025
- 12:2012:20, 23 July 2025 diff hist −8 Template:Template category No edit summary current
- 12:1112:11, 23 July 2025 diff hist +766 N Category:Chabadpedia modules Created page with "{{Commons category|Scribunto modules}} {{Template category|type=module |description='''This is the top-level category for all chabadpedia modules.'''<br />{{smaller|Modules should not be directly included in this category, but subcategorized according to their purpose, type, or scope of their applicability such as the namespace they are used within.}} |help=no}} {{Category see also|chabadpedia templates|Lua-based templates}} * Sp..." current
- 12:0712:07, 23 July 2025 diff hist +139 N File:Category.svg מאת WOSlinker - נוצר על־ידי מעלה היצירה, CC0, https://commons.wikimedia.org/w/index.php?curid=18740443 current
- 12:0212:02, 23 July 2025 diff hist +160 N Category:Module documentation pages Created page with "{{Tracking category}} {{category see also|Template documentation pages}} <!--Categories--> Category:Documentation pages Δ" current
- 12:0012:00, 23 July 2025 diff hist +161 N File:Check-green.svg מאת gmaxwell - Derived from Image:Yes check.svg by Gregory Maxwell, נחלת הכלל, https://commons.wikimedia.org/w/index.php?curid=3136354 current
- 11:5811:58, 23 July 2025 diff hist +575 N Module:Validate gadgets/doc Created page with "<!-- Add categories where indicated at the bottom of this page and interwikis at Wikidata --> {{used in system}} {{lua|Module:Gadgets|Module:Message box}} <code><nowiki>{{</nowiki>#invoke:Validate gadgets|''validate''<nowiki>}}</nowiki></code> This module checks the gadget definitions in MediaWiki:Gadgets-definition for errors and other issues. No output is produced if there are no warnings. But during previews, a message with a green check will be shown. <include..." current
- 11:5611:56, 23 July 2025 diff hist +139 N File:Cascade-protection-shackle.svg מאת XYZtSpace - נוצר על־ידי מעלה היצירה, CC0, https://commons.wikimedia.org/w/index.php?curid=73332648 current
- 11:5311:53, 23 July 2025 diff hist +586 N Module:Gadgets/doc Created page with "<!-- Add categories where indicated at the bottom of this page and interwikis at Wikidata --> {{used in system}} {{cascade-protected template|page=module}} Module to parse gadget definitions from MediaWiki:Gadgets-definition. == Usage == Intended for use from other modules only. <syntaxhighlight lang=lua> local gadgets = require('Module:Gadgets') local gadgetRegistry = gadgets.parse() </syntaxhighlight> <includeonly>{{Sandbox other|| <!-- Categories below this lin..." current
- 11:5211:52, 23 July 2025 diff hist +2,005 N Module:Gadgets Created page with "local p = {} p.parse = function() local text = mw.title.new('MediaWiki:Gadgets-definition'):getContent() local lines = mw.text.split(text, '\n', false) local repo = {} for _, line in ipairs(lines) do if line:sub(1, 1) == '*' then local name, options, pages = p.parse_line(line) if name and #pages ~= 0 then repo[name] = { options = options, pages = pages } end end end return repo end p.parse_line = function(def) local pattern = "^%*%s*(.+)%s*(%..." current
- 11:5111:51, 23 July 2025 diff hist +7,990 N Module:Validate gadgets Created page with "local MessageBox = require('Module:Message box') local Gadgets = require('Module:Gadgets') local p = {} local function arr_contains(array, val) for _, value in ipairs(array) do if value == val then return true end end return false end -- Lists of valid options for things that aren't exposed to lua -- (unlike namespaces that can be accessed from mw.site.namespaces) local VALID_CONTENT_MODELS = {'wikitext', 'javascript', 'css', '..." current
- 11:3511:35, 23 July 2025 diff hist +226 N MediaWiki:Gadgets-definition Created page with "<noinclude>'''Changes to this page should first be discussed on Chabadpedia talk:Gadget.''' Links to view and manage the gadget descriptions appear on Special:Gadgets. {{#invoke:Validate gadgets|validate}}</noinclude>" current
18 July 2025
- 09:3609:36, 18 July 2025 diff hist +89 Talk:Main Page No edit summary current
14 July 2025
- 12:1912:19, 14 July 2025 diff hist +689 User talk:Raphaelwilmowsky →The Badge of Diligence: new section current
- 12:1612:16, 14 July 2025 diff hist +693 User talk:M.robin →עיטור החריצות: new section
- 12:1312:13, 14 July 2025 diff hist +26 Template:Documentation/doc No edit summary current
- 12:0412:04, 14 July 2025 diff hist +203 N File:Tireless Contributor Barnstar Hires.gif מאת Original idea by TrainspotterOriginal design by Antonu - Self-made, based on Image:Original Barnstar Hires.png, CC BY-SA 3.0, https://commons.wikimedia.org/w/index.php?curid=12610733 current
- 12:0312:03, 14 July 2025 diff hist +593 N Template:The Tireless Contributor Barnstar Created page with "{| style="border: 1px solid {{{border|gray}}}; background-color: {{{color|#fdffe7}}};" |rowspan="2" style="vertical-align:middle;" | {{#ifeq:{{{2}}}|alt|100px| 100px}} |rowspan="2" | |style="font-size: x-large; padding: 0; vertical-align: middle; height: 1.1em;" | '''The Tireless Contributor Barnstar''' |- |style="vertical-align: middle; border-top: 1px solid gray;" | {{{1}}} |}<n..." current
- 12:0012:00, 14 July 2025 diff hist +4,411 N Template:Barnstar documentation Created page with "<includeonly>{{Documentation | content = {{#ifeq:{{{autosubst|}}}|yes|{{Subst only|auto=yes}}|{{Subst only}}}} {{#if:{{{header|}}}|{{{header|}}}}}{{#if:{{{for|}}}|<h2>Criteria</h2>{{{for|}}}}} <h2>Usage</h2> {{#if:{{{usage|}}}|{{{usage}}}| To use this Barnstar template, create a new section on the user talkpage of the user you want to give the award to, and add <code><nowiki>{{subst:</nowiki>{{#ifeq:{{NAMESPACE}}|{{ns:10}}|{{BASEPAGENAME}}|{{FULLPAGENAM..." current
- 11:4611:46, 14 July 2025 diff hist −1 Template:Barnstar/doc →See also current
- 11:4611:46, 14 July 2025 diff hist +4 Template:Barnstar/doc No edit summary
- 11:4111:41, 14 July 2025 diff hist +465 N Category:Template documentation Created page with "'''{{Catseealso|Chabadpedia template help}}''' This category is for everything related to '''template documentation''', mostly template documentation pages and documentation templates. <!--Categories--> Category:Chabadpedia help Documentation Templates" current
- 11:4011:40, 14 July 2025 diff hist +126 N File:Nuvola apps filetypes.svg מאת Richmond - Image:Nuvola apps filetypes.png, LGPL, https://commons.wikimedia.org/w/index.php?curid=1859214 current
- 11:4011:40, 14 July 2025 diff hist +146 N Category:Chabadpedia template help Created page with "'''{{catseealso|Template documentation}}''' {{help category}} Category:Chabadpedia help help" current
- 11:3811:38, 14 July 2025 diff hist +879 N Template:R from less specific name Created page with "<noinclude>{{This is a redirect/rcat}} </noinclude>{{Redirect template |id=R from less specific name |name=From a less specific name |from=a title that is a less specific name to a more specific, less general one |info=** It may be a less specialized term, a broader usage, a generic term or simply be worded less narrowly. It leads to the title in accordance with the naming conventions for common names and can help writing and searches. It is..." current
- 11:3711:37, 14 July 2025 diff hist +175 N Template:R to help Redirected page to Template:R to help namespace current Tag: New redirect
- 11:3711:37, 14 July 2025 diff hist +95 N H:SUBST Redirected page to Help:Substitution current Tag: New redirect
- 11:3611:36, 14 July 2025 diff hist +169 N File:Twemoji 1f527.svg מאת Twitter - https://github.com/twitter/twemoji/blob/8e58ae4/svg/1f527.svg, נחלת הכלל, https://commons.wikimedia.org/w/index.php?curid=37289341 current
- 11:3511:35, 14 July 2025 diff hist +19,805 N Help:Substitution Created page with "{{short description|Help about using templates}} {{for|detailed guidance on when to use substitution rather than transclusion|Wikipedia:Substitution}} {{Chabadpedia how-to|H:SUBST}} '''Substitution''' is a function whereby, when an editor saves a page, an item in the wikicode is permanently replaced with its current value. In particular, templates and magic words can be substituted, as an alternative to Help:Tra..." current
- 11:3211:32, 14 July 2025 diff hist +1,759 N Template:Barnstar/doc Created page with "{{Documentation subpage}} <!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE --> {{subst only}} == Usage == A template for awarding barnstars. The {{para|align}} parameter is optional. You can type in ''left'', ''right'', ''center'', or ''none''. The default alignment will be left. '''<nowiki>{{subst:barnstar|image=Original Barnstar Hires.svg|text=I hereby award this barnstar for such great work on that article. ~~~~}}</nowiki>'''..."
- 11:3111:31, 14 July 2025 diff hist +116 N Template:Subst only Redirected page to Template:Always substitute current Tag: New redirect
- 11:2811:28, 14 July 2025 diff hist +106 N Template:Tlsp Redirected page to Template:Template link with subst current Tag: New redirect
- 11:2311:23, 14 July 2025 diff hist −12 Template:Barnstar No edit summary current
- 11:1511:15, 14 July 2025 diff hist +268 N Template:Barnstar Created page with "{{SAFESUBST:<noinclude />#switch:{{{1|}}} |The Original Barnstar = {{SAFESUBST:<noinclude />The Original Barnstar|1={{{text|}}}|2={{{2|}}}}} |[[File:{{{image|Original Barnstar.png}}}|100px|thumb|{{{align|left}}}|{{{text}}}]] }}<noinclude> {{documentation}}</noinclude>"
12 July 2025
- 14:5314:53, 12 July 2025 diff hist −16 Category:Populated places No edit summary current