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

2012-07-16 Thread woolwit
Thank You Jason! When the tutorial asked me to replace the MainPage handler, I didn't realize how much of what was there needed to be replaced, and I left a bunch of the old handler in. All better now. Thanks so much. Going to do the tutorial again now that I know I have all the ingredients toget

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

2012-07-14 Thread Jason Elbourne
Not sure if this would be the issue or just the way the last meesage was typed but the code block of: # Ancestor Queries, as shown here, are strongly consistent with the High # Replication Datastore. Queries that span entity groups are eventually # consistent. If we omitted the ancest

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

2012-07-13 Thread woolwit
Hi Jason, and Thank You for taking time to help a noob out. I've gone over everything again and I guess I'm not understanding where to define the guestbook name. In a previous part of the tutorial I did add comments to a guestbook called 'Guestbook', so there should be data to retrieve from what

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

2012-07-13 Thread woolwit
Hi Jason, and Thank You for taking time to help a noob out. I've gone over everything again and I guess I'm not understanding where to define the guestbook name. In a previous part of the tutorial I did add comments to a guestbook called 'Guestbook', so there should be data to retrieve from what

[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. T