Jump to content

User:ExclusiveEditor/sandbox: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
No edit summary
No edit summary
Tag: Reverted
Line 1: Line 1:
{{User sandbox}}
{{User sandbox}}
<!-- EDIT BELOW THIS LINE -->
<!-- EDIT BELOW THIS LINE -->
hello<ref>https://copyvios.toolforge.org/</ref>
https://copyvios.toolforge.org/
https://copyvios.toolforge.org/



Revision as of 16:44, 25 April 2024

hello[1] https://copyvios.toolforge.org/

Wikipedia:List of policies and guidelines

Wikipedia:Manual of Style/Contents

Wikipedia:Essay directory

Category:Wikipedia information pages

Important Code Lines of Wikipedia[a]

To Submit an Draft for review on Wikipedia-22:34, 7 June 2024 UTC [refresh]

{{subst:submit}} ExclusiveEditor Notify Me! 16:49, 10 May 2021 (UTC)

  1. ^ Example

WikiBreak

Put in User:ExclusiveEditor/common.js for enforcement. ExclusiveEditor Notify Me!

/*** BEGIN WIKIBREAK ENFORCER ***/
$(document).ready(function() 
{

	/*** Start editing here ***/

	// When you want to end your break?
	// no leading zeroes. (example: 9 - correct, 09 - incorrect)

	var date = { year: YYYY, month: M, day: DD};
	var time = { hours: HH, minutes: MM, seconds: S };

	/*** Stop editing here ***/
	
	var currentDate = new Date();
	var enforcedBreakEnd = new Date(
		date.year,date.month-1,date.day,time.hours,time.minutes,time.seconds);
	if (currentDate <= enforcedBreakEnd) 
	{
		alert("Enforced wikibreak until "+enforcedBreakEnd.toLocaleString()
			+ "\n(now is "+currentDate.toLocaleString()+")\n\nBye!");
		mw.loader.using(["mediawiki.api", "mediawiki.user"]).then(function ()
		{
			new mw.Api().post(
			{
				action: 'logout',
				token: mw.user.tokens.get('csrfToken')
			}).done(function (data)
			{
				location = "//" + location.host + "/w/index.php?title="
					 + "Special:Userlogin&returnto=Main_Page";
			}).fail(function ()
			{
				console.log("logout failed")
			});
		});
	}
});
/*** END WIKIBREAK ENFORCER ***/

Credit: Wikipedia:WikiProject User scripts/Scripts/WikiBreak Enforcer, Wikipedia:WikiProject User scripts/Scripts/WikiBreak Enforcer/script.js