Бюрократы, Администраторы интерфейса, Администраторы (Semantic MediaWiki), Кураторы (Semantic MediaWiki), Editors (Semantic MediaWiki), Скрывающие, Администраторы, trusted
69 208
правок
мНет описания правки |
мНет описания правки |
||
Строка 119: | Строка 119: | ||
-- Where 'userparam' consist of all the parameters that can not be fetched by symantic property: | -- Where 'userparam' consist of all the parameters that can not be fetched by symantic property: | ||
-- * text = text to show; generally it is the original text of request - term or name | -- * text = text to show; generally it is the original text of request - term or name | ||
-- * view = style of displaying information: подсказка, сноска, скобки | -- * view = style of displaying information in any combination: подсказка, сноска, скобки | ||
-- * type = type of term: понятие (по умолчанию), личность, выражение, литература, периодика / conception, person, expression, literature, periodical | -- * type = type of term: понятие (по умолчанию), личность, выражение, литература, периодика / conception, person, expression, literature, periodical | ||
-- * style= серый | -- * style = серый, оригинал, описание | ||
-- * specification = уточнение к литературному источнику: том, страница, глава и т.п. | -- * specification = уточнение к литературному источнику: том, страница, глава и т.п. | ||
-- View, type and style are language dependent parameters, consider changes in code below. | -- View, type and style are language dependent parameters, consider changes in code below. | ||
-- TODO: Всплывающую подсказку сделать вики текстом и добавить ссылку [[{{{БТС статья}}}|БТС]] | -- TODO: Всплывающую подсказку сделать вики текстом и добавить ссылку [[{{{БТС статья}}}|БТС]] | ||
function ctd.info( frame ) | function ctd.info( frame ) | ||
local term = '' | local term = '' -- term in simple form, as a title in dictionary = wiki page title (most likely) | ||
local | local term_with_link = '' -- term with a link to wiki page | ||
local term_without_link = ''-- term without a link, but with diacritical marks | |||
local reference = '' | local reference = '' | ||
local description = '' | local description = '' | ||
local origin = '' | local origin = '' | ||
local lifetime = '' -- | local lifetime = '' -- date with title | ||
local lifetime_short = '' -- just date | local lifetime_short = '' -- just date | ||
local term_link = '' | local term_link = '' | ||
local ctd_title = '<span style="border-bottom: 1px dotted gray; cursor:help;" title="Большой теософский словарь">БТС</span>' | local ctd_title = '<span style="border-bottom: 1px dotted gray; cursor:help;" title="Большой теософский словарь">БТС</span>' | ||
local output_str = '' -- result string to show | |||
-- | -- variables for 'view' parameter | ||
local view_popup, view_footnote, view_brackets = false | |||
--local | -- variables for 'style' parameter | ||
-- | local font_grey = false -- make font grey | ||
local add_origin = false -- add information on origin | |||
local add_description = false -- add short description | |||
-- split 'userparam' in variables | -- split 'userparam' in variables | ||
local t = mw.text.split(frame.args['userparam'],'@') | local t = mw.text.split(frame.args['userparam'],'@') | ||
local | local text, view, term_type, style, specification = t[1], t[2], t[3], t[4], t[5] | ||
local text | local text_original = text -- keep 'text_original' unchanged | ||
if isempty(view) then view = 'подсказка' end | -- set default | ||
if isempty(view) then view = 'подсказка' end | |||
if isempty(term_type) then term_type = 'понятие' end | if isempty(term_type) then term_type = 'понятие' end | ||
--if | -- parse 'view' for values | ||
if mw.ustring.find(view,'подсказка',1,true) ~= nil then view_popup = true end | |||
if mw.ustring.find(view,'сноска',1,true) ~= nil then view_footnote = true end | |||
if mw.ustring.find(view,'скобки',1,true) ~= nil then view_brackets = true end | |||
-- parse 'style' for values | |||
if mw.ustring.find(style,'серый',1,true) ~= nil then font_grey = true end | |||
if mw.ustring.find(style,'оригинал',1,true) ~= nil then add_origin = true end | |||
if mw.ustring.find(style,'описание',1,true) ~= nil then add_description= true end | |||
-- define term to show, i.e. with accent and diacritic | -- define term to show, i.e. with accent and diacritic | ||
if not isempty(frame.args['term_to_show']) then | if not isempty(frame.args['term_to_show']) then | ||
term_without_link = frame.args['term_to_show'] | |||
elseif not isempty(frame.args['term']) then | elseif not isempty(frame.args['term']) then | ||
term_without_link = frame.args['term'] | |||
else | else | ||
term_without_link = text | |||
end | end | ||
Строка 188: | Строка 199: | ||
end | end | ||
if not isempty(frame.args['origin']) and | if not isempty(frame.args['origin']) and | ||
not isempty(frame.args['lifetime']) or not isempty(frame.args['published'])then | ( not isempty(frame.args['lifetime']) or not isempty(frame.args['published']) )then | ||
origin = origin .. ', ' | origin = origin .. ', ' | ||
end | end | ||
Строка 200: | Строка 211: | ||
-- construct lifetime string for pop-up message | -- construct lifetime string for pop-up message | ||
if | if not isempty(frame.args['lifetime']) then | ||
if term_type == 'личность' then | if term_type == 'личность' then | ||
lifetime = ' Время жизни: '.. frame.args['lifetime'] | lifetime = ' Время жизни: '.. frame.args['lifetime'] | ||
Строка 220: | Строка 231: | ||
-- set hyperlink if there is a wiki page for a term | -- set hyperlink if there is a wiki page for a term | ||
if not isempty(frame.args['wiki_page']) then | if not isempty(frame.args['wiki_page']) then | ||
term_with_link = '[['.. frame.args['wiki_page'] ..'|'.. term_without_link ..']]' | |||
else | |||
term_with_link = term_without_link | |||
end | end | ||
-- | -- LITERATURE features. Set author | ||
if not isempty(frame.args['author_short']) then | if not isempty(frame.args['author_short']) then | ||
term_with_link = frame.args['author_short'] ..', «'.. term_with_link ..'»' | |||
term_without_link = frame.args['author_short'] ..', «'.. term_without_link ..'»' | term_without_link = frame.args['author_short'] ..', «'.. term_without_link ..'»' | ||
elseif not isempty(frame.args['author']) then | elseif not isempty(frame.args['author']) then | ||
term_with_link = frame.args['author'] ..', «'.. term_with_link ..'»' | |||
term_without_link = frame.args['author'] ..', «'.. term_without_link ..'»' | term_without_link = frame.args['author'] ..', «'.. term_without_link ..'»' | ||
end | |||
-- add publishing date | |||
if term_type == 'литература' then | |||
term_without_link = term_without_link ..', '.. lifetime_short | |||
end | end | ||
-- add volume, chapter, page and so on | -- add volume, chapter, page and so on | ||
if not isempty(specification) then | if not isempty(specification) then | ||
term_with_link = term_with_link ..', '.. specification | |||
term_without_link = term_without_link ..', '.. specification | |||
end | end | ||
-- | -- POPUP message should be added | ||
if | if view_popup then | ||
if term_type == 'литература' or term_type == 'личность' then | |||
output_str = term_without_link ..', '.. lifetime_short | |||
else -- для 'понятие' и 'выражение' | |||
output_str = description | |||
end | end | ||
text = '<span style="border-bottom: 1px dotted gray; cursor: help;" title="' .. | if add_origin then output_str = output_str ..' '.. origin end | ||
if add_description then output_str = output_str ..'. – '.. description end | |||
text = '<span style="border-bottom: 1px dotted gray; cursor: help;" title="' .. output_str .. ' (БТС, ' .. term .. ').">' .. text .. '</span>' | |||
end | end | ||
-- | -- FOOTNOTE should be added | ||
if | if view_footnote then | ||
output_str = term_with_link | |||
if add_origin then output_str = output_str ..' '.. origin end | |||
if | if add_description then output_str = output_str ..'. – '.. description end | ||
if font_grey then output_str = '<span style="color: gray;">' .. output_str ..'</span>' end | |||
text = text ..'<ref>' .. output_str ..' ('.. ctd_title ..').</ref>' | |||
end | end | ||
if | -- BRACKETS should be added | ||
if view_brackets then | |||
if term_type == 'литература' or term_type == 'личность' then | |||
if term_type == 'литература' then | output_str = term_without_link ..', '.. lifetime_short | ||
else -- для 'понятие' и 'выражение' | |||
output_str = description | |||
end | end | ||
if | if add_origin then output_str = output_str ..' '.. origin end | ||
if add_description then output_str = output_str ..'. – '.. description end | |||
output_str = ' [' .. output_str .. '.]' | |||
if font_grey then output_str = '<span style="color: gray;">' .. output_str ..'</span>' end | |||
text = text .. output_str | |||
end | end | ||
-- DEBUG | |||
text = 'userparam: '.. frame.args['userparam'] ..'\n- text ='.. text_original ..'\n- view ='.. view ..'\n- type ='.. term_type ..'\n- style ='.. tostring(style) ..' ⇒ font_grey ='.. tostring(font_grey) ..'; add_origin ='.. tostring(add_origin) ..'; add_description ='.. tostring(add_description) ..'\n- specification ='.. specification ..'\nOUTPUT: '.. text | |||
return text | |||
--return frame:preprocess( text ) | |||
end | end | ||
return ctd | return ctd |