Mercurial > moin > 1.9
view MoinMoin/widget/base.py @ 0:77665d8e2254
tag of nonpublic@localhost--archive/moin--enterprise--1.5--base-0
(automatically generated log message)
imported from: moin--main--1.5--base-0
author | Thomas Waldmann <tw-public@gmx.de> |
---|---|
date | Thu, 22 Sep 2005 15:09:50 +0000 |
parents | |
children | 7828d27399d4 |
line wrap: on
line source
# -*- coding: iso-8859-1 -*- """ MoinMoin - Widget base class @copyright: 2002 by Jürgen Hermann <jh@web.de> @license: GNU GPL, see COPYING for details. """ class Widget: def __init__(self, request, **kw): self.request = request def render(self): raise NotImplementedError