[google-appengine] Re: GAE helper for Django and AUTHENTICATION_BACKENDS

2010-09-27 Thread twansc...@googlemail.com
On 27 Sep., 12:20, Will wrote: > Hi all, > > I'm using GAE helper for Django and trying to plug in my own authentication > backend. I added > > AUTHENTICATION_BACKENDS = ( >                            'MyApp.MyBackend.MyAuth', > ) > > into settings.py. > > The problem is, when I put @login_requi

[google-appengine] Re: models help - simple sharding example

2010-01-19 Thread twansc...@googlemail.com
On Jan 4, 9:08 pm, Andy wrote: > I'm new to sharding and am a little stuck on how to implement the toy > problem below.  Basically I have a many-to-one relationship between a > Company and Employees, and I want shards which are partitioned > according to company name.  My naive approach is to re

[google-appengine] Re: models help - simple sharding example

2010-01-19 Thread twansc...@googlemail.com
On Jan 19, 11:08 am, "twansc...@googlemail.com" wrote: > On Jan 4, 9:08 pm, Andy wrote: > > > I'm new to sharding and am a little stuck on how to implement the toy > > problem below.  Basically I have a many-to-one relationship between a > > Company and

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

2009-06-29 Thread twansc...@googlemail.com
On 10 Jun., 11:11, ogterran wrote: > Hi, > > When I create a datastore model using SearchableModel, it creates a > __searchable_text_index column, for full textsearch. > If I don't want all the columns to be part of the index forsearch, > how do I exclude columns for full textsearch? > > i.e. >

[google-appengine] Re: Using __key__ and SearchableModel

2009-06-29 Thread twansc...@googlemail.com
On 12 Jun., 01:09, acuth wrote: > 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 t

[google-appengine] Re: Java Vs Python

2009-04-20 Thread twansc...@googlemail.com
With python you have access to the full power of django (using app- engine-patch) making web development much more easy and clean even i do not know which web framework is supported for java yet. --~--~-~--~~~---~--~~ You received this message because you are subsc

[google-appengine] Re: Shrink Javascript with Python..?

2009-05-07 Thread twansc...@googlemail.com
You can use app-engine-patch. It has an integrated medie generator which combines all of your css/javascript code to one single file. On the development sever your javascript code does not get shrinked to allow debugging but on the production server it gets shrinked automatically while uploading y