[google-appengine] Re: Storing word document contents in datastore(Python)

2011-02-18 Thread theone
the Logs section in Dashboard to check for errors. On 17 feb, 23:18, theone maliha...@gmail.com wrote: Actually for my case using google docs api very complicated and tiring because I just want to get the content to make search in files. I won't make any modification on the document

[google-appengine] Re: Storing word document contents in datastore(Python)

2011-02-17 Thread theone
Actually for my case using google docs api very complicated and tiring because I just want to get the content to make search in files. I won't make any modification on the document. I think that using an external service like https://secure.convert-doc.com/converters/doc-to-txt.html might be

[google-appengine] Storing word document contents in datastore(Python)

2011-02-16 Thread theone
Hi, I want to get word documents from users and keep their content in datastore to make search in those. I made lots of search on the internet but there are only solutions with third party libraries such as open office api(to export word documents) To use open office api, we need to install open

[google-appengine] Re: Storing word document contents in datastore(Python)

2011-02-16 Thread theone
, or that all that waiting burns through your budget quickly.   -Original Message- From: google-appengine@googlegroups.com [mailto:google-appengine@googlegroups.com] On Behalf Of theone Sent: Wednesday, February 16, 2011 7:16 AM To: Google App Engine Subject: [google-appengine

[google-appengine] Re: Storing word document contents in datastore(Python)

2011-02-16 Thread theone
filters. On 16 feb, 22:44, theone maliha...@gmail.com wrote: Do you mean that I cannot convert and store word document contents with google docs api in a cheap way? On 16 Şubat, 22:00, Brandon Wirtz drak...@digerat.com wrote: You would need to convert the word doc to text so

[google-appengine] Re: Blobstore file upload with other form values

2011-02-13 Thread theone
-info records for the 'file' field.   Your other error is because BlobstoreUploadHandler only allows redirects.  Like Doug suggests, you'll need to redirect to another page to output something. Robert On Sun, Feb 13, 2011 at 02:51, theone maliha...@gmail.com wrote: I don't need

[google-appengine] Blobstore file upload with other form values

2011-02-12 Thread theone
Hello, I want to keep user information and files with blobstore but I could not do it. I have a structure like: class Expert(db.Model): N = db.StringProperty(indexed=True, required=True, verbose_name='Name') S = db.StringProperty(indexed=True, required=True,

[google-appengine] Re: Blobstore file upload with other form values

2011-02-12 Thread theone
I think you are right about BlobstoreUploadHandler limitations. When I tried something like: class X(db.Model): N = db.StringProperty() S = db.StringProperty() F = blobstore.BlobReferenceProperty() class Upload(blobstore_handlers.BlobstoreUploadHandler): def post(self):

[google-appengine] Re: Blobstore file upload with other form values

2011-02-12 Thread theone
, theone maliha...@gmail.com wrote: Hello, I want to keep user information and files with blobstore but I could not do it. I have a structure like: class Expert(db.Model):        N = db.StringProperty(indexed=True, required=True, verbose_name='Name')        S = db.StringProperty(indexed

[google-appengine] Re: Blobstore file upload with other form values

2011-02-12 Thread theone
to setup your handler to accept the parameter... but then you could re-retrieve 'a' object in the handler via a datastore get such as a = db.get(a_key)... assuming 'a_key' is the name of the parameter. On Feb 13, 1:54 am, theone maliha...@gmail.com wrote: I think you are right about

[google-appengine] Re: simultaneous dynamic requests, max blob size, multi-blob?

2009-07-21 Thread theone
3) Along those lines, has anyone implemented something like multi-blob fragmentation/reassembly for storing serving things greater than 1MB? I have implemented a basic app for this. http://simpleupdown.appspot.com/ allows file upload until 10MB. You can check codes here:

[google-appengine] Re: simultaneous dynamic requests, max blob size, multi-blob?

2009-07-21 Thread theone
3) Along those lines, has anyone implemented something like multi-blob fragmentation/reassembly for storing serving things greater than 1MB? I have implemented a basic app. You can check from: http://simpleupdown.appspot.com/ and the codes are here: