blob: dffae376d5f76270876747af3b16af112120713a (
plain)
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
|
#
# Mapping of error message to URI fragment for the explanations.
#
# $Id: frag.cfg,v 1.6 2002-11-26 21:40:19 ville Exp $
#
# Original SP version.
#
entity end not allowed in comment = \
unterm-comment-1
name start character invalid only s and comment allowed in comment \
declaration = \
unterm-comment-2
name character invalid only s and comment allowed in comment declaration = \
unterm-comment-2
unknown declaration type FOO = \
bad-comment
character FOO not allowed in attribute specification list = \
attr-char
an attribute value must be a literal unless it contains only name characters =\
attr-quoted
syntax of attribute value does not conform to declared value = \
bad-attr-char
length of attribute value must not exceed LITLEN less NORMSEP = \
name-length
element FOO undefined = \
undef-tag
element FOO not allowed here = \
not-allowed
there is no attribute FOO = \
attr-undef
FOO is not a member of the group specified in the declared value of this \
attribute = \
undef-attr-val
FOO is not a member of a group specified for any attribute = \
bad-abbrev-attr
end tag for FOO omitted but its declaration does not permit this = \
no-end-tag
end tag for element FOO which is not open = \
floating-close
end tag for FOO which is not finished = \
omitted-content
start tag for FOO omitted but its declaration does not permit this = \
no-start-tag
general entity FOO not defined and no default entity = \
bad-entity
non SGML character number = \
bad-char
cannot generate system identifier for entity FOO = \
bad-pub-id
ID FOO already defined = \
dup-id
ID FOO first defined here = \
dup-id
#
# Horribly verbose versions from lq-nsgmls.
#
document type does not allow element FOO here = \
not-allowed-contained
there is no attribute FOO for this element in this HTML version = \
attr-undef
an attribute value must be quoted if it contains any character other than \
letters AZaz digits hyphens and periods use quotes if in doubt = \
attr-quoted
element FOO not allowed here possible cause is an inline element containing a \
blocklevel element = \
not-allowed
element FOO not allowed here check which elements this element may be \
contained within = \
not-allowed
missing a required subelement of FOO = \
missing-subel
unknown entity FOO = \
bad-entity
end tag for FOO omitted possible causes include a missing end tag improper \
nesting of elements or use of an element where it is not allowed = \
no-end-tag
start tag was here = \
start-tag
end tag for element FOO which is not open try removing the end tag or check \
for improper nesting of elements = \
floating-close
element FOO not defined in this HTML version = \
undef-tag
required attribute FOO not specified = \
attr-missing
text is not allowed here try wrapping the text in a more descriptive \
container = \
text-not-allowed
value of attribute FOO cannot be FOO must be one of FOO = \
unkn-att-val
character FOO not allowed in attribute specification list possibly caused by \
a missing quotation mark ending a previous attribute value = \
no-attr-end
reference to nonSGML character = \
bad-char
duplicate specification of attribute FOO = \
dup-attr
an attribute specification must start with a name or name token = \
attr-spec-nmtoken
invalid comment declaration check your comment syntax = \
inval-comment
comment declaration started here = \
inval-comment
element FOO not allowed here assuming missing FOO starttag = \
assuming-missing-starttag
#
# Reported but not yet explained...
FOO not finished but containing element ended
#
# Doesn't work for some reason..?
invalid attribute value = \
invalid-attr-val
|