view genshi_view/__init__.py @ 0:b65da5423cc9

initial import from https://svn.openplans.org/svn/standalone/templates/genshi_view/trunk/
author k0s <k0scist@gmail.com>
date Tue, 27 Oct 2009 15:11:43 -0400
parents
children
line wrap: on
line source

from paste.script import templates

var = templates.var

class GenshiViewTemplate(templates.Template):
    _template_dir = 'template'
    summary = "a simple view with webob + genshi"
    vars = [
        var('description', 'One-line description of the package'),
        var('author', 'Author name'),
        var('author_email', 'Author email'),
        var('url', 'URL of homepage'),
        var('port', 'port to serve paste')
        ]