On Thu, Mar 13, 2003 at 01:28:29PM -0800, Jim Dukarm wrote: > In converting the Form rendering templates to methods, I just applied > str() to all the htmltext. The creation of htmltext by the widgets > that the Form renders does not cause any perplexities, and does not > require the Form class to have template methods, so it is indeed easy > to eliminate the PTL dependency. Not exactly. If you look at the form framework from 0.5.1 you will see that some widgets take "quote" keyword arguments. In 0.6, that argument is gone and everything that is not htmltext will have special characters escaped. It's probably not such a big deal since usually it doesn't make sense to pass HTML markup to widgets. Neil