Re: [google-appengine] Strange problem with user ids involving gmail.com

2010-09-20 Thread Ikai Lan (Google)
I've never heard of this issue before. We need the @gmail.com portion in case folks log in with their Google Apps accounts. It might be a bit more inconvenient, but can you store the user ID instead? UserProperty should probably be deprecated in favor of this - we considered forward migrating this

[google-appengine] Strange problem with user ids involving gmail.com

2010-09-17 Thread gwstuff
Hello, We have been facing a really strange problem involving the UserProperty() property. We have an entity type PR: class PR(db.Model): user = db.UserProperty() ... The way we retrieve these entities is through queries of this kind: pr = PR.gql('WHERE user=:1',current_user) ...where