MediaWiki:Common.js: различия между версиями
(Новая страница: «/* Размещённый здесь код JavaScript будет загружаться пользователям при обращении к каждой ст…») |
мНет описания правки |
||
(не показано 77 промежуточных версий 2 участников) | |||
Строка 1: | Строка 1: | ||
/* Размещённый здесь код JavaScript будет загружаться пользователям при обращении к каждой странице */ | /* Размещённый здесь код JavaScript будет загружаться пользователям при обращении к каждой странице */ | ||
///$(document).ready(function(){ | |||
// alert(); | |||
//}); | |||
mw.loader.using('common.site.styles'); | |||
/** -pm- Изменяем панель инструментов в редакторе WikiEditor **/ | /** -pm- Изменяем панель инструментов в редакторе WikiEditor **/ | ||
var customizeToolbar = function () { | var customizeToolbar = function () { | ||
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { | $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { | ||
section: 'advanced', | |||
group: 'format', | |||
tools: { | |||
"underline": { | |||
label: 'Подчёркивание', | |||
type: 'button', | |||
icon: '//upload.wikimedia.org/wikipedia/commons/f/fd/Button_underline.png', | |||
action: { | |||
type: 'encapsulate', | |||
options: { | |||
pre: "<u>", | |||
post: "</u>" | |||
} | |||
} | |||
}, | |||
"double_underline": { | |||
label: 'Двойное подчёркивание', | |||
type: 'button', | |||
icon: '//upload.wikimedia.org/wikipedia/commons/4/45/Button_double.png', | |||
action: { | |||
type: 'encapsulate', | |||
options: { | |||
pre: "{{Стиль С-Двойное подчёркивание|", | |||
post: "}}" | |||
} | |||
} | |||
}, | |||
"strike_out": { | |||
label: 'Зачёркнуто', | |||
type: 'button', | |||
icon: '//upload.wikimedia.org/wikipedia/commons/c/c9/Button_strike.png', | |||
action: { | |||
type: 'encapsulate', | |||
options: { | |||
pre: "<s>", | |||
post: "</s>" | |||
} | |||
} | |||
}, | |||
"justify-center": { | |||
label: 'Выравнивание по центру', | |||
type: 'button', | |||
icon: '//upload.wikimedia.org/wikipedia/commons/5/5f/Button_center.png', | |||
action: { | |||
type: 'encapsulate', | |||
options: { | |||
pre: "<center>", | |||
post: "</center>" | |||
} | |||
} | |||
}, | |||
"justify-right": { | |||
label: 'Выравнивание справа', | |||
type: 'button', | |||
} );}; | icon: '//upload.wikimedia.org/wikipedia/commons/a/a5/Button_align_right.png', | ||
action: { | |||
type: 'encapsulate', | |||
options: { | |||
pre: "{{Стиль А-Текст справа|", | |||
post: "}}" | |||
} | |||
} | |||
}, | |||
"no_indent": { | |||
label: 'Первая строка без отступа', | |||
type: 'button', | |||
icon: '//upload.wikimedia.org/wikipedia/commons/2/29/Button_justify.png', | |||
action: { | |||
type: 'encapsulate', | |||
options: { | |||
pre: "{{Стиль А-Текст без отступа|", | |||
post: "}}" | |||
} | |||
} | |||
}, | |||
"columns": { | |||
label: 'Разбить текст на колонки', | |||
type: 'button', | |||
icon: '//upload.wikimedia.org/wikipedia/commons/0/04/Button_multicol.png', | |||
action: { | |||
type: 'encapsulate', | |||
options: { | |||
pre: "{{Колонки начинаются||ширина=|размер=}}", | |||
post: "{{Колонки завершаются}}" | |||
} | |||
} | |||
}, | |||
"category": { | |||
label: 'Категория', | |||
type: 'button', | |||
icon: '//upload.wikimedia.org/wikipedia/commons/c/c4/Toolbar_category.png', | |||
action: { | |||
type: 'encapsulate', | |||
options: { | |||
pre: "[[Категория: ", | |||
post: "]]" | |||
} | |||
} | |||
}, | |||
"nbsp": { | |||
label: 'Неразрывный пробел', | |||
type: 'button', | |||
icon: '//upload.wikimedia.org/wikipedia/commons/6/64/Button_nbsp_bold.png', | |||
action: { | |||
type: 'encapsulate', | |||
options: { | |||
pre: " ", | |||
post: "" | |||
} | |||
} | |||
}, | |||
"dash": { | |||
label: 'Тире', | |||
type: 'button', | |||
icon: '//upload.wikimedia.org/wikipedia/commons/c/cd/Button_mdash.png', | |||
action: { | |||
type: 'encapsulate', | |||
options: { | |||
pre: "–", | |||
post: "" | |||
} | |||
} | |||
}, | |||
"vertical_space": { | |||
label: 'Вертикальный отступ перед абзацем, по умолчанию 1em', | |||
type: 'button', | |||
icon: '//upload.wikimedia.org/wikipedia/commons/7/71/TableCell.png', | |||
action: { | |||
type: 'encapsulate', | |||
options: { | |||
pre: "{{Вертикальный отступ|}}", | |||
post: "" | |||
} | |||
} | |||
}, | |||
"small_capitals": { | |||
label: 'Капитель (маленькие заглавные буквы)', | |||
type: 'button', | |||
icon: '//upload.wikimedia.org/wikipedia/commons/8/89/Button_bigger.png', | |||
action: { | |||
type: 'encapsulate', | |||
options: { | |||
pre: "{{Стиль С-Капитель|", | |||
post: "}}" | |||
} | |||
} | |||
}, | |||
"quot_secondary": { | |||
label: 'Main quotation marks', | |||
type: 'button', | |||
icon: '//upload.wikimedia.org/wikipedia/commons/1/18/Button_quotes_2.png', | |||
action: { | |||
type: 'encapsulate', | |||
options: { | |||
pre: "“", | |||
post: "”" | |||
} | |||
} | |||
}, | |||
"quot_main": { | |||
label: 'Кавычки основные', | |||
type: 'button', | |||
icon: '//upload.wikimedia.org/wikipedia/commons/a/ac/Norwegian_quote_sign.png', | |||
action: { | |||
type: 'encapsulate', | |||
options: { | |||
pre: "«", | |||
post: "»" | |||
} | |||
} | |||
} | |||
} | |||
} ); | |||
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { | |||
section: 'main', | |||
groups: { | |||
list: { | |||
tools: { | |||
templatesA: { | |||
label: 'Абзац', | |||
type: 'select', | |||
list: { | |||
'Style-A-avtor': {label: 'Автор', action: {type: 'encapsulate', | |||
options: {pre: '{{Стиль А-Автор|', post: '}}'} } }, | |||
'Style-A-data-dnevnika': {label: 'Дата дневника', action: {type: 'encapsulate', | |||
options: {pre: '{{Стиль А-Дата дневника|', post: '}}'} } }, | |||
'Style-A-zagolovok': {label: 'Заголовок', action: {type: 'encapsulate', | |||
options: {pre: '{{Стиль А-Заголовок|', post: '}}'} } }, | |||
'Style-A-zagolovok-urovnya': {label: 'Заголовок уровня', action: {type: 'encapsulate', | |||
options: {pre: '{{Стиль А-Заголовок уровня|2|', post: '}}'} } }, | |||
'Style-A-kniga': {label: 'Книга', action: {type: 'encapsulate', | |||
options: {pre: '{{Стиль А-Книга|', post: '}}'} } }, | |||
'Style-A-podzagolovok': {label: 'Подзаголовок', action: {type: 'encapsulate', | |||
options: {pre: '{{Стиль А-Подзаголовок|', post: '}}'} } }, | |||
'Style-A-poyasnenie-k-zagolovku': {label: 'Пояснение к заголовку', action: {type: 'encapsulate', | |||
options: {pre: '{{Стиль А-Пояснение к заголовку|', post: '}}'} } }, | |||
'Style-A-podpis': {label: 'Подпись', action: {type: 'encapsulate', | |||
options: {pre: '{{Стиль А-Подпись|', post: '}}'} } }, | |||
'Style-A-prim-per': {label: 'Прим. переводчика', action: {type: 'encapsulate', | |||
options: {pre: '{{Стиль А-Прим. пер.|', post: '}}'} } }, | |||
'Style-A-stih': {label: 'Стих', action: {type: 'encapsulate', | |||
options: {pre: '{{Стиль А-Стих| стих=', post: '}}'} } }, | |||
'Str': {label: 'Стр', action: {type: 'encapsulate', | |||
options: {pre: '{{Стр|', post: '|}}'} } }, | |||
'Str-aside': {label: 'Стр сбоку', action: {type: 'encapsulate', | |||
options: {pre: '{{Стр сбоку|', post: '}}'} } }, | |||
'Style-A-citata': {label: 'Цитата', action: {type: 'encapsulate', | |||
options: {pre: '{{Стиль А-Цитата|текст=', post: '}}'} } }, | |||
'Style-A-epigraf': {label: 'Эпиграф', action: {type: 'encapsulate', | |||
options: {pre: '{{Стиль А-Эпиграф|', post: '}}'} } } | |||
} | |||
}, | |||
templatesS: { | |||
label: 'Символ', | |||
type: 'select', | |||
list: { | |||
'Style-S-kratko-BTS': {label: 'Кратко из БТС', action: {type: 'encapsulate', | |||
options: {pre: '{{Кратко из БТС|текст=', post: '|статья=}}'} } }, | |||
'Style-S-vsplyv-podskazka': {label: 'Всплыв. подсказка', action: {type: 'encapsulate', | |||
options: {pre: '{{вп|', post: '|}}'} } }, | |||
'Style-S-vydelenie': {label: 'Выделение', action: {type: 'encapsulate', | |||
options: {pre: '{{Выделение|', post: '}}'} } }, | |||
'Style-S-zakladka': {label: 'Закладка', action: {type: 'encapsulate', | |||
options: {pre: '{{Закладка|', post: '}}'} } }, | |||
'Style-S-simvol': {label: 'Символ', action: {type: 'encapsulate', | |||
options: {pre: '{{Стиль С-Символ|', post: '}}'} } }, | |||
'Style-S-lost': {label: 'Утеряно', action: {type: 'encapsulate', | |||
options: {pre: '{{Стиль С-Утеряно|', post: '}}'} } }, | |||
'Style-S-prim-red': {label: 'Прим. редактора', action: {type: 'encapsulate', | |||
options: {pre: '{{Стиль С-Прим. ред.|', post: '}}'} } }, | |||
'Snoska-metka': {label: 'Метка сноски', action: {type: 'encapsulate', | |||
options: {pre: '{{Метка сноски|', post: '}}'} } }, | |||
'Snoska-vozvrat': {label: 'Возврат к метке', action: {type: 'encapsulate', | |||
options: {pre: '{{Возврат к метке|', post: '}}'} } }, | |||
'Snoska-tekst': {label: 'Сноски автора', action: {type: 'encapsulate', | |||
options: {pre: '{{Сноски автора}}\n', post: '\n{{Сноски автора завершены}}'} } }, | |||
'Style-S-ivrit': {label: 'Язык иврит', action: {type: 'encapsulate', | |||
options: {pre: '{{Стиль С-Иврит|', post: '}}'} } } | |||
} | |||
}, | |||
templatesLinks: { | |||
label: 'Ссылки', | |||
type: 'select', | |||
list: { | |||
'Link-5YT': {label: '5 лет теософии, стр', action: {type: 'encapsulate', | |||
options: {pre: '{{5ЛТ-стр||', post: '}}'} } }, | |||
'Link-SB': {label: 'Альбомы ЕПБ, стр', action: {type: 'encapsulate', | |||
options: {pre: '{{ЕПБ Альбомы-стр|т=|с=|текст=', post: '}}'} } }, | |||
'Link-Bible': {label: 'Библия, гл., стих', action: {type: 'encapsulate', | |||
options: {pre: '{{Библия||', post: '}}'} } }, | |||
'Link-Bhagavad-gita': {label: 'Бхагавад-гита', action: {type: 'encapsulate', | |||
options: {pre: '{{БГ||текст=', post: '}}'} } }, | |||
'Link-Platon': {label: 'Платон', action: {type: 'encapsulate', | |||
options: {pre: '{{Платон|Произведение|Строка|', post: '}}'} } }, | |||
'Link-SD': {label: 'ТД, глава', action: {type: 'encapsulate', | |||
options: {pre: '{{ТД|т=|ч=|ст=|шл=|отд=|гл=|текст=', post: '}}'} } }, | |||
'Link-SD-page': {label: 'ТД, стр', action: {type: 'encapsulate', | |||
options: {pre: '{{ТД-стр|т=|с=|текст=', post: '}}'} } }, | |||
'English-section': {label: 'Анг. раздел', action: {type: 'encapsulate', | |||
options: {pre: '[[:t-en-lib:|', post: ']]'} } } | |||
} | |||
}, | |||
templatesHPB: { | |||
label: 'ЕПБ', | |||
type: 'select', | |||
list: { | |||
'SB-added': {label: 'Альбомы. Дописано ЕПБ', action: {type: 'encapsulate', | |||
options: {pre: '{{Стиль С-ЕПБ-Альбомы. Дописано ЕПБ|', post: '|center}}'} } }, | |||
'SB-underlined': {label: 'Альбомы. Подчёркнуто ЕПБ', action: {type: 'encapsulate', | |||
options: {pre: '{{Стиль С-ЕПБ-Альбомы. Подчёркнуто ЕПБ|', post: '}}'} } }, | |||
'SB-striked-out': {label: 'Альбомы. Зачёркнуто ЕПБ', action: {type: 'encapsulate', | |||
options: {pre: '{{Стиль С-ЕПБ-Альбомы. Зачёркнуто ЕПБ|', post: '}}'} } }, | |||
'SB-editors-note': {label: 'Альбомы. Пометка редактора', action: {type: 'encapsulate', | |||
options: {pre: '{{Стиль С-ЕПБ-Альбомы. Пометка редактора|', post: '}}'} } }, | |||
'SB-recovered': {label: 'Альбомы. Восстановлено', action: {type: 'encapsulate', | |||
options: {pre: '{{Стиль А-ЕПБ-Альбомы. Восстановлено}}', post: '{{Закрыть div}}'} } }, | |||
'SB-footer-ref': {label: 'Альбомы. Подвал, сноски', action: {type: 'encapsulate', | |||
options: {pre: '{{ЕПБ-Альбомы. Подвал. Сноски}}'} } }, | |||
'SB-footer-sources': {label: 'Альбомы. Подвал, источники', action: {type: 'encapsulate', | |||
options: {pre: '{{ЕПБ-Альбомы. Подвал. Источники}}'} } }, | |||
'SD-from-CTD': {label: 'ТД. Из БТС', action: {type: 'encapsulate', | |||
options: {pre: '{{ТД из БТС|', post: '||тип=личность}}'} } }, | |||
'SD-source': {label: 'ТД. Источник', action: {type: 'encapsulate', | |||
options: {pre: '{{ТД источник|текст=', post: '|произведение=|имя=|уточнение=|объём=|вес=|вид=подсказка|тип=личность|стиль=описание}}'} } }, | |||
'SD-footnotes': {label: 'ТД. Сноски', action: {type: 'encapsulate', | |||
options: {pre: '{{Сноски ТД 21в}}'} } }, | |||
'SD-about-expression': {label: 'ТД. О выражении', action: {type: 'encapsulate', | |||
options: {pre: '{{О выражении ТД|', post: '|}}'} } }, | |||
'SD-addition': {label: 'ТД. Дополнение', action: {type: 'encapsulate', | |||
options: {pre: '{{Дополнение ТД|', post: '|т_с_якорь|тип=исправление|пояснение=}}'} } }, | |||
'SD-addition-header': {label: 'ТД. Новое дополн.', action: {type: 'encapsulate', | |||
options: {pre: '{{ЕПБ-ТД шапка дополнения}}\n\n{{Исходный текст ТД начинается|т_с_якорь|тип=|пояснение=}}\n', post: '\n{{Исходный текст закончен}}\n\n{{Оглавление дополнения}}'} } } | |||
} | |||
} | |||
} | |||
} | |||
} | |||
} ); | |||
}; | |||
/* Check if view is in edit mode and that the required modules are available. Then, customize the toolbar … */ | /* Check if view is in edit mode and that the required modules are available. Then, customize the toolbar … */ |
Текущая версия от 08:50, 11 ноября 2024
/* Размещённый здесь код JavaScript будет загружаться пользователям при обращении к каждой странице */
///$(document).ready(function(){
// alert();
//});
mw.loader.using('common.site.styles');
/** -pm- Изменяем панель инструментов в редакторе WikiEditor **/
var customizeToolbar = function () {
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
section: 'advanced',
group: 'format',
tools: {
"underline": {
label: 'Подчёркивание',
type: 'button',
icon: '//upload.wikimedia.org/wikipedia/commons/f/fd/Button_underline.png',
action: {
type: 'encapsulate',
options: {
pre: "<u>",
post: "</u>"
}
}
},
"double_underline": {
label: 'Двойное подчёркивание',
type: 'button',
icon: '//upload.wikimedia.org/wikipedia/commons/4/45/Button_double.png',
action: {
type: 'encapsulate',
options: {
pre: "{{Стиль С-Двойное подчёркивание|",
post: "}}"
}
}
},
"strike_out": {
label: 'Зачёркнуто',
type: 'button',
icon: '//upload.wikimedia.org/wikipedia/commons/c/c9/Button_strike.png',
action: {
type: 'encapsulate',
options: {
pre: "<s>",
post: "</s>"
}
}
},
"justify-center": {
label: 'Выравнивание по центру',
type: 'button',
icon: '//upload.wikimedia.org/wikipedia/commons/5/5f/Button_center.png',
action: {
type: 'encapsulate',
options: {
pre: "<center>",
post: "</center>"
}
}
},
"justify-right": {
label: 'Выравнивание справа',
type: 'button',
icon: '//upload.wikimedia.org/wikipedia/commons/a/a5/Button_align_right.png',
action: {
type: 'encapsulate',
options: {
pre: "{{Стиль А-Текст справа|",
post: "}}"
}
}
},
"no_indent": {
label: 'Первая строка без отступа',
type: 'button',
icon: '//upload.wikimedia.org/wikipedia/commons/2/29/Button_justify.png',
action: {
type: 'encapsulate',
options: {
pre: "{{Стиль А-Текст без отступа|",
post: "}}"
}
}
},
"columns": {
label: 'Разбить текст на колонки',
type: 'button',
icon: '//upload.wikimedia.org/wikipedia/commons/0/04/Button_multicol.png',
action: {
type: 'encapsulate',
options: {
pre: "{{Колонки начинаются||ширина=|размер=}}",
post: "{{Колонки завершаются}}"
}
}
},
"category": {
label: 'Категория',
type: 'button',
icon: '//upload.wikimedia.org/wikipedia/commons/c/c4/Toolbar_category.png',
action: {
type: 'encapsulate',
options: {
pre: "[[Категория: ",
post: "]]"
}
}
},
"nbsp": {
label: 'Неразрывный пробел',
type: 'button',
icon: '//upload.wikimedia.org/wikipedia/commons/6/64/Button_nbsp_bold.png',
action: {
type: 'encapsulate',
options: {
pre: " ",
post: ""
}
}
},
"dash": {
label: 'Тире',
type: 'button',
icon: '//upload.wikimedia.org/wikipedia/commons/c/cd/Button_mdash.png',
action: {
type: 'encapsulate',
options: {
pre: "–",
post: ""
}
}
},
"vertical_space": {
label: 'Вертикальный отступ перед абзацем, по умолчанию 1em',
type: 'button',
icon: '//upload.wikimedia.org/wikipedia/commons/7/71/TableCell.png',
action: {
type: 'encapsulate',
options: {
pre: "{{Вертикальный отступ|}}",
post: ""
}
}
},
"small_capitals": {
label: 'Капитель (маленькие заглавные буквы)',
type: 'button',
icon: '//upload.wikimedia.org/wikipedia/commons/8/89/Button_bigger.png',
action: {
type: 'encapsulate',
options: {
pre: "{{Стиль С-Капитель|",
post: "}}"
}
}
},
"quot_secondary": {
label: 'Main quotation marks',
type: 'button',
icon: '//upload.wikimedia.org/wikipedia/commons/1/18/Button_quotes_2.png',
action: {
type: 'encapsulate',
options: {
pre: "“",
post: "”"
}
}
},
"quot_main": {
label: 'Кавычки основные',
type: 'button',
icon: '//upload.wikimedia.org/wikipedia/commons/a/ac/Norwegian_quote_sign.png',
action: {
type: 'encapsulate',
options: {
pre: "«",
post: "»"
}
}
}
}
} );
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
section: 'main',
groups: {
list: {
tools: {
templatesA: {
label: 'Абзац',
type: 'select',
list: {
'Style-A-avtor': {label: 'Автор', action: {type: 'encapsulate',
options: {pre: '{{Стиль А-Автор|', post: '}}'} } },
'Style-A-data-dnevnika': {label: 'Дата дневника', action: {type: 'encapsulate',
options: {pre: '{{Стиль А-Дата дневника|', post: '}}'} } },
'Style-A-zagolovok': {label: 'Заголовок', action: {type: 'encapsulate',
options: {pre: '{{Стиль А-Заголовок|', post: '}}'} } },
'Style-A-zagolovok-urovnya': {label: 'Заголовок уровня', action: {type: 'encapsulate',
options: {pre: '{{Стиль А-Заголовок уровня|2|', post: '}}'} } },
'Style-A-kniga': {label: 'Книга', action: {type: 'encapsulate',
options: {pre: '{{Стиль А-Книга|', post: '}}'} } },
'Style-A-podzagolovok': {label: 'Подзаголовок', action: {type: 'encapsulate',
options: {pre: '{{Стиль А-Подзаголовок|', post: '}}'} } },
'Style-A-poyasnenie-k-zagolovku': {label: 'Пояснение к заголовку', action: {type: 'encapsulate',
options: {pre: '{{Стиль А-Пояснение к заголовку|', post: '}}'} } },
'Style-A-podpis': {label: 'Подпись', action: {type: 'encapsulate',
options: {pre: '{{Стиль А-Подпись|', post: '}}'} } },
'Style-A-prim-per': {label: 'Прим. переводчика', action: {type: 'encapsulate',
options: {pre: '{{Стиль А-Прим. пер.|', post: '}}'} } },
'Style-A-stih': {label: 'Стих', action: {type: 'encapsulate',
options: {pre: '{{Стиль А-Стих| стих=', post: '}}'} } },
'Str': {label: 'Стр', action: {type: 'encapsulate',
options: {pre: '{{Стр|', post: '|}}'} } },
'Str-aside': {label: 'Стр сбоку', action: {type: 'encapsulate',
options: {pre: '{{Стр сбоку|', post: '}}'} } },
'Style-A-citata': {label: 'Цитата', action: {type: 'encapsulate',
options: {pre: '{{Стиль А-Цитата|текст=', post: '}}'} } },
'Style-A-epigraf': {label: 'Эпиграф', action: {type: 'encapsulate',
options: {pre: '{{Стиль А-Эпиграф|', post: '}}'} } }
}
},
templatesS: {
label: 'Символ',
type: 'select',
list: {
'Style-S-kratko-BTS': {label: 'Кратко из БТС', action: {type: 'encapsulate',
options: {pre: '{{Кратко из БТС|текст=', post: '|статья=}}'} } },
'Style-S-vsplyv-podskazka': {label: 'Всплыв. подсказка', action: {type: 'encapsulate',
options: {pre: '{{вп|', post: '|}}'} } },
'Style-S-vydelenie': {label: 'Выделение', action: {type: 'encapsulate',
options: {pre: '{{Выделение|', post: '}}'} } },
'Style-S-zakladka': {label: 'Закладка', action: {type: 'encapsulate',
options: {pre: '{{Закладка|', post: '}}'} } },
'Style-S-simvol': {label: 'Символ', action: {type: 'encapsulate',
options: {pre: '{{Стиль С-Символ|', post: '}}'} } },
'Style-S-lost': {label: 'Утеряно', action: {type: 'encapsulate',
options: {pre: '{{Стиль С-Утеряно|', post: '}}'} } },
'Style-S-prim-red': {label: 'Прим. редактора', action: {type: 'encapsulate',
options: {pre: '{{Стиль С-Прим. ред.|', post: '}}'} } },
'Snoska-metka': {label: 'Метка сноски', action: {type: 'encapsulate',
options: {pre: '{{Метка сноски|', post: '}}'} } },
'Snoska-vozvrat': {label: 'Возврат к метке', action: {type: 'encapsulate',
options: {pre: '{{Возврат к метке|', post: '}}'} } },
'Snoska-tekst': {label: 'Сноски автора', action: {type: 'encapsulate',
options: {pre: '{{Сноски автора}}\n', post: '\n{{Сноски автора завершены}}'} } },
'Style-S-ivrit': {label: 'Язык иврит', action: {type: 'encapsulate',
options: {pre: '{{Стиль С-Иврит|', post: '}}'} } }
}
},
templatesLinks: {
label: 'Ссылки',
type: 'select',
list: {
'Link-5YT': {label: '5 лет теософии, стр', action: {type: 'encapsulate',
options: {pre: '{{5ЛТ-стр||', post: '}}'} } },
'Link-SB': {label: 'Альбомы ЕПБ, стр', action: {type: 'encapsulate',
options: {pre: '{{ЕПБ Альбомы-стр|т=|с=|текст=', post: '}}'} } },
'Link-Bible': {label: 'Библия, гл., стих', action: {type: 'encapsulate',
options: {pre: '{{Библия||', post: '}}'} } },
'Link-Bhagavad-gita': {label: 'Бхагавад-гита', action: {type: 'encapsulate',
options: {pre: '{{БГ||текст=', post: '}}'} } },
'Link-Platon': {label: 'Платон', action: {type: 'encapsulate',
options: {pre: '{{Платон|Произведение|Строка|', post: '}}'} } },
'Link-SD': {label: 'ТД, глава', action: {type: 'encapsulate',
options: {pre: '{{ТД|т=|ч=|ст=|шл=|отд=|гл=|текст=', post: '}}'} } },
'Link-SD-page': {label: 'ТД, стр', action: {type: 'encapsulate',
options: {pre: '{{ТД-стр|т=|с=|текст=', post: '}}'} } },
'English-section': {label: 'Анг. раздел', action: {type: 'encapsulate',
options: {pre: '[[:t-en-lib:|', post: ']]'} } }
}
},
templatesHPB: {
label: 'ЕПБ',
type: 'select',
list: {
'SB-added': {label: 'Альбомы. Дописано ЕПБ', action: {type: 'encapsulate',
options: {pre: '{{Стиль С-ЕПБ-Альбомы. Дописано ЕПБ|', post: '|center}}'} } },
'SB-underlined': {label: 'Альбомы. Подчёркнуто ЕПБ', action: {type: 'encapsulate',
options: {pre: '{{Стиль С-ЕПБ-Альбомы. Подчёркнуто ЕПБ|', post: '}}'} } },
'SB-striked-out': {label: 'Альбомы. Зачёркнуто ЕПБ', action: {type: 'encapsulate',
options: {pre: '{{Стиль С-ЕПБ-Альбомы. Зачёркнуто ЕПБ|', post: '}}'} } },
'SB-editors-note': {label: 'Альбомы. Пометка редактора', action: {type: 'encapsulate',
options: {pre: '{{Стиль С-ЕПБ-Альбомы. Пометка редактора|', post: '}}'} } },
'SB-recovered': {label: 'Альбомы. Восстановлено', action: {type: 'encapsulate',
options: {pre: '{{Стиль А-ЕПБ-Альбомы. Восстановлено}}', post: '{{Закрыть div}}'} } },
'SB-footer-ref': {label: 'Альбомы. Подвал, сноски', action: {type: 'encapsulate',
options: {pre: '{{ЕПБ-Альбомы. Подвал. Сноски}}'} } },
'SB-footer-sources': {label: 'Альбомы. Подвал, источники', action: {type: 'encapsulate',
options: {pre: '{{ЕПБ-Альбомы. Подвал. Источники}}'} } },
'SD-from-CTD': {label: 'ТД. Из БТС', action: {type: 'encapsulate',
options: {pre: '{{ТД из БТС|', post: '||тип=личность}}'} } },
'SD-source': {label: 'ТД. Источник', action: {type: 'encapsulate',
options: {pre: '{{ТД источник|текст=', post: '|произведение=|имя=|уточнение=|объём=|вес=|вид=подсказка|тип=личность|стиль=описание}}'} } },
'SD-footnotes': {label: 'ТД. Сноски', action: {type: 'encapsulate',
options: {pre: '{{Сноски ТД 21в}}'} } },
'SD-about-expression': {label: 'ТД. О выражении', action: {type: 'encapsulate',
options: {pre: '{{О выражении ТД|', post: '|}}'} } },
'SD-addition': {label: 'ТД. Дополнение', action: {type: 'encapsulate',
options: {pre: '{{Дополнение ТД|', post: '|т_с_якорь|тип=исправление|пояснение=}}'} } },
'SD-addition-header': {label: 'ТД. Новое дополн.', action: {type: 'encapsulate',
options: {pre: '{{ЕПБ-ТД шапка дополнения}}\n\n{{Исходный текст ТД начинается|т_с_якорь|тип=|пояснение=}}\n', post: '\n{{Исходный текст закончен}}\n\n{{Оглавление дополнения}}'} } }
}
}
}
}
}
} );
};
/* Check if view is in edit mode and that the required modules are available. Then, customize the toolbar … */
if ( $.inArray( mw.config.get( 'wgAction' ), [ 'edit', 'submit' ] ) !== -1 ) {
mw.loader.using( 'user.options' ).then( function () {
// This can be the string "0" if the user disabled the preference ([[phab:T54542#555387]])
if ( mw.user.options.get( 'usebetatoolbar' ) == 1 ) {
$.when(
mw.loader.using( 'ext.wikiEditor' ), $.ready
).then( customizeToolbar );
}
} );
}