How can I know which which permutation (exactly which files) are for which user.agent?
I assume that information is available if I look for it during compile time by extending an AbstractLinker, adding it my xxx.gwt.xml config file. I need to know because in order to make a cache.manifest for offline HTML5 storage, I need to know which files go in there. I can make a manifest now but it has files for my 12 permutations. Try using that on your Android phone. While it works, it seems to take like 5-10 minutes to pull the files from cache. I'm not exactly sure here but wouldn't you suspect having all 12 version in the manifest file is the culprit. It seems all files for all versions are downloaded, cached and retrieved. How then can I make a separate manifest file for each user.agent? I can just specify a generic <html manifest="generic.manifest"/> in my base page and then in a servlet filter detect user.agent and return an appropriate manifest. My problem is that I don't know what files are for which user.agent. Anyone? Does anyone know which GWT class is responsible for writing the xxx.nocache.js file. Whatever is writing that file has the information I need but how to get it? I'll start wading through GWT src but does anyone know????? I can watch Cache event in chrome and I know the manifest is causing all versions of all user.agents to be downloaded and stored. Well that is what I told it to do because I don't know which files are used by which user agent. Should I file a bug? Is there one already? I GWT just inherently HTML5 unfriendly? Shouldn't be. Shawn -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" 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-web-toolkit?hl=en.
