|
===================================== 〔語彙分解〕的な部分一致の検索結果は以下の通りです。 ・ ジュール : [じゅーる] 【名詞】 1. joule 2. (n) joule ・ ー : [ちょうおん] (n) long vowel mark (usually only used in katakana)
local p = function p.author(frame) local pframe = frame:getParent() local args = pframe.args local tname = "Gutenberg author" -- name of calling template. Change if template is renamed. local id = nil -- author name, or number. Name goes to search page, number goes direct to author page local name = nil -- display name on Wikipedia (default: article title) local url = nil local tagline = "- プロジェクト・グーテンベルク" local urlheadname = "http://www.gutenberg.org/author/" -- SSL problems with certain browsers. See Template_talk:Gutenberg_author#https_problem local urlheadnumb = "http://www.gutenberg.org/ebooks/author/" local urlhead = nil -- Argument |id= id = trimArg(args) or trimArg(args.id) if not id then error("idの指定がありません。Template:" .. tname .. "のドキュメントを参照してください。") else if tonumber(id) then -- it's a number urlhead = urlheadnumb else urlhead = urlheadname id = mw.ustring.gsub(id," ", "+") end end -- Argument |name= name = trimArg(args) or trimArg(args.name) if not name then name = mw.title.getCurrentTitle().text:gsub('%s+%(-%)$', '') -- Current page name without the final parentheses end -- Argument |coda= if trimArg(args.coda) then tagline = tagline .. " " .. trimArg(args.coda) end url = ".. urlhead .. id .. " " .. name .. "の作品 " .. tagline return url end function p.Australia(frame) local pframe = frame:getParent() local args = pframe.args local tname = "Gutenberg Australia" -- name of calling template. Change if template is renamed. local id = nil -- ID. eg. http://gutenberg.net.au/plusfifty-n-z.html#shanks .. the ID = plusfifty-n-z.html#shanks -- ID is the same for linking an individual book title, or all books by the author. local name = nil -- display name on Wikipedia (default: article title) local author = nil -- flag if an author (default: no) local url = nil local urlhead = "http://gutenberg.net.au/" local prefix = "" local tagline = "- プロジェクト・グーテンベルク・オーストラリア" local italic = "''" -- Argument |id= id = trimArg(args) or trimArg(args.id) if not id then error("idの指定がありません。Template:" .. tname .. "のドキュメントを参照してください。") end -- Argument |name= name = trimArg(args) or trimArg(args.name) if not name then name = mw.title.getCurrentTitle().text:gsub('%s+%(-%)$', '') -- Current page name without the final parentheses end -- Argument |author= author = trimArg(args.author) if author then if mw.ustring.lower(author) == "yes" then prefix = "" italic = "" end end -- Argument |coda= if trimArg(args.coda) then tagline = tagline .. " " .. trimArg(args.coda) end url = ".. urlhead .. id .. " " .. prefix .. italic .. name .. italic .. " " .. tagline return url end function trimArg(arg) if arg == "" or arg == nil then return nil else return mw.text.trim(arg) end end return p 抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)』 ■ウィキペディアで「モジュール:Gutenberg」の詳細全文を読む スポンサード リンク
|