Hi,
The Cgi library is jolly, but I've uncovered a problem:
*) textarea with a non-empty value produces HTML like
<TEXTAREA
NAME="Value"
ROWS="3"
COLLS="50"
WRAP=""
>
________Initial string
______</TEXTAREA>
The extra blanks (marked as _'s) becomes significant with
textarea. A simple fix that seems to work really well is to
extend ppElement with a clause:
ppElement tag attributes [Text plain]
= ppOpenTag tag attributes <> Pretty.text plain <> ppCloseTag tag
Regards,
Tommy
PS: What's the status of the Cgi lib? Can we expect it to evolve in
the future?