[google-appengine] Re: how best to represent a directed graph w/ 25K nodes? (for path planning)

2008-12-29 Thread Ross Ridge
Amar Pai wrote: So if I shard my graph into 3 parts, my main class can store them as class variables and they'll persist across requests? That would be great. But will I run into quota problems holding 3M data in memory? (Assuming low overhead otherwise, and only 100ish requests per day)

[google-appengine] Re: create an image-processing website with GAE?

2008-12-29 Thread James Yan
hey, i found another much simpler example: http://www.faceresearch.org/demos/rotate anybody can figure out how it works? On Fri, Nov 28, 2008 at 8:29 AM, James Yan jyan...@gmail.com wrote: i think the image processing module should handled in server side with some c-wrote lib, the server

[google-appengine] Re: Use AppEngine on Vista x64

2008-12-29 Thread dartdog
I just got Hello world running on App engine Vista 64. See here. http://tombrander.wordpress.com/2008/12/28/getting-started-with-google-app-engine-hello-world/ On Dec 25, 5:03 pm, ehmo disku...@gmail.com wrote: i have very similiar problem. i'm using x64vistabut just x86 python. for my scripts

[google-appengine] Flex 3 parse xml string from Model.to_xml() Error

2008-12-29 Thread Tony
I am implementing an app, Flex 3 as the GUI via pyamf. In a response, return a string by calling model.to_xml() and parse the result in flex 3, var data:XML = new XML(resultStr); It raised a exception TypeError: Error #1083: The prefix gd for element gd:postalAddress is not bound. Who can tell

[google-appengine] Loading template variables in one class / method

2008-12-29 Thread JpMaxMan
Greetings! Am spending some time over the holidays familiarizing myself w/ the appengine. Am new to python and to the webapp framework. I have my app pretty much working, but am trying now to optimize it. I am writing an app that maintains the username w/ a login / logout link in the upper

[google-appengine] cant regedit GAE

2008-12-29 Thread hansen
display the infomation This application ID or version is already in use. when i create an application . how can i do ? thank you --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google App Engine group. To post to

[google-appengine] ReferenceProperty failed to be resolved

2008-12-29 Thread dloomer
Getting a ReferenceProperty failed to be resolved error and I can swear up and down that the ReferenceProperty *should* be able to be resolved -- i.e., this is not your classic case of referenced entities being deleted, as the data is all there. Model definition (abridged): class

[google-appengine] Re: Model field value choices - can the list be generated dynamically?

2008-12-29 Thread johnP
I initially implemented using __str__ (without much thought). Then in some cases, started seeing unicode decode errors in template views if a user inputs international characters. Switching to __unicode__ resolved this category of issues. That was the practical difference, for me, between

[google-appengine] Re: Got 'The site you have requested could not be found. (404)'

2008-12-29 Thread Marzia Niccolai
Hi Min, The 'www' mapping is known to be a bit stubborn. Please follow the directions here: http://groups.google.com/group/google-appengine/web/deleting-existing-www-mapping-from-google-apps If this does not work, please include your domain name so that we can investigate further. -Marzia On

[google-appengine] Re: App Engine developers in Austin

2008-12-29 Thread Marzia Niccolai
Hi, If you are planning on organizing a meet up, you might consider hosting a Hackathon In A Box: http://sites.google.com/site/hackathoninabox/Home -Marzia On Fri, Dec 26, 2008 at 11:16 AM, warreninaustintexas warreninaus...@gmail.com wrote: Are there any other App Engine developers in

[google-appengine] Re: 1st post, template error when integrating django polls to app engine

2008-12-29 Thread Marzia Niccolai
Hi, It looks like this is probably an issue with the Django template syntax. Please include the template for better troubleshooting. Thanks, Marzia On Sat, Dec 27, 2008 at 4:40 AM, ltcstyle ltcst...@gmail.com wrote: Hi All, It's my first time here, also my first time to write django app

[google-appengine] Re: A bug? On My Applications panel, I can't visit the app whose name only contains number chars.

2008-12-29 Thread Marzia Niccolai
Hi, Can you include the app.yaml that you are using when attempting to upload the application. There does seem to be some issue with the links in your dashboard that I am investigating as well. Thanks, Marzia On Sun, Dec 28, 2008 at 1:02 AM, Max maxiao...@gmail.com wrote: Not deployed, and

[google-appengine] Re: How do you debug?

2008-12-29 Thread Marzia Niccolai
Hi, I haven't had a chance to experiment with this yet, but you might try FirePython for debugging your app: http://github.com/darwin/firepython/tree/master -Marzia On Sun, Dec 28, 2008 at 3:04 PM, Chen Harel chook.ha...@gmail.com wrote: Does anyone here have a simple way to breakpoint your

[google-appengine] Re: Cannot create new application

