[google-appengine] Querying a DateTimeProperty from the dashboard

2009-05-06 Thread Paul Kinlan
Hi Guys, I might be being silly here, I am trying a query through the DataViewer that is along the lines of: SELECT * FROM SearchCampaigns WHERE priority = True and finished = False and next_update '2009-05-06 06:08:37' ORDER BY next_update The problem I am seeing is that it returns values

[google-appengine] Re: join group-by queries, reports and data warehousing

2009-05-06 Thread bruno.braga
Hi Ryan, Thanks for the quick reply, and for clarifying this to me, even if those are not good news to me. If complex reporting system is required, I think it is reasonable enough to count on third-part solutions (even you own) to do that, and do not get away from the purpose of GAE. I will

[google-appengine] Re: email issue with Google Apps e-mail Group

2009-05-06 Thread Sylvain
Maybe the issue is related to a spf record ? http://www.google.com/support/a/bin/static.py?page=known_issues.cs# But before changing the spf records, I need to be sure that it will work. If GAE can't send a mail to a Google Apps group (of users) (which is not related to Google [G]roups), it is

[google-appengine] Re: The API call mail.Send() required more quota than is available.

2009-05-06 Thread Prashant Gupta
is there any official per minute limit on sending mail? --~--~-~--~~~---~--~~ 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

[google-appengine] Re: How to iterate a json string using dictionary

2009-05-06 Thread djidjadji
eval() the strings you receive in the request? One way of getting to execute any python code in his application. You can use the simple JSON that comes with GAE in Django from django.utils import simplejson 2009/5/6 风笑雪 kea...@gmail.com: json = '{element1: haha, element2: 123}' d =

[google-appengine] Re: Querying a DateTimeProperty from the dashboard

2009-05-06 Thread djidjadji
http://code.google.com/appengine/docs/python/datastore/gqlreference.html In the mid of the page, convert the string to a DateTime. 2009/5/6 Paul Kinlan paul.kin...@gmail.com: Hi Guys, I might be being silly here, I am trying a query through the DataViewer that is along the lines of:

[google-appengine] 'Entity' object has no attribute '_Entity__unindexed_properties'

2009-05-06 Thread DarkCoiote
All of sudden I started getting this error for all of the request to app. that requires datastore puts. Someone has tweaked something. lol The full log: 'Entity' object has no attribute '_Entity__unindexed_properties' Traceback (most recent call last): File

[google-appengine] Re: 'Entity' object has no attribute '_Entity__unindexed_properties'

2009-05-06 Thread Nick Johnson (Google)
Hi, Can you please paste the code showing how you are constructing the entity you're trying to put? -Nick Johnson On Wed, May 6, 2009 at 11:06 AM, DarkCoiote darkcoi...@gmail.com wrote: All of sudden I started getting this error for all of the request to app. that requires datastore puts.

[google-appengine] Re: You haven't set the DATABASE_ENGINE setting yet

2009-05-06 Thread Nick Johnson (Google)
Hi Howard, We need much more information to be of any assistance. Where are you getting this error? Using Java, or Python? Please post the complete stacktrace, as well as any relevant code and configuration files. -Nick Johnson On Wed, May 6, 2009 at 4:01 AM, Howard hhs...@gmail.com wrote:

[google-appengine] Re: 'Entity' object has no attribute '_Entity__unindexed_properties'

2009-05-06 Thread DarkCoiote
Well, It was working before, and now is working again! Actually, the entity is being updated. But here is the code anyway person = get_person(owner) if person is None: self.response.out.write(minjson.write(None)) return # converting to dict()

[google-appengine] Re: store files to datastore in a folder like structure?

2009-05-06 Thread Shedokan
Tim: I don't quite understand most of what you said because I kinda really new to python programming I know only php and python, but what I do understand I will try to do. What type do you people suggest I'll use for the file content? On 6 מאי, 06:16, Pranav Prakash pra...@gmail.com wrote:

[google-appengine] Re: 'Entity' object has no attribute '_Entity__unindexed_properties'

2009-05-06 Thread DarkCoiote
Actually, the problem still exists... it is only occurring in others requests handlers... And the new point of error is also a updating put What does this error actually means? On May 6, 9:00 am, DarkCoiote darkcoi...@gmail.com wrote: Well, It was working before, and now is working again!

[google-appengine] Re: 'Entity' object has no attribute '_Entity__unindexed_properties'

