[google-appengine] Re: Alfred Fuller - "... So we've done that ..." : ZigZag merge join += Sort

2011-07-08 Thread acuth
...or is it to be superceded by the Full Text Search service they detailed at Google I/O 2011? http://www.youtube.com/watch?v=7B7FyU9wW8Y -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To view this discussion on the web visit https://gro

[google-appengine] Re: Closure and Google App Engine

2009-11-07 Thread acuth
Just for the record... my initial post was just me wanting to explore using Closure as cheaply as possible. I certainly agree that one would expect to use the Closure Compiler for a production system. But I would have thought that the goog.provide ()/goog.require() mechanism in combination with m

[google-appengine] Re: SearchableModel and the word 'done'

2009-09-29 Thread acuth
opps, didn't think of that. Thanks. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to google-appengine@googlegroups.com To unsubscribe from this group, sen

[google-appengine] SearchableModel and the word 'done'

2009-09-29 Thread acuth
It seems that SearchableModel has a problem with the word 'done'. The following code seems to find the word 'done' in all the TestItems import logging from google.appengine.ext import db from google.appengine.ext import search class TestItem(search.SearchableModel): name = db.StringProperty(

[google-appengine] Re: How do I limit searchable_text_index using SearchableModel?

2009-06-23 Thread acuth
Whenever I've tried doing a SearchableModelDescendant.all (keys_only=True).search(query) construction, it has failed saying it doesn't understand the keys_only parameter - see 'Using __key__ and SearchableModel http://groups.google.com/group/google-appengine/browse_thread/thread/73dc1dc31bfd497b

[google-appengine] Re: Using __key__ and SearchableModel

2009-06-12 Thread acuth
ORDER BY [ASC | DESC] [, [ASC | DESC] ...]] > [LIMIT [,]] > [OFFSET ] > [HINT (ORDER_FIRST | HINT FILTER_FIRST | HINT ANCESTOR_FIRST)] > > Is this what you're looking for? > > On 6月12日, 上午7时09分, acuth wrote: > > > > > Hi everyone, > > > ju

[google-appengine] Using __key__ and SearchableModel

2009-06-11 Thread acuth
Hi everyone, just caught up with one of those Google IO videos about developing apps on GAE. I was already using separated out index-blocks so that I could restrict what was indexed for SearchableModel. Now I just want to return the keys rather than the object themselves. Does anybody know if it

[google-appengine] Modeling mutual references

2008-10-09 Thread acuth
Is it possible to have two models reference each other? I can't get this to work and haven't been able to find this limitation in the documentation. As a simple example, consider: class Book(db.Model): title = db.StringProperty() first = db.ReferenceProperty(Page) class Page(db.M

[google-appengine] Re: Is there anyway of getting the dimensions of an image?

2008-10-02 Thread acuth
I now see that this specific issue has been raised as http://code.google.com/p/googleappengine/issues/detail?id=435 and that somebody was good enough to supply precisely the relevant code at http://groups.google.com/group/google-appengine/browse_thread/thread/cd287afcdf4cf976/388c5be1a22747fe?lnk=

[google-appengine] Is there anyway of getting the dimensions of an image?

2008-10-02 Thread acuth
Hi, I want to generate a 20x20 image out of an uploaded image. Using the image API I can resize it to 20x20 but for non-square input images I get a smaller image. For example a 100x50 image would come back as a 20x10 image. The crop() method would allow me to extract a square image but to generat

[google-appengine] Re: Is there anyway of getting the dimensions of an image?

2008-10-02 Thread acuth
I guess I had assumed that the Image API already had the necessary functionality and that I just hadn't found it yet. Obviously it's a very small subset of PIL functionality, which people have been asking for since issue 38 - http://code.google.com/p/googleappengine/issues/detail?id=38 --~--~--