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

update fetch guide #34278

Merged
merged 14 commits into from
Jun 28, 2024
Prev Previous commit
Next Next commit
Delete basic concepts guide
  • Loading branch information
wbamberg committed Jun 21, 2024
commit c4415968293274cceca002fd9b520274faeb1aee
2 changes: 2 additions & 0 deletions files/en-us/_redirects.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3585,6 +3585,7 @@
/en-US/docs/Glossary/GZip /en-US/docs/Glossary/gzip_compression
/en-US/docs/Glossary/Global_attribute /en-US/docs/Web/HTML/Global_attributes
/en-US/docs/Glossary/Grid_Rows /en-US/docs/Glossary/Grid_Row
/en-US/docs/Glossary/Guard /en-US/docs/Web/API/Fetch_API/Using_Fetch
/en-US/docs/Glossary/Hash_function /en-US/docs/Glossary/Cryptographic_hash_function
/en-US/docs/Glossary/Header /en-US/docs/Glossary/HTTP_header
/en-US/docs/Glossary/I18N /en-US/docs/Glossary/Internationalization
Expand Down Expand Up @@ -8171,6 +8172,7 @@
/en-US/docs/Web/API/FetchSignal /en-US/docs/Web/API/AbortSignal
/en-US/docs/Web/API/FetchSignal/aborted /en-US/docs/Web/API/AbortSignal/aborted
/en-US/docs/Web/API/FetchSignal/onabort /en-US/docs/Web/API/AbortSignal/abort_event
/en-US/docs/Web/API/Fetch_API/Basic_concepts /en-US/docs/Web/API/Fetch_API/Using_Fetch
/en-US/docs/Web/API/File.lastModifiedDate /en-US/docs/Web/API/File/lastModifiedDate
/en-US/docs/Web/API/File.name /en-US/docs/Web/API/File/name
/en-US/docs/Web/API/File.size /en-US/docs/Web/API/Blob/size
Expand Down
19 changes: 0 additions & 19 deletions files/en-us/_wikihistory.json
Original file line number Diff line number Diff line change
Expand Up @@ -2625,10 +2625,6 @@
"modified": "2020-03-26T14:30:59.270Z",
"contributors": ["mfuji09", "j9t", "teoli", "rachelandrew"]
},
"Glossary/Guard": {
"modified": "2019-01-16T20:19:28.335Z",
"contributors": ["chrisdavidmills", "klez", "Andrew_Pfeiffer", "kscarfone"]
},
"Glossary/Gutters": {
"modified": "2019-03-23T22:16:42.903Z",
"contributors": ["Verger", "teoli", "rachelandrew"]
Expand Down Expand Up @@ -34999,21 +34995,6 @@
"kscarfone"
]
},
"Web/API/Fetch_API/Basic_concepts": {
"modified": "2020-02-18T19:55:22.051Z",
"contributors": [
"jswisher",
"Sheppy",
"sideshowbarker",
"LurN",
"parambirs",
"chrisdavidmills",
"gapple",
"lawrencekgrant",
"gbharatwaj",
"smarvin"
]
},
"Web/API/Fetch_API/Cross-global_fetch_usage": {
"modified": "2020-10-06T03:40:09.140Z",
"contributors": ["ralflang", "mfluehr", "piotrekwitek", "chrisdavidmills"]
Expand Down
9 changes: 0 additions & 9 deletions files/en-us/glossary/guard/index.md

This file was deleted.

69 changes: 0 additions & 69 deletions files/en-us/web/api/fetch_api/basic_concepts/index.md

This file was deleted.

2 changes: 1 addition & 1 deletion files/en-us/web/api/fetch_api/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

You can create a request and response directly using the {{DOMxRef("Request.Request", "Request()")}} and {{DOMxRef("Response.Response", "Response()")}} constructors, but it's uncommon to do this directly. Instead, these are more likely to be created as results of other API actions (for example, {{DOMxRef("FetchEvent.respondWith()")}} from service workers).

Find out more about using the Fetch API features in [Using Fetch](/en-US/docs/Web/API/Fetch_API/Using_Fetch), and study concepts in [Fetch basic concepts](/en-US/docs/Web/API/Fetch_API/Basic_concepts).
Find out more about using the Fetch API features in [Using Fetch](/en-US/docs/Web/API/Fetch_API/Using_Fetch).

## Fetch Interfaces

Expand Down Expand Up @@ -49,4 +49,4 @@
- [HTTP access control (CORS)](/en-US/docs/Web/HTTP/CORS)
- [HTTP](/en-US/docs/Web/HTTP)
- [Fetch polyfill](https://github.com/github/fetch)
- [Fetch basic concepts](/en-US/docs/Web/API/Fetch_API/Basic_concepts)

Check failure on line 52 in files/en-us/web/api/fetch_api/index.md

View workflow job for this annotation

GitHub Actions / check_url_issues

Slug 'web/api/fetch_api/basic_concepts' has been deleted
1 change: 0 additions & 1 deletion files/jsondata/GroupData.json
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,6 @@
"overview": ["Fetch API"],
"guides": [
"/docs/Web/API/Fetch_API/Using_Fetch",
"/docs/Web/API/Fetch_API/Basic_concepts",
"/docs/Web/API/Fetch_API/Cross-global_fetch_usage"
],
"interfaces": ["Headers", "Request", "Response"],
Expand Down
Loading