Questions tagged [cache-manifest]

The cache manifest is a part of the deprecated HTML5 application cache (AppCache) feature, which is intended to provide users with the ability to access a web application even without a network connection.

Web applications consists of a list of web addresses. These can be HTML, CSS, JavaScript, images or any other source that is required for a web application to be rendered. These addresses or URLs can be copied onto a manifest file, which can be updated regularly by the author of the web application, indicating any new web addresses that are added or deleted. When connecting to a network for the first time a web browser will read the HTML5 manifest file, download the resources given and store them locally. Then, in the absence of a network connection, the web browser will shift to the local copies instead and render the web application offline.

(Source: wikipedia.org/Cache_manifest_in_HTML5)

262 questions
0
votes
1 answer

Caching with single-page application

I have an OpenUI5 app; my app have only one htlm page (index.html), some js file (for the logic-controller) and some xml file (for the view). The app is a single-page application; this is my index.html start page:
0
votes
1 answer

offline cache manifest - one file stuck in old version

I have an issue with offline cache manifests that I don't quite know how to troubleshoot. 1) A .json file which is part of the manifest is stored together with the manifest. 2) I change that file, and verify that it is indeed changed on the…
Matt Welander
  • 8,234
  • 24
  • 88
  • 138
0
votes
0 answers

contents are not caching using manifest

I have created manifest file, app1.manifest as below. I took Text file from Visual Studio. named is as app1.manifest. Wrote content in that as…
Imad
  • 7,126
  • 12
  • 55
  • 112
0
votes
1 answer

Check if AppCache update is finished

While AppCache checks the files to be cached, it lists it to the cache manifest file right? Is there anyway to check if this process is finished, including adding all the files to be cached in the cache manifest file?
The Bassman
  • 2,241
  • 5
  • 26
  • 38
0
votes
2 answers

Cache Manifest with Windows Forms WebBrowser control (Visual Studio)

I am using the Windows Forms WebBrowser control to display a web application that I am also writing. The Web Application is using the HTML5 Cache Manifest functionality which I have got working fine when I call the page up in Chrome and IE (V11).…
CJH
  • 1,266
  • 2
  • 27
  • 61
0
votes
1 answer

Finish loading cache manifest before showing Web app

When you first normally load a Web app with cache manifest, the HTML page shows up, then cache manifest starts downloading the specified files in the background. However, I prefer that cache manifest finishes downloading every listed file before the…
Applecot
  • 239
  • 1
  • 2
  • 9
0
votes
0 answers

Is there a way to implement manifest.appcache within firebase hosting?

I'm looking to implement HTML5 manifest.appcache and Android web app manifest in my firebase web application, but there seems that .appcache files doesn't work while within a firebase hosting. Does anyone know if there's a way to configure it, such…
0
votes
1 answer

HTML5 application Cache Firefox is caching the not listed current page

my manifest looks like this : CACHE MANIFEST #…
jpprade
  • 3,497
  • 3
  • 45
  • 58
0
votes
1 answer

HTML5 AppCache: Can somebody explain purpose of NETWORK section in manifest file?

I have gone through html5rocks, mozilla developer doc. Those definitions are very confusing. Can anybody explain this in simple terms ? I am not sure why do we even need NETWORK section in appcache manifest file. I think it is as good as not having…
Darshan
  • 750
  • 7
  • 19
0
votes
1 answer

Offline HTML5 PouchDB App. Multiple tabs will corrupt users data. How to prevent

This question is about HTML5 offline apps. This answer is from 2009 about regular web pages. I have a heavyweight HTML5 PouchDB offline app. It's an AngularJS app, that writes to/from a PouchDB. The app needs to handle multiple tabs without help…
Michael Cole
  • 15,473
  • 7
  • 79
  • 96
0
votes
1 answer

HTML 5 Application Cache not working in IE

I have an HTML 5 Application which should be cached by the Application Cache. In Chrome, Firefox and Safari everything is working fine but in IE 11 it won't work. The applicationCache status is 0 uncached and when the update method is called I'm…
David
  • 43
  • 6
0
votes
1 answer

How to ignore files not required in offline mode for cache manifest

I have an application that needs to work in offline mode. However, only part of the application needs to work in offline mode. I handle the inputs and actions from the user well - in that, I let the user know which actions are not available in…
callmekatootie
  • 10,989
  • 15
  • 69
  • 104
0
votes
1 answer

Cache manifest cache all files

I have a problem with manifest cache in HTML 5. Here is my manifest file: CACHE MANIFEST # This manifest was generated by grunt-manifest HTML5 Cache Manifest Generator # Time: Tue Jan 13 2015 15:05:00 GMT+0100 (Central European Standard…
0
votes
0 answers

"Add to homescreen" local web app fail on "location.href" (iPad 3)

I currently have a local web app that I created using the "add to homescreen" method on the iOS (cache.manifest). For some background, This is a quiz-type app that allows you to restart at the end. It is built in AngularJS, so all I have to do to…
Logan B. Lehman
  • 4,867
  • 7
  • 32
  • 45
0
votes
0 answers

How can I use angularjs ui-router without a server i.e. running it from a folder on my computer?

I want to be able to quickly build an AngularJS application using ui-router without having to set up a server. So that I can send this folder to anyone and the application will still work. I have tried putting a # infront of the route as adviced…