Have you tried:
1)  Adding a "CACHE:" before listing the items you would like cached?
2) Declaring the suggested doctype?

Important: In some browsers, the application cache does not work fully
if you use a non-HTML 5 DOCTYPE declaration. Instead, use an HTML 5
DOCTYPE declaration:  <!DOCTYPE html>


Robert




On Fri, Aug 27, 2010 at 19:29, jmhon08 <[email protected]> wrote:
> 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.
>
>

-- 
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.

Reply via email to