Skip to content

Commit 06374fc

Browse files
authored
Merge pull request #21 from aphillips/gh-pages
Convert Acknowlegements to Contributors
2 parents e18f3ef + bb3cd3f commit 06374fc

File tree

1 file changed

+26
-11
lines changed

1 file changed

+26
-11
lines changed

index.html

Lines changed: 26 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,17 @@
3131
{ name: "Addison Phillips", mailto: "[email protected]", company: "Invited Expert", w3cid: 33573 }
3232
],
3333

34-
34+
otherLinks: [
35+
{
36+
key: "Contributors:",
37+
data: [
38+
{
39+
value: "See the Contributors section.",
40+
href: "#contributors",
41+
},
42+
],
43+
},
44+
],
3545

3646
github: "w3c/timezone",
3747
group: "i18n",
@@ -67,7 +77,7 @@
6777

6878
for (const zone of zonesToTest) {
6979
var datefmt = new Intl.DateTimeFormat('en-US', { timeZone: zone, dateStyle: 'full' });
70-
var timefmt = new Intl.DateTimeFormat('en-US', { timeZone: zone, timeStyle: 'medium' });
80+
var timefmt = new Intl.DateTimeFormat('en-US', { timeZone: zone, timeStyle: 'short', hour12: false });
7181

7282
var tr = document.createElement('tr'); // table row
7383
var td = document.createElement('td');
@@ -99,6 +109,12 @@
99109
<p>We welcome comments on this document, but to make it easier to track them, please raise separate issues for each comment, and point to the section you are commenting on using a URL.</p>
100110
</div>
101111

112+
<section id="contributors">
113+
<h2 id="Acknowledgements">Contributors</h2><!-- This section was formerly an appendix with this 'id'. -->
114+
115+
<p>This document is based on several previous documents. The original Working Group Note (<a href="http://www.w3.org/TR/2005/NOTE-timezone-20051013/">Working With Timezones</a>) was by Martin Dürst, Mark Davis, Felix Sasaki, and Addison Phillips. A <a href="https://www.w3.org/TR/2011/NOTE-timezone-20110705/">later revision</a> was written by Martin Dürst, Mark Davis, Felix Sasaki, Richard Ishida, and Addison Phillips. Sections [[[#history]]] and [[[#what-is-time-zone]]] were adapted from an article and later a Unicode conference presentation (<cite>Time Out of Joint</cite>) by Addison Phillips. Information on time zone scenarios is based on work by Norbert Lindenberg. Information about temporal serializations and use cases is based on work by CJ Butenhoff.</p>
116+
</section>
117+
102118
<section>
103119
<h2 id="introduction">Introduction</h2>
104120

@@ -108,6 +124,7 @@ <h2 id="introduction">Introduction</h2>
108124

109125
<aside class="note">
110126
<p>In this document [[RFC2119]] keywords have their usual meaning. Best practices and definitions are set off from the remainder of the text with special formatting.</p>
127+
<p class="example">Examples appear with a different background color and decoration like this.</p>
111128
<p class="advisement">Best practices appear with a different background color and decoration like this.</p>
112129
<p class="definition">Definitions appear with a different background color and decoration like this.</p>
113130
<p class="issue-example">Gaps or recommendations for future work appear with a different background color and decoration like this.</p>
@@ -133,7 +150,10 @@ <h2>Why You Should Read This</h2>
133150
<li>A business-critical regularly-scheduled process fails to run, but only on certain days of the year.</li>
134151
</ul>
135152

136-
<p>Your browser's system time is: <code id=currTimeDisplay></code> (<code id=currTime></code>) and your browser's time zone is: <code id=currZone></code>. If a friend in a different time zone views this page at the same instant you do, they might see a very different time&mdash;perhaps even on a different day:</p>
153+
<aside class="example">
154+
<p>The system time of your browser when this page was loaded was: <code id=currTimeDisplay></code>. This has an [=incremental time=] value of <code id=currTime></code>.</p>
155+
<p>Your browser's time zone is: <code id=currZone></code>.</p>
156+
<p>If a friend in a different time zone views this page at the same instant you do, they might see a very different time&mdash;perhaps even on a different day:</p>
137157
<div id=zoneOut>
138158
<table>
139159
<thead>
@@ -145,6 +165,7 @@ <h2>Why You Should Read This</h2>
145165
</tbody>
146166
</table>
147167
</div>
168+
</aside>
148169

149170
</section>
150171
</section>
@@ -196,8 +217,6 @@ <h3 id="definitions">Definitions</h3>
196217
<p class="definition"><dfn class="link-ignore" data-lt="summer time|daylight savings time|DST|daylight time">Daylight Savings Time</dfn> Also called <em>summer time</em> or <em>daylight time</em> and abbreviated <em>DST</em>. The practice of advancing clocks to make better use of longer periods of daylight during the summer, so that darkness falls at a later [=wall time=]. Rules around observation (or non-observation) of DST is one feature of a time zone.</p>
197218
</section>
198219

199-
</section>
200-
201220
<section>
202221
<h2 id="history">A Brief History of Timekeeping</h2>
203222

@@ -626,6 +645,8 @@ <h3>Serializations</h3>
626645
</section>
627646
</section>
628647

648+
</section><!-- /concepts -->
649+
629650
<section id="use-cases">
630651
<h2>Use Cases</h2>
631652

@@ -793,11 +814,5 @@ <h3>Leap Seconds</h3>
793814
</section>
794815
</section>
795816
</section>
796-
797-
<section class="appendix" id="Acknowledgements">
798-
<h2>Acknowledgements</h2>
799-
800-
<p>This document is based on several previous documents. The original Working Group Note (<a href="http://www.w3.org/TR/2005/NOTE-timezone-20051013/">Working With Timezones</a>) and a <a href="https://www.w3.org/TR/2011/NOTE-timezone-20110705/">later revision</a> were written by Martin Dürst, Mark Davis, Felix Sasaki, and Addison Phillips. Portions of this document, notably the introduction, were adapted from an older document ("It's about time") and from a Unicode conference presentation ("Time Out of Joint") by Addison Phillips. Information on time zone scenarios is based on work by Norbert Lindenberg. Information about temporal serializations and use cases is based on work by CJ Butenhoff.</p>
801-
</section>
802817
</body>
803818
</html>

0 commit comments

Comments
 (0)