User:Macy/edit-summary.js
Appearance
(Redirected from User:Macys123/edit-summary.js)
Code that you insert on this page could contain malicious content capable of compromising your account. If you import a script from another page with "importScript", "mw.loader.load", "iusc", or "lusc", take note that this causes you to dynamically load a remote script, which could be changed by others. Editors are responsible for all edits and actions they perform, including by scripts. User scripts are not centrally supported and may malfunction or become inoperable due to software changes. A guide to help you find broken scripts is available. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. This code will be executed when previewing this page. |
Documentation for this user script can be added at User:Macy/edit-summary. This user script seems to have an accompanying .css page at User:Macy/edit-summary.css. |
//Resúmenes predefinidos. Traducción hecha por Macy de los originales en la wikipedia en ruso.
function SummaryButtons(){
var wpSummary = document.getElementById('wpSummary')
if (!wpSummary || (wpSummary.form.wpSection && wpSummary.form.wpSection.value == 'new')) return
wpSummaryBtn = document.createElement('span') //global var
wpSummaryBtn.id = 'userSummaryButtonsA'
wpSummary.parentNode.insertBefore(wpSummaryBtn, wpSummary.nextSibling)
addSumButton('Wikify', 'wikify', 'Wikify')
addSumButton('Reverting', 'reverting', 'Reverting')
addSumButton('Typo', 'fixed typo', 'Fixed typo')
addSumButton('Interwiki', 'interwiki', 'Interwiki')
addSumButton('Infobox', 'infobox', 'Infobox')
addSumButton('Image', 'image', 'Image')
addSumButton('Redirecting', 'redirecting', 'Redirecting')
addSumButton('Translating', 'translating', 'Translating')
addSumButton('Template', 'adding template', 'Template')
addSumButton('Category', 'category', 'Category')
addSumButton('Table', 'table', 'Table')
addSumButton('Stub', 'stub', 'Stub')
addSumButton('Support', 'support', 'Support')
addSumButton('Oppose', 'oppose', 'Oppose')
}
function addSumButton(name, text, title) {
var btn = document.createElement('a')
btn.appendChild(document.createTextNode(name))
btn.title = title
btn.onclick = function(){insertSummary(text)}
wpSummaryBtn.appendChild(btn)
}
function insertSummary(text) {
var wpSummary = document.getElementById('wpSummary')
if (wpSummary.value.match(/[^,; \/]$/)) wpSummary.value += ','
if (wpSummary.value.match(/[^ ]$/)) wpSummary.value += ' '
wpSummary.value += text
}
$(SummaryButtons)