XSS testing I'm not sure about, but it definitely does sanity testing on fields generated by forms created through its Forms API (http://docs.djangoproject.com/en/dev/topics/forms/?from=olddocs) (which auto-generates form fields that are tied to predefined field types, e.g. IntegerField, CharField, EmailField, &c). I think it's possible to do this "more than one field with the same name" trick using the Forms API, but I haven't quite worked out how to do that yet; it might require rolling a new Field type. (There's a ComboField type that can be constructed from multiple types of fields, but documentation on it is sparse and I'm not sure whether it can be used to generate multiple inputs or if it's just for fields that should be able to accept more than one class of input, e.g. text or numbers).
Since this form is handrolled, I'm doing input validation &c myself.
(no subject)
Date: 2008-12-14 08:35 pm (UTC)Since this form is handrolled, I'm doing input validation &c myself.