-
Notifications
You must be signed in to change notification settings - Fork 862
Expand file tree
/
Copy pathuri.whatwg.urlvalidationerrortype.xml
More file actions
201 lines (168 loc) · 7.49 KB
/
uri.whatwg.urlvalidationerrortype.xml
File metadata and controls
201 lines (168 loc) · 7.49 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
<?xml version="1.0" encoding="utf-8"?>
<reference xml:id="enum.uri-whatwg-urlvalidationerrortype" role="enum" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://docbook.org/ns/docbook">
<title>The Uri\WhatWg\UrlValidationErrorType enum</title>
<titleabbrev>Uri\WhatWg\UrlValidationErrorType</titleabbrev>
<partintro>
<section xml:id="enum.uri-whatwg-urlvalidationerrortype.intro">
&reftitle.intro;
<simpara>
The possible validation errors defined in the <link xlink:href="&url.url.whatwg-url;">WHATWG URL Standard</link>.
</simpara>
</section>
<section xml:id="enum.uri-whatwg-urlvalidationerrortype.synopsis">
&reftitle.enumsynopsis;
<packagesynopsis>
<package>Uri\WhatWg</package>
<enumsynopsis>
<enumname>UrlValidationErrorType</enumname>
<enumitem>
<enumidentifier>DomainToAscii</enumidentifier>
<enumitemdescription>Error during the process of converting the domain name to an ASCII string.</enumitemdescription>
</enumitem>
<enumitem>
<enumidentifier>DomainToUnicode</enumidentifier>
<enumitemdescription>Error during the process of converting the domain name to a Unicode string.</enumitemdescription>
</enumitem>
<enumitem>
<enumidentifier>DomainInvalidCodePoint</enumidentifier>
<enumitemdescription>The input's host contains a forbidden domain code point.</enumitemdescription>
</enumitem>
<enumitem>
<enumidentifier>HostInvalidCodePoint</enumidentifier>
<enumitemdescription>An opaque host (in a URL that is not special) contains a forbidden host code point.</enumitemdescription>
</enumitem>
<enumitem>
<enumidentifier>Ipv4EmptyPart</enumidentifier>
<enumitemdescription>An IPv4 address ends with a <literal>U+002E</literal> (<literal>.</literal>).</enumitemdescription>
</enumitem>
<enumitem>
<enumidentifier>Ipv4TooManyParts</enumidentifier>
<enumitemdescription>An IPv4 address does not consist of exactly 4 parts.</enumitemdescription>
</enumitem>
<enumitem>
<enumidentifier>Ipv4NonNumericPart</enumidentifier>
<enumitemdescription>An IPv4 address part is not numeric.</enumitemdescription>
</enumitem>
<enumitem>
<enumidentifier>Ipv4NonDecimalPart</enumidentifier>
<enumitemdescription>The IPv4 address contains numbers expressed using hexadecimal or octal digits.</enumitemdescription>
</enumitem>
<enumitem>
<enumidentifier>Ipv4OutOfRangePart</enumidentifier>
<enumitemdescription>An IPv4 address part exceeds <literal>255</literal>.</enumitemdescription>
</enumitem>
<enumitem>
<enumidentifier>Ipv6Unclosed</enumidentifier>
<enumitemdescription>An IPv6 address is missing the closing <literal>U+005D</literal> (<literal>]</literal>).</enumitemdescription>
</enumitem>
<enumitem>
<enumidentifier>Ipv6InvalidCompression</enumidentifier>
<enumitemdescription>An IPv6 address begins with improper compression.</enumitemdescription>
</enumitem>
<enumitem>
<enumidentifier>Ipv6TooManyPieces</enumidentifier>
<enumitemdescription>An IPv6 address contains more than 8 pieces.</enumitemdescription>
</enumitem>
<enumitem>
<enumidentifier>Ipv6MultipleCompression</enumidentifier>
<enumitemdescription>An IPv6 address is compressed in more than one spot.</enumitemdescription>
</enumitem>
<enumitem>
<enumidentifier>Ipv6InvalidCodePoint</enumidentifier>
<enumitemdescription>
An IPv6 address contains a code point that is neither an ASCII hex digit
nor a <literal>U+003A</literal> (<literal>:</literal>). Or it unexpectedly ends.
</enumitemdescription>
</enumitem>
<enumitem>
<enumidentifier>Ipv6TooFewPieces</enumidentifier>
<enumitemdescription>An uncompressed IPv6 address contains fewer than 8 pieces.</enumitemdescription>
</enumitem>
<enumitem>
<enumidentifier>Ipv4InIpv6TooManyPieces</enumidentifier>
<enumitemdescription>An IPv6 address with IPv4 address syntax: the IPv6 address has more than 6 pieces.</enumitemdescription>
</enumitem>
<enumitem>
<enumidentifier>Ipv4InIpv6InvalidCodePoint</enumidentifier>
<enumitemdescription>An IPv6 address with IPv4 address syntax.</enumitemdescription>
</enumitem>
<enumitem>
<enumidentifier>Ipv4InIpv6OutOfRangePart</enumidentifier>
<enumitemdescription>An IPv6 address with IPv4 address syntax: an IPv4 part exceeds <literal>255</literal>.</enumitemdescription>
</enumitem>
<enumitem>
<enumidentifier>Ipv4InIpv6TooFewParts</enumidentifier>
<enumitemdescription>An IPv6 address with IPv4 address syntax: an IPv4 address contains too few parts.</enumitemdescription>
</enumitem>
<enumitem>
<enumidentifier>InvalidUrlUnit</enumidentifier>
<enumitemdescription>A code point is found that is not a URL unit.</enumitemdescription>
</enumitem>
<enumitem>
<enumidentifier>SpecialSchemeMissingFollowingSolidus</enumidentifier>
<enumitemdescription>The input’s scheme is not followed by <literal>//</literal>.</enumitemdescription>
</enumitem>
<enumitem>
<enumidentifier>MissingSchemeNonRelativeUrl</enumidentifier>
<enumitemdescription>
The input is missing a scheme, because it does not begin with an ASCII alpha, and either no base URL was provided
or the base URL cannot be used as a base URL because it has an opaque path.
</enumitemdescription>
</enumitem>
<enumitem>
<enumidentifier>InvalidReverseSoldius</enumidentifier>
<enumitemdescription>The URL has a special scheme and it uses <literal>U+005C</literal> (<literal>\</literal>)
instead of <literal>U+002F</literal> (<literal>/</literal>).</enumitemdescription>
</enumitem>
<enumitem>
<enumidentifier>InvalidCredentials</enumidentifier>
<enumitemdescription>The input includes credentials.</enumitemdescription>
</enumitem>
<enumitem>
<enumidentifier>HostMissing</enumidentifier>
<enumitemdescription>The input has a special scheme, but does not contain a host.</enumitemdescription>
</enumitem>
<enumitem>
<enumidentifier>PortOutOfRange</enumidentifier>
<enumitemdescription>The input’s port is too big.</enumitemdescription>
</enumitem>
<enumitem>
<enumidentifier>PortInvalid</enumidentifier>
<enumitemdescription>The input’s port is invalid.</enumitemdescription>
</enumitem>
<enumitem>
<enumidentifier>FileInvalidWindowsDriveLetter</enumidentifier>
<enumitemdescription>
The input is a relative-URL string that starts with a Windows drive letter and
the base URL's scheme is <literal>file</literal>.
</enumitemdescription>
</enumitem>
<enumitem>
<enumidentifier>FileInvalidWindowsDriveLetterHost</enumidentifier>
<enumitemdescription>A <literal>file:</literal> URL's host is a Windows drive letter.</enumitemdescription>
</enumitem>
</enumsynopsis>
</packagesynopsis>
</section>
</partintro>
</reference>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->