[google-appengine] Re: 1.8.9 Pre-Release SDKs are now available.

2014-01-15 Thread Stephen Lewis
Hi Richmond This URL returns '403 Forbidden' for me: https://code.google.com/p/googleappengine/issues/detail?id=10134 Is that intentional? I can't find any discussion in this group about ID allocation collisions. Thanks Stephen On Saturday, 11 January 2014 00:26:59 UTC, Richmond Manzana

Re: [google-appengine] Appstats for Go versions on appengine production

2013-01-28 Thread Stephen Lewis
And when you have, please post a link here so other interested Gophers can star it. Stephen On Monday, 28 January 2013 17:18:30 UTC, schuppe wrote: File a ticket you should: https://code.google.com/p/googleappengine/issues/entry?template=Feature%20request On Fri, Jan 25, 2013 at 6:59 PM,

[google-appengine] Re: How to access the buckets on Cloud Storage?

2012-11-26 Thread Stephen Lewis
You haven't made it clear exactly which API you're trying to use, but if you're trying to create a blobstore key in Python, you might use the following: blobstore.create_gs_key('/gs/bucket/path/to/object') and if you're using the Files API, you might use

[google-appengine] Re: please urgent help in quota problem

2012-11-20 Thread Stephen Lewis
In the 'Caveats on Using Data Admin Features' in https://developers.google.com/appengine/docs/adminconsole/datastoreadmin it's mentioned that 'All Datastore Admin operations occur within your applications, and thus counts against your quota'. (Incidentally, if any Googlers are reading:

[google-appengine] Re: Pagespeed: CombineCss not working

2012-10-25 Thread Stephen Lewis
If I remember correctly, Pagespeed is intelligent about considering the number of concurrent HTTP connections a browser will allow to a particular host. In our case, it didn't start combining Javascript files until we were requesting enough CSS/JS assets to require more than (I think) 6

[google-appengine] Re: Problem in authorizing my App Engine app to access Big Query Cloud Storage

2012-08-03 Thread Stephen Lewis
It seems that you can't do this via the API Console, but you can achieve the same effect by settings appropriate ACLs to grant permissions to your service account using gsutil: https://developers.google.com/storage/docs/gsutil_reference_guide#setorgetacls We've done this with an API project

Re: [google-appengine] Re: managing bulk emails from app engine app

2012-07-19 Thread Stephen Lewis
I'm not the best person to provide a comparison between services because we've only tried Sendgrid. That said, they've been excellent for our needs - we've sent just shy of 2 million mails via them so far. Stephen On Thursday, 19 July 2012 05:32:11 UTC+1, Vivek Kumar wrote: hie can some one

[google-appengine] Re: in admin console, how to select a db or ndb entity with gql by id or name?

2012-07-05 Thread Stephen Lewis
No need to apologise - I hope you're now able to query as you originally intended. Stephen On Thursday, 5 July 2012 05:58:31 UTC+1, saintthor wrote: i am sorry. it seems i misunderstanded the word That has nothing to do with ndb;. 在 2012年7月5日星期四UTC+8上午1时46分20秒,Stephen Lewis写道

[google-appengine] Re: in admin console, how to select a db or ndb entity with gql by id or name?

2012-07-04 Thread Stephen Lewis
The datastore itself draws no distinction between 'ndb entities' and 'db entities' - the syntax Guido suggested will should work for entities created via either the ndb or the db API. Are you unable to query your entities created using the ndb API in the admin console? It works for me...

[google-appengine] Re: Large text files from blobstore are not being gzipped (AppEngine Java)

2012-06-25 Thread Stephen Lewis
increasing. On the upside, https has started to work for us on a custom domain, although with a certificate error. On Saturday, 23 June 2012 05:23:02 UTC+12, Stephen Lewis wrote: Curiosity got the better of me, and I've just tried this - unfortunately, it doesn't work. When serving from

[google-appengine] Re: Large text files from blobstore are not being gzipped (AppEngine Java)

2012-06-22 Thread Stephen Lewis
When you serve up a Cloud Storage object directly from Cloud Storage, you can certainly pre-gzip the content and make sure it's served with the correct 'Content-Encoding'. The reference to this is at: https://developers.google.com/storage/docs/reference-headers#contentencoding I'd be

[google-appengine] Re: Large text files from blobstore are not being gzipped (AppEngine Java)

2012-06-22 Thread Stephen Lewis
affect signed URLs. Stephen On Friday, 22 June 2012 12:42:27 UTC+1, Emanuele Ziglioli wrote: Thanks for the tip! I will certainly try next week. Storing two versions would be nice and easy to do! On Friday, 22 June 2012 23:38:40 UTC+12, Stephen Lewis wrote: When you serve up a Cloud Storage

[google-appengine] Re: Unable to deploy to GAE

2012-05-18 Thread Stephen Lewis
For what it's worth, I'm seeing what looks like the same problem with a Python app. I've reported it as issue 7536http://code.google.com/p/googleappengine/issues/detail?id=7536 . Stephen On Friday, 18 May 2012 17:38:37 UTC+1, Yin Liu wrote: I found I am unable to deploy to GAE with the

[google-appengine] Re: 1.6.6 Pre-release SDKs available

2012-05-17 Thread Stephen Lewis
Hi Marzia It's not in the release notes, but it looks like you've fixed issue 7448http://code.google.com/p/googleappengine/issues/detail?id=7448 (a bug in the TimeBasedHRConsistencyPolicy that caused some transactions never to be applied). Please pass on my thanks to whoever did this - I'm

[google-appengine] Re: Errors

2012-01-12 Thread Stephen Lewis
Hi The 405 status code means 'Method Not Allowed' [0]. It looks like someone (or something) is making a HEAD request to '/', and your app isn't set up to handle HEAD requests. To answer your second question: you can get rid of the errors by adding a handler for these requests. Stephen [0]

[google-appengine] Re: caching and in-transaction queries

2012-01-10 Thread Stephen Lewis
Under the heading Isolation and Consistency in http://code.google.com/appengine/docs/python/datastore/transactions.html it says Unlike with most databases, queries and gets inside a datastore transaction do not see the results of previous writes inside that transaction.. Unless I've