From 25debec66a35fc20db84bf5aca690489b5bec306 Mon Sep 17 00:00:00 2001 From: julieng Date: Sun, 11 Apr 2021 16:03:26 +0200 Subject: Archiving HTML - Using the Application cache --- .../html/using_the_application_cache/index.html | 375 --------------------- 1 file changed, 375 deletions(-) delete mode 100644 files/de/web/html/using_the_application_cache/index.html (limited to 'files/de') diff --git a/files/de/web/html/using_the_application_cache/index.html b/files/de/web/html/using_the_application_cache/index.html deleted file mode 100644 index 1afea42d7d..0000000000 --- a/files/de/web/html/using_the_application_cache/index.html +++ /dev/null @@ -1,375 +0,0 @@ ---- -title: Benutzung des Application Cache -slug: Web/HTML/Using_the_application_cache -translation_of: Web/HTML/Using_the_application_cache ---- -

Einführung

- -

HTML5 bietet einen Anwendungscaching-Mechanismus, welcher webbasierte Anwendungen offline nutzbar macht. Entwickler können das Application Cache (AppCache) - Interface nutzen, um Ressourcen, die der Browser cachen soll für die Offline-Nutzung verfügbar zu machen. Gecachte Anwendungen laden und arbeiten korrekt, auch wenn der User den "Neu laden" - Button des Browsers klickt.

- -

Die Nutzung des Application Cache ermöglicht einer Anwendung folgende Vorteile: 

- - - -

Wie der AppCache funktioniert

- -

Aktivieren des AppCaches

- -

Zum Aktivieren des ApplicationCaches für eine App muss das {{htmlattrxref("manifest", "html")}}-Attribute in das {{HTMLElement("html")}}-Element auf allen Seiten der App eingebunden werden, wie folgendes Beispiel zeigt:

- -
-
<html manifest="example.appcache">
-  ...
-</html>
-
-
- -

Das Manifest-Attribut verweist auf eine cache manifest-Datei, die als Textdatei alle Ressourcen (Dateien) auflistet, die der Browser innerhalb der App cachen soll.

- -

Sie sollten das manifest-Attribute auf jeder Seite Ihrer App einbinden, die zwischengespeichert werden soll. Der Browser speichert keine Seiten die nicht das manifest-Attribute besitzen, außer manche Seiten sind explizit in der manifest-Datei beschrieben. Sie müssen nicht alle Dateien einzeln in die manifest-Datei schreiben die gespeichert werden sollen, der Browser fügt jede Seite indirekt hinzu die der Benutzer besucht und die, die das manifest-Attribute enthalten.

- -

Manche Browser (z.B. Firefox) zeigen eine Benachrichtigung an, dass ein entsprechender App-Cache verwendet wird, wenn ein Benutzer die App das erste Mal besucht. Die Benachrichtigungsleiste zeigt dann in etwa folgendes an:

- -

Die Webseite (www.example.com) möchte gerne Daten zur Offline-Benutzung abspeichern. [Erlauben] [Nie für diese Seite] [Nicht jetzt]

- -

The term "offline(-enabled) applications" sometimes refers specifically to applications that the user has allowed to use offline capabilities.

- -

Loading documents

- -

The use of an application cache modifies the normal process of loading a document:

- - - -

The process for loading documents and updating the application cache is specified in greater detail below:

- -
    -
  1. When the browser visits a document that includes the manifest attribute, if no application cache exists, the browser loads the document and then fetches all the entries listed in the manifest file, creating the first version of the application cache.
  2. -
  3. Subsequent visits to that document cause the browser to load the document and other assets specified in the manifest file from the application cache (not from the server). In addition, the browser also sends a checking event to the window.applicationCache object, and fetches the manifest file, following the appropriate HTTP caching rules.
  4. -
  5. If the currently-cached copy of the manifest is up-to-date, the browser sends a noupdate event to the applicationCache object, and the update process is complete. Note that if you change any cached resources on the server, you must also change the manifest file itself, so that the browser knows it needs to fetch all the resources again.
  6. -
  7. If the manifest file has changed, all the files listed in the manifest—as well as those added to the cache by calling applicationCache.add()—are fetched into a temporary cache, following the appropriate HTTP caching rules. For each file fetched into this temporary cache, the browser sends a progress event to the applicationCache object. If any errors occur, the browser sends an error event, and the update halts.
  8. -
  9. Once all the files have been successfully retrieved, they are moved into the real offline cache automatically, and a cached event is sent to the applicationCache object. Since the document has already been loaded into the browser from the cache, the updated document will not be rendered until the document is reloaded (either manually or programatically).
  10. -
- -

Storage location and clearing the offline cache

- -

In Chrome you can clear the offline cache by selecting "Clear browsing data..." in the preferences or by visiting chrome://appcache-internals/. Safari has a similar "Empty cache" setting in its preferences but a browser restart may also be required.

- -

