Edgewall Software

Changes between Version 88 and Version 89 of GenshiTutorial


Ignore:
Timestamp:
Sep 7, 2007, 11:32:47 PM (17 years ago)
Author:
markus
Comment:

Fix CherryPy URL

Legend:

Unmodified
Added
Removed
Modified
  • GenshiTutorial

    v88 v89  
    77== Introduction ==
    88
    9 In this tutorial we'll create a simple Python web application based on [http://cherrpy.org/ CherryPy 3]. !CherryPy was chosen because it provides a convenient level of abstraction over raw CGI or [http://wsgi.org/wsgi WSGI] development, but is less ambitious than full-stack web frameworks such as [http://pylonshq.com/ Pylons] or [http://www.djangoproject.com/ Django], which tend to come with a preferred templating language, and often show significant bias towards that language.
     9In this tutorial we'll create a simple Python web application based on [http://cherrypy.org/ CherryPy 3]. !CherryPy was chosen because it provides a convenient level of abstraction over raw CGI or [http://wsgi.org/wsgi WSGI] development, but is less ambitious than full-stack web frameworks such as [http://pylonshq.com/ Pylons] or [http://www.djangoproject.com/ Django], which tend to come with a preferred templating language, and often show significant bias towards that language.
    1010
    1111The application we'll build here is a stripped-down version of sites such as [http://reddit.com/ reddit] or [http://digg.com/ digg]: it lets users submit links to online articles they find interesting, and then lets other users comment on those stories. Just for kicks, we'll call that application '''Geddit?'''.