-
Notifications
You must be signed in to change notification settings - Fork 2
/
video10b.html
390 lines (336 loc) · 17.3 KB
/
video10b.html
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
<!-- THIS FILE BEGAN AS A COPY OF video/video8a.html.
It has been transformed into the true html file for the implements part 1 video.
-->
<!DOCTYPE html>
<html>
<head>
<!--************************************************************************
* The following imported JavaScript code is involved in copying text into *
* the copy buffer and was obtained from *
* *
* https://clipboardjs.com/ *
* *
* Note that the directory /dist that contains the clipboard.min.js file *
* must be moved to the right place and the src address corrected. *
*************************************************************************-->
<script src="dist/clipboard.min.js">
</script>
<script>
/***************************************************************************
* DATA FOR THE LECTURE *
* *
* The following data customizes the page for a particular video. *
***************************************************************************/
/***************************************************************************
* The name of the lecture. *
***************************************************************************/
var HEADING = "Implementation with Refinement - Part 2" ;
/***************************************************************************
* Table of Contents *
* *
* Specified by an array, each element of which is a two-element array A *
* with A[0] the name of a section and A[1] the time in seconds at which *
* the section of the video begins. *
***************************************************************************/
var tocData =
[["Prologue", 4],
["AB2 Implements AB", 30.5],
["Specifying SpecH", 262.5],
["Checking Implementation", 473.5],
["Simplifying Refinement", 552.5],
["What We Did And Why", 817.5],
["Imaginary Variables", 979],
["What's Next", 1169],
["Epilogue", 1237.5]
] ;
/***************************************************************************
* Items Displayed at Specified Times *
* *
* An array that specifies when items are to be displayed in the Bottom *
* Section of the page. Each element of the array is 3-element array A *
* where A[0] is the id of the item, which is to be displayed from time *
* A[1] through A[2] (in seconds) of the video. *
* *
* The the same id should not appear twice in the ids the elements of *
* timingData, and each of those ids should be the same as the id of one *
* of the <div> elements in in the Bottom Section of the page, which are *
* children the <div> element with id "afterVideo". *
* *
* Note: Putting something at the very end isn't a great idea because on *
* IE, if the user seeks to the end of the video, IE acts as if it's at *
* the beginning and doesn't display something that comes at the end. *
***************************************************************************/
var timingData =
[["begin-title", 0, 3.9],
["download-spec", 338, 342.6],
["download-paper", 1164, 1168.7],
["end-title", 1278.35, 2000]
] ;
</script>
<script src=tlavideo.js> </script>
<title id="titleId"></title> <!-- title set by createHeading() -->
<!-- The following loads the style sheet for the html files of the videos -->
<link rel="stylesheet" type="text/css" href="tlastyles.css">
</head>
<body onresize="getVideoMag()">
<!--************************************************************************
* The body consists of the following sections: *
* - The heading section. *
* - The video section. *
* - The bottom section. *
*************************************************************************-->
<!--************************************************************************
* The Heading Section *
* *
* It consists of a single <div> element with id "headingId". It contains *
* the name of the lecture. This section is made invisible when the *
* video is in normal playing mode - that is, with videoState = "playing" *
* and timedItemDue = "false". *
*************************************************************************-->
<div id="headingId" style="display:block">
<!-- The lecture name. -->
<div style="float:left;width:530px">
<H1 id="h1Id" style="margin-top:0em;margin-bottom:.5em">
</H1>
</div>
<script> createHeading() </script>
</div>
<!--************************************************************************
* The Video Section *
* *
* This is a <div> item containing two subitems: a <video> item that *
* displays the video and a <div> item that contains the following items: *
* *
* - The controls for the video's playing size. *
* - Controls for skipping backwards and forwards in the video. *
*************************************************************************-->
<div style="display:block;clear:left">
<!--*********************************************************************
* The <video> element. *
**********************************************************************-->
<video onpause="pauseEvent()"
onplay="playEvent()"
onfocus="videoGetsFocus()"
width=450
height=256
controls
preload = "auto"
id="videoId">
<!--********************************************************************
* The src field of the following <source> tag is the URL of the video. *
*********************************************************************-->
<!-- Here is the local copy of the video.
<source src= "video10b.mp4">
-->
<!-- Here is the copy of the video on the Azure CDN -->
<source
src="video10b.mp4">
Your browser cannot display this tutorial because it does not
support the video HTML tag.
</video>
<!--*********************************************************************
* A <div> containing items displayed on a line below the video. *
* *
* One possibility is to remove the controls from the video itself and *
* replace them with the items displayed here plus some other controls. *
* The controls could also be moved to be on top of the video, and to *
* be made visible for a few seconds when the mouse is moved over (and *
* perhaps out of) the video. This would make it possible to prevent *
* the user from putting the video into full-screen mode. *
**********************************************************************-->
<div id="below-video">
<!--*******************************************************************
* A span for showing the controls for skipping forward and back in *
* the video and the "Speed", "Contents" and "How to View" buttons. *
* It is created by a tlavideo.jss function. *
********************************************************************-->
</div>
</div>
<!--************************************************************************
* The Bottom Section *
* *
* A <div> HTML element with id "afterVideo". It normally contains the *
* table of contents when the video is not in normal playing mode. *
* However, at certain parts of the video, it will be replaced by material *
* relevant to that part. That material will consist of a sequence of *
* <div> elements, identified by their ids. *
* *
* The sequence of <div> elements consists of one with id "tocId" followed *
* by a sequence of elements whose ids are in 1-1 correspondence with the *
* ids in timingData. *
*************************************************************************-->
<div id="afterVideo" style="display:block">
<!--*********************************************************************
* A <div> element containing the table of contents, which is created *
* dynamically by the createContents JavaScript function *
**********************************************************************-->
<div id="tocId" style="float:left"></div>
<script> createContents("tocId", tocData) ; </script>
</div>
<div id="rightBottom" style="display:block" >
<!--********************************************************************
* Next comes the sequence of items that are to appear, with the video *
* minimized, at certain points in the video. The timingData variable *
* specifies at what point in the video they appear. *
*********************************************************************-->
<!--*********************************************************************
* This is the call-out to appear at the beginning of the video. *
**********************************************************************-->
<div id = "begin-title" style="float:left">
<div style =
"float:left;margin-left:-20px;font-size:20px;font-family:Calibri">
<h3 class="contents">Lecture 10 - Part 2</h3>
<p style="margin-left:2em;margin-top:-1em;width:15em">
This web page was written on:<br>
18 March 2018<BR><BR>
The video was produced on:<br>
17 March 2018
</p>
</div>
<div id = "item0a" style = "float:left;margin-left:-4em">
<script> createContents("item0a", tocData) ;
</script>
</div>
</div>
<!--********************************************************************
* The "What's wrong with first FillSmall definition" call-out. *
*********************************************************************-->
<!--
<div id = "whats-wrong" style="float:left">
<div style =
"float:left;margin-left:30px;font-size:30px;font-family:Calibri">
<p>
Type a space to stop the video.
</p>
</div>
</div>
-->
<!--********************************************************************
* The "Copy Spec" call-out. *
*********************************************************************-->
<!-- <div id = "copy-spec" style="float:left; margin-top:20px">
<font style="font-size:17px;font-family:sans-serif">
<div style="width:420px;float:left;margin-left:25px">
Copy the following tiny text, either by
clicking on the <code>Copy</code>
button below it, or by your usual method of copying
text.
<div style="padding-left:5em;padding-top:.5em">
<pre class="copyBigText" id="bar">
EXTENDS Integers, Sequences
Remove(i, seq) ==
[j \in 1..(Len(seq)-1) |-> IF j < i THEN seq[j]
ELSE seq[j+1]]
</pre>
<button class="btn" data-clipboard-target="#bar">
Copy Text
</button>
</div>
</div>
</font>
</div>
<!--********************************************************************
* The "Download Spec" call-out. *
*********************************************************************-->
<div id = "download-spec" style="float:left">
<div style =
"float:left;margin-top:-5px;margin-left:20px;font-size:25px;font-family:Calibri">
<p>
Stop the video and right-click on the<br> following link
to download the file:<br>
<A href="AB2H.tla">AB2H.tla</a>
</p>
</div>
</div>
<!--********************************************************************
* The "Download Paper" call-out. *
*********************************************************************-->
<div id = "download-paper" style="float:left">
<div style =
"float:left;margin-top:-5px;margin-left:20px;font-size:25px;font-family:Calibri">
<p>
Stop the video and right-click on the following <br>
link to download the paper, or left-click on it<br>
to open it in a new window:<br>
<A href="https://lamport.azurewebsites.net/pubs/auxiliary.pdf"
target=_blank><i>Auxiliary Variables in TLA+</i></a>
</p>
</div>
</div>
<!--********************************************************************
* The "Copy Formula" call-out. *
*********************************************************************
<div id = "copy-formula" style="float:left; margin-top:20px">
<font style="font-size:17px;font-family:sans-serif">
<div style="width:420px;float:left;margin-left:25px">
Copy the following tiny text, either by
clicking on the <code>Copy</code>
button below it, or by your usual method of copying
text.
<div style="padding-left:5em;padding-top:.5em">
<pre class="copyBigText" id="bar2">
\A v \in Data \X {0,1} : (AVar = v) ~> (BVar = v)
</pre>
<button class="btn" data-clipboard-target="#bar2">
Copy Text
</button>
</div>
</div>
</font>
</div>
-->
<!--
<div style="float:left;width:20em;padding-left:3em">
Stop the video and copy this specification, either by
clicking on the button or by the usual way of copying
text. If you
paste it into a model editor in the Toolbox, it will appear
in a normal size. If you paste it into another text editor,
you may have to
increase the text's font size to make it readable.
</div>
</font>
-->
</div>
<!-- HERE IS AN EXAMPLE OF OPENING A VIDEO IN A NEW WINDOW
<div id="item2" style="position:relative; top:1em;left:4em">
<div style="text-align:left;width:30em">
<font style="font-size:19px;font-family:sans-serif">
<A href="summary-standalone.pdf" target=_blank>
<b>The TLA+ "Cheat Sheet"</b></font>
</A>
<p style="font-size:18px;font-family:sans-serif">
Left-click to open it in a new window,
or right-click <br> and select
<i>Save as ...</i>
to download it.
</p>
</div>
</div>
-->
<!--**********************************************************************
* This is the end of the sequence of <div> items that are to be *
* displayed at specified points in the video. *
***********************************************************************-->
<!--*********************************************************************
* The display at the end of the video. *
**********************************************************************-->
<div id = "end-title" style="float:left">
<div id = "item0b" style = "float:left">
<script> createContents("item0b", tocData) ; </script>
</div>
<div style =
"float:left;margin-left:10px;font-size:20px;font-family:Calibri">
<h3 class="contents">This is the last video of<br>
the TLA+ Video Course</h3>
<!-- <p style="margin-left:2em;margin-top:1em;width:15em">
<A href="video10b.html">Refinement - Part 2</a>
-->
</p>
</div>
</div>
</div>
</body>
</html>