翻訳と辞書
Words near each other
・ メ=ゾシ
・ メ=ゾシ県
・ メ~テレ
・ メ~テレNEWS
・ メ~テレカフェ
・ メ~テレニュース
・ メ~テレワイドスーパーJチャンネル
・ メ~テレ劇場
・ メ~テレ日曜朝7時枠のアニメ
・ メ~テレ時代劇
・ モ
・ モ'・ベター・ブルース
・ モア
・ モア (たばこ)
・ モア (アルバム)
・ モア (曖昧さ回避)
・ モア (曲)
・ モア☆ゴル
・ モアイ
・ モアイ (グラディウス)


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

モジュール:Gutenberg : ミニ英和和英辞書
モジュール:Gutenberg[じー]
=====================================
〔語彙分解〕的な部分一致の検索結果は以下の通りです。

ジュール : [じゅーる]
 【名詞】 1. joule 2. (n) joule
: [ちょうおん]
 (n) long vowel mark (usually only used in katakana)

モジュール:Gutenberg : ウィキペディア日本語版
モジュール:Gutenberg[じー]
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」の詳細全文を読む




スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.