[google-appengine] Announcing a credit for App Engine applications with new custom domains

2013-06-14 Thread Andrew Jessup
Hi Everyone, As many of you are aware, last year Google announced that the free, basic version of Google Apps would be discontinued. We wanted to give a quick update on how this impacts Google App Eng

[google-appengine] Re: Safety of using threading.currentThread on GoogleAppEngine (Python)

2013-06-14 Thread timh
Why do you need to call currentThread() to create thread local storage? You can just create threadlocal storage. On Friday, June 14, 2013 8:15:25 PM UTC+8, bmurr wrote: > > After switching threadsafe to true in my app.yaml, I had some concurrency > issues (detailed in this SO question, here : >

Re: [google-appengine] Python OverflowError with Google App Engine 1.8.1 and web2py

2013-06-14 Thread Aravindan Rs
Thanks Takashi, The problem is exactly as you pointed out. I'm using an old version of web2py where this problem exists. Currently I changed auto_id_policy to legacy and it works. I will soon move to latest web2py. Thanks and regards, Aravind. -- You received this message because you are subs

Re: [google-appengine] Re: on reading from google drive

2013-06-14 Thread Vik
well I dont think so. I did not say that reading any random users account. Facebook, twitter does that all the time where you can read the stream of a user using his accessToken etc. You authenticate the app via settings to let it access the account offline and then your app does not need to user m

Re: [google-appengine] Re: Upcoming Change to Datastore Auto IDs

2013-06-14 Thread Nico Verwer
On Friday, June 14, 2013 8:14:43 PM UTC+2, Alfred Fuller wrote: > > 2^53 is the largest exact *integer* value representable by a 64-bit *float > * > * > * > scattered ids are guaranteed to be representable by a 64-bit float which > means they are less than or equal to 2^53. > Thanks a lot for a

Re: [google-appengine] Re: Upcoming Change to Datastore Auto IDs

2013-06-14 Thread Alfred Fuller
2^53 is the largest exact *integer* value representable by a 64-bit *float* * * scattered ids are guaranteed to be representable by a 64-bit float which means they are less than or equal to 2^53. On Fri, Jun 14, 2013 at 11:12 AM, Nico Verwer wrote: > I should have said: 2^53 is the largest exac

[google-appengine] Re: Upcoming Change to Datastore Auto IDs

2013-06-14 Thread Nico Verwer
I should have said: 2^53 is the largest exact integral value representable as a 64-bits integer. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-app

[google-appengine] Re: Upcoming Change to Datastore Auto IDs

2013-06-14 Thread Nico Verwer
On Saturday, May 25, 2013 1:53:33 PM UTC+2, timh wrote: > But not python. It seems to cause the javascript front ends the most woe. This is important to note if your application has a front-end using javascript. It means that any id greater than 9007199254740992 will break, if you try to repr

Re: [google-appengine] Re: on reading from google drive

2013-06-14 Thread Vinny P
On Friday, June 14, 2013 12:43:31 PM UTC-5, Vivek Kumar wrote: > > So, we still want to read a particular users docs but without user to > authenticate explictly > > Just to be clear, you want to read a user's documents, but not need the user's authentication approval? If that were possible, that

Re: [google-appengine] Re: Client side caching and app engine

2013-06-14 Thread Vinny P
On Friday, June 14, 2013 12:32:29 PM UTC-5, Pertti Kellomäki wrote: > Hi Vinny, > > Thanks for the pointers. My app uses Angular and some jQuery so > LocalStorage should be a breeze I guess. What I am really looking for is > some insight into how to minimize the app engine related cost of keepin

Re: [google-appengine] Re: on reading from google drive

2013-06-14 Thread Vik
Well we cant use service account scheme as that one restricts completely to view or modify docs linked to that account using drive UI. So, we still want to read a particular users docs but without user to authenticate explictly Thankx and Regards Vik Founder http://www.sakshum.org http://blog.sak

Re: [google-appengine] Re: Client side caching and app engine

2013-06-14 Thread Pertti Kellomäki
Hi Vinny, Thanks for the pointers. My app uses Angular and some jQuery so LocalStorage should be a breeze I guess. What I am really looking for is some insight into how to minimize the app engine related cost of keeping the client side cache (relatively) up to date. The design I have so far is to

Re: [google-appengine] Re: on reading from google drive

2013-06-14 Thread Vinny P
On Friday, June 14, 2013 12:00:59 PM UTC-5, Vivek Kumar wrote: > I dont have any users doing any explicit action. Our app sitting in GAE > need to access google docs without any user intervention > > Then you chose the wrong authentication scheme. In your SO post you linked to the web app authen

Re: [google-appengine] Re: on reading from google drive

2013-06-14 Thread Vik
Vinay " You put a redirect URL in the section where it says "Authorized Redirect URLs"; this way the user will be redirected back to the app after they grant the app permissions to access their (the user's) account information. But the redirect URL will also contain a ?code= parameter," I dont ha

[google-appengine] Re: mail.sendmail sending multiple emails in python

2013-06-14 Thread Vinny P
On Thursday, June 13, 2013 3:55:32 AM UTC-5, khan wrote: > why mail.sendmail sending multiple emails in python ?? how to stop that ? This is most likely a code issue. Can you post the Python code you're using to send emails? - -Vinny P Technology & Media Advisor Chicago, IL My

[google-appengine] Re: on reading from google drive

2013-06-14 Thread Vinny P
Hello, On Thursday, June 13, 2013 10:32:11 PM UTC-5, Vivek Kumar wrote: > Can someone help us on this please > > http://stackoverflow.com/questions/17057978/issues-in-implementing-server-side-authorization-to-google-drive > > The authorization code is passed back through the redirect URL you pro

[google-appengine] Re: Google App Engine SDK 1.8.1 is now available!

2013-06-14 Thread Abilash Amar
Hi I found the fix for this problem. Here is the link for the solution. http://stackoverflow.com/questions/17076200/php-gae-not-able-to-run-sdk-locally Hope the same is not present in the other builds. On Thursday, 13 June 2013 20:59:29 UTC+5:30, Abilash Amar wrote: > Hi > Those this up

[google-appengine] Re: Client side caching and app engine

2013-06-14 Thread Vinny P
Hello Pertti, When people talk about client-side caching, they usually mean using the HTML5 LocalStorage API (accessible via Javascript on the client-side computer). Here's a good technical overview from Mozilla, including sample code: https://developer.mozilla.org/en-US/docs/Web/Guide/DOM/St

[google-appengine] Re: Unable to use Google App Engine Remote API behind proxy

2013-06-14 Thread Vinny P
Hello Mina, Problems such as this tend to be implementation-specific. If you're running into this problem, can you post the source code you're using and we can check it for issues? - -Vinny P Technology & Media Advisor Chicago, IL My Go side project: http://invalidmail.com/ O

[google-appengine] Safety of using threading.currentThread on GoogleAppEngine (Python)

2013-06-14 Thread bmurr
After switching threadsafe to true in my app.yaml, I had some concurrency issues (detailed in this SO question, here :http://stackoverflow.com/questions/16966365/in-python-does-dummythread-uniquely-identify-the-current-thread). Using threading.currentThread() with a thread-local storage approac

[google-appengine] ndb query bug? query works on appengine website but not on GAE server

2013-06-14 Thread DiTieM
I have been struggling with this for a couple of days and I am touching down. I have this (simplified for the case): class PatientDB ( ndb.Model ): name= ndb.StringProperty( ) doctor = ndb.KeyProperty( ) class SurveyDB ( ndb.Model ): date = ndb.IntegerProperty(

Re: [google-appengine] GAE Java 1.8.1 and broken automatic jetty reload

2013-06-14 Thread Raphael André Bauer
On Fri, Jun 14, 2013 at 9:52 AM, Raphael André Bauer wrote: > On Thu, Jun 13, 2013 at 5:35 PM, Ludovic Champenois wrote: >> Can you try to point the system property "appengine.generated.dir" to an >> existing dir outside of the web-inf area? > > Unfortunately this does not seem to work. > Neithe

Re: [google-appengine] GAE Java 1.8.1 and broken automatic jetty reload

2013-06-14 Thread Raphael André Bauer
On Thu, Jun 13, 2013 at 5:35 PM, Ludovic Champenois wrote: > Can you try to point the system property "appengine.generated.dir" to an > existing dir outside of the web-inf area? Unfortunately this does not seem to work. Neither in the maven plugin using /tmp/winlocal/tmp/...<... nor using -Da