formish

How do I customize formish error messages?

I'm using formish to handle web forms but I don't like the automatically generated error messages when validation fails. Where do I customize those error messages? ...

How does one pre-populate a Python Formish form?

How does one pre-populate a Formish form? The obvious method as per the documentation doesn't seem right. Using one of the provided examples: import formish, schemaish structure = schemaish.Structure() structure.add( 'a', schemaish.String() ) structure.add( 'b', schemaish.Integer() ) schema = schemaish.Structure() schema.add( 'myStruct'...