MediaWiki:Common.js: различия между версиями
мНет описания правки |
мНет описания правки |
||
Строка 7: | Строка 7: | ||
group: 'format', | group: 'format', | ||
tools: { | tools: { | ||
" | "category": { | ||
label: ' | label: 'Категория', | ||
type: 'button', | type: 'button', | ||
icon: '//upload.wikimedia.org/wikipedia/commons/ | icon: '//upload.wikimedia.org/wikipedia/commons/c/c4/Toolbar_category.png', | ||
action: { | action: { | ||
type: 'encapsulate', | type: 'encapsulate', | ||
options: { | options: { | ||
pre: " | pre: "[[Категория:", | ||
post: " | post: "]]" | ||
} | } | ||
} | } |
Версия от 00:03, 23 ноября 2018
/* Размещённый здесь код JavaScript будет загружаться пользователям при обращении к каждой странице */
/** -pm- Изменяем панель инструментов в редакторе WikiEditor **/
var customizeToolbar = function () {
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
section: 'advanced',
group: 'format',
tools: {
"category": {
label: 'Категория',
type: 'button',
icon: '//upload.wikimedia.org/wikipedia/commons/c/c4/Toolbar_category.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-podpis': {label: 'Подпись', action: {type: 'encapsulate',
options: {pre: '{{Стиль А-Подпись|', post: '}}'} } },
'Style-A-prim-per': {label: 'Прим. переводчика', action: {type: 'encapsulate',
options: {pre: '{{Стиль А-Прим. пер.|', post: '}}'} } },
'Style-A-tekst-v-centre': {label: 'Текст в центре', action: {type: 'encapsulate',
options: {pre: '{{Стиль А-Текст в центре|', post: '}}'} } },
'Style-A-citata': {label: 'Цитата', action: {type: 'encapsulate',
options: {pre: '{{Стиль А-Цитата|', post: '}}'} } },
'Style-A-citata-data': {label: 'Цитата, данные отправителя', action: {type: 'encapsulate',
options: {pre: '{{Стиль А-Цитата, данные отправителя|', post: '}}'} } },
'Style-A-citata-podpis': {label: 'Цитата, подпись', action: {type: 'encapsulate',
options: {pre: '{{Стиль А-Цитата, подпись|', post: '}}'} } },
'Style-A-epigraf': {label: 'Эпиграф', action: {type: 'encapsulate',
options: {pre: '{{Стиль А-Эпиграф|', post: '}}'} } }
}
},
templatesS: {
label: 'Стили символа',
type: 'select',
list: {
'Style-S-speaker': {label: 'Говорящий в диалоге', action: {type: 'encapsulate',
options: {pre: '{{Стиль С-Говорящий в диалоге|', post: '}}'} } },
'Style-S-td-ispravlenie': {label: 'ТД-исправление', action: {type: 'encapsulate',
options: {pre: '{{ТД-исправление|текст=', post: '|ред1=|анг1=|анг3=|инфо=|участник=~~ ~~}}'} } },
'Style-S-td-vopros': {label: 'ТД-вопрос', action: {type: 'encapsulate',
options: {pre: '{{Вопрос|', post: '||~~ ~~}}'} } }
}
}
}
}
}
} );
};
/* 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 );
}
} );
}