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

2008-09-27 Thread Michael
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 [EMAIL PROTECTED] wrote: This issue has been filed and accepted by Google.  It's issue #711. If you

[google-appengine] Re: Using exec() in GAE

2008-09-27 Thread [EMAIL PROTECTED]
dammit, I got confused. I mean the exec statement, not the eval() function. But meanwhile I solved my issues: exec was choking on the wrong sequence of line separators. Thank you! W. --~--~-~--~~~---~--~~ You received this message because you are subscribed to

[google-appengine] No next 20 when filtering by Kind in Data Viewer

2008-09-27 Thread Ken Rimey
Could somebody please say whether they are seeing a next 20 link in the Data Viewer when viewing entities by Kind? I am being shown just 19 entities even when there are hundreds, as confirmed by a GQL query. This pertains to Issue #424, which Google says they can't reproduce. Ken Rimey

[google-appengine] Re: static files problem

2008-09-27 Thread djidjadji
If you use a file in your application code it CAN NOT be put in a static folder. You have to make a separate folder for the templates and not set it to static. Static files are NOT accessible for code. 2008/9/27 fedekun [EMAIL PROTECTED]: Hi, im having a problem :( I have all static files

[google-appengine] Re: High Amount CPU Quota should be removed

2008-09-27 Thread mitnickcbc
Hi Peter, Basically your understanding is correct. I conclude my experience about tuning against the high CPU quota here: 1. Don't care about the Admin Console warning too much. It said you will exceed quota soon for your red requests, but it never happen. So just look at your warning logs. I

[google-appengine] Bug in 1.1.4 (AdjustPath) : path with \\\\ ?

2008-09-27 Thread Sylvain
The function AdjustPath has been changed So now, os.environ['PATH_TRANSLATED'] is wrong 'PATH_TRANSLATED': 'E:Outilseclipse... I've got many (before '\\') Is it a bug ? Regards --~--~-~--~~~---~--~~ You received this message because you are

[google-appengine] Re: static files problem

2008-09-27 Thread fedekun
Aw, ok thanks a lot, i fixed it now :) 2008/9/27 djidjadji [EMAIL PROTECTED] If you use a file in your application code it CAN NOT be put in a static folder. You have to make a separate folder for the templates and not set it to static. Static files are NOT accessible for code.

[google-appengine] Re: Zip django ?

2008-09-27 Thread Ilia Lobsanov
Alexander, take a look at the source code of rietveld... On Sep 26, 6:14 pm, Alexander Pugachev [EMAIL PROTECTED] wrote: Has anyone had django working from django.zip as described athttp://code.google.com/p/googleappengine/issues/detail?id=161#c27? I have py_zipimport.py in my root

[google-appengine] Re: Google Apps, Python C++

2008-09-27 Thread Jason
Thanks for the help guys, was kinda hoping it could call from machines elsewhere, doing the gruntwork on my own servers. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group,

[google-appengine] Re: SUM and COUNT for too many possibilities of result sets

2008-09-27 Thread Barry Hunter
On Sat, Sep 27, 2008 at 5:26 AM, Ilia Lobsanov [EMAIL PROTECTED] wrote: I know aggregates have been discussed a lot already and that the way to do it is at write time. However my application is a full text search engine where each keyword produces a different result set. I need to report

[google-appengine] Re: Proprietary data in the Google cloud

2008-09-27 Thread Cherry
On Sep 26, 6:38 pm, Sam G [EMAIL PROTECTED] wrote: Ron, In fact, spreadsheets and documents will not be included in the index unless you publish them to your website. Hi Sam, Well, that's what I was wondering. I could see some reports being posted to a business website but intended for

[google-appengine] Re: High Amount CPU Quota should be removed

2008-09-27 Thread Martynas Brijunas
Hi, Basically your understanding is correct. I conclude my experience about tuning against the high CPU quota here: my own app gives the high amount of CPU error when it hits the root of the app. I can think of this: 1. py files are probably getting compiled after the app is uploaded 2. a

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

2008-09-27 Thread Sal
Just here to spread the knowledge :D http://stackoverflow.com/questions/141973/how-do-i-get-the-key-value-of-a-dbreferenceproperty-without-a-database-hit On Sep 26, 7:52 pm, theo [EMAIL PROTECTED] wrote: You could change db.ReferenceProperty to db.ListProperty(db.Key) and only ever put one

[google-appengine] Custom HTTP 404/500 messages

2008-09-27 Thread Martynas Brijunas
Hi, I have read that django has the ability to define custom 404 and 500 pages. Does the same apply to the GAE? If yes, how do I go about doing this? Thank you! Martin --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[google-appengine] Re: Proprietary data in the Google cloud

2008-09-27 Thread Sam G
Ron, The only reason a Google Doc or Spreadsheet would be available via Google web search is if you published it to a public facing website. The same would be true for *any* document you posted, Google-doc or not. There is a sharing platform integrated into Docs and Spreadsheets that allows

[google-appengine] app.yaml question

2008-09-27 Thread fedekun
Well, im not sure if i shall do this with app.yamp or WSGIApplication I'm working in something like a social site, so the idea is if you go to www.site.com/username it displays some information about that user, but i dont know how to do it :/ I'm sorry if i'm spamming with these questions but i

[google-appengine] Re: app.yaml question

2008-09-27 Thread djidjadji
To filter you better use the following URL www.site.com/user/username in app.yaml - url: /user/.* script: user.py in user.py application = webapp.WSGIApplication([('/user/(.*)', Showuser) ], debug=True) Look at this link on how to implement the handler

[google-appengine] Re: No next 20 when filtering by Kind in Data Viewer

2008-09-27 Thread Garrett Davis
I just paged through 159 records, 20 at a time, on one of my apps. On Sep 27, 1:47 am, Ken Rimey [EMAIL PROTECTED] wrote: Could somebody please say whether they are seeing a next 20 link in the Data Viewer when viewing entities by Kind?  I am being shown just 19 entities even when there are

[google-appengine] Re: Google app engine django helper, manage.py update, and (1,0,'final')

2008-09-27 Thread Josh
Hmmm, I'm at this again and unfortunately I can't get the helper form SVN to work at all. All I get is: Traceback (most recent call last): File manage.py, line 18, in module InstallAppengineHelperForDjango() File /home/jestelle/django/projects/mysite/appengine_django/ __init__.py, line

[google-appengine] Re: Google Apps, Python C++

2008-09-27 Thread Justin P. Goldberg
Right, utility computing and cloud computing are two different things. On Sat, Sep 27, 2008 at 10:37 AM, Jason [EMAIL PROTECTED] wrote: Thanks for the help guys, was kinda hoping it could call from machines elsewhere, doing the gruntwork on my own servers.

[google-appengine] Re: Proprietary data in the Google cloud

2008-09-27 Thread Cherry
On Sep 27, 4:51 pm, Sam G [EMAIL PROTECTED] wrote: Ron, There is a sharing platform integrated into Docs and Spreadsheets that allows sharing within the domain without making the document public. Sam, That's just what I need. Thanks, Ron Cherry