Jump to content

Main public logs

Combined display of all available logs of Encyclopedia of Contemporary Jurisprudence. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
(newest | oldest) View ( | older 50) (20 | 50 | 100 | 250 | 500)
  • 13:52, 3 April 2025 Enadmin talk contribs created page Template:Infobox3cols (Created page with "{{#invoke:Infobox3cols|infobox}}<noinclude> <!-- Add categories to the /doc subpage; interwikis go to Wikidata, thank you! --> {{documentation}} </noinclude>")
  • 13:25, 3 April 2025 Enadmin talk contribs created page MediaWiki:Common.css (Created page with "CSS placed here will be applied to all skins: .mw-body h1, .mw-body h2, .mw-body h3, .mw-body h4, .mw-body #firstHeading, .mw-body .mw-editsection, .mw-body .mw-editsection-like, .mw-body #toc h2, .mw-body .toc h2, #documentation-meta-data, .vector-sticky-header-context-bar-primary { font-family: tahoma; } @media screen { .nochecker .gallerybox .thumb img { background-image: none; } } اصلاح صفحات مرتبط در نسخه ۱.۴۳: .cdx-card {...")
  • 23:29, 2 April 2025 Enadmin talk contribs created page Module:List (Created page with "local libUtil = require('libraryUtil') local checkType = libUtil.checkType local mTableTools = require('Module:TableTools') local p = {} local listTypes = { ['bulleted'] = true, ['unbulleted'] = true, ['horizontal'] = true, ['ordered'] = true, ['horizontal_ordered'] = true } function p.makeListData(listType, args) -- Constructs a data table to be passed to p.renderList. local data = {} -- Classes and TemplateStyles data.classes = {} data.templatestyles = ''...")
  • 23:28, 2 April 2025 Enadmin talk contribs created page 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'...")
  • 23:27, 2 April 2025 Enadmin talk contribs created page Template:Module rating (Created page with "<noinclude>{{Being deleted|2025 March 1|Template:Template rating|merge=Template:Template rating}}</noinclude><includeonly>{{#ifeq:{{SUBPAGENAME}}|doc|<!--do not show protection level of the module on the doc page, use the second and optionally third parameter if the doc page is also protected -->{{#if:{{{2|}}}|{{Pp|{{{2}}}|action={{{3|}}}}}}}|{{Module other|{{ombox | type = notice | image = {{#switch: {{{1|}}} | pre-alpha | prealpha | pa | experimental = ...")
  • 23:27, 2 April 2025 Enadmin talk contribs created page Module:Documentation (Created page with "-- This module implements {{documentation}}. -- Get required modules. local getArgs = require('Module:Arguments').getArgs -- Get the config table. local cfg = mw.loadData('Module:Documentation/config') local p = {} -- Often-used functions. local ugsub = mw.ustring.gsub local format = mw.ustring.format ---------------------------------------------------------------------------- -- Helper functions -- -- These are defined as local functions, but are made available in...")
  • 23:26, 2 April 2025 Enadmin talk contribs created page Template:Documentation (Created page with "{{#invoke:documentation|main|_content={{ {{#invoke:documentation|contentTitle}}}}}}<noinclude> <!-- Add categories to the /doc subpage --> </noinclude>")
  • 23:26, 2 April 2025 Enadmin talk contribs created page Template:Module other (Created page with "{{#switch: <!--If no or empty "demospace" parameter then detect namespace--> {{#if:{{{demospace|}}} | {{lc: {{{demospace}}} }} <!--Use lower case "demospace"--> | {{#ifeq:{{NAMESPACE}}|{{ns:Module}} | module | other }} }} | module = {{{module|{{{1|}}}}}} | other | #default = {{{other|{{{2|}}}}}} }}<!--End switch--><noinclude> {{documentation}} <!-- Add categories to the /doc subpage, not here! --> </noinclude>")
  • 23:25, 2 April 2025 Enadmin talk contribs created page 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 =...")
  • 23:25, 2 April 2025 Enadmin talk contribs created page Module:High-use (Created page with "local p = {} local getArgs = require('Module:Arguments').getArgs -- _fetch looks at the "demo" argument. local _fetch = require('Module:Transclusion_count')._fetch local yesno = require('Module:Yesno') function p._num(args, count, no_percent) if count == nil then if yesno(args['fetch']) == false then if (args[1] or '') ~= '' then count = tonumber(args[1]) end else count = _fetch(args) end end -- Build output string local return_value = "" if count ==...")
  • 23:24, 2 April 2025 Enadmin talk contribs created page Template:High-use (Created page with "{{#invoke:High-use|main|1={{{1|}}}|2={{{2|}}}|info={{{info|}}}|demo={{{demo|}}}|form={{{form|}}}|expiry={{{expiry|}}}|system={{{system|}}}}}<noinclude> {{Documentation}} <!-- Add categories to the /doc subpage; interwiki links go to Wikidata, thank you! --> </noinclude>")
  • 23:23, 2 April 2025 Enadmin talk contribs created page Module:File link/doc (Created page with "{{high-use}} {{Module rating|protected}} {{Lua|Module:Yesno|Module:Arguments}} This module is used to construct wikitext links to files. It is primarily useful for templates and modules that use complicated logic to make file links. Simple file links should be made with wikitext markup directly, as it uses less resources than calling this module. For help with wikitext file markup please refer to the documentation at mediawiki.org. == Usage from wikit...")
  • 23:22, 2 April 2025 Enadmin talk contribs created page Module:File link (Created page with "-- This module provides a library for formatting file wikilinks. local yesno = require('Module:Yesno') local checkType = require('libraryUtil').checkType local p = {} function p._main(args) checkType('_main', 1, args, 'table') -- This is basically libraryUtil.checkTypeForNamedArg, but we are rolling our -- own function to get the right error level. local function checkArg(key, val, level) if type(val) ~= 'string' then error(string.format( "type error in...")
  • 23:21, 2 April 2025 Enadmin talk contribs created page Module:Infobox/styles.css (Created page with "{{pp|small=y}}: * This TemplateStyles sheet deliberately does NOT include the full set of * infobox styles. We are still working to migrate all of the manual * infoboxes. See MediaWiki talk:Common.css/to do#Infobox * DO NOT ADD THEM HERE: * not strictly certain these styles are necessary since the modules now * exclusively output infobox-subbox or infobox, not both * just replicating the module faithfully: .infobox-subbox { padding: 0; borde...")
  • 23:21, 2 April 2025 Enadmin talk contribs created page Module:Lua banner (Created page with "-- This module implements the {{lua}} template. local yesno = require('Module:Yesno') local mList = require('Module:List') local mTableTools = require('Module:TableTools') local mMessageBox = require('Module:Message box') local p = {} function p.main(frame) local origArgs = frame:getParent().args local args = {} for k, v in pairs(origArgs) do v = v:match('^%s*(.-)%s*$') if v ~= '' then args[k] = v end end return p._main(args) end function p._main(args)...")
  • 23:20, 2 April 2025 Enadmin talk contribs created page Template:Lua (Created page with "<includeonly>{{#invoke:Lua banner|main}}</includeonly><noinclude> {{Lua|Module:Lua banner}} {{documentation}} <!-- Categories go on the /doc subpage and interwikis go on Wikidata. --> </noinclude>")
  • 23:20, 2 April 2025 Enadmin talk contribs created page Module:Infobox/doc (Created page with "{{High-use|3308957|all-pages = yes}} {{module rating|protected}} {{Lua|Module:Navbar|Module:Italic title}} {{Uses TemplateStyles|Module:Infobox/styles.css|Template:Hlist/styles.css|Template:Plainlist/styles.css}} '''Module:Infobox''' is a module that implements the {{tl|Infobox}} template. Please see the template page for usage instructions. == Tracking categories == * {{clc|Pages using infobox templates with ignored data cells}} * {{clc|Articles using in...")
  • 23:18, 2 April 2025 Enadmin talk contribs created page Module:Infobox (Created page with "local p = {} local args = {} local origArgs = {} local root local empty_row_categories = {} local category_in_empty_row_pattern = '%[%[%s*[Cc][Aa][Tt][Ee][Gg][Oo][Rr][Yy]%s*:[^]]*]]' local has_rows = false local lists = { plainlist_t = { patterns = { '^plainlist$', '%splainlist$', '^plainlist%s', '%splainlist%s' }, found = false, styles = 'Plainlist/styles.css' }, hlist_t = { patterns = { '^hlist$', '%shlist$', '^hlist%s', '%shlist%s'...")
  • 23:13, 2 April 2025 Enadmin talk contribs created page Module:Navbar (Created page with "local p = {} local cfg = mw.loadData('Module:Navbar/configuration') local function get_title_arg(is_collapsible, template) local title_arg = 1 if is_collapsible then title_arg = 2 end if template then title_arg = 'template' end return title_arg end local function choose_links(template, args) -- The show table indicates the default displayed items. -- view, talk, edit, hist, move, watch -- TODO: Move to configuration. local show = {true, true, true, false, false...")
  • 23:09, 2 April 2025 Flow talk page manager talk contribs created page Template:Archive for converted wikitext talk page (Automatically created by Flow)
  • 23:09, 2 April 2025 Flow talk page manager talk contribs created page Template:Wikitext talk page converted to Flow (Automatically created by Flow)
  • 23:08, 2 April 2025 Flow talk page manager talk contribs created page Template:LQT post imported with different signature user (Automatically created by Flow)
  • 23:08, 2 April 2025 Flow talk page manager talk contribs created page Template:LQT post imported with suppressed user (Automatically created by Flow)
  • 23:08, 2 April 2025 Flow talk page manager talk contribs created page Template:Archive for converted LQT page (Automatically created by Flow)
  • 23:08, 2 April 2025 Flow talk page manager talk contribs created page Template:LQT page converted to Flow (Automatically created by Flow)
  • 23:08, 2 April 2025 Flow talk page manager talk contribs created page Template:LQT Moved thread stub converted to Flow (Automatically created by Flow)
  • 23:08, 2 April 2025 Flow talk page manager talk contribs created page Template:FlowMention (Automatically created by Flow)
  • 19:41, 2 April 2025 Enadmin talk contribs created page Template:Infobox (Created page with "{{#invoke:Infobox|infobox}}<includeonly>{{template other|{{#ifeq:{{PAGENAME}}|Infobox||{{#ifeq:{{str left|{{SUBPAGENAME}}|7}}|Infobox|{{remove first word|{{SUBPAGENAME}}}}}}}}|}}</includeonly><noinclude> {{documentation}} <!-- Categories go in the /doc subpage, and interwikis go in Wikidata. --> </noinclude>")
  • 18:48, 2 April 2025 Enadmin talk contribs created page Dance (Created page with "'''Abstract ''' Dance, the act of moving the body with specific movements for the purpose of frivolous play (lahw), is considered generally forbidden (haram) by some Shia jurists, while others deem it forbidden only under specific conditions. The topic of dance received little attention in earlier sources, and Ibn Idris, in the 6th century AH (Hijri), was the first Shia jurist to briefly address it in his book al-Sara’ir. Narrations (reports/hadith) regarding dance ar...")
  • 18:42, 2 April 2025 Enadmin talk contribs added prefix "fa" (https://ency.feqhemoaser.com/fa/view/$1) (trans: 0; local: 0) to the interwiki table
  • 09:26, 23 January 2025 Enadmin talk contribs changed group membership for Mkhaghanif from administrator to administrator and suppressor
  • 09:25, 23 January 2025 Enadmin talk contribs changed group membership for Mkhaghanif from (none) to administrator
  • 09:23, 23 January 2025 User account Mkhaghanif talk contribs was created by Enadmin talk contribs
  • 08:21, 2 January 2025 MediaWiki default talk contribs created page Main Page
(newest | oldest) View ( | older 50) (20 | 50 | 100 | 250 | 500)