This repository has been archived by the owner on Oct 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.html
360 lines (295 loc) · 7.14 KB
/
index.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
<!DOCTYPE html><html lang="en" dir="ltr"><head><meta charset="UTF-8"><meta name="generator" content="ReSpec 24.33.2"><meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>
The app: URL Scheme
</title>
<style id="respec-mainstyle">/*****************************************************************
* ReSpec 3 CSS
* Robin Berjon - http://berjon.com/
*****************************************************************/
@keyframes pop {
0% {
transform: scale(1, 1);
}
25% {
transform: scale(1.25, 1.25);
opacity: 0.75;
}
100% {
transform: scale(1, 1);
}
}
/* Override code highlighter background */
.hljs {
background: transparent !important;
}
/* --- INLINES --- */
h1 abbr,
h2 abbr,
h3 abbr,
h4 abbr,
h5 abbr,
h6 abbr,
a abbr {
border: none;
}
dfn {
font-weight: bold;
}
a.internalDFN {
color: inherit;
border-bottom: 1px solid #99c;
text-decoration: none;
}
a.externalDFN {
color: inherit;
border-bottom: 1px dotted #ccc;
text-decoration: none;
}
a.bibref {
text-decoration: none;
}
.respec-offending-element:target {
animation: pop 0.25s ease-in-out 0s 1;
}
.respec-offending-element,
a[href].respec-offending-element {
text-decoration: red wavy underline;
}
@supports not (text-decoration: red wavy underline) {
.respec-offending-element:not(pre) {
display: inline-block;
}
.respec-offending-element {
/* Red squiggly line */
background: url(data:image/gif;base64,R0lGODdhBAADAPEAANv///8AAP///wAAACwAAAAABAADAEACBZQjmIAFADs=)
bottom repeat-x;
}
}
#references :target {
background: #eaf3ff;
animation: pop 0.4s ease-in-out 0s 1;
}
cite .bibref {
font-style: normal;
}
code {
color: #c83500;
}
th code {
color: inherit;
}
a[href].orcid {
padding-left: 4px;
padding-right: 4px;
}
a[href].orcid > svg {
margin-bottom: -2px;
}
/* --- TOC --- */
.toc a,
.tof a {
text-decoration: none;
}
a .secno,
a .figno {
color: #000;
}
ul.tof,
ol.tof {
list-style: none outside none;
}
.caption {
margin-top: 0.5em;
font-style: italic;
}
/* --- TABLE --- */
table.simple {
border-spacing: 0;
border-collapse: collapse;
border-bottom: 3px solid #005a9c;
}
.simple th {
background: #005a9c;
color: #fff;
padding: 3px 5px;
text-align: left;
}
.simple th[scope="row"] {
background: inherit;
color: inherit;
border-top: 1px solid #ddd;
}
.simple td {
padding: 3px 10px;
border-top: 1px solid #ddd;
}
.simple tr:nth-child(even) {
background: #f0f6ff;
}
/* --- DL --- */
.section dd > p:first-child {
margin-top: 0;
}
.section dd > p:last-child {
margin-bottom: 0;
}
.section dd {
margin-bottom: 1em;
}
.section dl.attrs dd,
.section dl.eldef dd {
margin-bottom: 0;
}
#issue-summary > ul,
.respec-dfn-list {
column-count: 2;
}
#issue-summary li,
.respec-dfn-list li {
list-style: none;
}
details.respec-tests-details {
margin-left: 1em;
display: inline-block;
vertical-align: top;
}
details.respec-tests-details > * {
padding-right: 2em;
}
details.respec-tests-details[open] {
z-index: 999999;
position: absolute;
border: thin solid #cad3e2;
border-radius: 0.3em;
background-color: white;
padding-bottom: 0.5em;
}
details.respec-tests-details[open] > summary {
border-bottom: thin solid #cad3e2;
padding-left: 1em;
margin-bottom: 1em;
line-height: 2em;
}
details.respec-tests-details > ul {
width: 100%;
margin-top: -0.3em;
}
details.respec-tests-details > li {
padding-left: 1em;
}
a[href].self-link:hover {
opacity: 1;
text-decoration: none;
background-color: transparent;
}
h2,
h3,
h4,
h5,
h6 {
position: relative;
}
aside.example .marker > a.self-link {
color: inherit;
}
h2 > a.self-link,
h3 > a.self-link,
h4 > a.self-link,
h5 > a.self-link,
h6 > a.self-link {
border: none;
color: inherit;
font-size: 83%;
height: 2em;
left: -1.6em;
opacity: 0.5;
position: absolute;
text-align: center;
text-decoration: none;
top: 0;
transition: opacity 0.2s;
width: 2em;
}
h2 > a.self-link::before,
h3 > a.self-link::before,
h4 > a.self-link::before,
h5 > a.self-link::before,
h6 > a.self-link::before {
content: "§";
display: block;
}
@media (max-width: 767px) {
dd {
margin-left: 0;
}
/* Don't position self-link in headings off-screen */
h2 > a.self-link,
h3 > a.self-link,
h4 > a.self-link,
h5 > a.self-link,
h6 > a.self-link {
left: auto;
top: auto;
}
}
@media print {
.removeOnSave {
display: none;
}
}
</style>
<script id="initialUserConfig" type="application/json">{
"specStatus": "unofficial",
"shortName": "app-uri",
"publishDate": "",
"lcEnd": "2014-05-11",
"previousMaturity": "FPWD",
"previousPublishDate": "2013-05-16",
"editors": [
{
"name": "No one"
}
],
"wg": "System Applications Working Group",
"wgURI": "http://www.w3.org/2012/sysapps/",
"wgPublicList": "public-sysapps",
"wgPatentURI": "http://www.w3.org/2004/01/pp-impl/58119/status",
"publishISODate": "2019-10-01T00:00:00.000Z",
"generatedSubtitle": "Unofficial Draft 01 October 2019"
}</script><meta name="description" content="This specification defines the app: URL scheme."><link rel="stylesheet" href="https://www.w3.org/StyleSheets/TR/2016/W3C-UD"></head>
<body class="h-entry informative toc-inline"><div class="head">
<h1 id="title" class="title p-name">The app: URL Scheme</h1>
<h2>
Unofficial Draft
<time class="dt-published" datetime="2019-10-01">01 October 2019</time>
</h2>
<dl>
<dt>Editor:</dt>
<dd class="p-author h-card vcard"><span class="p-name fn">No one</span></dd>
</dl>
<p class="copyright">
This document is licensed under a
<a rel="license" href="https://creativecommons.org/licenses/by/4.0/" class="subfoot">Creative Commons Attribution 4.0 License</a>.
</p>
<hr title="Separator for header">
</div>
<section id="abstract" class="introductory"><h2>Abstract</h2>
<p>
This specification defines the app: URL scheme.
</p>
<p>
The app: URL scheme can be used by packaged applications to obtain
resources that are inside a container. These resources can then be used
with web platform features that accept URLs.
</p>
</section><nav id="toc"><h2 class="introductory" id="table-of-contents">Table of Contents</h2><ol class="toc"><li class="tocline"><a class="tocxref" href="#status-of-this-document"><bdi class="secno">1. </bdi>Status of This Document</a></li></ol></nav>
<section id="status-of-this-document">
<h2 id="x1-status-of-this-document"><bdi class="secno">1. </bdi>Status of This Document</h2>
<p>
<strong>
Work on this document has been discontinued.
</strong>
See <a href="https://github.com/sysapps/app-uri">github repo</a> for historical information.
</p>
</section>
<p role="navigation" id="back-to-top"><a href="#title"><abbr title="Back to Top">↑</abbr></a></p><script src="https://www.w3.org/scripts/TR/2016/fixup.js"></script></body></html>