0
votes
1answer
28 views

Dynamic content with cache manifest

I'm facing several challenges building a web app with cache manifest. My challenge is dealing with dynamic content. If a user logs out and logs back into the app with a different account, how can I ...
2
votes
0answers
192 views

Phonegap offline caching website

I have a website configured with cache manifest, which i will be loading in the android through phonegap. This is the following code that i am using @Override public void onCreate(Bundle ...
-1
votes
1answer
233 views

Offline WebApp Game for iPad [closed]

I'd like to make a super basic one-button space invaders game on iPad via an offline webapp (using the cache.manifest and canvas). Enemies would fly by your ship and you simply press a button to shoot ...
5
votes
1answer
102 views

Unable to fetch iOS webapp files on manifest update. 401 unauthorized

I have a HTML5 webapp which is running perfectly when served via the IIS without authentication. Is is using a cache.manifest file. Both when running in safari, and as an "add to homescreen" ...
5
votes
1answer
452 views

Did Apple remove HTML5 cache offline viewing from iOS devices?

I made an HTML5 "webapp" for my company back in April, and at that point, I was able to place is on the homescreen of iPhones and iPads, and save it as a bookmark for offline viewing (Android and BB ...
2
votes
2answers
171 views

Alert upon completion of Manifest cache with javascript

How do I alert a success message when cache.manifest has download all the files in a html5 app? (Bascially success alert on complete cache download)! Thanks
0
votes
1answer
131 views

HTML5 Cache Manifest does not load ressources unless it is located at the root of the website?

I have a website with a cache manifest described using <html manifest="site.manifest">...</html> The manifest is very simple : CACHE MANIFEST CACHE: /fira.jpg /offline.php FALLBACK: ...
0
votes
1answer
162 views

Offline app in asp.net

I am trying create an app which has offline features. The manifest file that I have created looks like this- CACHE MANIFEST # version 1.0.0 CACHE: /ShareBill.Web-Offline/ ...
0
votes
0answers
270 views

Videos broken after cache.manifest

So I am trying to get a web app to cache a few videos so they play offline. The web app will be only for iPad. My HTML is 4 simple videos, a stylesheet and a debug.js file. <!DOCTYPE html> ...
0
votes
1answer
78 views

When using application cache manifest, where does data load first from?

I'm creating a web application for mobile devices which uses Application cache. When I open it using Safari for iPhone, the updated changes are reflected. Now I add it to home screen and then open it ...
5
votes
1answer
255 views

HTML5 use cache only when offline

I started to use HTML5 cache to view a simple HTML page with one css file and two js files. My problem is that the cache is used whether I'm offline or not. But I just want to use the cache when I'm ...
0
votes
1answer
278 views

Is it possible to use jquery getScript on a file that is cached with a cache.manifest

I'm fetching a file using getScript: $.getScript("android/android.js") and the I cache that file in a cache manifest: /android/android.js When i Try to load the page cached, I get a "Get" ...
1
vote
1answer
87 views

Access Control and Cache Manifest for Offline Use

I would like to gather some feedback on how best to handle access control within a web application that has a requirement for offline use. The app must have access control via username/password but ...
1
vote
2answers
500 views

HTML5 offline cache javascript downloaded but not refreshed

I have an have an html5 offline app. I am using the cache.manifest file to trigger client code refreshes. There are several javascript files in the app which are listed in the manifest. Whenever an ...
2
votes
1answer
131 views

HTML5 Caching misbehaving

I have this nice little cache manifest file, which I embed into my index.html page: CACHE MANIFEST # version 8 9341.js 9341.css none.cur NETWORK: http://* Everything goes smoothly and the enlisted ...
5
votes
5answers
760 views

HTML5 Cache — Is it possible to have several distinct caches for a single URL?

Every URL can be linked to a single cache manifest. But I want several cache manifests linked to a same URL. Here is the reason: Some files I want to be cached are rarely updated and large. So ...