User:Jj137/stats.js
Appearance
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. |
This user script seems to have a documentation page at User:Jj137/stats. |
//<pre>
function batting()
{
var f = document.editform, t = f.wpTextbox1;
var position = prompt("Position?");
var fname = prompt("First name?");
var lname = prompt("Last name?");
var games = prompt("Games played?");
var abs = prompt("At-bats?");
var hits = prompt("Hits?");
var avg = prompt("Batting average?");
var hrs = prompt("Home runs?");
var rbi = prompt("Runs batted in?");
if (t.value.length > 0)
t.value += "|- align=" + '"' + "center" + '"' + '\n' + "| " + position + " || {{sortname|" + fname + "|" + lname + "}} ||" + games + "||" + abs + "||" + hits + "||" + avg + "||" + hrs + "||" + rbi;
f.wpSummary.value = "Added stats.";
}
function battingtab()
{
// Only add for pages with the right string somewhere in the title
if (document.title.indexOf(" season (section)") != -1)
{
mw.util.addPortletLink('p-cactions', 'javascript:batting()', "hit");
}
}
function battingother()
{
var f = document.editform, t = f.wpTextbox1;
var fname = prompt("First name?");
var lname = prompt("Last name?");
var games = prompt("Games played?");
var abs = prompt("At-bats?");
var hits = prompt("Hits?");
var avg = prompt("Batting average?");
var hrs = prompt("Home runs?");
var rbi = prompt("Runs batted in?");
if (t.value.length > 0)
t.value += "|- align=" + '"' + "center" + '"' + '\n' + "| {{sortname|" + fname + "|" + lname + "}} ||" + games + "||" + abs + "||" + hits + "||" + avg + "||" + hrs + "||" + rbi;
f.wpSummary.value = "Added stats.";
}
function battingothertab()
{
// Only add for pages with the right string somewhere in the title
if (document.title.indexOf(" season (section)") != -1)
{
mw.util.addPortletLink('p-cactions', 'javascript:battingother()', "hitother");
}
}
function pitching()
{
var f = document.editform, t = f.wpTextbox1;
var fname = prompt("First name?");
var lname = prompt("Last name?");
var games = prompt("Games played?");
var innings = prompt("Innings pitched?");
var wins = prompt("Wins?");
var losses = prompt("Losses?");
var era = prompt("ERA?");
var so = prompt("Strikeouts?");
if (t.value.length > 0)
t.value += "|- align=" + '"' + "center" + '"' + '\n' + "| {{sortname|" + fname + "|" + lname + "}} ||" + games + "||" + innings + "||" + wins + "||" + losses + "||" + era + "||" + so;
f.wpSummary.value = "Added stats.";
}
function pitchingtab()
{
// Only add for pages with the right string somewhere in the title
if (document.title.indexOf(" season (section)") != -1)
{
mw.util.addPortletLink('p-cactions', 'javascript:pitching()', "pitch");
}
}
addOnloadHook(battingtab);
addOnloadHook(battingothertab);
addOnloadHook(pitchingtab);
//end script
//