Википедия tyvwiki https://tyv.wikipedia.org/wiki/%D0%9A%D0%BE%D0%BB_%D0%B0%D1%80%D1%8B%D0%BD MediaWiki 1.47.0-wmf.18 first-letter Медиа Тускай Чугаа Ажыглакчы Ажыглакчы чугаа Википедия Википедия дугайында сүмелел Файл Файл чугаа МедиаВики МедиаВики чугаа Майык Майык чугаа Дуза Дуза чугаа Аңгылал Аңгылал чугаа TimedText TimedText talk Модуль Обсуждение модуля Event Event talk Модуль:TableTools 828 1600 52578 28903 2026-09-03T13:14:52Z Hamish 6026 Update from [[d:Special:GoToLinkedPage/enwiki/Q15408619|master]] using [[mw:Synchronizer| #Synchronizer]] 52578 Scribunto text/plain ------------------------------------------------------------------------------------ -- 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. -- ------------------------------------------------------------------------------------ local libraryUtil = require('libraryUtil') local p = {} -- Define often-used variables and functions. local floor = math.floor local infinity = math.huge local checkType = libraryUtil.checkType local checkTypeMulti = libraryUtil.checkTypeMulti ------------------------------------------------------------------------------------ -- isPositiveInteger -- -- This function returns true if the given value is a positive integer, and false -- if not. Although it doesn't operate on tables, it is included here as it is -- useful for determining whether a given table key is in the array part or the -- hash part of a table. ------------------------------------------------------------------------------------ function p.isPositiveInteger(v) return type(v) == 'number' and v >= 1 and floor(v) == v and v < infinity end ------------------------------------------------------------------------------------ -- isNan -- -- This function returns true if the given number is a NaN value, and false if -- not. Although it doesn't operate on tables, it is included here as it is useful -- for determining whether a value can be a valid table key. Lua will generate an -- error if a NaN is used as a table key. ------------------------------------------------------------------------------------ function p.isNan(v) return type(v) == 'number' and v ~= v end ------------------------------------------------------------------------------------ -- shallowClone -- -- This returns a clone of a table. The value returned is a new table, but all -- subtables and functions are shared. Metamethods are respected, but the returned -- table will have no metatable of its own. ------------------------------------------------------------------------------------ function p.shallowClone(t) checkType('shallowClone', 1, t, 'table') local ret = {} for k, v in pairs(t) do ret[k] = v end return ret end ------------------------------------------------------------------------------------ -- removeDuplicates -- -- This removes duplicate values from an array. Non-positive-integer keys are -- ignored. The earliest value is kept, and all subsequent duplicate values are -- removed, but otherwise the array order is unchanged. ------------------------------------------------------------------------------------ function p.removeDuplicates(arr) checkType('removeDuplicates', 1, arr, 'table') local isNan = p.isNan local ret, exists = {}, {} for _, v in ipairs(arr) do if isNan(v) then -- NaNs can't be table keys, and they are also unique, so we don't need to check existence. ret[#ret + 1] = v elseif not exists[v] then ret[#ret + 1] = v exists[v] = true end end return ret end ------------------------------------------------------------------------------------ -- numKeys -- -- This takes a table and returns an array containing the numbers of any numerical -- keys that have non-nil values, sorted in numerical order. ------------------------------------------------------------------------------------ function p.numKeys(t) checkType('numKeys', 1, t, 'table') local isPositiveInteger = p.isPositiveInteger local nums = {} for k in pairs(t) do if isPositiveInteger(k) then nums[#nums + 1] = k end end table.sort(nums) return nums end ------------------------------------------------------------------------------------ -- affixNums -- -- This takes a table and returns an array containing the numbers of keys with the -- specified prefix and suffix. For example, for the table -- {a1 = 'foo', a3 = 'bar', a6 = 'baz'} and the prefix "a", affixNums will return -- {1, 3, 6}. ------------------------------------------------------------------------------------ function p.affixNums(t, prefix, suffix) checkType('affixNums', 1, t, 'table') checkType('affixNums', 2, prefix, 'string', true) checkType('affixNums', 3, suffix, 'string', true) local function cleanPattern(s) -- Cleans a pattern so that the magic characters ()%.[]*+-?^$ are interpreted literally. return s:gsub('([%(%)%%%.%[%]%*%+%-%?%^%$])', '%%%1') end prefix = prefix or '' suffix = suffix or '' prefix = cleanPattern(prefix) suffix = cleanPattern(suffix) local pattern = '^' .. prefix .. '([1-9]%d*)' .. suffix .. '$' local nums = {} for k in pairs(t) do if type(k) == 'string' then local num = mw.ustring.match(k, pattern) if num then nums[#nums + 1] = tonumber(num) end end end table.sort(nums) return nums end ------------------------------------------------------------------------------------ -- numData -- -- Given a table with keys like {"foo1", "bar1", "foo2", "baz2"}, returns a table -- of subtables in the format -- {[1] = {foo = 'text', bar = 'text'}, [2] = {foo = 'text', baz = 'text'}}. -- Keys that don't end with an integer are stored in a subtable named "other". The -- compress option compresses the table so that it can be iterated over with -- ipairs. ------------------------------------------------------------------------------------ function p.numData(t, compress) checkType('numData', 1, t, 'table') checkType('numData', 2, compress, 'boolean', true) local ret = {} for k, v in pairs(t) do local prefix, num = mw.ustring.match(tostring(k), '^([^0-9]*)([1-9][0-9]*)$') if num then num = tonumber(num) local subtable = ret[num] or {} if prefix == '' then -- Positional parameters match the blank string; put them at the start of the subtable instead. prefix = 1 end subtable[prefix] = v ret[num] = subtable else local subtable = ret.other or {} subtable[k] = v ret.other = subtable end end if compress then local other = ret.other ret = p.compressSparseArray(ret) ret.other = other end return ret end ------------------------------------------------------------------------------------ -- compressSparseArray -- -- This takes an array with one or more nil values, and removes the nil values -- while preserving the order, so that the array can be safely traversed with -- ipairs. ------------------------------------------------------------------------------------ function p.compressSparseArray(t) checkType('compressSparseArray', 1, t, 'table') local ret = {} local nums = p.numKeys(t) for _, num in ipairs(nums) do ret[#ret + 1] = t[num] end return ret end ------------------------------------------------------------------------------------ -- sparseIpairs -- -- This is an iterator for sparse arrays. It can be used like ipairs, but can -- handle nil values. ------------------------------------------------------------------------------------ function p.sparseIpairs(t) checkType('sparseIpairs', 1, t, 'table') local nums = p.numKeys(t) local i = 0 local lim = #nums return function () i = i + 1 if i <= lim then local key = nums[i] return key, t[key] else return nil, nil end end end ------------------------------------------------------------------------------------ -- size -- -- This returns the size of a key/value pair table. It will also work on arrays, -- but for arrays it is more efficient to use the # operator. ------------------------------------------------------------------------------------ function p.size(t) checkType('size', 1, t, 'table') local i = 0 for _ in pairs(t) do i = i + 1 end return i end local function defaultKeySort(item1, item2) -- "number" < "string", so numbers will be sorted before strings. local type1, type2 = type(item1), type(item2) if type1 ~= type2 then return type1 < type2 elseif type1 == 'table' or type1 == 'boolean' or type1 == 'function' then return tostring(item1) < tostring(item2) else return item1 < item2 end end ------------------------------------------------------------------------------------ -- keysToList -- -- Returns an array of the keys in a table, sorted using either a default -- comparison function or a custom keySort function. ------------------------------------------------------------------------------------ function p.keysToList(t, keySort, checked) if not checked then checkType('keysToList', 1, t, 'table') checkTypeMulti('keysToList', 2, keySort, {'function', 'boolean', 'nil'}) end local arr = {} local index = 1 for k in pairs(t) do arr[index] = k index = index + 1 end if keySort ~= false then keySort = type(keySort) == 'function' and keySort or defaultKeySort table.sort(arr, keySort) end return arr end ------------------------------------------------------------------------------------ -- sortedPairs -- -- Iterates through a table, with the keys sorted using the keysToList function. -- If there are only numerical keys, sparseIpairs is probably more efficient. ------------------------------------------------------------------------------------ function p.sortedPairs(t, keySort) checkType('sortedPairs', 1, t, 'table') checkType('sortedPairs', 2, keySort, 'function', true) local arr = p.keysToList(t, keySort, true) local i = 0 return function () i = i + 1 local key = arr[i] if key ~= nil then return key, t[key] else return nil, nil end end end ------------------------------------------------------------------------------------ -- isArray -- -- Returns true if the given value is a table and all keys are consecutive -- integers starting at 1. ------------------------------------------------------------------------------------ function p.isArray(v) if type(v) ~= 'table' then return false end local i = 0 for _ in pairs(v) do i = i + 1 if v[i] == nil then return false end end return true end ------------------------------------------------------------------------------------ -- isArrayLike -- -- Returns true if the given value is iterable and all keys are consecutive -- integers starting at 1. ------------------------------------------------------------------------------------ function p.isArrayLike(v) if not pcall(pairs, v) then return false end local i = 0 for _ in pairs(v) do i = i + 1 if v[i] == nil then return false end end return true end ------------------------------------------------------------------------------------ -- invert -- -- Transposes the keys and values in an array. For example, {"a", "b", "c"} -> -- {a = 1, b = 2, c = 3}. Duplicates are not supported (result values refer to -- the index of the last duplicate) and NaN values are ignored. ------------------------------------------------------------------------------------ function p.invert(arr) checkType("invert", 1, arr, "table") local isNan = p.isNan local map = {} for i, v in ipairs(arr) do if not isNan(v) then map[v] = i end end return map end ------------------------------------------------------------------------------------ -- listToSet -- -- Creates a set from the array part of the table. Indexing the set by any of the -- values of the array returns true. For example, {"a", "b", "c"} -> -- {a = true, b = true, c = true}. NaN values are ignored as Lua considers them -- never equal to any value (including other NaNs or even themselves). ------------------------------------------------------------------------------------ function p.listToSet(arr) checkType("listToSet", 1, arr, "table") local isNan = p.isNan local set = {} for _, v in ipairs(arr) do if not isNan(v) then set[v] = true end end return set end ------------------------------------------------------------------------------------ -- deepCopy -- -- Recursive deep copy function. Preserves identities of subtables. ------------------------------------------------------------------------------------ local function _deepCopy(orig, includeMetatable, already_seen) if type(orig) ~= "table" then return orig end -- already_seen stores copies of tables indexed by the original table. local copy = already_seen[orig] if copy ~= nil then return copy end copy = {} already_seen[orig] = copy -- memoize before any recursion, to avoid infinite loops for orig_key, orig_value in pairs(orig) do copy[_deepCopy(orig_key, includeMetatable, already_seen)] = _deepCopy(orig_value, includeMetatable, already_seen) end if includeMetatable then local mt = getmetatable(orig) if mt ~= nil then setmetatable(copy, _deepCopy(mt, true, already_seen)) end end return copy end function p.deepCopy(orig, noMetatable, already_seen) checkType("deepCopy", 3, already_seen, "table", true) return _deepCopy(orig, not noMetatable, already_seen or {}) end ------------------------------------------------------------------------------------ -- sparseConcat -- -- Concatenates all values in the table that are indexed by a number, in order. -- sparseConcat{a, nil, c, d} => "acd" -- sparseConcat{nil, b, c, d} => "bcd" ------------------------------------------------------------------------------------ function p.sparseConcat(t, sep, i, j) local arr = {} local arr_i = 0 for _, v in p.sparseIpairs(t) do arr_i = arr_i + 1 arr[arr_i] = v end return table.concat(arr, sep, i, j) end ------------------------------------------------------------------------------------ -- length -- -- Finds the length of an array, or of a quasi-array with keys such as "data1", -- "data2", etc., using an exponential search algorithm. It is similar to the -- operator #, but may return a different value when there are gaps in the array -- portion of the table. Intended to be used on data loaded with mw.loadData. For -- other tables, use #. -- Note: #frame.args in frame object always be set to 0, regardless of the number -- of unnamed template parameters, so use this function for frame.args. ------------------------------------------------------------------------------------ function p.length(t, prefix) -- requiring module inline so that [[Module:Exponential search]] which is -- only needed by this one function doesn't get millions of transclusions local expSearch = require("Module:Exponential search") checkType('length', 1, t, 'table') checkType('length', 2, prefix, 'string', true) return expSearch(function (i) local key if prefix then key = prefix .. tostring(i) else key = i end return t[key] ~= nil end) or 0 end ------------------------------------------------------------------------------------ -- inArray -- -- Returns true if searchElement is a member of the array, and false otherwise. -- Equivalent to JavaScript array.includes(searchElement) or -- array.includes(searchElement, fromIndex), except fromIndex is 1 indexed ------------------------------------------------------------------------------------ function p.inArray(array, searchElement, fromIndex) checkType("inArray", 1, array, "table") -- if searchElement is nil, error? fromIndex = tonumber(fromIndex) if fromIndex then if (fromIndex < 0) then fromIndex = #array + fromIndex + 1 end if fromIndex < 1 then fromIndex = 1 end for _, v in ipairs({unpack(array, fromIndex)}) do if v == searchElement then return true end end else for _, v in pairs(array) do if v == searchElement then return true end end end return false end ------------------------------------------------------------------------------------ -- merge -- -- Given the arrays, returns an array containing the elements of each input array -- in sequence. ------------------------------------------------------------------------------------ function p.merge(...) local arrays = {...} local ret = {} for i, arr in ipairs(arrays) do checkType('merge', i, arr, 'table') for _, v in ipairs(arr) do ret[#ret + 1] = v end end return ret end ------------------------------------------------------------------------------------ -- extend -- -- Extends the first array in place by appending all elements from the second -- array. ------------------------------------------------------------------------------------ function p.extend(arr1, arr2) checkType('extend', 1, arr1, 'table') checkType('extend', 2, arr2, 'table') for _, v in ipairs(arr2) do arr1[#arr1 + 1] = v end end return p 4n03zk6kcoeg4gz82mieeh94c1szcjy Модуль:Arguments 828 1602 52577 10255 2026-09-03T12:56:48Z Hamish 6026 Update from [[d:Special:GoToLinkedPage/enwiki/Q15379728|master]] using [[mw:Synchronizer| #Synchronizer]] 52577 Scribunto text/plain -- 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' then val = val:match('^%s*(.-)%s*$') if val == '' then return nil else return val end else return val end end local function tidyValTrimOnly(key, val) if type(val) == 'string' then return val:match('^%s*(.-)%s*$') else return val end end local function tidyValRemoveBlanksOnly(key, val) if type(val) == 'string' then if val:find('%S') then return val else return nil end else return val end end local function tidyValNoChange(key, val) return val end local function matchesTitle(given, title) local tp = type( given ) return (tp == 'string' or tp == 'number') and mw.title.new( given ).prefixedText == title end local translate_mt = { __index = function(t, k) return k end } function arguments.getArgs(frame, options) checkType('getArgs', 1, frame, 'table', true) checkType('getArgs', 2, options, 'table', true) frame = frame or {} options = options or {} --[[ -- Set up argument translation. --]] options.translate = options.translate or {} if getmetatable(options.translate) == nil then setmetatable(options.translate, translate_mt) end if options.backtranslate == nil then options.backtranslate = {} for k,v in pairs(options.translate) do options.backtranslate[v] = k end end if options.backtranslate and getmetatable(options.backtranslate) == nil then setmetatable(options.backtranslate, { __index = function(t, k) if options.translate[k] ~= k then return nil else return k end end }) end --[[ -- Get the argument tables. If we were passed a valid frame object, get the -- frame arguments (fargs) and the parent frame arguments (pargs), depending -- on the options set and on the parent frame's availability. If we weren't -- passed a valid frame object, we are being called from another Lua module -- or from the debug console, so assume that we were passed a table of args -- directly, and assign it to a new variable (luaArgs). --]] local fargs, pargs, luaArgs if type(frame.args) == 'table' and type(frame.getParent) == 'function' then if options.wrappers then --[[ -- The wrappers option makes Module:Arguments look up arguments in -- either the frame argument table or the parent argument table, but -- not both. This means that users can use either the #invoke syntax -- or a wrapper template without the loss of performance associated -- with looking arguments up in both the frame and the parent frame. -- Module:Arguments will look up arguments in the parent frame -- if it finds the parent frame's title in options.wrapper; -- otherwise it will look up arguments in the frame object passed -- to getArgs. --]] local parent = frame:getParent() if not parent then fargs = frame.args else local title = parent:getTitle():gsub('/sandbox$', '') local found = false if matchesTitle(options.wrappers, title) then found = true elseif type(options.wrappers) == 'table' then for _,v in pairs(options.wrappers) do if matchesTitle(v, title) then found = true break end end end -- We test for false specifically here so that nil (the default) acts like true. if found or options.frameOnly == false then pargs = parent.args end if not found or options.parentOnly == false then fargs = frame.args end end else -- options.wrapper isn't set, so check the other options. if not options.parentOnly then fargs = frame.args end if not options.frameOnly then local parent = frame:getParent() pargs = parent and parent.args or nil end end if options.parentFirst then fargs, pargs = pargs, fargs end else luaArgs = frame end -- Set the order of precedence of the argument tables. If the variables are -- nil, nothing will be added to the table, which is how we avoid clashes -- between the frame/parent args and the Lua args. local argTables = {fargs} argTables[#argTables + 1] = pargs argTables[#argTables + 1] = luaArgs --[[ -- Generate the tidyVal function. If it has been specified by the user, we -- use that; if not, we choose one of four functions depending on the -- options chosen. This is so that we don't have to call the options table -- every time the function is called. --]] local tidyVal = options.valueFunc if tidyVal then if type(tidyVal) ~= 'function' then error( "bad value assigned to option 'valueFunc'" .. '(function expected, got ' .. type(tidyVal) .. ')', 2 ) end elseif options.trim ~= false then if options.removeBlanks ~= false then tidyVal = tidyValDefault else tidyVal = tidyValTrimOnly end else if options.removeBlanks ~= false then tidyVal = tidyValRemoveBlanksOnly else tidyVal = tidyValNoChange end end --[[ -- Set up the args, metaArgs and nilArgs tables. args will be the one -- accessed from functions, and metaArgs will hold the actual arguments. Nil -- arguments are memoized in nilArgs, and the metatable connects all of them -- together. --]] local args, metaArgs, nilArgs, metatable = {}, {}, {}, {} setmetatable(args, metatable) local function mergeArgs(tables) --[[ -- Accepts multiple tables as input and merges their keys and values -- into one table. If a value is already present it is not overwritten; -- tables listed earlier have precedence. We are also memoizing nil -- values, which can be overwritten if they are 's' (soft). --]] for _, t in ipairs(tables) do for key, val in pairs(t) do if metaArgs[key] == nil and nilArgs[key] ~= 'h' then local tidiedVal = tidyVal(key, val) if tidiedVal == nil then nilArgs[key] = 's' else metaArgs[key] = tidiedVal end end end end end --[[ -- Define metatable behaviour. Arguments are memoized in the metaArgs table, -- and are only fetched from the argument tables once. Fetching arguments -- from the argument tables is the most resource-intensive step in this -- module, so we try and avoid it where possible. For this reason, nil -- arguments are also memoized, in the nilArgs table. Also, we keep a record -- in the metatable of when pairs and ipairs have been called, so we do not -- run pairs and ipairs on the argument tables more than once. We also do -- not run ipairs on fargs and pargs if pairs has already been run, as all -- the arguments will already have been copied over. --]] metatable.__index = function (t, key) --[[ -- Fetches an argument when the args table is indexed. First we check -- to see if the value is memoized, and if not we try and fetch it from -- the argument tables. When we check memoization, we need to check -- metaArgs before nilArgs, as both can be non-nil at the same time. -- If the argument is not present in metaArgs, we also check whether -- pairs has been run yet. If pairs has already been run, we return nil. -- This is because all the arguments will have already been copied into -- metaArgs by the mergeArgs function, meaning that any other arguments -- must be nil. --]] if type(key) == 'string' then key = options.translate[key] end local val = metaArgs[key] if val ~= nil then return val elseif metatable.donePairs or nilArgs[key] then return nil end for _, argTable in ipairs(argTables) do local argTableVal = tidyVal(key, argTable[key]) if argTableVal ~= nil then metaArgs[key] = argTableVal return argTableVal end end nilArgs[key] = 'h' return nil end metatable.__newindex = function (t, key, val) -- This function is called when a module tries to add a new value to the -- args table, or tries to change an existing value. if type(key) == 'string' then key = options.translate[key] end if options.readOnly then error( 'could not write to argument table key "' .. tostring(key) .. '"; the table is read-only', 2 ) elseif options.noOverwrite and args[key] ~= nil then error( 'could not write to argument table key "' .. tostring(key) .. '"; overwriting existing arguments is not permitted', 2 ) elseif val == nil then --[[ -- If the argument is to be overwritten with nil, we need to erase -- the value in metaArgs, so that __index, __pairs and __ipairs do -- not use a previous existing value, if present; and we also need -- to memoize the nil in nilArgs, so that the value isn't looked -- up in the argument tables if it is accessed again. --]] metaArgs[key] = nil nilArgs[key] = 'h' else metaArgs[key] = val end end local function translatenext(invariant) local k, v = next(invariant.t, invariant.k) invariant.k = k if k == nil then return nil elseif type(k) ~= 'string' or not options.backtranslate then return k, v else local backtranslate = options.backtranslate[k] if backtranslate == nil then -- Skip this one. This is a tail call, so this won't cause stack overflow return translatenext(invariant) else return backtranslate, v end end end metatable.__pairs = function () -- Called when pairs is run on the args table. if not metatable.donePairs then mergeArgs(argTables) metatable.donePairs = true end return translatenext, { t = metaArgs } end local function inext(t, i) -- This uses our __index metamethod local v = t[i + 1] if v ~= nil then return i + 1, v end end metatable.__ipairs = function (t) -- Called when ipairs is run on the args table. return inext, t, 0 end return args end return arguments 5qx9tzlul9ser30uxj9nbasjt92cevn Хасан Эрен 0 2428 52583 50032 2026-09-04T03:33:51Z InternetArchiveBot 7061 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 52583 wikitext text/x-wiki {{Кижи}} '''Хасан Эрен''' (1919 чылы Март айынын 15те төрүттүнген. [[Видин]]<ref>http://www.edebiyatfakultesi.com/hasan-eren.htm {{Webarchive|url=https://web.archive.org/web/20150512153049/http://www.edebiyatfakultesi.com/hasan-eren.htm |date=2015-05-12 }}</ref>, [[Булгария]] - 2007 чылы Май 26дa [[Анкарa]]<ref>http://mtad.humanity.ankara.edu.tr/IV-2_Haziran/32_MTAD_4-1_HEren_204-205.pdf{{Чедимчок шөлүг|date=July 2025 |bot=InternetArchiveBot |fix-attempted=yes }}</ref>, [[Турция]]). [[Турция|Турк]] сөстүкчү болгаш этимолог<ref>http://www.turkmacar.org.tr/index.php/emegi-gecenler/prof-dr-hasan-eren-1919-2007 {{Webarchive|url=https://web.archive.org/web/20140220041204/http://www.turkmacar.org.tr/index.php/emegi-gecenler/prof-dr-hasan-eren-1919-2007 |date=2014-02-20 }}</ref>, [[Түрколог]]. ==Намдары== Баштайгы болгаш ортумак школазын Булгариядa Видин хоорайдa дооскан. 1985 чылындан эгелэп Турк энциклопедиязың кол редактору. 1983 чылындан эгелеп ''Түрк Дыл Куруму''<ref>Турк болгаш Түрк дылдар шинчилелжи чери</ref> даргазы<ref>http://www.bilgicik.com/yazi/prof-dr-hasan-eren/</ref>. == Номнары == * Турк (болгаш Түрк) дылы этимологиялыг сөстүү (Türk Dilinin Etimolojik Sözlüğü),1999<ref>http://dilbilimi.net/etimoloji_arastirmalari.htm</ref><ref>http://turkoloji.cu.edu.tr/ESKI%20TURK%20DILI/6.php</ref>. * Türk Saz Şâirleri Hakkında Araştırmalar) (1952), * Çağatay Lügati Hakkında Notlar (DTCFD, 1950,’ Makale), * Kıbrıs’ta Türkler ve Türk Dili (Türkoloji Dergisi L 1964), * Türk Onomastiği Hakkında (Fuad Köprülü Armağa-j nı, 1953), * Türk Yer Adlar» Keçiborlu (Türkoloji Dergisi, C, IV. S. 1,1972), * Suğla (Türkoloji Dergisi, C. IV., S. 1,1972),’ * Türk Saz Şâirleri, Usküdârî (Türkoloji Dergisi, C. V., S. 1., 1973), * Eski Bir Saz Şâiri Sipahî (Türkoloji Dergisi, C. V., S., 1. 1973), * Bursalı Âşık Halil {Türkoloji dergisi, C. VI., S. 1,. 1974), * Türkler’de Ekinciliğin Gelişmesine Katkılar (Tür­koloji Dergisi, C. VIII., 1979). ==Дөзүк== <references/> == Даштыкы шөлүглер == * [http://www.bilgicik.com/tag/hasan-eren/ Prof. Dr. Hasan Eren] [[Аңгылал:Эртемден]] [[Аңгылал:Турк чогаалчы]] [[Аңгылал:Турк Түркологтар]] [[Аңгылал:Этимология]] jxev2c0d4mky0fq3u9dpw1e1r3kedyc Султан-Галиев, Мирсаид Хайдаргалиевич 0 9354 52582 45941 2026-09-04T03:08:49Z InternetArchiveBot 7061 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 52582 wikitext text/x-wiki {{Кижи}} '''Мирсаи́д Хайдаргали́евич Султа́н-Гали́ев''' ({{lang-tt|Мирсәет Хәйдәргали улы Солтангалиев}}, [[13 июль]] [[1892]], [[Елимбетово (Стерлибашевский район)|д. Елимбетово]], [[Уфимская губерния]] (бо үеде [[Башкортостанның Стерлибашевский району|Башкортостанның Стерлибашевский району]]), — [[28 январь]] [[1940]], [[Москва]]) — мусульман политиктиг ажылдакчы, [[Россий социал-демократическая ажылчын партия (большевиктер)|РСДРП(б)]] кежигүнү. 28 январь [[1940 чыл]]да «[[национал-уклонизм]]» дээш боолап өлүрген. == Намдары == 13 июль 1897 чылда татар өг-бүлеге төрүттүнген. 1911 чылда [[Казань|Казаньның]] татар башкы школа дооскан. == Тураскаал == Ооң ады-биле 1992 чылда Казаньның төөгүлүг төвүнде [[Султан-Галиев шөл|шөлдү]] адаан. Стела Башкортостан Республиканың көдээ суур Кармаскалыда тургускан. == Улай көр. == * [[Союз воинствующих безбожников Татарии]] == Демдеглелдер == {{демдеглелдер|35em}} == Чогаал == * {{книга|автор=Быкова Т. Б.|часть=4.1. Красный террор|ссылка часть=|заглавие=Создание Крымской АССР (1917—1921 гг.)|оригинал=Створення Кримської АСРР (1917—1921 рр.)|ссылка=http://history.org.ua/LiberUA/978-966-02-5992-8/0.pdf|ответственный=Ред. [[Кульчицкий, Станислав Владиславович|С. В. Кульчицкий]]|место=Киев|издательство=Ин-т истории Украины НАНУ|год=2011|страниц=247|isbn=978-966-02-5992-8|тираж=300|ref= Быкова}} * {{статья|заглавие = Мирсаид Султан-Галиев и его идеи. Большевизм, ислам и национальный вопрос.|автор = Сагадеев А.В.|ссылка = http://www.inion.ru/product/russia/zvetkov.htm{{мертвая ссылка |url=http://www.inion.ru/product/russia/zvetkov.htm |id=20010625041916}}|издание = Россия и современный мир|тип = сборник|место = М.|год = 1998|номер = 3(20)|страницы = }}{{статья|заглавие = Мирсаид Султан-Галиев и его идеи. Большевизм, ислам и национальный вопрос.|автор = Сагадеев А.В.|ссылка = {{мертвая ссылка |url= |id=20010625041916}}|издание = Россия и современный мир|тип = сборник|место = М.|год = 1998|номер = 3(20)|страницы = }} {{Webarchive|url=https://web.archive.org/web/20090408061519/http://www.inion.ru/product/russia/zvetkov.htm |date=2009-04-08 }} * {{книга |автор = [[Мухамадиев, Ринат|Мухамадиев Р.С.]] |часть = |заглавие = Мост над адом |оригинал = |ссылка = |место = М. |издательство = Голос |год = 1996 |страницы = 480 |isbn = }} * [http://trotsky.ru/about_ld/mv_sultangaliev.html Марк Васильев, Дело Султан-Галиева] {{Webarchive|url=https://web.archive.org/web/20160306181833/http://trotsky.ru/about_ld/mv_sultangaliev.html |date=2016-03-06 }}{{мертвая ссылка |url=http://trotsky.ru/about_ld/mv_sultangaliev.html |id=20080511023927}} * М. Султангалиев [https://web.archive.org/web/20160304210804/http://www.revkom.com/index.htm?%2Fnaukaikultura%2Fislam-sg.htm Методы антирелигиозной пропаганды среди мусульман] * ''Исамгулова Э. Р.'' Политические взгляды М. Султангалиева: автореф. дис. … канд. ист. наук. — Уфа, 2005. — 22 с. * Султан-Галиев Мирсаит Хайдаргалиевич // Татарский век глазами национальной элиты: 100 великих татар. — Казань, 2005. — С.552-553. * ''Султанбеков Б.'' Султан-Галиев Мирсаид Хайдаргалиевич; «Султангалиевщина» // Татарская энциклопедия. — Казань, 2010. — Т. 5. — С. 471—472. == Шөлүглер == * Мирсаид Султан-Галиев. [https://web.archive.org/web/20140429204929/http://www.archive.gov.tatarstan.ru/magazine/res/fck/Image/prilogenia/1_0002.pdf Избранные труды]. Казань: Издательство «Гасыр». Приложение к журналу «Гасырлар авазы — Эхо веков». 1998 * {{ЭБЭ2013|index.php/component/content/article/2-statya/3561-sultan-galiev-mirsaid-khajdar-galievich|автор=Иргалин Г. Д.}} * [https://web.archive.org/web/20090722095640/http://www.stalinwerke.de/band05/b05-039.html Речь Сталина о «деле Султан-Галиева» на 4-м совещании ЦК РКП(б)]{{ref-de}} * Ланда Р. Г. [http://historystudies.org/?p=202 Мирсаид Султан-Галиев. — Вопросы истории. — 1999. — № 8. — С. 53-70.] * {{статья |заглавие = Мирсаит Султан-Галиев — революционер и мыслитель. |автор = Дороненко М. |ссылка = http://www.rwp.ru/History/HRR/m000002.htm |издание = |страницы = |archiveurl = https://web.archive.org/web/20070826233628/http://www.rwp.ru/History/HRR/m000002.htm |archivedate = 2007-08-26 }} {{Webarchive|url=https://web.archive.org/web/20070826233628/http://www.rwp.ru/History/HRR/m000002.htm |date=2007-08-26 }} * Matthieu Renault, [https://viewpointmag.com/2015/03/23/the-idea-of-muslim-national-communism-on-mirsaid-sultan-galiev/ «The Idea of Muslim National Communism: On Mirsaid Sultan-Galiev» (2015)]{{ref-en}} * [[Максим Родинсон|Maxime Rodinson]], [http://www.europe-solidaire.org/spip.php?article3638 «Sultan Galiev — a forgotten precursor» (1961)] {{Webarchive|url=https://web.archive.org/web/20110520044207/http://www.europe-solidaire.org/spip.php?article3638 |date=2011-05-20 }}{{ref-en}} {{ВС}} {{politic-stub}} [[Аңгылал:ССРЭ-ге репрессияга таварышканнар]] [[Аңгылал:РСФСР-ге Расстрелянные]] [[Аңгылал:ССРЭ-ге Реабилитированные]] [[Аңгылал:Казнённые политики]] [[Аңгылал:Марксисчилер]] [[Аңгылал:Россияның революсчулары]] [[Аңгылал:И. В. Сталин аттыг Коммунистического университета трудящихся Востока башкылары]] [[Аңгылал:Султангалиевщина]] josbyzwmws87emd1geg92ssllpriyyp Майык:Potd/2026-09-04 10 15787 52579 2026-09-03T14:08:59Z Frhdkazan 1195 Чаа арын чаяатынган: «Norderney, Marienhöhe -- 2025 -- 9295-9.jpg» 52579 wikitext text/x-wiki Norderney, Marienhöhe -- 2025 -- 9295-9.jpg t53klkdakqilkat1erdcjxhsbtqfdtl Майык:Motd/2026-09-04 10 15788 52580 2026-09-03T14:13:09Z Frhdkazan 1195 Чаа арын чаяатынган: «Forbidden Fruit Machine-HD.webm» 52580 wikitext text/x-wiki Forbidden Fruit Machine-HD.webm judkq94jfa6wt2j9kqbs1dvmoe7v4j3 Модуль:Exponential search 828 15789 52581 2026-09-03T21:48:44Z Hamish 6026 [IPE-NEXT] Quick edit imported from [[:w:en:Module:Exponential search]] 52581 Scribunto text/plain -- This module provides a generic exponential search algorithm. require[[strict]] local checkType = require('libraryUtil').checkType local floor = math.floor local function midPoint(lower, upper) return floor(lower + (upper - lower) / 2) end local function search(testFunc, i, lower, upper) if testFunc(i) then if i + 1 == upper then return i end lower = i if upper then i = midPoint(lower, upper) else i = i * 2 end return search(testFunc, i, lower, upper) else upper = i i = midPoint(lower, upper) return search(testFunc, i, lower, upper) end end return function (testFunc, init) checkType('Exponential search', 1, testFunc, 'function') checkType('Exponential search', 2, init, 'number', true) if init and (init < 1 or init ~= floor(init) or init == math.huge) then error(string.format( "invalid init value '%s' detected in argument #2 to " .. "'Exponential search' (init value must be a positive integer)", tostring(init) ), 2) end init = init or 2 if not testFunc(1) then return nil end return search(testFunc, init, 1, nil) end jqqi8l27tb73lglksbukg2g3bzt3fmv Майык:Potd/2026-09-05 10 15790 52584 2026-09-04T05:47:40Z Frhdkazan 1195 Чаа арын чаяатынган: «Tallinna vanalinn päikesetõusu ajal.jpg» 52584 wikitext text/x-wiki Tallinna vanalinn päikesetõusu ajal.jpg qn04sos7ge95y6tfwe0vhkh876yp7jx Майык:Motd/2026-09-05 10 15791 52585 2026-09-04T05:50:34Z Frhdkazan 1195 Чаа арын чаяатынган: «Beethoven Violin Sonata No.8 - Soojin Han & Junhee Kim.webm» 52585 wikitext text/x-wiki Beethoven Violin Sonata No.8 - Soojin Han & Junhee Kim.webm plapg302o224os1uwqpvh78mi7ds2dz Майык:Potd/2026-09-06 10 15792 52586 2026-09-04T11:08:53Z Frhdkazan 1195 Чаа арын чаяатынган: «Indian rhinoceros (Rhinoceros unicornis) 1.jpg» 52586 wikitext text/x-wiki Indian rhinoceros (Rhinoceros unicornis) 1.jpg 2v72jy64t1orl19iu95bacz9gs3k9my Майык:Motd/2026-09-06 10 15793 52587 2026-09-04T11:11:24Z Frhdkazan 1195 Чаа арын чаяатынган: «2022-04-13 - vineyard cemetery near Komen, Kras, Slovenia, Europe.webm» 52587 wikitext text/x-wiki 2022-04-13 - vineyard cemetery near Komen, Kras, Slovenia, Europe.webm c47eald3s4e6m1c2u91g8ppebf46e9g