view genshi_view/__init__.py @ 11:8a7731b2126a

include a post method, a nav bar, and some jquery fun
author k0s <k0scist@gmail.com>
date Sat, 07 Nov 2009 22:49:46 -0500
parents b65da5423cc9
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')
        ]