Questions tagged [application-cache]

The Application Cache (or AppCache), part of HTML5, allows a developer to specify which files the web browser should cache and make available to offline users. Your app will load and work correctly, even if the user presses the refresh button while they're offline.

Application Cache is an obsolete part of HTML5:

Do not use it in old or new projects. Pages or Web apps using it may break at any time. It's in the process of being removed from the Web platform. Use Service Workers instead.

References

207 questions
0
votes
1 answer

Why is localStorage not used to store static resources?

This is question logically follows this question: Is HTML5 application caching relevant? It is obvious that popular sites are not using HTML 5 application caching to save static resources as it was designed for. Just check for the manifest attribute…
user1637281
0
votes
1 answer

Firefox/IE10 - HTML5 Application Cache and Cookies

I have a problem with HTML5 appCache on Firefox and IE10. I have build a minimal test case available on: https://docs.google.com/file/d/0B7CVmRJOMgTNZUxkLWRDNmhtVU0/edit?usp=sharing Accessing the page at "applicationCache/test.html" the browser…
0
votes
1 answer

Is there a way to edit cache manifest from client side

It was stated in http://www.html5rocks.com/en/tutorials/appcache/beginner/ that to attempt to update cache requires the manifest file to have changed. Which means the guy on the server side have to manually change the manifest file every time he…
user1655072
  • 572
  • 2
  • 10
  • 20
0
votes
1 answer

How to cache pictures in html5 AppCache

I'm building a photography site, which ideally should work offline. Caching the css/js files required is pretty straightforward. The issue is, what to do with the actual photographs. I'm currently loading them from flickr, both a thumbnail version…
Sander Rijken
  • 21,376
  • 3
  • 61
  • 85
0
votes
1 answer

Can I use protocol-agnostic URLs in my HTML5 Application Cache Manifest?

We have a number of websites which use the same codebase to run different sites depending on the domain name used, and we're looking to use the HTML5 Application Cache to improve the performance of these sites to cache things like web fonts and…
abitgone
  • 561
  • 9
  • 29
0
votes
1 answer

Wordpress -Tag hook/filter?

Im writing a application cache plugin for Wordpress. I was wondering how i can modify the <\html> tag in the current theme from my plugin to: <\html manifest="Site_url().../plugin/bla.php?var1=foo&var2=bar"> I was googling and looking up stuff on…
meeeeeh
  • 17
  • 1
  • 10
0
votes
1 answer

Why is my cache manifest still not working?

I watch in chorme's console,there is nothing output,and no application cache why is this happen?thanks and here is my html: here is the content of test.manifest file: CACHE MANIFEST …
0
votes
1 answer

AppCache on Android Devices

I have this weird problem in trying out an appCache website on android phones. I've tested it in a Froyo 2.2 Android device. I'm testing the capability of AppCache on Android phones using this AppCache demo…
lorraine batol
  • 6,001
  • 16
  • 55
  • 114
0
votes
1 answer

AppCache all images in a folder

I have a web client that gets its data (including images) from a web service. I'm already able to cache the web client so the user can use it even if he/she is offline. However I'm not able to cache the images. Here's what is in my manifest: CACHE:…
lorraine batol
  • 6,001
  • 16
  • 55
  • 114
0
votes
1 answer

HTML5 application cache updating solution

I may get some heat for this question because there are a lot out there already. BUT... Every question has a different answer and no finite answer seems to be solid. SO THE QUESTION... If I update a file which is reference in the application cache…
Anthony Graglia
  • 5,355
  • 5
  • 46
  • 75
0
votes
1 answer

HTML 5 application cache - get the updated date

We are planning to use HTML 5's Application cache in our application for storing static content and some documents like a timetable. This timetable gets updated every week. Now in our application we need to display the last updated date of…
Apps
  • 3,284
  • 8
  • 48
  • 75
0
votes
1 answer

App cache: manifest on demand?

I am working on a web application that can be used online as well as offline. The user has the choice to download the content or not. That for a prompt opens and redirects him to a page that contains the manifest attribute on the HTML tag. This…
meo
  • 30,872
  • 17
  • 87
  • 123
1 2 3
13
14