2009-05-06 Thread DarkCoiote
Doing some more tests, and now the requests handler that I was testing stopped giving errors... My best guess is that someone (you?) is fixing the bug. My fears is that the bug is really nasty and difficult to find/ reproduce and mutable. Anyway, thanks a lot! On May 6, 9:11 am, DarkCoiote

[google-appengine] Re: join group-by queries, reports and data warehousing

2009-05-06 Thread Barry Hunter
This would go a long way to facilitate data warehousing type tasks http://code.google.com/p/googleappengine/issues/detail?id=112 add your star to support it :) On 06/05/2009, bruno.braga bruno.br...@gmail.com wrote: Hi Ryan, Thanks for the quick reply, and for clarifying this to me,

[google-appengine] Re: How to iterate a json string using dictionary

2009-05-06 Thread ray
Arnie, I'm assuming you want to iterate over the json in Python? Once you get the json string converted to a Python dictionary using simplejson, you can use the dictionary's iteritems() method to iterate over it in a python forloop like so: from django.utils import simplejson #jsonStr is your

[google-appengine] I have my Google Apps domain - under the hood is Appengine. How do I get the appengine domain?

2009-05-06 Thread richardcur...@googlemail.com
Hi, I have a domain example.com which actually has spot.appspot.com under the hood. I now want to know the appspot-domain inside appengine from pyhton code. Things like self.host_url return example.com. What I want is spot.appspot.com Thanks! ricky

[google-appengine] Re: I have my Google Apps domain - under the hood is Appengine. How do I get the appengine domain?

2009-05-06 Thread Nick Johnson (Google)
Hi Ricky, Unfortunately, there's no way to do this, short of encoding your app ID in your application's configuration. -Nick Johnson --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google App Engine group. To post

[google-appengine] Re: I have my Google Apps domain - under the hood is Appengine. How do I get the appengine domain?

2009-05-06 Thread Nick Johnson (Google)
Actually, scratch my last. You can access your application's ID with os.environ['APPLICATION_ID']. -Nick Johnson On Wed, May 6, 2009 at 3:09 PM, Nick Johnson (Google) nick.john...@google.com wrote: Hi Ricky, Unfortunately, there's no way to do this, short of encoding your app ID in your

[google-appengine] Re: Building a new index is taking way too long

