Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add initial support for app: URL #5

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion Overview.src.html
Original file line number Diff line number Diff line change
Expand Up @@ -621,7 +621,7 @@ <h2>Fetching</h2>
<dl class=switch>
<dt><var title>url</var>'s <span>origin</span> is <var title>origin</var> and the <i title>CORS flag</i> is unset
<dt><var title>url</var>'s <span data-anolis-spec=url title=concept-url-scheme>scheme</span>
is one of "<code title>about</code>", "<code title>blob</code>", and "<code title>data</code>",
is one of "<code title>about</code>", "<code title>blob</code>", "<code title>app</code>", and "<code title>data</code>",
and <var title>request</var>'s <span title=concept-request-redirect-count>redirect count</span> is zero

<dd><p>The result of performing a <span title=concept-basic-fetch>basic fetch</span> using <var title>request</var>.
Expand Down Expand Up @@ -774,6 +774,20 @@ <h3>Basic fetch</h3>
<p class=XXX>It has been argued this should be handled outside of
<span title=concept-fetch>fetching</span>.

<dt>"<code title>app</code>"
<dd>
<p>If <var title>request</var>'s <span title=concept-request-method>method</span> is
`<code title>GET</code>` and <a href="http://sysapps.github.io/app-uri/#obtaining-a-resource">
obtaining a resource</a> from <var title>request</var>'s
<span title=concept-request-url>url</span> and origin does not return
failure, return a <span title=concept-response>response</span> whose
<span title=concept-response-headers>headers</span> consist of a single
<span title=concept-header>header</span> whose
<span title=concept-header-name>name</span> is `<code title>Content-Type</code>` and
<span title=concept-header-value>value</span> is the MIME type and parameters returned
from <a href="http://sysapps.github.io/app-uri/#obtaining-a-resource">obtaining a resource</a>,
and <span title=concept-response-body>body</span> is the data returned from obtaining a resource.
<p>Otherwise, return a <span title=concept-network-error>network error</span>.
<dt>"<code title>data</code>"
<dd>
<p>If <var title>request</var>'s <span title=concept-request-method>method</span> is
Expand Down