In Firefox, the offline cache data is stored separately from the Firefox profile—next to the regular disk cache:

- - - -

In Firefox the current status of the offline cache can be inspected on the about:cache page (under the "Offline cache device" heading). The offline cache can be cleared for each site separately using the "Remove..." button in Tools -> Options -> Advanced -> Network -> Offline data.

- -

Prior to Firefox 11, neither Tools -> Clear Recent History nor Tools -> Options -> Advanced -> Network -> Offline data -> Clear Now cleared the offline cache. This has been fixed.

- -

See also clearing the DOM Storage data.

- -

Application caches can also become obsolete. If an application's manifest file is removed from the server, the browser removes all application caches that use that manifest, and sends an "obsolete" event to the applicationCache object. This sets the application cache's state to OBSOLETE.

- -

The cache manifest file

- -

Referencing a cache manifest file

- -

The manifest attribute in a web application can specify either the relative path of a cache manifest file or an absolute URL. (Absolute URLs must be from the same origin as the application). A cache manifest file can have any file extension, but it must be served with the MIME type text/cache-manifest.

- -
Note: On Apache servers, the MIME type for manifest (.appcache) files can be set by adding AddType text/cache-manifest .appcache to a .htaccess file within either the root directory, or the same directory as the application.
- -

Entries in a cache manifest file

- -

The cache manifest file is a simple text file that lists the resources the browser should cache for offline access. Resources are identified by URI. Entries listed in the cache manifest must have the same scheme, host, and port as the manifest.

- -

Example 1: a simple cache manifest file

- -

The following is a simple cache manifest file, example.appcache, for an imaginary web site at www.example.com.

- -
CACHE MANIFEST
-# v1 - 2011-08-13
-# This is a comment.
-http://www.example.com/index.html
-http://www.example.com/header.png
-http://www.example.com/blah/blah
-
- -

A cache manifest file can include three sections (CACHE, NETWORK, and FALLBACK, discussed below). In the example above, there is no section header, so all data lines are assumed to be in the explicit (CACHE) section, meaning that the browser should cache all the listed resources in the application cache. Resources can be specified using either absolute or relative URLs (e.g., index.html).

- -

The "v1" comment in the example above is there for a good reason. Browsers only update an application cache when the manifest file changes, byte for byte. If you change a cached resource (for example, you update the header.png image with new content), you must also change the content of the manifest file in order to let browsers know that they need to refresh the cache. You can make any change you want to the manifest file, but revising a version number is the recommended best practice.

- -
Important: Do not specify the manifest itself in the cache manifest file, otherwise it will be nearly impossible to inform the browser a new manifest is available.
- -

Sections in a cache manifest file: CACHE, NETWORK, and FALLBACK

- -

A manifest can have three distinct sections: CACHE, NETWORK, and FALLBACK.

- -
-
CACHE:
-
This is the default section for entries in a cache manifest file. Files listed under the CACHE: section header (or immediately after the CACHE MANIFEST line) are explicitly cached after they're downloaded for the first time.
-
NETWORK:
-
Files listed under the NETWORK: section header in the cache manifest file are white-listed resources that require a connection to the server. All requests to such resources bypass the cache, even if the user is offline. Wildcards may be used.
-
FALLBACK:
-
The FALLBACK: section specifies fallback pages the browser should use if a resource is inaccessible. Each entry in this section lists two URIs—the first is the resource, the second is the fallback. Both URIs must be relative and from the same origin as the manifest file. Wildcards may be used.
-
- -

The CACHE, NETWORK, and FALLBACK sections can be listed in any order in a cache manifest file, and each section can appear more than once in a single manifest.

- -

Example 2: a more complete cache manifest file

- -

The following is a more complete cache manifest file for the imaginary web site at www.example.com:

- -
CACHE MANIFEST
-# v1 2011-08-14
-# This is another comment
-index.html
-cache.html
-style.css
-image1.png
-
-# Use from network if available
-NETWORK:
-network.html
-
-# Fallback content
-FALLBACK:
-/ fallback.html
-
- -

This example uses NETWORK and FALLBACK sections to specify that the network.html page must always be retrieved from the network, and that the fallback.html page should be served as a fallback resource (e.g., in case a connection to the server cannot be established).

- -

Structure of a cache manifest file

- -

Cache manifest files must be served with the text/cache-manifest MIME type. All resources served using this MIME type must follow the syntax for an application cache manifest, as defined in this section.

- -

Cache manifests are UTF-8 format text files, and may optionally include a BOM character. Newlines may be represented by line feed (U+000A), carriage return (U+000D), or carriage return and line feed both.

- -

The first line of the cache manifest must consist of the string CACHE MANIFEST (with a single U+0020 space between the two words), followed by zero or more space or tab characters. Any other text on the line is ignored.

- -

The remainder of the cache manifest must be comprised of zero or more of the following lines:

