-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdates.php
More file actions
40 lines (37 loc) · 2.21 KB
/
dates.php
File metadata and controls
40 lines (37 loc) · 2.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!doctype html>
<html class="no-js" lang="en">
<head>
<?php include_once('common/header.php'); ?>
<title>Dates London Stage Database Project</title>
</head>
<body id="dates">
<?php include_once('common/nav.php'); ?>
<main class="main grid-container">
<div class="grid-x dates-wrap">
<div class="small-12 page-heading">
<h1>Dates</h1>
</div>
<div method="post" class="small-12 medium-11 large-9 cell grid-x dates-form">
<p>
Until September 1752, England was on the Julian calendar, while most of Europe adhered to the Gregorian
calendar we use today. Under the Julian calendar, the new year began on March 25. In addition, the two
systems calculate leap years differently, so that the Julian calendar falls a bit further behind the
Gregorian each year. In 1752, when England switched calendars, it had to skip forward 11 days to catch
up to its neighbors; by the time countries like Russia and Greece made the switch in the early twentieth
century, they had to adjust by 13 days. So, on the day that a person in England would have dated a
letter 1 January 1660, a person in France would have dated a letter 11 January 1661. Sometimes,
historians will record both the "Old Style" (Julian) and "New Style" (Gregorian) dates, writing, for
example "10/21 January 1665/66" or "12/23 October 1703."</p>
<p>In <i>The London Stage, 1660-1800</i>, the Old Style month and day of a performance are retained, but the
year is assumed to begin on January 1, as in the New Style. Consequently, a performance with a full
Old/New Style date of "10/21 January 1665/66" is recorded as taking place on "10 January 1666." The <i>London
Stage Database</i> replicates the dates from the reference books. Users wishing to compare
performance offerings in England with those in other countries should be aware of these dating issues
and make the appropriate conversions.
</p>
</div>
</div>
</main>
<?php include_once('common/footer.php'); ?>
</body>
</html>