Comments on: Your Homepage on Google AppEngine http://www.terminally-incoherent.com/blog/2009/02/23/your-homepage-on-google-appengine/ I will not fix your computer. Tue, 04 Aug 2020 22:34:33 +0000 hourly 1 https://wordpress.org/?v=4.7.26 By: Matthew Wilson http://www.terminally-incoherent.com/blog/2009/02/23/your-homepage-on-google-appengine/#comment-17096 Thu, 09 Sep 2010 01:49:29 +0000 http://www.terminally-incoherent.com/blog/2009/02/23/your-homepage-on-google-appengine/#comment-17096

How do you handle redirecting maciak.net over to http://www.maciak.net? Is that something you set up in godaddy?

Reply  |  Quote
]]>
By: Samsul http://www.terminally-incoherent.com/blog/2009/02/23/your-homepage-on-google-appengine/#comment-14839 Sat, 03 Apr 2010 12:31:58 +0000 http://www.terminally-incoherent.com/blog/2009/02/23/your-homepage-on-google-appengine/#comment-14839

Thanks for the post, I’m planning to host my blog on Google App Engine. Trying my first shot with Bloog :-)

Reply  |  Quote
]]>
By: Tyson F. Gautreaux http://www.terminally-incoherent.com/blog/2009/02/23/your-homepage-on-google-appengine/#comment-14508 Sat, 06 Mar 2010 19:58:37 +0000 http://www.terminally-incoherent.com/blog/2009/02/23/your-homepage-on-google-appengine/#comment-14508

Thanks for your post. I am new at python and this will be a big help.

Reply  |  Quote
]]>
By: Sam2 http://www.terminally-incoherent.com/blog/2009/02/23/your-homepage-on-google-appengine/#comment-14271 Wed, 10 Feb 2010 11:31:23 +0000 http://www.terminally-incoherent.com/blog/2009/02/23/your-homepage-on-google-appengine/#comment-14271

i followed your tutorial until i got to where i have to start doing codes in the python sdk.
i need some help in setting it up properly.
i have registered app in google.

Reply  |  Quote
]]>
By: Ashwin http://www.terminally-incoherent.com/blog/2009/02/23/your-homepage-on-google-appengine/#comment-13619 Wed, 18 Nov 2009 17:55:20 +0000 http://www.terminally-incoherent.com/blog/2009/02/23/your-homepage-on-google-appengine/#comment-13619

how can I call my personal web page from google blogger? If I get input from user, where I will store my data?

Reply  |  Quote
]]>
By: Michele http://www.terminally-incoherent.com/blog/2009/02/23/your-homepage-on-google-appengine/#comment-12654 Tue, 30 Jun 2009 09:26:42 +0000 http://www.terminally-incoherent.com/blog/2009/02/23/your-homepage-on-google-appengine/#comment-12654

Very inspiring post!
One question..can you explain how did you configured your domain http://www.maciak.net/ to point your application on google app engine ?
Are you using google apps?

thanks
Michele

Reply  |  Quote
]]>
By: Thierry MICHEL http://www.terminally-incoherent.com/blog/2009/02/23/your-homepage-on-google-appengine/#comment-12618 Wed, 24 Jun 2009 00:55:15 +0000 http://www.terminally-incoherent.com/blog/2009/02/23/your-homepage-on-google-appengine/#comment-12618

Hi, thanks for this post!

I used another way to get dynamically named pages, using the path attribute of the request object as following :


page_name = self.request.path.split('/')[-1]

An example of call is :


http://myapp.appspot.com/pages/my_page_id

and retrieve information about my_page_id’s page from the DB. This way you dont need to have physically your pages on your file system.

Hope this help others fellows,

Cheers

Thierry

Reply  |  Quote
]]>
By: Terminally Incoherent » Blog Archive » Running a Blog on Google Appengine http://www.terminally-incoherent.com/blog/2009/02/23/your-homepage-on-google-appengine/#comment-11710 Thu, 05 Mar 2009 20:24:24 +0000 http://www.terminally-incoherent.com/blog/2009/02/23/your-homepage-on-google-appengine/#comment-11710

[…] Last week, I talked about setting up a dynamic personal web page on Google AppEngine. I mentioned that it would be possible to grow and expand your page beyond the simplistic informational page I have shown you. More specifically, I mentioned running blogs and forums out of it. I already described how to set up a AppEngine based forum so there is no need to reiterate that here. Today I wanted to talk about running your own blog on top of the service. […]

]]>
By: Daniel Hahler http://www.terminally-incoherent.com/blog/2009/02/23/your-homepage-on-google-appengine/#comment-11625 Mon, 23 Feb 2009 21:25:48 +0000 http://www.terminally-incoherent.com/blog/2009/02/23/your-homepage-on-google-appengine/#comment-11625

I’d use “+” as modifier (instead of “*”), since you want at least one character before “.html”.

For the “index” recursion, I’d default to main.html though for “index”. But OTOH, that would be to pages with the same content – not good. After all, it’s fine.

(btw: it sucks that you have to enable JS for posting comments)

Reply  |  Quote
]]>
By: Luke Maciak http://www.terminally-incoherent.com/blog/2009/02/23/your-homepage-on-google-appengine/#comment-11622 Mon, 23 Feb 2009 20:15:32 +0000 http://www.terminally-incoherent.com/blog/2009/02/23/your-homepage-on-google-appengine/#comment-11622

@Daniel Hahler: Good suggestion. See the updated code above. How is that?

Your tip also allowed me to get rid of a nasty recursion use case which happened when p=index. Phew!

Anyway, any suggestions to improve this code are greatly appreciated.

Reply  |  Quote
]]>