|
===================================== 〔語彙分解〕的な部分一致の検索結果は以下の通りです。 ・ ジュール : [じゅーる] 【名詞】 1. joule 2. (n) joule ・ ー : [ちょうおん] (n) long vowel mark (usually only used in katakana)
function getProperty( propertyName ) local entity = mw.wikibase.getEntity() if not entity or not entity.claims then return end--the entity doesnt exist or have no claims local property = entity.claims if not property then return end--no such property for this item property = property local propValue = property.mainsnak and property.mainsnak.datavalue if not propValue then return end --property doesnt exist if propValue == 'wikibase-entityid' then local linkTarget = mw.wikibase.sitelink( "Q" .. propValue.value ) local linkTitle = mw.wikibase.label( "Q" ..propValue.value ) return linkTarget and linkTitle and mw.ustring.format( "%s", linkTarget, linkTitle ) or linkTitle elseif propValue and propValue == 'string' then return propValue.value end end function property( frame ) return getProperty(string.lower(frame.args)) end function getLabel( propertyName ) local entity = mw.wikibase.getEntity() if not entity or not entity.claims then return end--the entity doesnt exist or have no claims local property = entity.claims if not property then return end--no such property for this item property = property local propValue = property.mainsnak.datavalue if not propValue then return '' end --property doesnt exist if propValue=='wikibase-entityid' then return mw.wikibase.label( "Q" ..propValue.value ) elseif propValue == 'string' then return propValue.value end end -- Return the label for property, or the label of the linked entiy of that property function label( frame ) return getLabel( string.lower(frame.args )) end function getImageLink( propName, width) local entity = mw.wikibase.getEntity() if not entity or not entity.claims then return end --the entity doesnt exist or have no claims local property = entity.claimsor "p18" if property then local width = width or "220" return mw.ustring.format( '%spx', property.mainsnak.datavalue.value, width ) end end --use this function to get associated image to be used in the article function imageLink( frame ) return getImageLink( string.lower(frame.args), frame.args) end return 抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)』 ■ウィキペディアで「モジュール:PropertyLink」の詳細全文を読む スポンサード リンク
|