forked from microsoft/pxt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdomains-template.html
417 lines (354 loc) · 10 KB
/
domains-template.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
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<meta charset="UTF-8" />
<meta
name="Description"
content="This page is used to test the reachable web sites (domains) required for MakeCode functionality"
/>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, user-scalable=yes"
/>
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta
name="apple-mobile-web-app-status-bar-style"
content="translucent-black"
/>
<meta name="format-detection" content="telephone=no" />
<meta
name="application-name"
content="Reachable MakeCode domains"
/>
<meta name="msapplication-config" content="none" />
<meta name="theme-color" content="#3DC1AA" />
<title>Reachable MakeCode domains</title>
<link rel="stylesheet" href="/doccdn/semantic.css" type="text/css">
<style>
/* styles are inlined here as we don't want depednency on another file for checking the domains */
/* Global --------------------------------------------------------------------------- */
html {
font-size: 10px !important;
}
body,
a,
button,
p,
li {
font-size: 1.8rem;
font-family: 'Roboto', sans-serif;
}
.lg-p {
font-size: 2.2rem;
}
li {
padding: 1rem 0;
}
li li {
padding: 0;
margin: 0.5rem 0;
}
/* Dynamic scaling */
@media (min-width: 4000px) {
html {
font-size: 16px !important;
}
}
@media (min-width: 3000px) {
html {
font-size: 14px !important;
}
}
@media (min-width: 2000px) {
html {
font-size: 12px !important;
}
}
@media (max-width: 768px) {
html {
font-size: 8px !important;
}
}
ol {
font-weight: bold;
}
li span {
font-weight: normal;
}
h1 {
font-size: 7.2rem;
text-transform: uppercase;
}
h2 {
font-size: 5.4rem;
text-transform: uppercase;
}
h3 {
font-size: 3.6rem;
text-transform: uppercase;
}
h4 {
font-size: 2.4rem;
}
h5 {
font-size: 2rem;
}
.background-white {
color: black;
background-color: white;
}
.background-black {
color: white;
background-color: black;
}
.background-marina {
color: black;
background-color: #3dc1aa;
}
.background-sunflower {
color: black;
background-color: #eeca49;
}
.background-papaya {
color: white;
background-color: #de863b;
}
.background-eggplant {
color: white;
background-color: #453052;
}
.background-eggplant a {
color: #3dc1aa;
}
.background-eggplant a:hover {
color: #2ead98;
}
.background-marina a,
.background-sunflower a {
color: #453052;
}
.background-marina a:hover,
.background-sunflower a:hover {
color: #33203f;
}
.background-papaya a {
color: #fadd73;
}
.background-papaya a:hover {
color: #eeca49;
}
.marina {
color: #3dc1aa;
}
.sunflower {
color: #eeca49;
}
.papaya {
color: #de863b;
}
.eggplant {
color: #453052;
}
#header-bar,
#header-bar > div {
display: flex;
align-items: center;
flex: 1;
}
.header-bar-left {
justify-content: flex-start;
}
.header-bar-right {
justify-content: flex-end;
}
.header-org-logo {
display: flex;
}
.header-org-logo-sm {
display: none;
}
.header-org-logo img,
.header-org-logo-sm img {
margin: 0 15px;
height: 22px;
flex-shrink: 0;
}
.header-title {
white-space: nowrap;
}
.header-title:before {
content: '';
position: relative;
height: 18px;
border-left: 2px solid white;
}
.header-title span {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana;
font-size: 18px;
font-weight: 700;
color: white;
margin-left: 15px;
margin-bottom: 1px;
}
a.header-icon {
height: 100%;
padding: 15px;
color: white;
text-decoration: none;
}
a.header-icon:hover,
a.header-icon:focus {
color: white;
opacity: 0.8;
}
a.header-icon i.icon {
height: unset;
}
nav a {
cursor: pointer;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana;
font-style: unset;
text-transform: none !important;
}
nav .icon {
font-size: 26px;
line-height: 26px;
}
nav .header-bar-left a,
nav .header-bar-left a:hover {
display: flex;
color: white;
text-decoration: none;
}
nav .header-bar-right .btn:active svg path {
fill: white;
}
nav .header-bar-right .btn {
min-width: unset;
padding: 10px;
width: 160px;
margin: 0 15px;
display: flex;
align-items: center;
justify-content: center;
}
nav .header-bar-right .btn span {
margin-right: 10px;
line-height: 18px;
}
nav .header-bar-right .btn svg path {
fill: black;
}
table{
border-collapse: collapse;
border-spacing: 0;
margin-top: 40px;
margin-left: 20%;
margin-right: 20%;
}
th, td{
padding: 10px 20px;
border: 1px solid #000;
}
</style>
</head>
<body id='root' class='root'>
<nav
id="header-bar"
class="background-eggplant"
style="height: 60px"
>
<div class="header-bar-left">
<a
class="header-icon"
role="menuitem"
aria-label="Return home"
tabindex="0"
href="/faq">
<i
class="icon arrow left"
aria-hidden="true"
role="presentation"
></i>
</a>
</div>
<div class="header-bar-right">
<a
class="header-icon"
role="menuitem"
aria-label="Return home"
tabindex="0"
href="@homeurl@">
<i
class="icon home"
aria-hidden="true"
role="presentation"
></i>
</a>
</div>
</nav>
<script>
let table = document.createElement('table');
let thead = document.createElement('thead');
let tbody = document.createElement('tbody');
async function checkURL(url) {
fetch(url, {mode: 'no-cors'}).then( r=>{
console.log(`${url} reachable`)
return true;
})
.catch(e=>{
console.log(`Error: ${url} not reachable ${e}`)
return false;
});
}
function addRow(url) {
// Creating and adding data to second row of the table
let row = document.createElement('tr');
let row_data_1 = document.createElement('td');
row_data_1.innerHTML = url;
let row_data_2 = document.createElement('td');
row_data_2.innerHTML = "Loading..."
fetch(url, {mode: 'no-cors'}).then( r=>{
console.log(`${url} reachable`)
row_data_2.innerHTML = "Success"
})
.catch(e=>{
row_data_2.innerHTML = "Failure"
});
row.appendChild(row_data_1);
row.appendChild(row_data_2);
tbody.appendChild(row);
}
function createTable() {
table.appendChild(thead);
table.appendChild(tbody);
// Adding the entire table to the body tag
document.getElementById('root').appendChild(table);
// Creating and adding data to first row of the table
let row_1 = document.createElement('tr');
let heading_1 = document.createElement('th');
heading_1.innerHTML = "Domain";
let heading_2 = document.createElement('th');
heading_2.innerHTML = "Reachable?";
row_1.appendChild(heading_1);
row_1.appendChild(heading_2);
thead.appendChild(row_1);
}
createTable();
addRow("@homeurl@")
addRow("https://makecode.com");
addRow("https://trg-@[email protected]");
addRow("https://pxt.azureedge.net");
addRow("https://api.github.com");
addRow("https://immersivereaderprod.cognitiveservices.azure.com");
addRow("https://github.com");
addRow("https://raw.githubusercontent.com/")
addRow("https://microsoft.github.io/");
</script>
<!-- @include footer.html -->
<!-- @include tracking.html -->
</body>
</html>