[google-appengine] Re: Need help with Appengine helper.

2008-09-04 Thread Peter
Hi Noah, Where are these application settings? Doesn't seem to be anything app.yaml to tell it to clear things. Cheers, Pete On Sep 2, 8:53 pm, Noah Gift [EMAIL PROTECTED] wrote: On Tue, Sep 2, 2008 at 3:29 PM, Peter [EMAIL PROTECTED] wrote: Hmm.  A couple of extra lines of documentation

[google-appengine] Re: Help! Why the admin check doesn't work in production

2008-09-04 Thread Ethan
Still not works for me, even I have redeployed it. On Sep 4, 7:01 am, Alexander Kojevnikov [EMAIL PROTECTED] wrote: Issue 689 seems to be fixed, check your website again. On Sep 4, 1:46 am, Ethan [EMAIL PROTECTED] wrote: If so, how can I login as an admin? On Sep 3, 3:41 pm, ade [EMAIL

[google-appengine] Re: Problems with Geohash / Inaccuracy / ow to deal with this ?

2008-09-04 Thread Ubaldo Huerta
Do you have a example of a point whose geohash value isn't greater than SW, NE geohashes? I've tried, in the python interpreter, many examples, and haven't observed what you're describing. It's pretty scary because I'm writing a lot of code for a geo app that's based on that property of

[google-appengine] Re: Problems with Geohash / Inaccuracy / ow to deal with this ?

2008-09-04 Thread Pierre
Hi, Here's an example : [GCC 4.1.3 20070929 (prerelease) (Ubuntu 4.1.2-16ubuntu2)] on linux2 Type help, copyright, credits or license for more information. import geohash hashSW = geohash.Geohash((1.5765380859375,42.894076403348976)) hashNE =

[google-appengine] Re: select and filter by date

2008-09-04 Thread Kjartan
Hi. I can run it, but it returns a count of 0 when it should return 2. Regards, Kjartan S. On Aug 30, 8:19 pm, Davide Rognoni [EMAIL PROTECTED] wrote: Can you make this test, using: query = Game.all() query.filter('time =', datetime.datetime.strptime(2008-08-29, %Y- %m-%d)) print

[google-appengine] Re: Django 1.0?

2008-09-04 Thread Wooble
First search result on Django 1.0: http://groups.google.com/group/google-appengine/msg/d91a710891cc6789 On Sep 3, 8:40 pm, DaNmarner [EMAIL PROTECTED] wrote: Does any body know whether GAE is going to update the version included Django to 1.0?

[google-appengine] Re: Google App Engine Development Tools (gaedt)

2008-09-04 Thread Hill.Fu
Thanks for your nice job. But I install it and no Google App Engine (GAE) project menu in new project..., why? My eclipse version: Version: 3.3.0 Build id: M20070921-1145 pydev: 1.3.20 python: 2.5.2 --~--~-~--~~~---~--~~ You received this message

[google-appengine] Re: Datastore write performance question

2008-09-04 Thread I.K.
Nobody? Can somebody point me to any relevant blog entries/ posts / documents, so I can figure it out myself On Sep 1, 1:46 pm, I.K. [EMAIL PROTECTED] wrote: Hi all, In the belief that I will improve systems performance, I have been reducing the number of Datastore writes by creating a few  

[google-appengine] Re: Random entity from datastore.

2008-09-04 Thread Jeronimus
How big is the datastore? If it is not very big: Perhaps all records have an ID. Read al the ID's values in an array. (Then you also know how many records there are) Generate a random number = amount of IDs. Select with the randomk number the ID from the array. Get the record.

[google-appengine] Catch All Error Handler

2008-09-04 Thread ae
Hi, Are there any suggestions on how to implement a catch all error handler in the webapp framework? I want to display a custom web page on any unhandled errors in my app. Thanks, ae --~--~-~--~~~---~--~~ You received this message because you are subscribed to

[google-appengine] Re: very simple question: HELP!

2008-09-04 Thread TenHanger
Sorry, I'm a beginner programmer, I don't know what eclipse means, and I don't really understand much of what you're saying. J. On Aug 5, 11:51 pm, andy [EMAIL PROTECTED] wrote: TenHanger, You can use eclipse and sort of bypass the prompt. You can start your application in and have it run

[google-appengine] Re: Django 1.0?

2008-09-04 Thread Nico
I think the question is not if, but when. I hope it will happen very soon, now that 1.0 final is out... On 4 Sep., 02:40, DaNmarner [EMAIL PROTECTED] wrote: Does any body know whether GAE is going to update the version included Django to 1.0?

[google-appengine] Re: Making A 404 Error Page

2008-09-04 Thread [EMAIL PROTECTED]
Perfect! Thanks guys. :) --~--~-~--~~~---~--~~ 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, send email to

[google-appengine] Re: always redirect to Google Accounts on POST method

2008-09-04 Thread LMZ
found mistake. =) LMZ wrote: Hello to all! i can't understand why always when user POST some data, he is redirected to Google Accounts page. On GET all is ok. Example of code: [...] def post(self, note_key): user = users.get_current_user() if user: [...]

[google-appengine] Re: Quota : Bandwidth In/out per Day != Data Sent/Received

2008-09-04 Thread Thomas Johansson
The day is chunked into five pieces. Roughly 5 hours per chunk. The idea is that this way, even if you exhaust one 5 hour period, you'll still be able to serve the remaining 19. Of course, the real reason is so when they start charging, this way they'll be able to charge you for spike traffic