User:Omegatron/monobook.js/unverified.js: Difference between revisions

Content deleted Content added
it should only do this if there isn't a tag already there. i don't know why it focuses the text box at the end...
m Maintenance: Replacing addPortletLink() with mw.util.addPortletLink() (mw:ResourceLoader/Migration_guide_(users)#addPortletLink)
 
(19 intermediate revisions by 2 users not shown)
Line 1:
function unverified() {
/*
 
// AddFind the tagedit box
Unverified image
var txt = document.editform.wpTextbox1;
 
// The tag to be included is an unverified image template
Adds an unverified image tag when you press a tab, if the tag isn't already there. Depends on addLink() function. Otherwise should be self-contained.
var tag = '\u007b\u007b' + 'unverified' + '\u007d\u007d';
 
// Add a tag toIf the edit box, if it doesn't already have onethis alreadytag...
<pre><nowiki> */
if (txt.value.indexOf(summarytag) == -1) {
 
// Append the tag
function unverified() {
// Find the edit boxtxt.value += tag;
var txt = document.editform.wpTextbox1;
 
// Add a tag to the edit box, if it doesn't have one already
var summary = '{{unverified}}';
if (txt.value.indexOf(summary) == -1) {
// Add the tag
txt.value += summary;
// Add an edit summary
document.editform.wpSummary.value = 'Needs a source and copyright tag — see [[Wikipedia:Image copyright tags]]';
 
// Press the Save page button
document.editform.wpSave.clicksubmit();
}
 
// If the tag was already there, turn the tab background red to indicate
// that the script is functioning properly, but that there is no action
// to do. This doesn't interrupt the user's work like an alert() would.
else {
document.getElementById('ca-unverified').firstChild.style.backgroundColor = "#ff4444";
document.getElementById('ca-unverified').style.backgroundColor = "#ff4444";
}
}
 
// Create a tab that calls this function when pressed
addOnloadHook$(function () {
if(document.title.indexOf("Editing Image:") == 0) {
addLinkmw.util.addPortletLink('p-cactions', 'javascript:unverified()', 'tag', 'ca-unverified', 'Adds a tag to an unverified image', '', '');
}
});
 
// </nowiki></pre>