[google-appengine] Re: "bogus escape: '\\xa'" error in app.yaml after migration from 1.1.2 to 1.1.3

2008-09-28 Thread kejk
That's great :) Thx Michael for info! On 27 Wrz, 08:20, Michael <[EMAIL PROTECTED]> wrote: > V1.1.4 was released tonight with a fix for this bug.  I installed it, > tested it, and all is well in the universe. > My app.yaml parses just fine-and-dandy. > > -Michael > > On Sep 24, 12:33 pm, Michael

[google-appengine] Re: Timeout - operation took too long

2008-09-28 Thread Ronald
Hi, I don't know how much work has been done on this front, but my app is still cripple by this issue. Maybe the amount of timeout errors in the log has decrease a little, but so has the amount of happy users of my site =( /ronald On Sep 19, 9:45 pm, "Marzia Niccolai" <[EMAIL PROTECTED]> wrote:

[google-appengine] Using sessions in django app engine

2008-09-28 Thread Peter
Hi all, I'm still wacking away at my first google app. Quite a transition from the java web apps I'm used to writing. I'm wanting to be able to recognise a user (without using the gmail thing) for a chat application. The idea being the anonymous users will show up at the site and I'll assig

[google-appengine] Re: Using sessions in django app engine

2008-09-28 Thread Jonk
On 28 syys, 15:05, Peter <[EMAIL PROTECTED]> wrote: >   So I figure the first piece of the puzzle is to work our how to > store and retrieve cookies.  Attempts using HttpResponse.COOKIES and > HttpResponse.get_cookie have met with failure.  No attribute of that > name... > >   Having got that wor

[google-appengine] Why don't I see some (video) search results?

2008-09-28 Thread ShriJ
Hi, When I search for some video results on video.google.com, I get a certain resultset. However, when I search for the same term from an application created using google appengine and using ajax.googleapis.com, I don't the results. For example: Searching for 'expertvillage tennis' on video.go

[google-appengine] Not 48 hours but indexes stuck

2008-09-28 Thread abwaters
It's only been several hours but its already quite a bit longer than any other time in the past. With the other posts about indexes getting stuck building, i thought I would overreact and post a message here... Should I be worried? --~--~-~--~~~---~--~~ You receiv

[google-appengine] URL doesn't work with more than one group

2008-09-28 Thread David Brown
I have some URL patterns like this in webapp.WSGIApplication: (r'/myconfigs', MyConfigsHandler), (r'/myconfigs/(.*)', MyConfigsHandler), # action (r'/myconfigs/(.*)/(.*)', MyConfigsHandler), # action, config_id (r'/myconfigs/(.*)/(.*)/(.*)', MyConfigsHandler), # action, config_id, sub_item (r'/my

[google-appengine] Re: URL doesn't work with more than one group

2008-09-28 Thread Wooble
You need to reverse the order of the patterns; the first one matches everything, so the other ones never get checked. Remember, these are regular expressions, not file globs. On Sep 28, 2:12 pm, David Brown <[EMAIL PROTECTED]> wrote: > I have some URL patterns like this in webapp.WSGIApplication

[google-appengine] Re: Getting key value of db.ReferenceProperty

2008-09-28 Thread Chris Marasti-Georg
haha, yep, thanks Sal. For those wondering, that hate stackoverflow/links, the problem (it seems) was that my custom function wasn't converting the value to a str. This seems to work class Comment(db.Model): series = db.ReferenceProperty(reference_class=Series); def series_id(self):

[google-appengine] Re: bulkload_client key_name & parent not possible?

2008-09-28 Thread Akume
does that mean you have two of the same entry in the datastore now though? shouldn't you remove 'entity' after you've put it's values into 'newent'? -akume On Aug 14, 4:49 am, ilial <[EMAIL PROTECTED]> wrote: > Hi, > > Here's my HandleEntity. Hope that helps. > >     def HandleEntity(self, entit

[google-appengine] Warning 1221mcycles /!\ 0kb

2008-09-28 Thread Davide Rognoni
Why I see this warning? 09-28 12:44PM 34.736 / 302 371ms 1221mcycles /!\ 0kb 80.104.73.53 - - [28/09/2008:12:44:35 -0700] "GET / HTTP/1.1" 302 0 - - This request used a high amount of CPU, and was roughly 1.2 times over the average request CPU limit. High CPU requests have a small quota, and if y

[google-appengine] Caching images

2008-09-28 Thread fedekun
Is there a way to store dynamic images in the browser cache? -- Best Regards. fedekun --~--~-~--~~~---~--~~ 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@

[google-appengine] Re: Caching images

2008-09-28 Thread Davide Rognoni
Using the same URL. "HTTP Caching" http://httpwatch.com/httpgallery/caching/ This is not a GAE question :-) On Sep 28, 10:10 pm, fedekun <[EMAIL PROTECTED]> wrote: > Is there a way to store dynamic images in the browser cache? > > -- > Best Regards. > fedekun --~--~-~--~~--

[google-appengine] Re: Still having trouble with high-cpu warnings for thumbnails.

2008-09-28 Thread iceanfire
Thanks for the suggestions. I see the need for Cacheing to reduce the load, but I don't understand why the current request is causing high- cpu warnings (2 times the average cpu request). At this rate, if a few first time users use my application & try to open images that haven't been memcached (e

[google-appengine] Re: Log errors that don't make sense to me

2008-09-28 Thread iceanfire
I can't really help you with this issue. but I just wanted to say: Your app is amazing. On Sep 27, 8:56 pm, Daniel <[EMAIL PROTECTED]> wrote: > I've recently connected my appengine powered game to facebook.  I have > appengine serving up the facebook pages and I'm getting some errors in > the log

[google-appengine] Re: urlfetch problem

2008-09-28 Thread theaellen
This seems to work for displaying a live Picasa web albums on my page: def renderhtml(request): req=urlfetch.fetch('http://www.picasaweb.google.com') response= HttpResponse() response.write(req.content) return response Thank you Alexander! On Sep 20, 9:32 pm, Alexander Kojevnikov <[EMA

[google-appengine] Re: Log errors that don't make sense to me

2008-09-28 Thread Daniel
Thanks very much! We weren't completely sure appengine would work out for this sort of interactive game, but it's done quite well. On Sep 28, 2:35 pm, iceanfire <[EMAIL PROTECTED]> wrote: > I can't really help you with this issue. but I just wanted to say: > Your app is amazing. > > On Sep 27,

[google-appengine] Re: Log errors that don't make sense to me

2008-09-28 Thread Ross Ridge
Daniel wrote: > I've recently connected my appengine powered game to facebook. I have > appengine serving up the facebook pages and I'm getting some errors in > the logs that really don't look like errors to me.. looks more like a > log of a transaction to facebook. Any ideas why this would be >

[google-appengine] Re: Log errors that don't make sense to me

2008-09-28 Thread Daniel
Thanks Ross, I think that was it. I did have a logging.debug() in there, I just didn't expect that to show up in the "error" section. But looks like it may have been. Thanks! D On Sep 28, 8:06 pm, Ross Ridge <[EMAIL PROTECTED]> wrote: > Daniel wrote: > > I've recently connected my appengine po