2009-05-06 Thread Ubaldo Huerta
I'm having same issue. Index building, for a alpha app at this moment (just 100 entities), and it's stuck building index. Sounds like one has to factor in this lag time in the development cycle, that is, first update index definitions, wait wait and wait, then upload the app (well, if one uses

[google-appengine] Traffic stats with Google Analytics and Alexa.com

2009-05-06 Thread richardcur...@googlemail.com
Hi, I have a domain example.com with many appspots under the hood. All hosted as subdomains. All include the same Google Analytics script to count traffic pointing to example.com I wonder if Google Analytics and especially Alexa.com will attribute all traffic going to those subdomains to

[google-appengine] Re: Using PyCrypto

2009-05-06 Thread Devel63
Thanks, Nick! On May 6, 3:29 am, Nick Johnson (Google) nick.john...@google.com wrote: On Tue, May 5, 2009 at 11:25 PM, Devel63 danstic...@gmail.com wrote: Has anyone used PyCrypto successfully with App Engine (http:// code.google.com/appengine/docs/python/tools/libraries.html#PyCrypto)?

[google-appengine] Re: 'Entity' object has no attribute '_Entity__unindexed_properties'

2009-05-06 Thread Ben Nevile
I am getting the same bug. 950 times, so almost 0% of the 323.35k requests for that handler served since midnight. but a bug nonetheless. Nothing too complicated is happening. An entity is being loaded into memory, through a standard memcache call that falls back to a datastore call. The values

[google-appengine] Re: You haven't set the DATABASE_ENGINE setting yet

2009-05-06 Thread Albert
I am getting the exact the same error, under python runtime when I check the log , I got pages of such errors, I know nothing about this , seeming that if I set DEBUG = TRUE will decrease such errors but I am not sure of this stack trace: class 'django.core.exceptions.ImproperlyConfigured': You

[google-appengine] Re: You haven't set the DATABASE_ENGINE setting yet

2009-05-06 Thread Albert
It is a very weird error, you know , It just don't happen all the time, but if I trigger /service/bbs/ (a django gateway for PYAMF) and the service is not completed, I got my whole site down and all errors were about DATABASE_ENGINE setting etc, and after a while it recovers automatically If you

[google-appengine] Re: structure of appengine application

2009-05-06 Thread Panos
I have found a structure along the following lines pretty useful for the python based apps: app.yaml index.yaml app/ controllers/ A_ctl.py B_ctl.py ... models/ A.py B.py ... util/ ... templates/ foo.html

[google-appengine] Will a transcript of the IRC chat be published?

2009-05-06 Thread tommytastic
I missed the session ;-( --~--~-~--~~~---~--~~ 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: filter on many to many reference collections

2009-05-06 Thread djidjadji
friends = user.friends This is a query for Connections objects. Other method of writing user = User.get_by_id(uid) Connections.all().filter('friend =', user) # user.friends for friend in friends: print friend.user.key().id() This will perform a query to fetch one (1) User object for

[google-appengine] Re: documentation for memcache namespaces?

2009-05-06 Thread Andy Freeman
That sentence is in the section that lists the functions that have no meaning/for compatibility. In the listing of functions that have meaning, various arguments are listed as having no meaning/for compatibility but namespace isn't one of those arguments. On May 5, 4:00 pm, djidjadji

[google-appengine] Server error (500) when using Data Viewer to query datastore.

2009-05-06 Thread Adam Loving
I am consistently getting 500 errors when executing valid GQL queries to the datastore using the Data Viewer in the admin site. Some queries work, but others do not. The queries are very simple lookups. For example: SELECT * FROM Group where founder ='CHBlockParty' Google formatted error page

[google-appengine] Silicon Valley App Engine developer meetup - Tuesday, May 13, 7 pm

2009-05-06 Thread Bill
For those of you in the northern California area, we have an App Engine developer meetup in Palo Alto next Tuesday. For more details see: http://www.meetup.com/appengine/calendar/10183312/ This meetup will mostly be other developers giving demos of their work on App Engine and discussing

[google-appengine] Re: Error 400: app engine + custom domain + /search?q=a|b|c

2009-05-06 Thread Tag++
To Wooble, I can't separate bad from error,fault or wrong results, as a normal/ general/ordinary user I just click on this link to open it http://admins.googleapps.com/system/app/pages/search?q=error|400 I got a correct/exact/right results and then I focus on browser's address box and press

[google-appengine] Re: 'Entity' object has no attribute '_Entity__unindexed_properties'

2009-05-06 Thread DarkCoiote
The situation is still critical. /shoot 604 70% /getfleet 18 2% There was a small window of time that the error seemed to be gone. The actual time is indicated at my previous posts, when I said it was working a few minutes after posting the error returned... and is

[google-appengine] Re: 'Entity' object has no attribute '_Entity__unindexed_properties'

2009-05-06 Thread ryan
sorry for the trouble, all, this is our fault. we're canarying the upcoming 1.2.2 release, and it looks like entities that were memcached from 1.2.1 aren't compatible with 1.2.2. we're investigating and working on a fix right now. as a short term workaround, try adding this line after you pull

[google-appengine] Re: 'Entity' object has no attribute '_Entity__unindexed_properties'

2009-05-06 Thread DarkCoiote
Alternativaly can I just clear the cache? Thanks for the support! On May 6, 10:48 pm, ryan ryanb+appeng...@google.com wrote: sorry for the trouble, all, this is our fault. we're canarying the upcoming 1.2.2 release, and it looks like entities that were memcached from 1.2.1 aren't compatible

[google-appengine] Silicon Valley App Engine meetup next *Wednesday*, May 13.

2009-05-06 Thread Bill
For those of you in the northern California area, we have an App Engine developer meetup in Palo Alto next Wednesday. I mistakenly wrote Tuesday in a previous message. For more details see: http://www.meetup.com/appengine/calendar/10183312/ This meetup will mostly be other developers giving

[google-appengine] Re: You haven't set the DATABASE_ENGINE setting yet

2009-05-06 Thread ryan
just for the record, DATABASE_ENGINE is a django thing, not an app engine thing. (that's as much as i can help, since i don't really know anything about django.) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[google-appengine] Re: join group-by queries, reports and data warehousing

2009-05-06 Thread bruno.braga
No doubt. You got my star on it! On May 6, 9:20 pm, Barry Hunter barrybhun...@googlemail.com wrote: This would go a long way to facilitate data warehousing type taskshttp://code.google.com/p/googleappengine/issues/detail?id=112 add your star to support it :) On 06/05/2009, bruno.braga