Add your ideas below for building Webware servlets using the "inheritance" approach, getting data from Webware, etc.
-- MikeOrr - 15 Dec 2001
FunFormKit. Suggested usage by Aaron Held on the Webware list. In your servlet:
rf = self.renderableForm(defaults=defaults, optionSet=options)
t = Template(file=templateFile,searchList=[{'rf':rf, 'user':userToView_}])
In the template:
<tr>
<td align="right" valign="top" class="label">
${rf.username.description}:</td>
<td>${rf.username} $rf</td>
</tr>
-- MikeOrr - 15 Dec 2001
---
While we're waiting for the real cheetah/webware plugin, you can use this simple one that I wrote which allows webware to serve .tmpl files directly.
http://www.lowestplane.org/python/CheetahWebware.tar.gz
-- JohnQuigley - 18 Jun 2002