Skip to content

Commit 8bd9f55

Browse files
committed
Write a short introduction. Fixes #11.
1 parent ab20aad commit 8bd9f55

File tree

2 files changed

+43
-0
lines changed

2 files changed

+43
-0
lines changed

Overview.html

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ <h2 class="no-num no-toc" id="table-of-contents">Table of Contents</h2>
4040
<!--begin-toc-->
4141
<ul class="toc">
4242
<li><a class="no-num short" href="#goals">Goals</a></li>
43+
<li><a class="no-num short" href="#preface">Preface</a></li>
4344
<li><a class="short" href="#conformance"><span class="secno">1 </span>Conformance</a></li>
4445
<li><a href="#infrastructure"><span class="secno">2 </span>Infrastructure</a>
4546
<ul class="toc">
@@ -120,6 +121,26 @@ <h2 class="no-num short" id="goals">Goals</h2>
120121

121122

122123

124+
<h2 class="no-num short" id="preface">Preface</h2>
125+
126+
<p>At a high level, fetching a resource is a fairly simple operation. A request goes in, a
127+
response comes out. <!--You can't explain that! -->The details of that operation are
128+
however quite involved and used to not be written down carefully and differ from one API
129+
to the next.
130+
131+
<p>Numerous APIs provide the ability to fetch a resource, e.g. HTML's <code>img</code> and
132+
<code>script</code> element, CSS' <code>cursor</code> and <code>list-style-image</code>,
133+
the <code>navigator.sendBeacon()</code> and <code>self.importScripts()</code> JavaScript
134+
APIs. The Fetch Standard provides a unified architecture for these features so they are
135+
all consistent when it comes to various aspects of fetching, such as redirects and the
136+
CORS protocol.
137+
138+
<p>The Fetch Standard also defines the <code title="dom-global-fetch"><a href="#dom-global-fetch">fetch()</a></code>
139+
JavaScript API, which exposes most of the networking functionality at a fairly low level
140+
of abstraction.
141+
142+
143+
123144
<h2 class="short" id="conformance"><span class="secno">1 </span>Conformance</h2>
124145

125146
<p>All diagrams, examples, and notes in this specification are
@@ -4065,6 +4086,7 @@ <h2 class="no-num" id="acknowledgments">Acknowledgments</h2>
40654086
Jesse M. Heines,
40664087
Jonas Sicking,
40674088
Jonathan Kingston,
4089+
Jörn Zaefferer,
40684090
Julian Reschke,
40694091
송정기 (Jungkee Song),
40704092
Jussi Kalliokoski,

Overview.src.html

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,26 @@ <h2 class="no-num short">Goals</h2>
6868

6969

7070

71+
<h2 class="no-num short">Preface</h2>
72+
73+
<p>At a high level, fetching a resource is a fairly simple operation. A request goes in, a
74+
response comes out. <!--You can't explain that! -->The details of that operation are
75+
however quite involved and used to not be written down carefully and differ from one API
76+
to the next.
77+
78+
<p>Numerous APIs provide the ability to fetch a resource, e.g. HTML's <code>img</code> and
79+
<code>script</code> element, CSS' <code>cursor</code> and <code>list-style-image</code>,
80+
the <code>navigator.sendBeacon()</code> and <code>self.importScripts()</code> JavaScript
81+
APIs. The Fetch Standard provides a unified architecture for these features so they are
82+
all consistent when it comes to various aspects of fetching, such as redirects and the
83+
CORS protocol.
84+
85+
<p>The Fetch Standard also defines the <code title=dom-global-fetch>fetch()</code>
86+
JavaScript API, which exposes most of the networking functionality at a fairly low level
87+
of abstraction.
88+
89+
90+
7191
<h2 class="short">Conformance</h2>
7292

7393
<p>All diagrams, examples, and notes in this specification are
@@ -3949,6 +3969,7 @@ <h2 class=no-num>Acknowledgments</h2>
39493969
Jesse M. Heines,
39503970
Jonas Sicking,
39513971
Jonathan Kingston,
3972+
Jörn Zaefferer,
39523973
Julian Reschke,
39533974
송정기 (Jungkee Song),
39543975
Jussi Kalliokoski,

0 commit comments

Comments
 (0)