forked from Pylons/deform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RESEARCH.txt
44 lines (26 loc) · 1.32 KB
/
RESEARCH.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
General
JQuery Remote Form Validation
http://john.beynon.org.uk/2009/02/11/jquery-validation-remote-attribute/
Client-side rule-based validation system that can validate
fields based on a callback.
IRC Topics
Use setTimeout rather than (plus?) onBlur for field validation
Accessibility?
Order-Reliance
RFC
http://www.w3.org/TR/html401/interact/forms.html#h-17.13.4.1
(wrt application/x-www-form-urlencoded)
""" The control names/values are listed in the order they
appear in the document. The name is separated from the value
by `=' and name/value pairs are separated from each other by
`&'. """
http://www.w3.org/TR/html401/interact/forms.html#h-17.13.4.2
""" A "multipart/form-data" message contains a series of parts,
each representing a successful control. The parts are sent to the
processing agent in the same order the corresponding controls
appear in the document stream. """
Hudson Structured Form Submission
http://wiki.hudson-ci.org/display/HUDSON/Structured+Form+Submission
Hudson submits structured JSON form info as a hidden field. <div>
tags in the form represent implied structure.
Zope field marshalling to convert flat stuff to structure