Questions tagged [manifest.cache]

manifest.cache is HTML5 application caching mechanism

manifest.cache is HTML5 application caching mechanism

Enabling the application cache

To enable the application cache for an application, you must include the manifest attribute in the element in your application's pages, as shown in the following example:

<html manifest="example.appcache">

https://developer.mozilla.org/en-US/docs/Web/HTML/Using_the_application_cache

30 questions
1
vote
2 answers

Jade-lang add manifest file

I would like to know how to add the manifest file to node.js site with jade-lang and express. I found this as an issue 239 in github. My question is how can I add some data into the buffer without while we wait for the resolution of the…
enedebe
  • 268
  • 1
  • 5
  • 15
1
vote
1 answer

Will HTML5 offline storage always treat URLs with different GET parameters as different resources?

If I use HTML5 offline storage to cache a file like so in the manifest: CACHE: render_image.php then what happens if the page includes code like so?: foo My experimenting indicates that…
Trott
  • 66,479
  • 23
  • 173
  • 212
1
vote
1 answer

SVG Fonts and Cache Manifest

"SVG fonts don't work with a cache manifest. Due to the manifest treating # as comments and Mobile Safari requiring the font ID reference in the URL. (via Tristan Dunn)" http://paulirish.com/2010/font-face-gotchas/ Just to recap, essentially iOS…
Jamie
  • 371
  • 3
  • 17
1
vote
2 answers

(Mobile) Safari loading resources despite cache manifest

I've been developing a web app that uses the offline cache, partly as a way to reduce the number of calls made to the server while in use. I was hoping to have the login page load and cache all the resources such that all pages behind the login…
Ruiwen
  • 2,325
  • 2
  • 16
  • 12
1
vote
0 answers

How to make manifest for cashing when I use angular2-webpack-starter?

I am using angular2 webpack starter for my project. And now I want to cache some images. This starter has manifest.json, maybe it is for this purpose? Or it has the same name like manifest file for cashing?
John Doe
  • 3,794
  • 9
  • 40
  • 72
1
vote
0 answers

Appcache data also accessed when browser is online

i am working on html5 application and i have a issue with appcache manifest file, that appcache's data accessed when browser is online and internet connection available, But i want to access appcache's data when internet connection lost and browser…
0
votes
1 answer

Using Manifesto gem with Sinatra

I'm very new to Ruby and using Sinatra, mainly so that I can do some quick prototyping of web apps and some of the newer things available in HTML5. I am trying to use Manifesto to generate the application cache needed for an offline web app. I've…
bridgestew
  • 25
  • 7
0
votes
1 answer

Does HP TouchPad supports HTML5's offline application (Manifest)

I have a webapp using offline support (a manifest file). It works correctly on Androids, iOS, RIM, and then some. It doesn't work on TouchPad though. If I refresh the app without connectivity, I get a "No Internet Connection" error. Did anybody got…
0
votes
1 answer

getFilename function - Manifest File for cache

I'm following an tutorial in Johnathan Stark's Building iPhone app book. It's teaching how to use a manifest file to do offline storage. As you can see, it's searching all the directories and outputting the file names. My question is about the 0 and…
Leahcim
  • 40,649
  • 59
  • 195
  • 334
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

html5 cache manifest doesn't work in Chrome/Chromium

I'm having strange issue - I was trying to get cache manifest working, but It didn't load any files properly after reloading page - finally I decided to find working demo, but... found demo also doesn't work... Is there anything wrong with this…
Lapsio
  • 6,384
  • 4
  • 20
  • 26
0
votes
1 answer

typoscript using page id in config.htmlTag_setParams string

My problem is, that i cant get the TSFE:id into the config.htmlTag_setParams manifest = TEXT manifest.value = manifest="/cache.manifest?uid={TSFE:id}" manifest.insertData = 1 config.htmlTag_setParams < manifest can anyone give me a clue, i tried…
dni
  • 13
  • 2
0
votes
1 answer

How to detect when the last file of the manifest file is updated?

I'm building an Offline HTML5's App, which has several pages inside (10 to be more specific). When I need to change any of these pages, I simply change the manifest file to instruct the browser to update all files (As the HTML5 documentation…
0
votes
1 answer

Appcache offline

We are working on content loading where in case if we are connected,the content should be brought from network. If we go offline, it should bring from cache. what settings should we do perform this. kindly guide. regards, balaji
0
votes
1 answer

HTML5 browsers hanging on to cached manifest file

I'm using HTML5 appcache and mostly it's working well. However, sometimes, users' browsers (Chrome or Safari) will hold onto the cached manifest file even though I'm positive that the server has a brand new manifest file with a unique version…
Andy
  • 2,709
  • 5
  • 37
  • 64
1
2