I have a lot of images in a folder that are used in the application. When using the cache manifest it would be easier maintenance wise if I could specify a wild card to load all the images or files in a certain directory to be cached.

E.g.

CACHE MANIFEST
# 2011-11-3-v0.1.8
#--------------------------------
# Pages
#--------------------------------
../index.html
../edit.html
#--------------------------------
# JavaScript
#--------------------------------
../js/jquery.js
../js/main.js
#--------------------------------
# Images
#--------------------------------
../img/*.png

Can this be done? Have tried it in a few browsers with ../img/* as well but it doesn't seem to work.

link|improve this question

78% accept rate
feedback

3 Answers

up vote 3 down vote accepted

I don't think it works that way. You'll have to specify all of the images one by one, or have a simple PHP script to loop through the directory and output the file (with the correct text/cache-manifest header of course).

link|improve this answer
feedback

It would be easier, but how's it going to work? The manifest file is something which is parsed and acted upon in the browser, which has no special knowledge of files on your server other than what you've told it. If the browser sees this:

../img/*.png

What is the first image the browser should request from the server? Let's start with these:

../img/1.png
../img/2.png
../img/3.png
../img/4.png
...
../img/2147483647.png

That's all the images that might exist with a numeric name, stopping semi-arbitrarily at 231-1. How many of those 2 billion files exist in your img directory? Do you really want a browser making all those requests only to get 2 billion 404s? For completeness the browser would probably also want to request all the zero-filled equivalents:

../img/01.png
../img/02.png
../img/03.png
../img/04.png
...
../img/001.png
../img/002.png
../img/003.png
../img/004.png
...
../img/0001.png
../img/0002.png
../img/0003.png
../img/0004.png
...

Now the browser's made more than 4 billion HTTP requests for files which mostly aren't there, and it's not yet even got on to letters or punctuation in constructing the possible filenames which might exist on the server. This is not a feasible way for the manifest file to work. The server is where the files in the img directory are known, so it's on the server that the list of files has to be constructed.

link|improve this answer
Well when the browser does the initial request to the server it just looks at the publicly available image directory and does a directory listing on that directory. That will return a list of files that it can see. Then it downloads to the browser/client only the files with extension .png. There's no need to guess what the files might be called by querying the server from 0 - a trillion filename possibilities. – zuallauz Nov 5 '11 at 0:52
@zuallauz Assuming the image directory is publically available, that's not really saying anything different from what I said: "The server is where the files in the img directory are known, so it's on the server that the list of files has to be constructed", except that there's no standard format for the file listing returned by a publically available image directory for the browser to parse, but there is a standard for the manifest file. – robertc Nov 5 '11 at 10:48
Ok I understand there's not a 'standard' file listing that the server returns, however it wouldn't be rocket science for the client to query domain.com/images and get a directory listing. Apache by default serves up an etremely basic HTML page that could be parsed and the filenames extracted. Would be a lot easier if it returned a JSON listing though for the browser to interpret. These are sorts of things which should be put in the specification if they're not already. – zuallauz Nov 6 '11 at 7:39
feedback

It would be a big security issue if browsers could request folder listings - that's why Tomcat turns that capability off by default now.

But, the browser could locate all matches to the wildcards referenced by the pages it caches. This approach would still be problematic (like, what about images not initially used but set dynamically by JavaScript, etc., and it would require that all cached items not only be downloaded but parsed as well).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.