If you look at this URL:

http://www.mytowngovernment.org/meeting/1234040

and click the link for one of the .doc files, they work in google's viewer.  
But if you click on one of the .docx files, they don't.

When you click on the link to view, it does this:

   dlurl=re.sub('viewer','download',self.request.uri)
   self.redirect("http://docs.google.com/viewer?url=%s"; % urllib.quote(dlurl))

and the download handler is simply:

   documentKey = self.request.get("document")
   document = DocumentModel.get(documentKey)
   self.send_blob(document.blob.key())

Everything I've read says that google's docs viewer should be able to view 
.docx files, so I'm guessing the problem is in the way the blob is served from 
GAE to Google Apps.

Any ideas?

-Joshua

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