[google-appengine] Fwd: Is anyone using Appstats with Firepython support?

2012-07-13 Thread Guido van Rossum
There's an obscure feature in Appstats that integrates Firepython support. (See https://developers.google.com/appengine/articles/firepython) It appears Firepython is no longer maintained and I doubt there are many users of the combination. Would anyone be terribly disappointed if we dropped

[google-appengine] Re: paid email quota

2012-07-13 Thread pdknsk
Christina told me that every time a credit card charge fails, appengine automatically sets the limit back to 100 emails. It this a very (very) recent change? I've had billing fail recently, and the app continued to work normally, including mail. Google only sent me an email that the app will be

[google-appengine] Re: JPA transactions and entity keys

2012-07-13 Thread Michael Hermus
I don't use JPA myself, so I don't have a code example for you, but you have the right concept at the end of your post. In order to be in the same Entity Group, entities must share the same Parent entity. You should make sure that this is actually sensible in your data model, and not simply do

[google-appengine] Re: Startup time exceeded...on F4?!

2012-07-13 Thread Michael Hermus
Same for me.. I just checked: no calls to warmup, lots of loading requests. **shakes fist at App Engine** On Thursday, July 12, 2012 4:39:48 PM UTC-4, Tom Phillips wrote: Interesting..I checked and I too have 100% of my loading requests on user facing URLs instead of /_ah/warmup. Warmup

Re: [google-appengine] Re: Startup time exceeded...on F4?!

2012-07-13 Thread Takashi Matsuo
Now the warmup requests are fired only if you set min idle instances to some value(not automatic). -- Takashi On Fri, Jul 13, 2012 at 9:52 PM, Michael Hermus michael.her...@gmail.comwrote: Same for me.. I just checked: no calls to warmup, lots of loading requests. **shakes fist at App

[google-appengine] Google App Engine Launcher on Ubuntu

2012-07-13 Thread deostroll
Hi, I am having issues trying to run the launcher in Ubuntu in a specific way. I have described the problem in detail here http://bit.ly/MmOBkL Please have a look and respond any place. Thanks, Arun. -- You received this message because you are subscribed to the Google Groups Google App

Re: [google-appengine] Google App Engine Launcher on Ubuntu

2012-07-13 Thread Takashi Matsuo
Just reading the page briefly, but maybe you can use both of the workaround in the answer #1 and the shell built-in alias feature(see man alias). On Fri, Jul 13, 2012 at 11:29 PM, deostroll deostr...@gmail.com wrote: Hi, I am having issues trying to run the launcher in Ubuntu in a specific

[google-appengine] Re: Using com.google.appengine.api.datastore.Query.CompositeFilterOperator generates java.lang.VerifyError at runtime

2012-07-13 Thread josh cole
not a bugits a developer upgraded last month. On Thursday, July 12, 2012 12:30:57 AM UTC-5, ArnM wrote: Did anyone experience this? I was using query.addFilter(...) before. As this is deprecated now, I changed the code to use Query.FilterPredicate and

[google-appengine] Re: Google App Engine community support is moving to Stack Overflow

2012-07-13 Thread josh cole
i go with steve On Monday, February 6, 2012 8:14:54 PM UTC-6, Ikai Lan wrote: *Hi App Engine Developers, In the last few years, the QA website Stack Overflowhttp://www.stackoverflow.com/has become an invaluable tool for developer communities. We’re pleased to announce that we are

[google-appengine] Drive DrEdit

2012-07-13 Thread richi
Hi, I try to integrate GDrive to GoogleAppEngine and started with the example of DrEdit. Unfortunately, I always get this error message. Who can help me? 1. 2012-07-13 11:31:03.948 Error for /drivex java.lang.NoClassDefFoundError: com/google/api/client/http/HttpTransport

[google-appengine] Webrtc Multi-peer connection

2012-07-13 Thread Michael Adeyeye
Hi Guys, I am trying to implement a multi-party video conference, but I am getting some errors. Messages would not get sent to other peers. Here is my python code - http://pastebin.mozilla.org/1702256 And here is my JS code - http://pastebin.mozilla.org/1702257 -- You received this message

[google-appengine] Re: Content is not allowed in prolog when running JDO Enhancement

2012-07-13 Thread Mir
Hi Sebastian, have you solved it? I have the same problem cheers Mirko On Thursday, August 6, 2009 12:14:39 AM UTC+2, Sebastian Sylvan wrote: I've tried to let Eclipse automatically enhance my classes, but that failed, running it manually produces the following error: DataNucleus

[google-appengine] Is HTTP standard 'Date' header stripped from response when using Appengine's urlfetch?

2012-07-13 Thread Youssef El Bied
Hi, I'm using Appengine's urlfetch (Python) to retrieve some data over the network. For caching purposes, I need the HTTP standard 'Date' header to be found in the received response. Unlike in dev environment, when I deploy my application in your remote servers, I don't receive this header

Re: [google-appengine] Re: Startup time exceeded...on F4?!

2012-07-13 Thread Mauricio Aristizabal
Takashi, this is a piece of info that should be clearly spelled out in the docs IMO. I spent many frustrating hours a while back trying to figure out why my warmup requests were not working until i pieced it all together from different posts such as this one and got 1 resident instance

Re: [google-appengine] Re: Startup time exceeded...on F4?!

2012-07-13 Thread Wilson MacGyver
any reason behind this change? this seems kind of strange. I too was wondering by the behavior till you posted this. I had my min set to automatic also On Fri, Jul 13, 2012 at 9:28 AM, Takashi Matsuo tmat...@google.com wrote: Now the warmup requests are fired only if you set min idle instances

[google-appengine] Re: Could The App Engine Python 2.7 Tutorial Be Broken?

2012-07-13 Thread Jason Elbourne
I have not run the code in the tutorial but it looks fine to me. The error you have received leads me to think you do not have the variable assigned for 'guestbook_name' guestbook_name=self.request.get('guestbook_name') this will give you 'None' or the actual name if it has been passed.

Re: [google-appengine] Drive DrEdit

2012-07-13 Thread Dan Holevoet
Hi, Questions like this are best served on Stack Overflow. There are tags for both google-app-engine and google-drive-sdk. Please inquire there. Thanks, Dan On Fri, Jul 13, 2012 at 11:35 AM, richi richard.j.p...@googlemail.comwrote: Hi, I try to integrate GDrive to GoogleAppEngine and

Re: [google-appengine] Re: Startup time exceeded...on F4?!

2012-07-13 Thread Takashi Matsuo
Hi Mauricio, Yes I understand that, and we've been working on it. Sorry that it's taking long. Hi Wilson, It's coming with the pricing change. Since we started charging with number of instances, we needed to provide more control on how we spin-up a new instances. In other words, if we continued

[google-appengine] Re: Startup time exceeded...on F4?!

2012-07-13 Thread Tom Phillips
Hi Takashi, Now that I've added a resident idle instance, the logs seem to confirm that only the loading of the resident instance is via /_ah/warmup. It's difficult to tell that for sure, but all my current dynamic instances were loaded on a user URL, and the current resident instance was loaded

[google-appengine] Re: Log Filtering Broken

2012-07-13 Thread vlad
It is really bad. Anyone looks at logs? On Sunday, July 8, 2012 10:46:34 PM UTC-7, vlad wrote: Has anyone noticed that Filtering in AdminConsole/Logs has been broken for a while? Basically after you enter a filter expression the log does NOT re-paginate results. Thus forcing you to page