Difference between revisions of "Template:IsLeapYear/doc"

From blackwiki
Jump to navigation Jump to search
imported>BrandonXLF
imported>Vanisaac
m (→‎Sanity check: clean up per WP:CAT#T and WP:AWBREQ add template:Sandbox other)
 
(One intermediate revision by one other user not shown)
Line 11: Line 11:
 
* {{para|no}} What to output if it isn't a leap year (default: 0)
 
* {{para|no}} What to output if it isn't a leap year (default: 0)
 
=== Formula ===
 
=== Formula ===
: Is equivalent to <nowiki>{{#expr: ((({{{1}}}) mod 4 = 0) and (({{{1}}}) mod 100 != 0)) or (({{{1}}}) mod 400 = 0)}}</nowiki>, but for efficiency is currently coded as <nowiki>{{#time:L|1 January {{{1}}}}}</nowiki>
+
The template currently uses Wikimedia function time (#time). It is the same as if 4 mod year = 0 and 100 mod year ≠ 0, then not a leap year, unless 400 mod year = 0, then it is a leap year.
 +
 
 
=== Sanity check ===
 
=== Sanity check ===
 
: {{evaldemo/3|IsLeapYear|2000}}: 2000 AD is ''effectively'' a leap year ''(in both the Julian and Gregorian calendars)''.
 
: {{evaldemo/3|IsLeapYear|2000}}: 2000 AD is ''effectively'' a leap year ''(in both the Julian and Gregorian calendars)''.
Line 33: Line 34:
 
Results for fractions like {{evaldemo/3|IsLeapYear|2000.9|5==}} are rounded down (floor).
 
Results for fractions like {{evaldemo/3|IsLeapYear|2000.9|5==}} are rounded down (floor).
  
<includeonly>
+
<includeonly>{{Sandbox other||
 
<!-- ADD CATEGORIES BELOW THIS LINE -->
 
<!-- ADD CATEGORIES BELOW THIS LINE -->
 
[[Category:Date mathematics templates|{{PAGENAME}}]]
 
[[Category:Date mathematics templates|{{PAGENAME}}]]
  
 
<!-- ADD INTERWIKIS BELOW THIS LINE -->
 
<!-- ADD INTERWIKIS BELOW THIS LINE -->
 
</includeonly>
 
 
<includeonly>
 
 
[[ja:Template:Is-leap-year]]
 
[[ja:Template:Is-leap-year]]
 
[[ur:سانچہ:IsLeapYear]]
 
[[ur:سانچہ:IsLeapYear]]
</includeonly>
+
 
 +
}}</includeonly>

Latest revision as of 22:33, 25 April 2020


Usage

{{IsLeapYear|year}}
year defaults to {{CURRENTYEAR}} = 2025. It must be specified in the Gregorian calendar, extended to all epochs using linear year numbering: use the proleptic Gregorian calendar in Christian Era before the change, and the astronomical year convention (using negative numbers, and year 0) in all years BC before the Christian era (there's a difference of 1 in absolute value).

Parameters

  • Unnamed parameter The year to calculate with (default: 2025)
  • |yes= What to output if it is a leap year (default : 1)
  • |no= What to output if it isn't a leap year (default: 0)

Formula

The template currently uses Wikimedia function time (#time). It is the same as if 4 mod year = 0 and 100 mod year ≠ 0, then not a leap year, unless 400 mod year = 0, then it is a leap year.

Sanity check

{{ IsLeapYear | 2000 }} gives 1: 2000 AD is effectively a leap year (in both the Julian and Gregorian calendars).
{{ IsLeapYear | 502*4-8 }} gives 1: 2000 AD is effectively a leap year (in both the Julian and Gregorian calendars).
{{ IsLeapYear | 2001 }} gives 0: 2001 AD is not a leap year.
{{ IsLeapYear | 2004 }} gives 1: 2004 AD is a leap year.
{{ IsLeapYear | 2005 }} gives 0: 2005 AD is not a leap year.
{{ IsLeapYear | 2007 }} gives 0: 2007 AD is not a leap year.
{{ IsLeapYear | 2008 }} gives 1: 2008 AD is a leap year.
{{ IsLeapYear | 2009 }} gives 0: 2009 AD is not a leap year.
{{ IsLeapYear | 2100 }} gives 0: 2100 AD is not a leap year in the Gregorian calendar (but not in the Julian calendar).
{{ IsLeapYear | 2400 }} gives 1: 2400 AD is effectively a leap year (in both the Julian and Gregorian calendars).
{{ IsLeapYear | 1900 }} gives 0: 1900 AD is not a leap year in the Gregorian calendar (but not in the Julian calendar).
{{ IsLeapYear | 1800 }} gives 0: 1800 AD is not a leap year in the Gregorian calendar (but not in the Julian calendar).
{{ IsLeapYear | 1700 }} gives 0: 1700 AD is not a leap year in the Gregorian calendar (but not in the Julian calendar).
{{ IsLeapYear | 1600 }} gives 1: 1600 AD is effectively a leap year (in both the Julian and Gregorian calendars).
{{ IsLeapYear | 1500 }} gives 0: 1500 AD is not a leap year in the proleptic Gregorian calendar (but is leap in the actual Julian calendar).
{{ IsLeapYear | 0 }} gives 1: 1 BC is a leap year in the astronomical calendar (mostly pointless for actual calendars of such epoch, but correct in the astronomical calendar where it is year 0).
{{ IsLeapYear | -100 }} gives 0: 101 BC is not a leap year in the astronomical calendar (mostly pointless for actual calendars of such epoch, but correct in the astronomical calendar where it is year -100).

Results for fractions like {{ IsLeapYear | 2000.9 }} = 1 are rounded down (floor).