1 |
wakaba |
1.1 |
#?SuikaWikiConfig/2.0
|
2 |
|
|
|
3 |
|
|
ModuleSet:
|
4 |
|
|
@Name: Web Forms XML Submission
|
5 |
|
|
@Version: 2.0 Call For Comments -- 27 June 2004
|
6 |
|
|
@ID: webforms20-submission
|
7 |
|
|
@Description:
|
8 |
|
|
Web Forms 2.0 XML Submission Format (application/x-www-form+xml).
|
9 |
|
|
@BaseURI:
|
10 |
|
|
|
11 |
|
|
@Description:
|
12 |
|
|
Web Forms 2.0 proposal <http://www.hixie.ch/specs/html/forms/web-forms>.
|
13 |
|
|
|
14 |
|
|
@Namespace:
|
15 |
|
|
@@Name:
|
16 |
|
|
uuid:d10e4fd6-2c01-49e8-8f9d-0ab964387e32
|
17 |
|
|
@@DefaultPrefix: form
|
18 |
|
|
@@UsePrefix: -1
|
19 |
|
|
|
20 |
|
|
@Copyright: Wakaba <w@suika.fam.cx>
|
21 |
|
|
@RCSDate:
|
22 |
|
|
$Date: 2004/05/25 08:47:21 $
|
23 |
|
|
|
24 |
|
|
Datatype:
|
25 |
|
|
@Type:
|
26 |
|
|
@@Name:
|
27 |
|
|
:ContentType
|
28 |
|
|
@@XMLType: CDATA
|
29 |
|
|
@@Description:
|
30 |
|
|
An Internet Media Type (with optional parameters)
|
31 |
|
|
|
32 |
|
|
@Type:
|
33 |
|
|
@@Name: filename
|
34 |
|
|
@@XMLType: CDATA
|
35 |
|
|
@@Description: A file name
|
36 |
|
|
|
37 |
|
|
@Type:
|
38 |
|
|
@@Name: name
|
39 |
|
|
@@XMLType: CDATA
|
40 |
|
|
@@Description: A form control name
|
41 |
|
|
|
42 |
|
|
@Type:
|
43 |
|
|
@@Name: idref
|
44 |
|
|
@@XMLType: NMTOKEN
|
45 |
|
|
@@Description: An ID in form
|
46 |
|
|
|
47 |
|
|
@Type:
|
48 |
|
|
@@Name: index
|
49 |
|
|
@@XMLType: NMTOKEN
|
50 |
|
|
|
51 |
|
|
@Class:
|
52 |
|
|
@@Name: Base64binary.content
|
53 |
|
|
@@Content: (#PCDATA)*
|
54 |
|
|
@@Description:
|
55 |
|
|
Base 64 encoded data with optional (meaningless) white spaces.
|
56 |
|
|
|
57 |
|
|
Module:
|
58 |
|
|
@Name: Submission
|
59 |
|
|
@ID: submission
|
60 |
|
|
|
61 |
|
|
@Element:
|
62 |
|
|
@@Name: submission
|
63 |
|
|
@@Content:
|
64 |
|
|
(
|
65 |
|
|
repeat*,
|
66 |
|
|
(field | file)*
|
67 |
|
|
)
|
68 |
|
|
|
69 |
|
|
@Element:
|
70 |
|
|
@@Name: repeat
|
71 |
|
|
@@Content: "EMPTY"
|
72 |
|
|
@@Attribute:
|
73 |
|
|
@@@Attribute:
|
74 |
|
|
@@@@Name: "template"
|
75 |
|
|
@@@@Type: idref
|
76 |
|
|
@@@@Default: #REQUIRED
|
77 |
|
|
@@@@Description:
|
78 |
|
|
The ID of the template
|
79 |
|
|
@@@Attribute:
|
80 |
|
|
@@@@Name: "index"
|
81 |
|
|
@@@@Type: index
|
82 |
|
|
@@@@Default: #REQUIRED
|
83 |
|
|
@@@@Description:
|
84 |
|
|
The index of the repetition block.
|
85 |
|
|
@@Description:
|
86 |
|
|
For each repetition block in the form data set
|
87 |
|
|
|
88 |
|
|
@Element:
|
89 |
|
|
@@Name: field
|
90 |
|
|
@@Content: (#PCDATA)*
|
91 |
|
|
@@Attribute:
|
92 |
|
|
@@@Attribute:
|
93 |
|
|
@@@@Name: "name"
|
94 |
|
|
@@@@Type: name
|
95 |
|
|
@@@@Default: #REQUIRED
|
96 |
|
|
@@@@Description:
|
97 |
|
|
The name of the form control
|
98 |
|
|
@@@Attribute:
|
99 |
|
|
@@@@Name: "index"
|
100 |
|
|
@@@@Type: index
|
101 |
|
|
@@@@Default: #REQUIRED
|
102 |
|
|
@@@@Description:
|
103 |
|
|
The control index in the definition of form data set
|
104 |
|
|
@@@Attribute:
|
105 |
|
|
@@@@Name:
|
106 |
|
|
"xml:space"
|
107 |
|
|
@@@@Type: "(preserve)"
|
108 |
|
|
@@@@Default: #FIXED "preserve"
|
109 |
|
|
@@@@Description:
|
110 |
|
|
White spaces are significant
|
111 |
|
|
@@Description:
|
112 |
|
|
Successful form control other than a file upload control
|
113 |
|
|
|
114 |
|
|
@Element:
|
115 |
|
|
@@Name: file
|
116 |
|
|
@@Content: $Base64binary.content
|
117 |
|
|
@@Attribute:
|
118 |
|
|
@@@Attribute:
|
119 |
|
|
@@@@Name: "name"
|
120 |
|
|
@@@@Type: name
|
121 |
|
|
@@@@Default: #REQUIRED
|
122 |
|
|
@@@@Description:
|
123 |
|
|
The name of the file control
|
124 |
|
|
@@@Attribute:
|
125 |
|
|
@@@@Name: "index"
|
126 |
|
|
@@@@Type: index
|
127 |
|
|
@@@@Default: #REQUIRED
|
128 |
|
|
@@@@Description:
|
129 |
|
|
The control index in the form data set
|
130 |
|
|
@@@Attribute:
|
131 |
|
|
@@@@Name: "filename"
|
132 |
|
|
@@@@Type: filename
|
133 |
|
|
@@@@Default: #IMPLIED
|
134 |
|
|
@@@@Description:
|
135 |
|
|
The name of the file
|
136 |
|
|
@@@Attribute:
|
137 |
|
|
@@@@Name: "type"
|
138 |
|
|
@@@@Type:
|
139 |
|
|
:ContentType
|
140 |
|
|
@@@@Default: #IMPLIED
|
141 |
|
|
@@@@Description:
|
142 |
|
|
The MIME media type (with parameters if appropriate)
|
143 |
|
|
of the file if known
|
144 |
|
|
@@Description: A file upload
|