- -
-
Blank line
-
You may use blank lines comprised of zero or more space and tab characters.
-
Comment
-
Comments consist of zero or more tabs or spaces followed by a single # character, followed by zero or more characters of comment text. Comments may only be used on their own lines, and cannot be appended to other lines. This means that you cannot specify fragment identifiers.
-
Section header
-
Section headers specify which section of the cache manifest is being manipulated. There are three possible section headers:
-
- -
- - - - - - - - - - - - - - - - - - - -
Section headerDescription
CACHE:Switches to the explicit section of the cache manifest (this is the default section).
NETWORK:Switches to the online whitelist section of the cache manifest.
FALLBACK:Switches to the fallback section of the cache manifest.
-
- -
-
The section header line may include whitespaces, but must include the colon (:) in the section name.
-
Section data
-
The format for lines of data varies from section to section. In the explicit (CACHE:) section, each line is a valid URI or IRI reference to a resource to cache (no wildcard characters are allowed in this sections). Whitespace is allowed before and after the URI or IRI on each line. In the Fallback section each line is a valid URI or IRI reference to a resource, followed by a fallback resource that is to be served up when a connection with the server cannot be made. In the network section, each line is a valid URI or IRI reference to a resource to fetch from the network (the wildcard character * is allowed in this section). -
Note: Relative URIs are relative to the cache manifest's URI, not to the URI of the document referencing the manifest.
-
-
- -

Cache manifest files can switch from section to section at will (each section header can be used more than once), and sections are allowed to be empty.

- -

Resources in an application cache

- -

An application cache always includes at least one resource, identified by URI. All resources fit into one of the following categories:

- -
-
Master entries
-
These are resources added to the cache because a browsing context visited by the user included a document that indicated that it was in this cache using its manifest attribute.
-
Explicit entries
-
These are resources explicitly listed in the application's cache manifest file.
-
Network entries
-
These are resources listed in the application's cache manifest files as network entries.
-
Fallback entries
-
These are resources listed in the application's cache manifest files as fallback entries.
-
- -
Note: Resources can be tagged with multiple categories, and can therefore be categorized as multiple entries. For example, an entry can be both an explicit entry and a fallback entry.
- -

Resource categories are described in greater detail below.

- -

Master entries

- -

Master entries are any HTML files that include a {{htmlattrxref("manifest","html")}} attribute in their {{HTMLElement("html")}} element. For example, let's say we have the HTML file http://www.example.com/entry.html, which looks like this:

- -
<html manifest="example.appcache">
-  <h1>Application Cache Example</h1>
-</html>
-
- -

If entry.html is not listed in the example.appcache cache manifest file, visiting the entry.html page causes entry.html to be added to the application cache as a master entry.

- -

Explicit entries

- -

Explicit entries are resources that are explicitly listed in the CACHE section of a cache manifest file.

- -

Network entries

- -

The NETWORK section of a cache manifest file specifies resources for which a web application requires online access. Network entries in an application cache are essentially an "online whitelist"—URIs specified in the NETWORK section are loaded from the server instead of the cache. This lets the browser's security model protect the user from potential security breaches by limiting access to approved resources.

- -

As an example, you can use network entries to load and execute scripts and other code from the server instead of the cache:

- -
CACHE MANIFEST
-NETWORK:
-/api
-
- -

The cache manifest section listed above ensures that requests to load resources contained in the http://www.example.com/api/ subtree always go to the network without attempting to access the cache.

- -
Note: Simply omitting master entries (files that have the manifest attribute set in the html element) from the manifest file would not have the same result, because master entries will be added—and subsequently served from—the application cache.
- -

Fallback entries

- -

Fallback entries are used when an attempt to load a resource fails. For example, let's say the cache manifest file http://www.example.com/example.appcache includes the following content:

- -
CACHE MANIFEST
-FALLBACK:
-example/bar/ example.html
-
- -

Any request to http://www.example.com/example/bar/ or any of its subdirectories and their content cause the browser to issue a network request to attempt to load the requested resource. If the attempt fails, due to either a network failure or a server error of some kind, the browser loads the file example.html instead.

- -

Cache states

- -

Each application cache has a state, which indicates the current condition of the cache. Caches that share the same manifest URI share the same cache state, which can be one of the following:

- -
-
UNCACHED
-
A special value that indicates that an application cache object is not fully initialized.
-
IDLE
-
The application cache is not currently in the process of being updated.
-
CHECKING
-
The manifest is being fetched and checked for updates.
-
DOWNLOADING
-
Resources are being downloaded to be added to the cache, due to a changed resource manifest.
-
UPDATEREADY
-
There is a new version of the application cache available. There is a corresponding updateready event, which is fired instead of the cached event when a new update has been downloaded but not yet activated using the swapCache() method.
-
OBSOLETE
-
The application cache group is now obsolete.
-
- -

Testing for updates to the cache manifest

- -

