User:Artem Korzhimanov/MyTools.js

Note: After saving, you have to bypass your browser's cache to see the changes. Internet Explorer: press Ctrl-F5, Mozilla: hold down Shift while clicking Reload (or press Ctrl-Shift-R), Opera/Konqueror: press F5, Safari: hold down Shift + Alt while clicking Reload, Chrome: hold down Shift while clicking Reload.
var customizeToolbar = function() {
     $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
       'sections': {
                  'mytools': {
                            'type': 'booklet',
                            'label': 'MyTools'
                             }
                   }
     });

     $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
       'section': 'mytools',
       'pages': {
               'tools': {
                        'layout': 'characters',
                        'label': 'Инструменты',
                        'characters': ['{{inline coordinates||||format=dms}}', '|\n|\n|\n', 'style=background:grey;', 'colspan=2 | Не загружать на Викисклад']
               },
               'laws': {
                        'layout': 'characters',
                        'label': 'Законы',
                        'characters': [
'[http://nizhnynovgorod.news-city.info/docs/sistemae/dok_peykyo.htm Решение облсовета № 559 от 03.11.1983]',
'[http://nizhnynovgorod.news-city.info/docs/sistemae/dok_peykto.htm Решение облсовета № 342 от 26.07.1985]',
'[http://nizhnynovgorod.news-city.info/docs/sistemae/dok_peykwo.htm Решение облсовета № 471 от 18.12.1989]',
'[http://nizhnynovgorod.news-city.info/docs/sistemaw/dok_peysdi.htm Постановление № 40 от 21.06.1994]',
'[http://nizhnynovgorod.news-city.info/docs/sistemsu/dok_peyftb.htm Постановление № 22 от 21.02.1995]',
'[http://nizhnynovgorod.news-city.info/docs/sistemsp/dok_peygsi.htm Постановление № 87 от 16.04.1996]',
'[http://nizhnynovgorod.news-city.info/docs/sistemsi/dok_pertyo.htm Постановление № 331 от 11.12.1998]',
'[http://nizhnynovgorod.news-city.info/docs/sistemsm/dok_pegwyz.htm Постановление № 286 от 16.09.1999]',
'Приказ № 4-ОД от 12 мая 1999 года',
'Приказ № 5-ОД от 24 апреля 2000 года',
'[http://www.lawrussia.ru/bigtexts/law_108/index.htm Постановление Совмина РСФСР № 1327 от 30.08.1960]',
'[http://www.kadis.ru/texts/index.phtml?id=10498 Постановление Совмина РСФСР № 624 от 04.12.1974]',
'[http://www.kadis.ru/texts/index.phtml?id=5552 Указ Президента РФ № 176 от 20.02.1995]',
'[http://ostashkov.codis.ru/ukaz452.htm Указ Президента РФ № 452 от 05.05.1997]']
               },
               'row': {
                        'layout': 'characters',
                        'label': 'Строка',
                        'characters': ['|-\n'+
'|Не обнаружен\n'+
'|Н\n'+
'|\n'+
'|<Объект>\n'+
'|<Адрес>\n'+
'|\n'+
'|Нет информации\n'+
'|[[File:Grey 720-360.png|100x100px]]\n'+
'|\n'+
'|<Дата>\n'+
'|\n'+
'|<Документ>\n'+
'|\n']
               },
       }
     });
};

if ( $.inArray( mw.config.get( 'wgAction' ), ['edit', 'submit'] ) !== -1 ) {
        mw.loader.using( 'user.options', function () {
                if ( mw.user.options.get('usebetatoolbar') ) {
                        mw.loader.using( 'ext.wikiEditor', function () {
                                $(document).ready( customizeToolbar );
                        } );
                }
        } );
}