MediaWiki:Common.js: Forskelle mellem versioner
Spring til navigation
Spring til søgning
HP (diskussion | bidrag) mNo edit summary |
HP (diskussion | bidrag) mNo edit summary |
||
(121 mellemliggende versioner af den samme bruger vises ikke) | |||
Linje 1: | Linje 1: | ||
/* Javascript inkluderet her vil være aktivt for alle brugere. */ | /* Javascript inkluderet her vil være aktivt for alle brugere. */ | ||
/* | /* WikiEditor er defineret i extensions/WikiEditor/modules/jquery.wikiEditor.toolbar.config.js */ | ||
/* men bør tilpasses her eller kan kopieres over i {{USERNAME}}/common.js og i så fald aktiveres med $wgAllowUserJs = true; */ | |||
/* se [[mw:Extension:WikiEditor/Toolbar_customization#Default_sections]] */ | |||
var customizeToolbar = function () { | var customizeToolbar = function () { | ||
/* | /* Ændringer i WikiEditor indsættes nedenfor */ | ||
/* Tilret elementer i topbjælke sektion (main) */ | |||
/* Fjern gruppen format med knapperne bold og italic, samt fra gruppen insert knapperne file og reference */ | |||
$( '#wpTextbox1' ).wikiEditor( 'removeFromToolbar', { | |||
'section': 'main', | |||
'group': 'format', | |||
}); | |||
$( '#wpTextbox1' ).wikiEditor( 'removeFromToolbar', { | |||
'section': 'main', | |||
'group': 'insert', | |||
'tool': 'file', | |||
}); | |||
$( '#wpTextbox1' ).wikiEditor( 'removeFromToolbar', { | $( '#wpTextbox1' ).wikiEditor( 'removeFromToolbar', { | ||
'section': ' | 'section': 'main', | ||
'group': 'insert', | |||
'tool': 'reference', | |||
}); | }); | ||
/* Indsæt elementer */ | |||
/* Indsæt | |||
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { | $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { | ||
Linje 80: | Linje 32: | ||
group: 'insert', | group: 'insert', | ||
tools: { | tools: { | ||
" | "disambig": { | ||
label: ' | label: 'Skibsinfoboks', | ||
type: 'button', | type: 'button', | ||
icon: '//upload.wikimedia.org/wikipedia/commons/ | icon: '//upload.wikimedia.org/wikipedia/commons/e/e9/Maki-ferry-15.svg', | ||
action: { | action: { | ||
type: ' | type: 'replace', | ||
options: { | options: { | ||
pre: "{{", | pre: "{{sk\n| k=\n| bia= | IMO=", | ||
post: "}}\n" | post: "\n| før=\n| navn=\n| hjem=\n| værft=\n| år=19 | sbib=\n| b= | d= | m=\n| jma=\n| wrs=\n| ms=\n| ros2=\n| {{gps|}}\n| liv= | død=\n}}" | ||
} | } | ||
} | } | ||
Linje 99: | Linje 51: | ||
group: 'insert', | group: 'insert', | ||
tools: { | tools: { | ||
" | "disambig": { | ||
label: ' | label: 'Avisartikler og kategorier', | ||
type: 'button', | type: 'button', | ||
icon: '//upload.wikimedia.org/wikipedia/commons/ | icon: '//upload.wikimedia.org/wikipedia/commons/5/55/OOjs_UI_icon_newspaper-ltr.svg', | ||
action: { | action: { | ||
type: 'encapsulate', | type: 'encapsulate', | ||
options: { | options: { | ||
pre: " | pre: "\n{{a|", | ||
peri: " | peri: "dato", | ||
post: "]]\n[[kategori: | post: "}}\n\n<noinclude>\n[[kategori:]]\n[[kategori:]]\n[[kategori:]]\n[[kategori:]]\n[[kategori:]]\n</noinclude>" | ||
} | } | ||
} | } | ||
Linje 119: | Linje 71: | ||
group: 'insert', | group: 'insert', | ||
tools: { | tools: { | ||
" | "category": { | ||
label: ' | label: 'Ekstra kategori', | ||
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: "[[kategori:", | ||
post: "]]\n" | |||
post: "]]\n | |||
} | } | ||
} | } | ||
Linje 140: | Linje 91: | ||
tools: { | tools: { | ||
"new category": { | "new category": { | ||
label: ' | label: 'Skabelon', | ||
type: 'button', | type: 'button', | ||
icon: '//upload.wikimedia.org/wikipedia/commons/ | icon: '//upload.wikimedia.org/wikipedia/commons/f/f4/OOjs_UI_icon_wikiTemplate.svg', | ||
action: { | action: { | ||
type: 'encapsulate', | type: 'encapsulate', | ||
options: { | options: { | ||
pre: "{{", | pre: "{{", | ||
post: " | peri: "|", | ||
post: "}}\n" | |||
} | } | ||
} | } | ||
Linje 158: | Linje 110: | ||
group: 'insert', | group: 'insert', | ||
tools: { | tools: { | ||
"category": { | "new category": { | ||
label: ' | label: 'Skabelon og kategorier', | ||
type: 'button', | type: 'button', | ||
icon: '//upload.wikimedia.org/wikipedia/commons/ | icon: '//upload.wikimedia.org/wikipedia/commons/c/cd/OOjs_UI_icon_code.svg', | ||
action: { | action: { | ||
type: 'encapsulate', | type: 'encapsulate', | ||
options: { | options: { | ||
pre: " | pre: "{{", | ||
post: "]]\n" | post: "|-|}}\n\n[[kategori:]]\n[[kategori:]]\n[[kategori:]]\n[[kategori:]]" | ||
} | } | ||
} | } | ||
Linje 174: | Linje 126: | ||
/* | /* Tilret elementer i avanceret sektion (advanced) */ | ||
/* Fjern gruppen heading og fra gruppen format knapperne ulist, olist, nowiki og newline, samt fra gruppen size knappen subscript og fra gruppen insert knappen redirect */ | |||
$( '#wpTextbox1' ).wikiEditor( 'removeFromToolbar', { | |||
'section': 'advanced', | |||
'group': 'format', | |||
'tool': 'ulist', | |||
}); | |||
$( '#wpTextbox1' ).wikiEditor( 'removeFromToolbar', { | |||
'section': 'advanced', | |||
'group': 'format', | |||
'tool': 'olist', | |||
}); | |||
$( '#wpTextbox1' ).wikiEditor( 'removeFromToolbar', { | |||
'section': 'advanced', | |||
'group': 'format', | |||
'tool': 'nowiki', | |||
}); | |||
$( '#wpTextbox1' ).wikiEditor( 'removeFromToolbar', { | |||
'section': 'advanced', | |||
'group': 'format', | |||
'tool': 'newline', | |||
}); | |||
$( '#wpTextbox1' ).wikiEditor( 'removeFromToolbar', { | |||
'section': 'advanced', | |||
'group': 'size', | |||
'tool': 'subscript', | |||
}); | |||
$( '#wpTextbox1' ).wikiEditor( 'removeFromToolbar', { | |||
'section': 'advanced', | |||
'group': 'insert', | |||
'tool': 'redirect', | |||
}); | |||
/* Tilretning af avanceret sektionen (advanced) */ | |||
/* Indsæt knapper i gruppen format (under avanceret) */ | |||
$('#wpTextbox1').wikiEditor('addToToolbar', { | $('#wpTextbox1').wikiEditor('addToToolbar', { | ||
Linje 213: | Linje 200: | ||
} | } | ||
}); | }); | ||
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { | $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { | ||
Linje 220: | Linje 206: | ||
tools: { | tools: { | ||
"comment": { | "comment": { | ||
label: ' | label: 'Fed skrift', | ||
type: 'button', | type: 'button', | ||
icon: ' | icon: '//upload.wikimedia.org/wikipedia/commons/a/a0/Toolbaricon_bold_F-1.png', | ||
action: { | action: { | ||
type: 'encapsulate', | type: 'encapsulate', | ||
options: { | options: { | ||
pre: " | pre: "'''", | ||
post: "'' | post: "'''" | ||
} | } | ||
} | } | ||
Linje 233: | Linje 219: | ||
} | } | ||
} ); | } ); | ||
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { | $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { | ||
Linje 254: | Linje 239: | ||
} ); | } ); | ||
Linje 319: | Linje 247: | ||
group: 'insert', | group: 'insert', | ||
tools: { | tools: { | ||
" | "billedfil": { | ||
label: 'Indsæt | label: 'Indsæt billede', | ||
type: 'button', | type: 'button', | ||
icon: '//upload.wikimedia.org/wikipedia/commons/ | icon: '//upload.wikimedia.org/wikipedia/commons/a/aa/OOjs_UI_icon_image-rtl.svg', | ||
action: { | action: { | ||
type: 'encapsulate', | type: 'encapsulate', | ||
options: { | options: { | ||
pre: "[[: | pre: "[[Fil:", | ||
post: "|]] | peri: "billednavn", | ||
post: "|thumb|left| på [[commons:|commons]]]]\n" | |||
} | } | ||
} | } | ||
Linje 338: | Linje 267: | ||
group: 'insert', | group: 'insert', | ||
tools: { | tools: { | ||
" | "landsby": { | ||
label: ' | label: 'Omdirigering til landsby-kategori', | ||
type: 'button', | type: 'button', | ||
icon: '//upload.wikimedia.org/wikipedia/commons/ | icon: '//upload.wikimedia.org/wikipedia/commons/c/c8/OpenMoji-black_1F3D8.svg', | ||
action: { | action: { | ||
type: 'encapsulate', | type: 'encapsulate', | ||
Linje 358: | Linje 287: | ||
group: 'insert', | group: 'insert', | ||
tools: { | tools: { | ||
" | "bebyggelse": { | ||
label: ' | label: 'Omdirigering til bebyggelse-kategori', | ||
type: 'button', | type: 'button', | ||
icon: '//upload.wikimedia.org/wikipedia/commons/ | icon: '//upload.wikimedia.org/wikipedia/commons/0/08/OpenMoji-black_1F3E1.svg', | ||
action: { | action: { | ||
type: 'encapsulate', | type: 'encapsulate', | ||
Linje 378: | Linje 307: | ||
group: 'insert', | group: 'insert', | ||
tools: { | tools: { | ||
" | "redirect to category": { | ||
label: ' | label: 'Omdirigering til et kategoriord', | ||
type: 'button', | type: 'button', | ||
icon: '//upload.wikimedia.org/wikipedia/commons/4/ | icon: '//upload.wikimedia.org/wikipedia/commons/4/43/VisualEditor_icon_page-redirect-rtl.svg', | ||
action: { | action: { | ||
type: ' | type: 'encapsulate', | ||
options: { | options: { | ||
pre: " | pre: "#REDIRECT[[:kategori:", | ||
post: "\n | peri: "Indsæt", | ||
post: "]]\n[[kategori:kategoriord]]" | |||
} | } | ||
} | } | ||
Linje 397: | Linje 327: | ||
group: 'insert', | group: 'insert', | ||
tools: { | tools: { | ||
" | "navb": { | ||
label: ' | label: 'Indsæt en navboksskabelon', | ||
type: 'button', | type: 'button', | ||
icon: '//upload.wikimedia.org/wikipedia/commons/ | icon: '//upload.wikimedia.org/wikipedia/commons/5/57/OOjs_UI_icon_templateAdd-ltr.svg', | ||
action: { | action: { | ||
type: 'encapsulate', | type: 'encapsulate', | ||
options: { | options: { | ||
pre: " | pre: "{{Navboks \n| navn = \n| titel = [[:kategori:", | ||
peri: "", | peri: "", | ||
post: "]]\n | post: "|]]\n| billede-venstre = \n\n| liste1 = {{q|{{{1|}}}|\n\n}}\n\n<includeonly>|status={{{1|}}}|navbar={{{2|plain}}}|style={{#if:{{{2|}}}|border-bottom:0px}}</includeonly>}}{{#if:{{{2|}}}|{{bund|{{{2}}}|{{{3|}}}}}}}<noinclude>{{s}}</noinclude>" | ||
} | } | ||
} | } | ||
Linje 413: | Linje 343: | ||
} ); | } ); | ||
/* fjerner characters-elementer i Specialtegn sektionen */ | |||
$( '#wpTextbox1' ).wikiEditor( 'removeFromToolbar', { | |||
'section': 'characters', | |||
'page': 'symbols', | |||
}); | |||
/* tilføjelser til Specialtegn */ | |||
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { | $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { | ||
'section': 'characters', | |||
'pages': { | |||
'section-specialtegn1': { | |||
'label': 'Anførselstegn og brøk', | |||
'layout': 'characters', | |||
'characters': [ | |||
{ | |||
'action': { | |||
'type': 'encapsulate', | |||
'options': { | |||
'pre': '„', | |||
'peri': '', | |||
'post': '“' | |||
} | |||
}, | |||
'label': '„…“' | |||
}, | |||
'№', ['1/3', '⅓'], ['2/3', '⅔'], ['1/4', '¼'], ['3/4', '¾'], ['1/8', '⅛'], ['3/8', '⅜'], ['5/8', '⅝'], ['7/8', '⅞'], '⅕', '⅖', '⅗', '⅘', '⅙', '⅚', '‰', '²', '³', '°', | |||
{ | |||
'action': { | |||
'type': 'encapsulate', | |||
'options': { | |||
'pre': '»', | |||
'peri': '', | |||
'post': '«' | |||
} | |||
}, | |||
'label': '»…«' | |||
}, | |||
{ | |||
'action': { | |||
'type': 'encapsulate', | |||
'options': { | |||
'pre': '«', | |||
'peri': '', | |||
'post': '»' | |||
} | |||
}, | |||
'label': '«…»' | |||
}, | |||
{ | |||
'action': { | |||
'type': 'encapsulate', | |||
'options': { | |||
'pre': '’', | |||
'peri': '', | |||
'post': '‘' | |||
} | |||
}, | |||
'label': '’…‘' | |||
}, | |||
{ | |||
'action': { | |||
'type': 'encapsulate', | |||
'options': { | |||
'pre': '‟', | |||
'peri': '', | |||
'post': '”' | |||
} | |||
}, | |||
'label': '‟…”' | |||
} | |||
] | |||
}, | |||
'section-specialtegn2': { | |||
'label': 'Særlige bogstaver', | |||
'layout': 'characters', | |||
'characters': [ 'ß', 'Ð', 'ð', 'Þ', 'þ', 'Ł', 'ł', 'Œ', 'œ', 'Ç', 'ç', 'Æ', 'æ', 'Ø', 'ø', 'Å', 'å', '⅍', '℃', '©', '®' ] | |||
}, | |||
'section-specialtegn3': { | |||
'label': 'Ikoner mm.', | |||
'layout': 'characters', | |||
'characters': [ '✎', '⛵', '⛴', '⚓', '⛯', '✇', '✈', '✼', '⚒', '✍', '⚔', '☹', '†', '✝', '✠', '←', '→', '–', '—', '…', '·', '•', '∗', '✯', '×', '÷', '≈', '□', '☭', '🌐', '🔍', '🔎', '🔤'] | |||
}, | |||
'section-specialtegn4': { | |||
'label': 'Kode', | |||
'layout': 'characters', | |||
'characters': [ | |||
{ | |||
'action': { | |||
'type': 'replace', | |||
'options': { | |||
'pre': '<br>\n', | |||
} | |||
}, | |||
'label': 'br' | |||
}, | |||
{ | |||
'action': { | |||
'type': 'replace', | |||
'options': { | |||
'pre': ' ', | |||
} | |||
}, | |||
'label': ' ' | |||
}, | |||
{ | |||
'action': { | |||
'type': 'encapsulate', | |||
'options': { | |||
'pre': '<blockquote>', | |||
'peri': '', | |||
'post': '</blockquote>' | |||
} | |||
}, | |||
'label': 'blockquote' | |||
}, | |||
{ | |||
'action': { | |||
'type': 'encapsulate', | |||
'options': { | |||
'pre': '<cite>', | |||
'peri': '', | |||
'post': '</cite>' | |||
} | |||
}, | |||
'label': 'cite' | |||
}, | |||
{ | |||
'action': { | |||
'type': 'encapsulate', | |||
'options': { | |||
'pre': '<code>', | |||
'peri': '', | |||
'post': '</code>' | |||
} | |||
}, | |||
'label': 'code' | |||
}, | |||
{ | |||
'action': { | |||
'type': 'encapsulate', | |||
'options': { | |||
'pre': '<includeonly>', | |||
'peri': '', | |||
'post': '</includeonly>' | |||
} | |||
}, | |||
'label': 'includeonly' | |||
}, | |||
{ | |||
'action': { | |||
'type': 'encapsulate', | |||
'options': { | |||
'pre': '<noinclude>', | |||
'peri': '', | |||
'post': '</noinclude>' | |||
} | |||
}, | |||
'label': 'noinclude' | |||
}, | |||
{ | |||
'action': { | |||
'type': 'encapsulate', | |||
'options': { | |||
'pre': '<nowiki>', | |||
'peri': '', | |||
'post': '</nowiki>' | |||
} | |||
}, | |||
'label': 'nowiki' | |||
}, | |||
{ | |||
'action': { | |||
'type': 'encapsulate', | |||
'options': { | |||
'pre': '<ref>', | |||
'peri': '', | |||
'post': '</ref>' | |||
} | |||
}, | |||
'label': 'ref' | |||
}, | |||
{ | |||
'action': { | |||
'type': 'encapsulate', | |||
'options': { | |||
'pre': '[[:kategori:', | |||
'peri': '', | |||
'post': '|]]{{*}} ' | |||
} | |||
}, | |||
'label': 'kategori ·' | |||
}, | |||
{ | |||
'action': { | |||
'type': 'encapsulate', | |||
'options': { | |||
'pre': '{{q|{{{1|}}}|', | |||
'peri': '', | |||
'post': '}}\n' | |||
} | } | ||
}, | |||
'label': '{{q|…}}' | |||
}, | |||
{ | |||
'action': { | |||
'type': 'encapsulate', | |||
'options': { | |||
'pre': '<!--', | |||
'peri': ' ', | |||
'post': '-->' | |||
} | } | ||
}, | |||
'label': '<!-- -->' | |||
} | |||
] | |||
} | |||
} | |||
} ); | } ); | ||
/* Ændringer i WikiEditor indsættes ovenfor */ | |||
}; | }; |
Nuværende version fra 19. mar. 2024, 07:37
/* Javascript inkluderet her vil være aktivt for alle brugere. */ /* WikiEditor er defineret i extensions/WikiEditor/modules/jquery.wikiEditor.toolbar.config.js */ /* men bør tilpasses her eller kan kopieres over i {{USERNAME}}/common.js og i så fald aktiveres med $wgAllowUserJs = true; */ /* se [[mw:Extension:WikiEditor/Toolbar_customization#Default_sections]] */ var customizeToolbar = function () { /* Ændringer i WikiEditor indsættes nedenfor */ /* Tilret elementer i topbjælke sektion (main) */ /* Fjern gruppen format med knapperne bold og italic, samt fra gruppen insert knapperne file og reference */ $( '#wpTextbox1' ).wikiEditor( 'removeFromToolbar', { 'section': 'main', 'group': 'format', }); $( '#wpTextbox1' ).wikiEditor( 'removeFromToolbar', { 'section': 'main', 'group': 'insert', 'tool': 'file', }); $( '#wpTextbox1' ).wikiEditor( 'removeFromToolbar', { 'section': 'main', 'group': 'insert', 'tool': 'reference', }); /* Indsæt elementer */ $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { section: 'main', group: 'insert', tools: { "disambig": { label: 'Skibsinfoboks', type: 'button', icon: '//upload.wikimedia.org/wikipedia/commons/e/e9/Maki-ferry-15.svg', action: { type: 'replace', options: { pre: "{{sk\n| k=\n| bia= | IMO=", post: "\n| før=\n| navn=\n| hjem=\n| værft=\n| år=19 | sbib=\n| b= | d= | m=\n| jma=\n| wrs=\n| ms=\n| ros2=\n| {{gps|}}\n| liv= | død=\n}}" } } } } } ); $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { section: 'main', group: 'insert', tools: { "disambig": { label: 'Avisartikler og kategorier', type: 'button', icon: '//upload.wikimedia.org/wikipedia/commons/5/55/OOjs_UI_icon_newspaper-ltr.svg', action: { type: 'encapsulate', options: { pre: "\n{{a|", peri: "dato", post: "}}\n\n<noinclude>\n[[kategori:]]\n[[kategori:]]\n[[kategori:]]\n[[kategori:]]\n[[kategori:]]\n</noinclude>" } } } } } ); $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { section: 'main', group: 'insert', tools: { "category": { label: 'Ekstra kategori', type: 'button', icon: '//upload.wikimedia.org/wikipedia/commons/c/c4/Toolbar_category.png', action: { type: 'encapsulate', options: { pre: "[[kategori:", post: "]]\n" } } } } } ); $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { section: 'main', group: 'insert', tools: { "new category": { label: 'Skabelon', type: 'button', icon: '//upload.wikimedia.org/wikipedia/commons/f/f4/OOjs_UI_icon_wikiTemplate.svg', action: { type: 'encapsulate', options: { pre: "{{", peri: "|", post: "}}\n" } } } } } ); $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { section: 'main', group: 'insert', tools: { "new category": { label: 'Skabelon og kategorier', type: 'button', icon: '//upload.wikimedia.org/wikipedia/commons/c/cd/OOjs_UI_icon_code.svg', action: { type: 'encapsulate', options: { pre: "{{", post: "|-|}}\n\n[[kategori:]]\n[[kategori:]]\n[[kategori:]]\n[[kategori:]]" } } } } } ); /* Tilret elementer i avanceret sektion (advanced) */ /* Fjern gruppen heading og fra gruppen format knapperne ulist, olist, nowiki og newline, samt fra gruppen size knappen subscript og fra gruppen insert knappen redirect */ $( '#wpTextbox1' ).wikiEditor( 'removeFromToolbar', { 'section': 'advanced', 'group': 'format', 'tool': 'ulist', }); $( '#wpTextbox1' ).wikiEditor( 'removeFromToolbar', { 'section': 'advanced', 'group': 'format', 'tool': 'olist', }); $( '#wpTextbox1' ).wikiEditor( 'removeFromToolbar', { 'section': 'advanced', 'group': 'format', 'tool': 'nowiki', }); $( '#wpTextbox1' ).wikiEditor( 'removeFromToolbar', { 'section': 'advanced', 'group': 'format', 'tool': 'newline', }); $( '#wpTextbox1' ).wikiEditor( 'removeFromToolbar', { 'section': 'advanced', 'group': 'size', 'tool': 'subscript', }); $( '#wpTextbox1' ).wikiEditor( 'removeFromToolbar', { 'section': 'advanced', 'group': 'insert', 'tool': 'redirect', }); /* Tilretning af avanceret sektionen (advanced) */ /* Indsæt knapper i gruppen format (under avanceret) */ $('#wpTextbox1').wikiEditor('addToToolbar', { section: 'advanced', group: 'format', tools: { "strikethrough": { label: 'Gennemstreget', type: 'button', icon: '//upload.wikimedia.org/wikipedia/commons/6/6d/Vector_strikeout.png', action: { type: 'encapsulate', options: { pre: "<s>", post: "</s>" } } } } }); $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { section: 'advanced', group: 'format', tools: { "på dansk": { label: 'Understreget', type: 'button', icon: '//upload.wikimedia.org/wikipedia/commons/1/13/Toolbaricon_regular_U_underline.png', action: { type: 'encapsulate', options: { pre: "<u>", post: "</u>" } } } } }); $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { section: 'advanced', group: 'format', tools: { "comment": { label: 'Fed skrift', type: 'button', icon: '//upload.wikimedia.org/wikipedia/commons/a/a0/Toolbaricon_bold_F-1.png', action: { type: 'encapsulate', options: { pre: "'''", post: "'''" } } } } } ); $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { section: 'advanced', group: 'format', tools: { "comment": { label: 'Centrér tekst', type: 'button', icon: '//upload.wikimedia.org/wikipedia/commons/a/a5/Text_align_center.png', action: { type: 'encapsulate', options: { pre: "<center>", post: "</center>" } } } } } ); /* Indsæt knapper i Avanceret-'Indsæt' */ $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { section: 'advanced', group: 'insert', tools: { "billedfil": { label: 'Indsæt billede', type: 'button', icon: '//upload.wikimedia.org/wikipedia/commons/a/aa/OOjs_UI_icon_image-rtl.svg', action: { type: 'encapsulate', options: { pre: "[[Fil:", peri: "billednavn", post: "|thumb|left| på [[commons:|commons]]]]\n" } } } } } ); $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { section: 'advanced', group: 'insert', tools: { "landsby": { label: 'Omdirigering til landsby-kategori', type: 'button', icon: '//upload.wikimedia.org/wikipedia/commons/c/c8/OpenMoji-black_1F3D8.svg', action: { type: 'encapsulate', options: { pre: "#REDIRECT[[:kategori:", peri: "Indsæt", post: "]]\n[[kategori:landsby]]" } } } } } ); $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { section: 'advanced', group: 'insert', tools: { "bebyggelse": { label: 'Omdirigering til bebyggelse-kategori', type: 'button', icon: '//upload.wikimedia.org/wikipedia/commons/0/08/OpenMoji-black_1F3E1.svg', action: { type: 'encapsulate', options: { pre: "#REDIRECT[[:kategori:", peri: "Indsæt", post: "]]\n[[kategori:bebyggelse]]" } } } } } ); $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { section: 'advanced', group: 'insert', tools: { "redirect to category": { label: 'Omdirigering til et kategoriord', type: 'button', icon: '//upload.wikimedia.org/wikipedia/commons/4/43/VisualEditor_icon_page-redirect-rtl.svg', action: { type: 'encapsulate', options: { pre: "#REDIRECT[[:kategori:", peri: "Indsæt", post: "]]\n[[kategori:kategoriord]]" } } } } } ); $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { section: 'advanced', group: 'insert', tools: { "navb": { label: 'Indsæt en navboksskabelon', type: 'button', icon: '//upload.wikimedia.org/wikipedia/commons/5/57/OOjs_UI_icon_templateAdd-ltr.svg', action: { type: 'encapsulate', options: { pre: "{{Navboks \n| navn = \n| titel = [[:kategori:", peri: "", post: "|]]\n| billede-venstre = \n\n| liste1 = {{q|{{{1|}}}|\n\n}}\n\n<includeonly>|status={{{1|}}}|navbar={{{2|plain}}}|style={{#if:{{{2|}}}|border-bottom:0px}}</includeonly>}}{{#if:{{{2|}}}|{{bund|{{{2}}}|{{{3|}}}}}}}<noinclude>{{s}}</noinclude>" } } } } } ); /* fjerner characters-elementer i Specialtegn sektionen */ $( '#wpTextbox1' ).wikiEditor( 'removeFromToolbar', { 'section': 'characters', 'page': 'symbols', }); /* tilføjelser til Specialtegn */ $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { 'section': 'characters', 'pages': { 'section-specialtegn1': { 'label': 'Anførselstegn og brøk', 'layout': 'characters', 'characters': [ { 'action': { 'type': 'encapsulate', 'options': { 'pre': '„', 'peri': '', 'post': '“' } }, 'label': '„…“' }, '№', ['1/3', '⅓'], ['2/3', '⅔'], ['1/4', '¼'], ['3/4', '¾'], ['1/8', '⅛'], ['3/8', '⅜'], ['5/8', '⅝'], ['7/8', '⅞'], '⅕', '⅖', '⅗', '⅘', '⅙', '⅚', '‰', '²', '³', '°', { 'action': { 'type': 'encapsulate', 'options': { 'pre': '»', 'peri': '', 'post': '«' } }, 'label': '»…«' }, { 'action': { 'type': 'encapsulate', 'options': { 'pre': '«', 'peri': '', 'post': '»' } }, 'label': '«…»' }, { 'action': { 'type': 'encapsulate', 'options': { 'pre': '’', 'peri': '', 'post': '‘' } }, 'label': '’…‘' }, { 'action': { 'type': 'encapsulate', 'options': { 'pre': '‟', 'peri': '', 'post': '”' } }, 'label': '‟…”' } ] }, 'section-specialtegn2': { 'label': 'Særlige bogstaver', 'layout': 'characters', 'characters': [ 'ß', 'Ð', 'ð', 'Þ', 'þ', 'Ł', 'ł', 'Œ', 'œ', 'Ç', 'ç', 'Æ', 'æ', 'Ø', 'ø', 'Å', 'å', '⅍', '℃', '©', '®' ] }, 'section-specialtegn3': { 'label': 'Ikoner mm.', 'layout': 'characters', 'characters': [ '✎', '⛵', '⛴', '⚓', '⛯', '✇', '✈', '✼', '⚒', '✍', '⚔', '☹', '†', '✝', '✠', '←', '→', '–', '—', '…', '·', '•', '∗', '✯', '×', '÷', '≈', '□', '☭', '🌐', '🔍', '🔎', '🔤'] }, 'section-specialtegn4': { 'label': 'Kode', 'layout': 'characters', 'characters': [ { 'action': { 'type': 'replace', 'options': { 'pre': '<br>\n', } }, 'label': 'br' }, { 'action': { 'type': 'replace', 'options': { 'pre': ' ', } }, 'label': ' ' }, { 'action': { 'type': 'encapsulate', 'options': { 'pre': '<blockquote>', 'peri': '', 'post': '</blockquote>' } }, 'label': 'blockquote' }, { 'action': { 'type': 'encapsulate', 'options': { 'pre': '<cite>', 'peri': '', 'post': '</cite>' } }, 'label': 'cite' }, { 'action': { 'type': 'encapsulate', 'options': { 'pre': '<code>', 'peri': '', 'post': '</code>' } }, 'label': 'code' }, { 'action': { 'type': 'encapsulate', 'options': { 'pre': '<includeonly>', 'peri': '', 'post': '</includeonly>' } }, 'label': 'includeonly' }, { 'action': { 'type': 'encapsulate', 'options': { 'pre': '<noinclude>', 'peri': '', 'post': '</noinclude>' } }, 'label': 'noinclude' }, { 'action': { 'type': 'encapsulate', 'options': { 'pre': '<nowiki>', 'peri': '', 'post': '</nowiki>' } }, 'label': 'nowiki' }, { 'action': { 'type': 'encapsulate', 'options': { 'pre': '<ref>', 'peri': '', 'post': '</ref>' } }, 'label': 'ref' }, { 'action': { 'type': 'encapsulate', 'options': { 'pre': '[[:kategori:', 'peri': '', 'post': '|]]{{*}} ' } }, 'label': 'kategori ·' }, { 'action': { 'type': 'encapsulate', 'options': { 'pre': '{{q|{{{1|}}}|', 'peri': '', 'post': '}}\n' } }, 'label': '{{q|…}}' }, { 'action': { 'type': 'encapsulate', 'options': { 'pre': '<!--', 'peri': ' ', 'post': '-->' } }, 'label': '<!-- -->' } ] } } } ); /* Ændringer i WikiEditor indsættes ovenfor */ }; /* Tilpasser værktøjslinjen hvis man er i redigeringstilstand og de nødvendige moduler er til rådighed */ if ( [ 'edit', 'submit' ].indexOf( mw.config.get( 'wgAction' ) ) !== -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 ); } } ); }