Edgewall Software

Changes between Version 83 and Version 84 of GenshiTutorial


Ignore:
Timestamp:
Sep 5, 2007, 4:36:20 PM (17 years ago)
Author:
cmlenz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GenshiTutorial

    v83 v84  
    14701470This brings the tutorial to a close. We've demonstrated how you would generally use Genshi in a small Python web application. We've shown some best practices and recipes for making effective use of the features Genshi provides.
    14711471
     1472You can checkout the complete code for this tutorial here:
     1473
     1474  http://svn.edgewall.org/repos/genshi/trunk/examples/tutorial
     1475
    14721476If you like the application we've built here and would like to experiment with further enhancements, feel free to do so. Here are a couple of ideas:
    14731477
    14741478 * [wiki:GenshiTutorial/Authentication Add authentication], preferably based on [http://openid.net/ OpenID] ([http://openidenabled.com/python-openid/ Python libraries for OpenID] are available.)
     1479 * [wiki:GenshiTutorial/CommentThreading Add comment threading], so that people can reply to comments, and comments and replies are displayed in a hierarchical manner.
    14751480 * [wiki:GenshiTutorial/Internationalization Internationalize the application], using Genshi's builtin [wiki:Documentation/i18n.html I18n support] and [http://babel.edgewall.org/ Babel].
    14761481 * [wiki:GenshiTutorial/CsrfProtection Add protection against cross-site request forgery (CSRF) attacks], using the [wiki:Documentation/filters.html#transformer Transformer] filter to inject form tokens in HTML forms.