Edgewall Software

Changes between Version 1 and Version 2 of GenshiTutorial


Ignore:
Timestamp:
Aug 29, 2007, 1:48:32 AM (17 years ago)
Author:
cmlenz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GenshiTutorial

    v1 v2  
    11= Genshi Tutorial =
    22
    3 This tutorial is intended to give an introduction on how to use Genshi in your web application, and present common patterns and best practices. It is aimed at developers new to Genshi as well as those who've already used it, but are looking for advice or inspiration on how to improve that usage.
     3This tutorial is intended to give an introduction on how to use Genshi in your web application, and present common patterns and best practices. It is aimed at developers new to Genshi as well as those who've already used Genshi, but are looking for advice or inspiration on how to improve that usage.
    44
    55[[PageOutline(2-3, Content, inline)]]
     
    77== Introduction ==
    88
    9 In this tutorial we'll create a simple Python web application written in [http://cherrpy.org/ CherryPy 3]. !CherryPy was chosen because it does provides a nice 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://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.