Hi, I've been trying to get offline app caching to work on my site following this procedure: http://developer.apple.com/safari/library/documentation/iphone/conceptual/safarijsdatabaseguide/OfflineApplicationCache/OfflineApplicationCache.html
I've tried it using a super simple page: http://joycediscgolf.appspot.com/ I just want to be able to load this page without being online. My manifest file looks like this: CACHE MANIFEST #Version 3 index.html images/upArrow.png My app.yaml looks like application: joycediscgolf version: 1 runtime: python api_version: 1 handlers: - url: /dgkeeper.manifest static_files: dgkeeper.manifest upload: dgkeeper.manifest mime_type: text/cache-manifest - url: /images/(.*) static_files: static/images/\1 upload: static/images/(.*) - url: /.* script: main.py It really can't get simpler than this. What am I doing wrong? Please help! :) -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
