[google-appengine] Django didn't fully load. Help!

2010-01-07 Thread Nefarious
So, I ran into a problem yesterday wherein it appears Django didn't fully load. I am getting exceptions like this: Parent module 'django.contrib.localflavor.us' not loaded. Anyone know what causes this exception? I am using app engine patch. The most disturbing part is, now pages which may be

[google-appengine] Re: Why am I getting a regular Timeout?

2009-08-25 Thread Nefarious
('- created').fetch(10) On Aug 24, 5:03 pm, Nefarious mike...@gmail.com wrote: Hi all, I have an incredibly simple query that looks like this: listings = Listing.all().filter(created =, str(now)).order('- created')[:10] Currently, it is looking through about 12 records (and returning up

[google-appengine] Why am I getting a regular Timeout?

2009-08-24 Thread Nefarious
Hi all, I have an incredibly simple query that looks like this: listings = Listing.all().filter(created =, str(now)).order('- created')[:10] Currently, it is looking through about 12 records (and returning up to 10), now is a datetime. This regularly times out! How can such a simple query

[google-appengine] 502 Errors

2009-02-23 Thread Nefarious
Hi, All of a sudden my application is getting 502 errors consistently. I haven't done an update in a couple of weeks. Nothing in the logs. Any ideas? Thanks, Mike --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[google-appengine] Update just one (or few) files

2009-01-10 Thread Nefarious
So, I want to update just one file on production GAE, however, I have many changes locally. I don't want to update all my files with all changes, just one file. Does anyone know if it is possible to just update one (or a few) files while not updating all your local changes? Ideally, some flag

[google-appengine] Error starting app engine locally - exceptions.EOFError

2008-11-19 Thread Nefarious
The other day, I saw a great post on taming your history file to speed up the app engine locally (http://groups.google.com/group/google- appengine/browse_thread/thread/f42a3471ca3c5b32/7597dd1b2eff6637? lnk=gstq=history+file#7597dd1b2eff6637). I thought it would be wiser to just excavate all the

[google-appengine] Copying local datastore

2008-11-12 Thread Nefarious
I have a new developer helping on my GAE project. I would like him to have a copy of the local data I already have setup. Have any of you moved this data? If so, what files did you move and how did it go? Thanks, Mike --~--~-~--~~~---~--~~ You received this

[google-appengine] Re: How to modify property output?

2008-10-24 Thread Nefarious
(gettitle, settitle) On Oct 23, 2:21 pm, Nefarious [EMAIL PROTECTED] wrote: Newbie question here... Say I have model like the below: class Blah(db.Model):     Example     name = db.StringProperty()     title = db.StringProperty()     address = db.StringProperty() How would I modify

[google-appengine] How to modify property output?

2008-10-23 Thread Nefarious
Newbie question here... Say I have model like the below: class Blah(db.Model): Example name = db.StringProperty() title = db.StringProperty() address = db.StringProperty() How would I modify the output from the datastore before it gets to the caller? So, I want to modify the