Fandom Developers Wiki
Advertisement

This script/stylesheet is for PERSONAL use only!

You are free to install this script/stylesheet for yourself, but it is not allowed to be used wiki-wide (e.g., in MediaWiki:ImportJS, MediaWiki:Common.js, MediaWiki:Common.css, MediaWiki:Fandomdesktop.js or MediaWiki:Fandomdesktop.css), as it would violate Fandom's Terms of Use.
(See the customization policy)

UTCClock adds a clock displaying the current time in the UTC timezone to the header on both Oasis and Monobook. This is helpful in figuring out how long ago comments were posted on talk pages and forums since the user's signature shows the time in UTC when it was posted.

Installation

Configuration

Custom Clock Face Text

// Display 12 hour time followed by day, month (English, full name)
// and year with "(UTC)" at the end
window.DisplayClockJS = '%2I:%2M:%2S %p %2d %{January;February;March;April;May;June;July;August;September;October;November;December}m %Y (UTC)';


// Change the clock from UTC to CST (China Standard Time)
window.DisplayClockJS = {
    offset: 480,
    format: '%2H:%2M:%2S %d %b %Y (CST)',
};

This last syntax is the most powerful, but that also makes it the most complicated. See the Instructions here.

Option Description Type Default
format The format string as noted above. Text %2H:%2M:%2S %d %b %Y (UTC)
hoverText The text the user sees when they hover their mouse over the link. Text "Click to purge page from the server's cache"
interval How frequently the clock updates itself. 500ms (the default) is smooth, 1000ms is stuttery but cheaper on CPU. You can use bigger values if you want it to update slowly (5000=one update every 5 seconds). Number 500
monofonts The default fonts for the clock. These should be monospace only as normal non-monospace fonts will cause the clock to get wider and narrower as the numbers change which is distracting and annoying. Text "Consolas, 'Lucida Console', monospace"
offset The clock defaults to UTC. This can be changed by changing the UTC offset (in minutes). Number 0

You can use DisplayClock in your personal javascript if you want. It'll work fine since you won't get 2 clocks or any other glitches if the Wiki uses DisplayClock as well.

Code interface

You can modify the value of DisplayClockJS.format while the clock is running which will instantly change the text it displays for you. There is also a kill function that will stop the clock and remove it from the UI for you: DisplayClockJS.kill(). [You can access these via your JavaScript console if you need them for some reason as the live editing of the format string can be useful for experimenting with the options]

Changing the Appearance

The clock element has the id DisplayClockJS, so you can apply CSS rules to change the appearance:

/* Changes the color of the text */
a#DisplayClockJS { color: red !important }
/* Use a Monospace font */
#DisplayClockJS { font-family: 'Lucida Console', monospace }

Users can hide the clock by inserting the code below into their personal CSS:

#DisplayClockJS {
    display: none;
}

Customising the Clock

The clock syntax is based on the C/C++ strftime function but slightly different. Basically, window.DisplayClockJS takes an arbitrary block of text that will appear unchanged on the clock except for the magic % symbols. Each %symbol has the following form:

Type 1:  % <Minimum Length> <Letter>
Example: %d = Current day of the month, no minimum length (e.g. 2)
         %2d = Current day of the month, force it to always have at least 2 characters (e.g. 02)
Type 2:  % {<Semicolon list>} <Letter>
Example: %{Sunday;Monday;Tuesday;Wednesday;Thursday;Friday;Saturday}w = Displays English day of the week
Type 3:  %% = Produces a single % symbol

The last item in a list will be used for everything greater than the length of the list. If there are only 6 entries in a day of the week list, then the last one (6th) will be used for both of the last 2 days of the week.

Unlike strftime, there are no default minimum lengths. If you don't supply your own width number, then it will always be only as wide as necessary. If you want the day of the month number to always be 2 characters wide, then you must ask for that specifically using %2d instead of just %d.

Specifier Replaced With Range Example
Sunday, 2 September 2012 5:12:15 PM
%% '%' symbol %
%B Long name of the month (in the wiki's language). September
%b Short name of the month (in the wiki's language). Sep
%d Day of the month 1-31 2
%G ISO 8601 Week Date's Year. This should only be used with %V. 2012
%g ISO 8601 Week Date Short Year 0-99 12
%H Hour in 24 hour time 0-23 17
%I Hour in 12 hour time 1-12 5
%j Day of the year 1-366 246
%m Month number 1-12 9
%M Minutes 0-59 12
%p 'AM' (Hours < 12) or 'PM' (Hours >= 12) PM
%S Seconds 0-59 15
%u Day of the week, Monday is the first day 1-7 7
%U Week of the year, Sunday is the first day of week 1 0-53 36
%V ISO 8601 Week Date, Week 1 is the first week with a Thursday in it.

This flag needs to be used in conjunction with %G or %g as you can get "52" on 1st January and "1" on 31st December under some circumstances, so you need the year to make sense of it. A standard ISO 8601 Week date can be built using "%G-W%2V-%u".

1-53 35
%w Day of the week, Sunday is the first day 1-7 1
%W Week of the year, Monday is the first day of week 1 0-53 35
%X Arbitrary time text, formatted as per the user's (browser) language. 5:12:15 PM
%x Arbitrary date text, formatted as per the user's (browser) language. Sunday, 2 September 2012
%y Last 2 digits of the year 0-99 12
%Y The year 2012
Advertisement