2008-12-29 Thread Marzia Niccolai
Hi Hu, Your assessment of the situation sounds correct. If you are going to use the same email, there isn't currently a good way to fix the situation, you will need to access both appengine.google.com and appengine.google.com/a/YOURDOMAIN to manage your accounts. Also, you can not create

[google-appengine] Re: How to: www.mygreatapp.com/userjohn www.userjohn.com

2008-12-29 Thread Marzia Niccolai
Hi Tomas, Currently, the only way you could accomplish such a thing is to have users add your application id to their domain, and then check each request for the domain from which the request was sent. Using the domain information, you can then serve up the correct profile for that domain.

[google-appengine] Re: Loading template variables in one class / method

2008-12-29 Thread Marzia Niccolai
Hi, For App Engine, my usual strategy is to def BaseRequestHandler(webapp.RequestHandler) which generates this information, and then to have each web request handler inherit from BaseRequestHandler. On the templating side, you can also define a base.html template which render those links, and

[google-appengine] Re: inequality, order and limit

2008-12-29 Thread Marzia Niccolai
Hi, You can order on properties that are not used in the inequality filter, as long as you order _first_ by the inequality filter property. So what you can do is: score_query.filter('score_date ', date_diff) score_query.order('-score_date') score_query.order('-score') Then, if you limit the

[google-appengine] Re: Error while uploading the App

2008-12-29 Thread Marzia Niccolai
Hi, Some Googling turned up this: http://mail.python.org/pipermail/python-list/2007-October/463596.html This is because urllib2 does not support HTTPS proxies (neither doesurllib). See Python cookbook for a hack to get it working. And this recipe: http://code.activestate.com/recipes/301740/

[google-appengine] Re: ReferenceProperty failed to be resolved

2008-12-29 Thread Marzia Niccolai
Hi, What is the value of the key when you use get_value_for_datastore on this property? See recipe: http://appengine-cookbook.appspot.com/recipe/getting-dbreferenceproperty-key-without-loading-entity -Marzia On Sun, Dec 28, 2008 at 11:41 AM, dloomer dloo...@gmail.com wrote: Getting a

[google-appengine] Re: Error while uploading the App

2008-12-29 Thread Malte Ubl
I used to have this error. The solution is to comment out the code within the SDK that makes urllib2 proxy aware. The real bug here is that it does not help to use a different connection. The system was trying to use the proxy configured on my ethernet port while I was only connected with

[google-appengine] Re: need creative idea for admin of GAE app via smtp2web and gmail

2008-12-29 Thread Nash-t
Thanks for checking it out. -Tim On Dec 28, 5:04 pm, nickmilon nickmi...@gmail.com wrote: Well ... not real answers from me to your question yet but nice application you made regards Nick On Dec 29, 1:47 am, Nash-t timna...@gmail.com wrote: I should add that there will be a

[google-appengine] Re: unable to add 'www' subdomain for app engine service

2008-12-29 Thread Marzia Niccolai
Hi, This issue should now be fixed. -Marzia On Tue, Dec 23, 2008 at 7:52 PM, paradise hahag...@gmail.com wrote: Thanks, Marzia, Looking forward your further info. On Dec 24, 2:09 am, Marzia Niccolai ma...@google.com wrote: Hi, I'm following up with the Google Apps team to see if I

[google-appengine] GAE App: Read My Tweets - CAPTCHA-based tweet exchange

2008-12-29 Thread Amir Michail
Hello, This app is currently in early testing: http://readmytweets.com To see what this is all about, see: http://groups.google.com/group/twitter-development-talk/browse_thread/thread/c4820fbb9bb296d7 Amir --~--~-~--~~~---~--~~ You received this message

[google-appengine] Blank Page when requesting site

2008-12-29 Thread Jose J
My apology for bringing up what might be a beginner question. I am working on a new application and I occasionally get a blank page on the first request for an application. The blank page is completely blank. The source of the page is blank as well. My application request log reports it as a

[google-appengine] Re: cant regedit GAE

2008-12-29 Thread Tony
just use the other name and try it again. On Dec 29, 10:52 pm, hansen hansen.n...@gmail.com wrote: display the infomation This application ID or version is already in use.  when i create an application . how can i do ? thank you --~--~-~--~~~---~--~~ You

[google-appengine] Vote for App Engine

2008-12-29 Thread warreninaustintexas
Vote for Google App Engine at the 2008 TechCrunch product awards (Crunchies) web site: http://crunchies2008.techcrunch.com/votes/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google App Engine group. To post

[google-appengine] Re: cant regedit GAE

2008-12-29 Thread hansen
thank you now it's ok... ^_^ i wishgae can support java . 2008/12/30 Tony ahw...@gmail.com just use the other name and try it again. On Dec 29, 10:52 pm, hansen hansen.n...@gmail.com wrote: display the infomation This application ID or version is already in use. when i create an