Wikizvor bswikisource https://bs.wikisource.org/wiki/Po%C4%8Detna_strana MediaWiki 1.47.0-wmf.14 first-letter Mediji Posebno Razgovor Korisnik Razgovor s korisnikom Wikizvor Razgovor o o Wikizvor Datoteka Razgovor o datoteci MediaWiki Razgovor o MediaWikiju Šablon Razgovor o šablonu Pomoć Razgovor o pomoći Kategorija Razgovor o kategoriji Page Page talk Index Index talk TimedText TimedText talk Modul Razgovor o modulu Event Event talk Modul:Header 828 5524 12147 12115 2026-08-11T11:48:53Z Vratiosevalter 3520 12147 Scribunto text/plain gwkxski2tgc49swq9lw0dkrgltfn7rx Modul:Plain sister 828 5525 12145 12081 2026-08-11T11:46:29Z Vratiosevalter 3520 12145 Scribunto text/plain 32urervdxs4wr3uqwy5m983g2639zdt Šablon:Header/styles.css 10 5526 12144 12110 2026-08-11T11:44:53Z Vratiosevalter 3520 12144 sanitized-css text/css lvwkzotfa0nrt272rfns6bkfz06f96t Šablon:Plain sister 10 5531 12146 12087 2026-08-11T11:47:43Z Vratiosevalter 3520 12146 wikitext text/x-wiki 3q9or58m3oms2xkfvaehx53klgck2bb Modul:TableTools 828 5555 12137 2026-08-11T11:35:22Z Vratiosevalter 3520 Nova stranica: ------------------------------------------------------------------------------------ -- TableTools -- -- -- -- This module includes a number of functions for dealing with Lua tables. -- -- It is a meta-module, meant to be called from other Lua modules, and should not -- -- be called directly from #invoke.... 12137 Scribunto text/plain pmpvokyfrk0smi4afgghl2nj0fdacmw Modul:Auto parents 828 5556 12138 2026-08-11T11:36:27Z Vratiosevalter 3520 Nova stranica: require('strict') local p = {} --p stands for package local getArgs = require('Modul:Arguments').getArgs local yesno = require('Modul:Yesno') --[=[ Return a formatted list of links referring to the parents of the current page Parameters: * page: the page title to use, if not the current page name * display: an override display title to use for the top level. * no_links: if yes, do not link page titles * existing_links: if yes, check whether pages exist before making them... 12138 Scribunto text/plain ac3qrlrr5y7gjyycy0na5bkbv4o6nsa Modul:Header/attribution 828 5557 12139 2026-08-11T11:38:43Z Vratiosevalter 3520 Nova stranica: require('strict') local p = {} local yesno = require('Modul:Yesno') -- Uloge koje modul podržava. `overrideLabel` je bosanski instrumental -- padež za tekst kategorije "Stranice s ručno navedenim X". local ROLES = { { key = 'author', label = 'Autor', overrideLabel = 'autorom', checkExistence = true }, { key = 'translator', label = 'Prevodilac', overrideLabel = 'prevodiocem', checkExistence = true }, -- vidi napomenu 2 { key = 'editor', label = '... 12139 Scribunto text/plain jdfef1tf8sn7cbwrfw5s8x2tu8rcnja Modul:Header/lang 828 5558 12140 2026-08-11T11:40:28Z Vratiosevalter 3520 Nova stranica: require('strict') local p = {} local yesno = require('Modul:Yesno') -- Mali ugrađeni rječnik ISO 639-1 → bosanski naziv jezika za najčešće -- slučajeve na bs.Wikisource. Vidi otvoreno pitanje 1 iznad. local LANGUAGE_NAMES = { bs = 'bosanski', hr = 'hrvatski', sr = 'srpski', en = 'engleski', de = 'njemački', fr = 'francuski', it = 'talijanski', tr = 'turski', ar = 'arapski', ru = 'ruski', es = 'španski', la = 'latinski', el = 'grčki', fa = 'perzijski', } -- V... 12140 Scribunto text/plain 8nhqmjnrh9ptz7t3f37phwjkgv4xlqj Modul:Header/sort 828 5559 12141 2026-08-11T11:41:12Z Vratiosevalter 3520 Nova stranica: require('strict') local p = {} -- Uklanja putanju podstranice (sve iza prve '/') iz naslova — sortiranje -- po punoj putanji sa kosim crtama daje loš redoslijed u kategorijama. local function strip_subpage(title_text) return title_text:match('^([^/]+)') or title_text end local function auto_sortkey(title) return strip_subpage(title.text) end -- Glavna funkcija. Vraća (wikitext_fragment, categories). -- wikitext_fragment sadrži {{DEFAULTSORT:...}} i dodaje se na kraj... 12141 Scribunto text/plain r1e8de2f6l1vxr3i8qzx1etmsd3xwvf Modul:Header/year 828 5560 12142 2026-08-11T11:42:20Z Vratiosevalter 3520 Nova stranica: require('strict') local p = {} local yesno = require('Modul:Yesno') -- Parsira uneseni 'year'. Vraća (display_text, category_year); -- category_year je broj (za kategorizaciju) ili nil ako se ne može -- svesti na jednu godinu. local function parse_year(raw) if not raw or raw == '' then return nil, nil end if raw == '?' then return 'nepoznata', nil end local circa = raw:match('^c/(%d+)$') if circa then return 'oko ' .. circa .. '.', tonumber(circa) end loc... 12142 Scribunto text/plain h5wx9bcu3nxqhqk279yc5k5tlbfpuwr Modul:Header structure 828 5561 12143 2026-08-11T11:43:40Z Vratiosevalter 3520 Nova stranica: require('strict') local p = {} -- Doda <div class="..."> u html objekat samo ako je content ne-prazan. local function add_div(html, class, content) if not content or content == '' then return end html:tag('div'):addClass(class):wikitext(content) end --[[ Glavna funkcija. Prima sastavljen 'data' objekat (priprema ga orkestrator Modul:Header iz izlaza ostalih podmodula) i vraća gotov wikitext string. data polja: title – preprocesovan wikitext naslova at... 12143 Scribunto text/plain suwf1ckw6dhxdc3lu3o4tf1fojl2ewj