You can programmatically test to see if an application has an updated cache manifest file, using JavaScript. Since a cache manifest file may have been updated before a script attaches event listeners to test for updates, scripts should always test window.applicationCache.status.

- -
function onUpdateReady() {
-  alert('found new version!');
-}
-window.applicationCache.addEventListener('updateready', onUpdateReady);
-if(window.applicationCache.status === window.applicationCache.UPDATEREADY) {
-  onUpdateReady();
-}
- -

To manually start testing for a new manifest file, you can use window.applicationCache.update().

- -

Gotchas

- - - -

Browser compatibility

- -
{{CompatibilityTable}}
- -
- - - - - - - - - - - - - - - - - - - -
FeatureChromeFirefox (Gecko)Internet ExplorerOperaSafari
Basic support4.03.510.010.64.0
-
- -
- - - - - - - - - - - - - - - - - - - -
FeatureAndroidFirefox Mobile (Gecko)IE MobileOpera MobileSafari Mobile
Basic support2.1{{CompatVersionUnknown}}{{CompatNo}}11.03.2
-
- -

Note: Versions of Firefox prior to 3.5 ignore the NETWORK and FALLBACK sections of the cache manifest file.

- -

See also

- - - -
{{HTML5ArticleTOC}}
-- cgit v1.2.3-54-g00ecf From c0c29873129622b08cce7c367f855698765f6687 Mon Sep 17 00:00:00 2001 From: julieng Date: Mon, 12 Apr 2021 07:41:48 +0200 Subject: fixing redirects with yarn content --- files/de/_redirects.txt | 6 +++++- files/es/_redirects.txt | 7 +++++-- files/fr/_redirects.txt | 3 --- files/it/_redirects.txt | 7 +++++-- files/ja/_redirects.txt | 8 +++++--- files/ko/_redirects.txt | 6 +++++- files/pt-br/_redirects.txt | 1 - files/pt-pt/_redirects.txt | 6 +++++- files/ru/_redirects.txt | 2 -- files/zh-cn/_redirects.txt | 1 - files/zh-tw/_redirects.txt | 7 +++++-- 11 files changed, 35 insertions(+), 19 deletions(-) (limited to 'files/de') diff --git a/files/de/_redirects.txt b/files/de/_redirects.txt index edfd74c3af..09b93b3899 100644 --- a/files/de/_redirects.txt +++ b/files/de/_redirects.txt @@ -1,3 +1,8 @@ +# DO NOT EDIT THIS FILE MANUALLY. +# Use the CLI instead: +# +# yarn content add-redirect +# # FROM-URL TO-URL /de/docs/AJAX /de/docs/Web/Guide/AJAX /de/docs/Apps/Progressiv /de/docs/Web/Progressive_web_apps @@ -297,7 +302,6 @@ /de/docs/HTML/HTML5/HTML5_element_list /de/docs/conflicting/Web/HTML/Element /de/docs/HTML/HTML5/liste_der_HTML5_elemente /de/docs/conflicting/Web/HTML/Element /de/docs/HTML/Inline_elemente /de/docs/Web/HTML/Inline_elements -/de/docs/HTML/Using_the_application_cache /de/docs/Web/HTML/Using_the_application_cache /de/docs/HTML:Element /de/docs/Web/HTML/Element /de/docs/HTML:Element:b /de/docs/Web/HTML/Element/b /de/docs/HTML:Element:h1 /de/docs/Web/HTML/Element/Heading_Elements diff --git a/files/es/_redirects.txt b/files/es/_redirects.txt index 5edb9ac27f..00ecdbc826 100644 --- a/files/es/_redirects.txt +++ b/files/es/_redirects.txt @@ -1,3 +1,8 @@ +# DO NOT EDIT THIS FILE MANUALLY. +# Use the CLI instead: +# +# yarn content add-redirect +# # FROM-URL TO-URL /es/docs/AJAX /es/docs/Web/Guide/AJAX /es/docs/AJAX/Comunidad /es/docs/Web/Guide/AJAX/Community @@ -1438,7 +1443,6 @@ /es/docs/Principios_básicos_de_los_servicios_Web /es/docs/orphaned/Principios_básicos_de_los_servicios_Web /es/docs/Quirks_Mode_and_Standards_Mode /es/docs/Web/HTML/Quirks_Mode_and_Standards_Mode /es/docs/Recursos_en_modo_desconectado_en_Firefox /es/docs/orphaned/Recursos_en_modo_desconectado_en_Firefox -/es/docs/Recursos_offline_en_firefox /es/docs/Web/HTML/Using_the_application_cache /es/docs/Referencia_CSS /es/docs/Web/CSS/Reference /es/docs/Referencia_CSS/Extensiones_CSS_Mozilla /es/docs/Web/CSS/Mozilla_Extensions /es/docs/Referencia_CSS/Extensiones_Mozilla /es/docs/Web/CSS/Mozilla_Extensions @@ -2252,7 +2256,6 @@ /es/docs/Web/HTML/La_importancia_de_comentar_correctamente /es/docs/conflicting/Learn/HTML/Introduction_to_HTML/Getting_started /es/docs/Web/HTML/Microdatos /es/docs/Web/HTML/Microdata /es/docs/Web/HTML/Optimizing_your_pages_for_speculative_parsing /es/docs/Glossary/speculative_parsing -/es/docs/Web/HTML/Recursos_offline_en_firefox /es/docs/Web/HTML/Using_the_application_cache /es/docs/Web/HTML/Referencia /es/docs/Web/HTML/Reference /es/docs/Web/HTML/Tipos_de_enlaces /es/docs/Web/HTML/Link_types /es/docs/Web/HTML/Transision_adaptativa_DASH /es/docs/Web/Media/DASH_Adaptive_Streaming_for_HTML_5_Video diff --git a/files/fr/_redirects.txt b/files/fr/_redirects.txt index 7ec0778167..f956671d39 100644 --- a/files/fr/_redirects.txt +++ b/files/fr/_redirects.txt @@ -3464,7 +3464,6 @@ /fr/docs/Précis_CSS_2/Tout_en_un /fr/docs/Web/CSS/Reference /fr/docs/Précis_CSS_2:Tout_en_un /fr/docs/Web/CSS/Reference /fr/docs/Qualité /fr/docs/QA -/fr/docs/Ressources_hors_ligne_dans_Firefox /fr/docs/Web/HTML/Using_the_application_cache /fr/docs/Référence_DOM_Gecko /fr/docs/conflicting/Glossary/DOM /fr/docs/Référence_de_JavaScript_1.5_Core /fr/docs/Web/JavaScript/Reference /fr/docs/Référence_de_JavaScript_1.5_Core/A_propos_de_cette_reference /fr/docs/Web/JavaScript/Reference/About @@ -3590,7 +3589,6 @@ /fr/docs/Utilisation_du_DOM_Level_1_Core_du_W3C/Exemple /fr/docs/Web/API/Document_object_model/Using_the_W3C_DOM_Level_1_Core/Example /fr/docs/Utilisation_du_cache_dans_Firefox_1.5 /fr/docs/Mozilla/Firefox/Releases/1.5/Using_Firefox_1.5_caching /fr/docs/Utilisation_du_cache_de_Firefox_1.5 /fr/docs/Mozilla/Firefox/Releases/1.5/Using_Firefox_1.5_caching -/fr/docs/Utiliser_Application_Cache /fr/docs/Web/HTML/Using_the_application_cache /fr/docs/Web/API/API_HTML_Drag_and_Drop /fr/docs/Web/API/HTML_Drag_and_Drop_API /fr/docs/Web/API/API_HTML_Drag_and_Drop/Opérations_de_glissement /fr/docs/Web/API/HTML_Drag_and_Drop_API/Drag_operations /fr/docs/Web/API/API_IndexedDB /fr/docs/Web/API/IndexedDB_API @@ -4546,7 +4544,6 @@ /fr/docs/Web/HTML/Sections_and_Outlines_of_an_HTML5_document /fr/docs/Web/Guide/HTML/Using_HTML_sections_and_outlines /fr/docs/Web/HTML/Types_de_lien /fr/docs/Web/HTML/Link_types /fr/docs/Web/HTML/Utilisation_d'audio_et_video_en_HTML5 /fr/docs/conflicting/Learn/HTML/Multimedia_and_embedding/Video_and_audio_content_040b1c36f4218ba488ffb0284dfe52bf -/fr/docs/Web/HTML/Utiliser_Application_Cache /fr/docs/Web/HTML/Using_the_application_cache /fr/docs/Web/HTML/Utiliser_DASH_avec_les_vidéos_en_HTML /fr/docs/Web/Media/DASH_Adaptive_Streaming_for_HTML_5_Video /fr/docs/Web/HTML/formats_media_support /fr/docs/Web/Media/Formats /fr/docs/Web/HTML/Éléments_en_bloc /fr/docs/Web/HTML/Block-level_elements diff --git a/files/it/_redirects.txt b/files/it/_redirects.txt index 8845650b84..fb151fd05a 100644 --- a/files/it/_redirects.txt +++ b/files/it/_redirects.txt @@ -1,3 +1,8 @@ +# DO NOT EDIT THIS FILE MANUALLY. +# Use the CLI instead: +# +# yarn content add-redirect +# # FROM-URL TO-URL /it/docs/AJAX /it/docs/Web/Guide/AJAX /it/docs/AJAX/Iniziare /it/docs/Web/Guide/AJAX/Getting_Started @@ -388,7 +393,6 @@ /it/docs/HTML/HTML5/Introduction_to_HTML5 /it/docs/Web/Guide/HTML/HTML5/Introduction_to_HTML5 /it/docs/HTML/Introduzione /it/docs/Learn/HTML/Introduction_to_HTML /it/docs/HTML/Sections_and_Outlines_of_an_HTML5_document /it/docs/Web/Guide/HTML/Using_HTML_sections_and_outlines -/it/docs/HTML/utilizzare_application_cache /it/docs/Web/HTML/Using_the_application_cache /it/docs/Il_DOM_e_JavaScript /it/docs/Web/JavaScript/JavaScript_technologies_overview /it/docs/Importare_applicazioni_da_Internet_Explorer_a_Mozilla /it/docs/Migrare_applicazioni_da_Internet_Explorer_a_Mozilla /it/docs/Indentazione_corretta_delle_liste /it/docs/Web/CSS/CSS_Lists_and_Counters/Consistent_list_indentation @@ -559,7 +563,6 @@ /it/docs/Web/HTML/HTML5/Introduction_to_HTML5 /it/docs/Web/Guide/HTML/HTML5/Introduction_to_HTML5 /it/docs/Web/HTML/Riferimento /it/docs/Web/HTML/Reference /it/docs/Web/HTML/Sections_and_Outlines_of_an_HTML5_document /it/docs/Web/Guide/HTML/Using_HTML_sections_and_outlines -/it/docs/Web/HTML/utilizzare_application_cache /it/docs/Web/HTML/Using_the_application_cache /it/docs/Web/HTTP/Basi_HTTP /it/docs/Web/HTTP/Basics_of_HTTP /it/docs/Web/HTTP/Compressione /it/docs/Web/HTTP/Compression /it/docs/Web/HTTP/Panoramica /it/docs/Web/HTTP/Overview diff --git a/files/ja/_redirects.txt b/files/ja/_redirects.txt index 8e4caba570..8e454ee1ea 100644 --- a/files/ja/_redirects.txt +++ b/files/ja/_redirects.txt @@ -1,3 +1,8 @@ +# DO NOT EDIT THIS FILE MANUALLY. +# Use the CLI instead: +# +# yarn content add-redirect +# # FROM-URL TO-URL /ja/docs/AJAX /ja/docs/Web/Guide/AJAX /ja/docs/AJAX/Community /ja/docs/Web/Guide/AJAX/Community @@ -2578,7 +2583,6 @@ /ja/docs/HTML/Supported_media_formats /ja/docs/Web/Media/Formats /ja/docs/HTML/Tips_for_authoring_fast-loading_HTML_pages /ja/docs/conflicting/Learn/HTML/Howto/Author_fast-loading_HTML_pages /ja/docs/HTML/Using_HTML5_audio_and_video /ja/docs/Learn/HTML/Multimedia_and_embedding/Video_and_audio_content -/ja/docs/HTML/Using_the_application_cache /ja/docs/Web/HTML/Using_the_application_cache /ja/docs/HTML/属性 /ja/docs/Web/HTML/Attributes /ja/docs/HTML:Block-level_elements /ja/docs/Web/HTML/Block-level_elements /ja/docs/HTML:Canvas /ja/docs/Web/API/Canvas_API @@ -3439,7 +3443,6 @@ /ja/docs/Notification_object/tag /ja/docs/Web/API/Notification/tag /ja/docs/Notification_object/title /ja/docs/Web/API/Notification/title /ja/docs/NsIDOMHTMLMediaElement /ja/docs/orphaned/NsIDOMHTMLMediaElement -/ja/docs/Offline_resources_in_Firefox /ja/docs/Web/HTML/Using_the_application_cache /ja/docs/Offline_resources_in_Firefox/Using_audio_and_video_in_Firefox /ja/docs/Learn/HTML/Multimedia_and_embedding/Video_and_audio_content /ja/docs/Online_and_offline_events /ja/docs/Web/API/NavigatorOnLine/Online_and_offline_events /ja/docs/Other_JavaScript_tools /ja/docs/Tools @@ -3643,7 +3646,6 @@ /ja/docs/Updating_extensions_for_Firefox_3.1 /ja/docs/Mozilla/Firefox/Releases/3.5/Updating_extensions /ja/docs/Updating_web_applications_for_Firefox_3 /ja/docs/Mozilla/Firefox/Releases/3/Updating_web_applications /ja/docs/User_Agent_Strings_Reference /ja/docs/conflicting/Web/HTTP/Headers/User-Agent/Firefox -/ja/docs/Using_Application_Cache /ja/docs/Web/HTML/Using_the_application_cache /ja/docs/Using_Breakpoints_in_Venkman-redirect-1 /ja/docs/Using_Breakpoints_in_Venkman /ja/docs/Using_Firefox_1.5_caching /ja/docs/Mozilla/Firefox/Releases/1.5/Using_Firefox_1.5_caching /ja/docs/Using_HTML5_audio_and_video /ja/docs/Learn/HTML/Multimedia_and_embedding/Video_and_audio_content diff --git a/files/ko/_redirects.txt b/files/ko/_redirects.txt index 92b8107451..c3d8339b2d 100644 --- a/files/ko/_redirects.txt +++ b/files/ko/_redirects.txt @@ -1,3 +1,8 @@ +# DO NOT EDIT THIS FILE MANUALLY. +# Use the CLI instead: +# +# yarn content add-redirect +# # FROM-URL TO-URL /ko/docs/AJAX /ko/docs/Web/Guide/AJAX /ko/docs/AJAX/Getting_Started /ko/docs/Web/Guide/AJAX/Getting_Started @@ -325,7 +330,6 @@ /ko/docs/HTML/HTML에서_폼 /ko/docs/Learn/Forms /ko/docs/HTML/Inline_elements /ko/docs/Web/HTML/Inline_elements /ko/docs/HTML/Introduction /ko/docs/Learn/HTML/Introduction_to_HTML -/ko/docs/HTML/Using_the_application_cache /ko/docs/Web/HTML/Using_the_application_cache /ko/docs/HTML:Canvas /ko/docs/Web/API/Canvas_API /ko/docs/HTML:Element /ko/docs/Web/HTML/Element /ko/docs/HTML:Element:a /ko/docs/Web/HTML/Element/a diff --git a/files/pt-br/_redirects.txt b/files/pt-br/_redirects.txt index b97490c78e..43c76308bd 100644 --- a/files/pt-br/_redirects.txt +++ b/files/pt-br/_redirects.txt @@ -346,7 +346,6 @@ /pt-BR/docs/HTML/Introducao /pt-BR/docs/Learn/HTML/Introduction_to_HTML /pt-BR/docs/HTML/Introduction /pt-BR/docs/Learn/HTML/Introduction_to_HTML /pt-BR/docs/HTML/Optimizing_Your_Pages_for_Speculative_Parsing /pt-BR/docs/Glossary/speculative_parsing -/pt-BR/docs/HTML/Using_the_application_cache /pt-BR/docs/Web/HTML/Using_the_application_cache /pt-BR/docs/Hello_World_Rust /pt-BR/docs/orphaned/Hello_World_Rust /pt-BR/docs/IndexedDB /pt-BR/docs/Web/API/IndexedDB_API /pt-BR/docs/IndexedDB/Basic_Concepts_Behind_IndexedDB /pt-BR/docs/Web/API/IndexedDB_API/Basic_Concepts_Behind_IndexedDB diff --git a/files/pt-pt/_redirects.txt b/files/pt-pt/_redirects.txt index 5f775f9c9c..5ae20c7836 100644 --- a/files/pt-pt/_redirects.txt +++ b/files/pt-pt/_redirects.txt @@ -1,3 +1,8 @@ +# DO NOT EDIT THIS FILE MANUALLY. +# Use the CLI instead: +# +# yarn content add-redirect +# # FROM-URL TO-URL /pt-PT/docs/AJAX /pt-PT/docs/Web/Guide/AJAX /pt-PT/docs/AJAX/Como_começar /pt-PT/docs/Web/Guide/AJAX/Getting_Started @@ -954,7 +959,6 @@ /pt-PT/docs/Web/HTML/HTML5/Parser_HTML5 /pt-PT/docs/Web/Guide/HTML/HTML5/HTML5_Parser /pt-PT/docs/Web/HTML/Referencia /pt-PT/docs/Web/HTML/Reference /pt-PT/docs/Web/HTML/Tipos_de_hiperligacao /pt-PT/docs/Web/HTML/Link_types -/pt-PT/docs/Web/HTML/Utilizar_a_cache_de_aplicacao /pt-PT/docs/Web/HTML/Using_the_application_cache /pt-PT/docs/Web/HTML_Linguagem_de_marcacao_de_hipertexto /pt-PT/docs/Web/HTML /pt-PT/docs/Web/JavaScript/Estruturas_de_dados /pt-PT/docs/Web/JavaScript/Data_structures /pt-PT/docs/Web/JavaScript/Gestao_Memoria /pt-PT/docs/Web/JavaScript/Memory_Management diff --git a/files/ru/_redirects.txt b/files/ru/_redirects.txt index 945dd2fd9d..ca9db1d561 100644 --- a/files/ru/_redirects.txt +++ b/files/ru/_redirects.txt @@ -115,7 +115,6 @@ /ru/docs/HTML/HTML5/Constraint_validation /ru/docs/Web/Guide/HTML/HTML5/Constraint_validation /ru/docs/HTML/HTML5/Введение_в_HTML5 /ru/docs/Web/Guide/HTML/HTML5/Introduction_to_HTML5 /ru/docs/HTML/Optimizing_Your_Pages_for_Speculative_Parsing /ru/docs/Glossary/speculative_parsing -/ru/docs/HTML/Использование_кэширования_приложений /ru/docs/Web/HTML/Using_the_application_cache /ru/docs/IndexedDB /ru/docs/Web/API/IndexedDB_API /ru/docs/IndexedDB/Basic_Concepts_Behind_IndexedDB /ru/docs/Web/API/IndexedDB_API/Basic_Concepts_Behind_IndexedDB /ru/docs/IndexedDB/Using_IndexedDB /ru/docs/Web/API/IndexedDB_API/Using_IndexedDB @@ -624,7 +623,6 @@ /ru/docs/Web/HTML/Global_attributes/dropzone /ru/docs/orphaned/Web/HTML/Global_attributes/dropzone /ru/docs/Web/HTML/Optimizing_Your_Pages_for_Speculative_Parsing /ru/docs/Glossary/speculative_parsing /ru/docs/Web/HTML/Использование_HTML5_audio_и_video /ru/docs/Learn/HTML/Multimedia_and_embedding/Video_and_audio_content -/ru/docs/Web/HTML/Использование_кэширования_приложений /ru/docs/Web/HTML/Using_the_application_cache /ru/docs/Web/HTML/Общие_атрибуты /ru/docs/Web/HTML/Global_attributes /ru/docs/Web/HTML/Общие_атрибуты/accesskey /ru/docs/Web/HTML/Global_attributes/accesskey /ru/docs/Web/HTML/Общие_атрибуты/class /ru/docs/Web/HTML/Global_attributes/class diff --git a/files/zh-cn/_redirects.txt b/files/zh-cn/_redirects.txt index c22f490a05..c892700c59 100644 --- a/files/zh-cn/_redirects.txt +++ b/files/zh-cn/_redirects.txt @@ -705,7 +705,6 @@ /zh-CN/docs/HTML/HTML_Elements /zh-CN/docs/Web/HTML/Element/Heading_Elements /zh-CN/docs/HTML/HTML_Elements/time /zh-CN/docs/Web/HTML/Element/time /zh-CN/docs/HTML/Introduction /zh-CN/docs/learn/HTML/Introduction_to_HTML -/zh-CN/docs/HTML/Using_the_application_cache /zh-CN/docs/Web/HTML/Using_the_application_cache /zh-CN/docs/HTML/块级元素 /zh-CN/docs/Web/HTML/Block-level_elements /zh-CN/docs/HTML\Canvas\Tutorial /zh-CN/docs/Web/API/Canvas_API/Tutorial /zh-CN/docs/HTTP /zh-CN/docs/Web/HTTP diff --git a/files/zh-tw/_redirects.txt b/files/zh-tw/_redirects.txt index b718566c0d..580f746e41 100644 --- a/files/zh-tw/_redirects.txt +++ b/files/zh-tw/_redirects.txt @@ -1,3 +1,8 @@ +# DO NOT EDIT THIS FILE MANUALLY. +# Use the CLI instead: +# +# yarn content add-redirect +# # FROM-URL TO-URL /zh-TW/docs/AJAX /zh-TW/docs/Web/Guide/AJAX /zh-TW/docs/AJAX/Getting_Started /zh-TW/docs/Web/Guide/AJAX/Getting_Started @@ -518,7 +523,6 @@ /zh-TW/docs/Mozilla/Firefox/Releases/4/Firefox_4_開發者新功能概覽 /zh-TW/docs/orphaned/Mozilla/Firefox/Releases/4/Firefox_4_開發者新功能概覽 /zh-TW/docs/Mozilla_event_reference /zh-TW/docs/Web/Events /zh-TW/docs/Mozilla_event_reference/DOMContentLoaded_(event) /zh-TW/docs/Web/API/Window/DOMContentLoaded_event -/zh-TW/docs/Offline_resources_on_Firefox /zh-TW/docs/Web/HTML/Using_the_application_cache /zh-TW/docs/Prism:主視窗 /zh-TW/docs/Prism/主視窗 /zh-TW/docs/Prism:安裝程式 /zh-TW/docs/Prism/安裝程式 /zh-TW/docs/Python /zh-TW/docs/conflicting/Learn/Server-side/Django @@ -664,7 +668,6 @@ /zh-TW/docs/Web/HTML/HTML5/Introduction_to_HTML5 /zh-TW/docs/Web/Guide/HTML/HTML5/Introduction_to_HTML5 /zh-TW/docs/Web/HTML/HTML5_表單 /zh-TW/docs/Learn/Forms /zh-TW/docs/Web/HTML/Introduction /zh-CN/docs/learn/HTML/Introduction_to_HTML -/zh-TW/docs/Web/HTML/Offline_resources_on_Firefox /zh-TW/docs/Web/HTML/Using_the_application_cache /zh-TW/docs/Web/HTML/Supported_media_formats /zh-TW/docs/conflicting/Web/Media/Formats /zh-TW/docs/Web/HTML/區塊級元素 /zh-TW/docs/Web/HTML/Block-level_elements /zh-TW/docs/Web/HTTP/Access_control_CORS /zh-TW/docs/Web/HTTP/CORS -- cgit v1.2.3-54-g00ecf