Hi,
I want to port the CRUD package of my TG app to 0.9 svn, and may be,
submit it to Turbogear.
But to do this I need to understand some choice...
1) in TableForm : Why using cherrypy.request.form_errors instead of a
dict inserted into input_values with key "error"?
2) in TableForm : Why define form_javascript() and form_css() instead
of
def _get_javascript(self):
# copy code of form_javascript
javascript = property(_get_javascript)
def _get_css(self):
# copy code of form_javascript
css = property(_get_css)
3) in Widget : Why not set default value into the input() and
create_dict() ?
4) in Widget : Why delete the value from param if the value is invalid
into input() ?