1 |
wakaba |
1.1 |
package Whatpm::ContentChecker; |
2 |
|
|
use strict; |
3 |
wakaba |
1.97 |
our $VERSION=do{my @r=(q$Revision: 1.96 $=~/\d+/g);sprintf "%d."."%02d" x $#r,@r}; |
4 |
wakaba |
1.1 |
|
5 |
wakaba |
1.18 |
require Whatpm::URIChecker; |
6 |
|
|
|
7 |
wakaba |
1.13 |
## ISSUE: How XML and XML Namespaces conformance can (or cannot) |
8 |
|
|
## be applied to an in-memory representation (i.e. DOM)? |
9 |
|
|
|
10 |
wakaba |
1.50 |
## TODO: Conformance of an HTML document with non-html root element. |
11 |
|
|
|
12 |
wakaba |
1.70 |
## Stability |
13 |
wakaba |
1.67 |
sub FEATURE_STATUS_REC () { 0b1 } ## Interoperable standard |
14 |
|
|
sub FEATURE_STATUS_CR () { 0b10 } ## Call for implementation |
15 |
|
|
sub FEATURE_STATUS_LC () { 0b100 } ## Last call for comments |
16 |
|
|
sub FEATURE_STATUS_WD () { 0b1000 } ## Working or editor's draft |
17 |
|
|
|
18 |
wakaba |
1.70 |
## Deprecated |
19 |
|
|
sub FEATURE_DEPRECATED_SHOULD () { 0b100000 } ## SHOULD-level |
20 |
|
|
sub FEATURE_DEPRECATED_INFO () { 0b1000000 } ## Does not affect conformance |
21 |
|
|
|
22 |
|
|
## Conformance |
23 |
|
|
sub FEATURE_ALLOWED () { 0b10000 } |
24 |
|
|
|
25 |
wakaba |
1.42 |
my $HTML_NS = q<http://www.w3.org/1999/xhtml>; |
26 |
wakaba |
1.9 |
my $XML_NS = q<http://www.w3.org/XML/1998/namespace>; |
27 |
|
|
my $XMLNS_NS = q<http://www.w3.org/2000/xmlns/>; |
28 |
|
|
|
29 |
wakaba |
1.42 |
my $Namespace = { |
30 |
wakaba |
1.79 |
'' => {loaded => 1}, |
31 |
wakaba |
1.43 |
q<http://www.w3.org/2005/Atom> => {module => 'Whatpm::ContentChecker::Atom'}, |
32 |
wakaba |
1.72 |
q<http://purl.org/syndication/history/1.0> |
33 |
|
|
=> {module => 'Whatpm::ContentChecker::Atom'}, |
34 |
|
|
q<http://purl.org/syndication/threading/1.0> |
35 |
|
|
=> {module => 'Whatpm::ContentChecker::Atom'}, |
36 |
wakaba |
1.42 |
$HTML_NS => {module => 'Whatpm::ContentChecker::HTML'}, |
37 |
|
|
$XML_NS => {loaded => 1}, |
38 |
|
|
$XMLNS_NS => {loaded => 1}, |
39 |
wakaba |
1.73 |
q<http://www.w3.org/1999/02/22-rdf-syntax-ns#> => {loaded => 1}, |
40 |
wakaba |
1.42 |
}; |
41 |
|
|
|
42 |
wakaba |
1.79 |
sub load_ns_module ($) { |
43 |
|
|
my $nsuri = shift; # namespace URI or '' |
44 |
|
|
unless ($Namespace->{$nsuri}->{loaded}) { |
45 |
|
|
if ($Namespace->{$nsuri}->{module}) { |
46 |
|
|
eval qq{ require $Namespace->{$nsuri}->{module} } or die $@; |
47 |
|
|
} else { |
48 |
|
|
$Namespace->{$nsuri}->{loaded} = 1; |
49 |
|
|
} |
50 |
|
|
} |
51 |
|
|
} # load_ns_module |
52 |
|
|
|
53 |
wakaba |
1.42 |
our $AttrChecker = { |
54 |
wakaba |
1.9 |
$XML_NS => { |
55 |
wakaba |
1.13 |
space => sub { |
56 |
|
|
my ($self, $attr) = @_; |
57 |
|
|
my $value = $attr->value; |
58 |
|
|
if ($value eq 'default' or $value eq 'preserve') { |
59 |
|
|
# |
60 |
|
|
} else { |
61 |
|
|
## NOTE: An XML "error" |
62 |
wakaba |
1.83 |
$self->{onerror}->(node => $attr, level => $self->{level}->{xml_error}, |
63 |
wakaba |
1.33 |
type => 'invalid attribute value'); |
64 |
wakaba |
1.13 |
} |
65 |
|
|
}, |
66 |
|
|
lang => sub { |
67 |
wakaba |
1.35 |
my ($self, $attr) = @_; |
68 |
wakaba |
1.47 |
my $value = $attr->value; |
69 |
|
|
if ($value eq '') { |
70 |
|
|
# |
71 |
|
|
} else { |
72 |
|
|
require Whatpm::LangTag; |
73 |
|
|
Whatpm::LangTag->check_rfc3066_language_tag ($value, sub { |
74 |
wakaba |
1.83 |
$self->{onerror}->(@_, node => $attr); |
75 |
wakaba |
1.85 |
}, $self->{level}); |
76 |
wakaba |
1.47 |
} |
77 |
|
|
|
78 |
wakaba |
1.13 |
## NOTE: "The values of the attribute are language identifiers |
79 |
|
|
## as defined by [IETF RFC 3066], Tags for the Identification |
80 |
|
|
## of Languages, or its successor; in addition, the empty string |
81 |
|
|
## may be specified." ("may" in lower case) |
82 |
wakaba |
1.94 |
## NOTE: Is an RFC 3066-valid (but RFC 4646-invalid) language tag |
83 |
wakaba |
1.47 |
## allowed today? |
84 |
|
|
|
85 |
|
|
## TODO: test data |
86 |
|
|
|
87 |
wakaba |
1.89 |
my $nsuri = $attr->owner_element->namespace_uri; |
88 |
|
|
if (defined $nsuri and $nsuri eq $HTML_NS) { |
89 |
|
|
my $lang_attr = $attr->owner_element->get_attribute_node_ns |
90 |
|
|
(undef, 'lang'); |
91 |
|
|
if ($lang_attr) { |
92 |
|
|
my $lang_attr_value = $lang_attr->value; |
93 |
|
|
$lang_attr_value =~ tr/A-Z/a-z/; ## ASCII case-insensitive |
94 |
|
|
my $value = $value; |
95 |
|
|
$value =~ tr/A-Z/a-z/; ## ASCII case-insensitive |
96 |
|
|
if ($lang_attr_value ne $value) { |
97 |
|
|
## NOTE: HTML5 Section "The |lang| and |xml:lang| attributes" |
98 |
|
|
$self->{onerror}->(node => $attr, |
99 |
|
|
type => 'xml:lang ne lang', |
100 |
|
|
level => $self->{level}->{must}); |
101 |
|
|
} |
102 |
|
|
} |
103 |
|
|
} |
104 |
|
|
|
105 |
wakaba |
1.35 |
if ($attr->owner_document->manakai_is_html) { # MUST NOT |
106 |
wakaba |
1.83 |
$self->{onerror}->(node => $attr, type => 'in HTML:xml:lang', |
107 |
|
|
level => $self->{level}->{must}); |
108 |
wakaba |
1.35 |
## TODO: Test data... |
109 |
|
|
} |
110 |
wakaba |
1.13 |
}, |
111 |
|
|
base => sub { |
112 |
|
|
my ($self, $attr) = @_; |
113 |
|
|
my $value = $attr->value; |
114 |
|
|
if ($value =~ /[^\x{0000}-\x{10FFFF}]/) { ## ISSUE: Should we disallow noncharacters? |
115 |
|
|
$self->{onerror}->(node => $attr, |
116 |
wakaba |
1.83 |
type => 'invalid attribute value', |
117 |
|
|
level => $self->{level}->{fact}, ## TODO: correct? |
118 |
|
|
); |
119 |
wakaba |
1.13 |
} |
120 |
wakaba |
1.18 |
## NOTE: Conformance to URI standard is not checked since there is |
121 |
|
|
## no author requirement on conformance in the XML Base specification. |
122 |
wakaba |
1.13 |
}, |
123 |
|
|
id => sub { |
124 |
|
|
my ($self, $attr) = @_; |
125 |
|
|
my $value = $attr->value; |
126 |
|
|
$value =~ s/[\x09\x0A\x0D\x20]+/ /g; |
127 |
|
|
$value =~ s/^\x20//; |
128 |
|
|
$value =~ s/\x20$//; |
129 |
|
|
## TODO: NCName in XML 1.0 or 1.1 |
130 |
|
|
## TODO: declared type is ID? |
131 |
wakaba |
1.83 |
if ($self->{id}->{$value}) { |
132 |
|
|
$self->{onerror}->(node => $attr, |
133 |
|
|
type => 'duplicate ID', |
134 |
|
|
level => $self->{level}->{xml_id_error}); |
135 |
wakaba |
1.37 |
push @{$self->{id}->{$value}}, $attr; |
136 |
wakaba |
1.13 |
} else { |
137 |
wakaba |
1.37 |
$self->{id}->{$value} = [$attr]; |
138 |
wakaba |
1.13 |
} |
139 |
|
|
}, |
140 |
wakaba |
1.9 |
}, |
141 |
|
|
$XMLNS_NS => { |
142 |
wakaba |
1.13 |
'' => sub { |
143 |
|
|
my ($self, $attr) = @_; |
144 |
|
|
my $ln = $attr->manakai_local_name; |
145 |
|
|
my $value = $attr->value; |
146 |
|
|
if ($value eq $XML_NS and $ln ne 'xml') { |
147 |
|
|
$self->{onerror} |
148 |
wakaba |
1.83 |
->(node => $attr, |
149 |
|
|
type => 'Reserved Prefixes and Namespace Names:Name', |
150 |
|
|
text => $value, |
151 |
|
|
level => $self->{level}->{nc}); |
152 |
wakaba |
1.13 |
} elsif ($value eq $XMLNS_NS) { |
153 |
|
|
$self->{onerror} |
154 |
wakaba |
1.83 |
->(node => $attr, |
155 |
|
|
type => 'Reserved Prefixes and Namespace Names:Name', |
156 |
|
|
text => $value, |
157 |
|
|
level => $self->{level}->{nc}); |
158 |
wakaba |
1.13 |
} |
159 |
|
|
if ($ln eq 'xml' and $value ne $XML_NS) { |
160 |
|
|
$self->{onerror} |
161 |
wakaba |
1.83 |
->(node => $attr, |
162 |
|
|
type => 'Reserved Prefixes and Namespace Names:Prefix', |
163 |
|
|
text => $ln, |
164 |
|
|
level => $self->{level}->{nc}); |
165 |
wakaba |
1.13 |
} elsif ($ln eq 'xmlns') { |
166 |
|
|
$self->{onerror} |
167 |
wakaba |
1.83 |
->(node => $attr, |
168 |
|
|
type => 'Reserved Prefixes and Namespace Names:Prefix', |
169 |
|
|
text => $ln, |
170 |
|
|
level => $self->{level}->{nc}); |
171 |
wakaba |
1.13 |
} |
172 |
|
|
## TODO: If XML 1.0 and empty |
173 |
|
|
}, |
174 |
|
|
xmlns => sub { |
175 |
|
|
my ($self, $attr) = @_; |
176 |
|
|
## TODO: In XML 1.0, URI reference [RFC 3986] or an empty string |
177 |
|
|
## TODO: In XML 1.1, IRI reference [RFC 3987] or an empty string |
178 |
wakaba |
1.18 |
## TODO: relative references are deprecated |
179 |
wakaba |
1.13 |
my $value = $attr->value; |
180 |
|
|
if ($value eq $XML_NS) { |
181 |
|
|
$self->{onerror} |
182 |
wakaba |
1.83 |
->(node => $attr, |
183 |
|
|
type => 'Reserved Prefixes and Namespace Names:Name', |
184 |
|
|
text => $value, |
185 |
|
|
level => $self->{level}->{nc}); |
186 |
wakaba |
1.13 |
} elsif ($value eq $XMLNS_NS) { |
187 |
|
|
$self->{onerror} |
188 |
wakaba |
1.83 |
->(node => $attr, |
189 |
|
|
type => 'Reserved Prefixes and Namespace Names:Name', |
190 |
|
|
text => $value, |
191 |
|
|
level => $self->{level}->{nc}); |
192 |
wakaba |
1.13 |
} |
193 |
|
|
}, |
194 |
wakaba |
1.9 |
}, |
195 |
|
|
}; |
196 |
|
|
|
197 |
wakaba |
1.14 |
## ISSUE: Should we really allow these attributes? |
198 |
wakaba |
1.13 |
$AttrChecker->{''}->{'xml:space'} = $AttrChecker->{$XML_NS}->{space}; |
199 |
|
|
$AttrChecker->{''}->{'xml:lang'} = $AttrChecker->{$XML_NS}->{lang}; |
200 |
wakaba |
1.89 |
## NOTE: Checker for (null, "xml:lang") attribute is shadowed for |
201 |
|
|
## HTML elements in Whatpm::ContentChecker::HTML. |
202 |
wakaba |
1.13 |
$AttrChecker->{''}->{'xml:base'} = $AttrChecker->{$XML_NS}->{base}; |
203 |
|
|
$AttrChecker->{''}->{'xml:id'} = $AttrChecker->{$XML_NS}->{id}; |
204 |
|
|
|
205 |
wakaba |
1.79 |
our $AttrStatus; |
206 |
|
|
|
207 |
|
|
for (qw/space lang base id/) { |
208 |
|
|
$AttrStatus->{$XML_NS}->{$_} = FEATURE_STATUS_REC | FEATURE_ALLOWED; |
209 |
|
|
$AttrStatus->{''}->{"xml:$_"} = FEATURE_STATUS_REC | FEATURE_ALLOWED; |
210 |
|
|
## XML 1.0: FEATURE_STATUS_CR |
211 |
|
|
## XML 1.1: FEATURE_STATUS_REC |
212 |
|
|
## XML Namespaces 1.0: FEATURE_STATUS_CR |
213 |
|
|
## XML Namespaces 1.1: FEATURE_STATUS_REC |
214 |
|
|
## XML Base: FEATURE_STATUS_REC |
215 |
|
|
## xml:id: FEATURE_STATUS_REC |
216 |
|
|
} |
217 |
|
|
|
218 |
|
|
$AttrStatus->{$XMLNS_NS}->{''} = FEATURE_STATUS_REC | FEATURE_ALLOWED; |
219 |
|
|
|
220 |
|
|
## TODO: xsi:schemaLocation for XHTML2 support (very, very low priority) |
221 |
|
|
|
222 |
wakaba |
1.60 |
our %AnyChecker = ( |
223 |
|
|
check_start => sub { }, |
224 |
|
|
check_attrs => sub { |
225 |
|
|
my ($self, $item, $element_state) = @_; |
226 |
|
|
for my $attr (@{$item->{node}->attributes}) { |
227 |
wakaba |
1.9 |
my $attr_ns = $attr->namespace_uri; |
228 |
wakaba |
1.92 |
if (defined $attr_ns) { |
229 |
|
|
load_ns_module ($attr_ns); |
230 |
|
|
} else { |
231 |
|
|
$attr_ns = ''; |
232 |
|
|
} |
233 |
wakaba |
1.9 |
my $attr_ln = $attr->manakai_local_name; |
234 |
wakaba |
1.79 |
|
235 |
wakaba |
1.9 |
my $checker = $AttrChecker->{$attr_ns}->{$attr_ln} |
236 |
wakaba |
1.60 |
|| $AttrChecker->{$attr_ns}->{''}; |
237 |
wakaba |
1.79 |
my $status = $AttrStatus->{$attr_ns}->{$attr_ln} |
238 |
|
|
|| $AttrStatus->{$attr_ns}->{''}; |
239 |
|
|
if (not defined $status) { |
240 |
|
|
$status = FEATURE_ALLOWED; |
241 |
|
|
## NOTE: FEATURE_ALLOWED for all attributes, since the element |
242 |
|
|
## is not supported and therefore "attribute not defined" error |
243 |
|
|
## should not raised (too verbose) and global attributes should be |
244 |
|
|
## allowed anyway (if a global attribute has its specified creteria |
245 |
|
|
## for where it may be specified, then it should be checked in it's |
246 |
|
|
## checker function). |
247 |
|
|
} |
248 |
wakaba |
1.9 |
if ($checker) { |
249 |
|
|
$checker->($self, $attr); |
250 |
wakaba |
1.17 |
} else { |
251 |
wakaba |
1.83 |
$self->{onerror}->(node => $attr, |
252 |
|
|
type => 'unknown attribute', |
253 |
|
|
level => $self->{level}->{uncertain}); |
254 |
wakaba |
1.9 |
} |
255 |
wakaba |
1.79 |
$self->_attr_status_info ($attr, $status); |
256 |
wakaba |
1.9 |
} |
257 |
|
|
}, |
258 |
wakaba |
1.60 |
check_child_element => sub { |
259 |
|
|
my ($self, $item, $child_el, $child_nsuri, $child_ln, |
260 |
|
|
$child_is_transparent, $element_state) = @_; |
261 |
|
|
if ($self->{minus_elements}->{$child_nsuri}->{$child_ln}) { |
262 |
|
|
$self->{onerror}->(node => $child_el, |
263 |
|
|
type => 'element not allowed:minus', |
264 |
wakaba |
1.83 |
level => $self->{level}->{must}); |
265 |
wakaba |
1.60 |
} elsif ($self->{plus_elements}->{$child_nsuri}->{$child_ln}) { |
266 |
|
|
# |
267 |
|
|
} else { |
268 |
|
|
# |
269 |
|
|
} |
270 |
|
|
}, |
271 |
|
|
check_child_text => sub { }, |
272 |
|
|
check_end => sub { |
273 |
|
|
my ($self, $item, $element_state) = @_; |
274 |
wakaba |
1.82 |
## NOTE: There is a modified copy of the code below for |html:ruby|. |
275 |
wakaba |
1.60 |
if ($element_state->{has_significant}) { |
276 |
wakaba |
1.66 |
$item->{real_parent_state}->{has_significant} = 1; |
277 |
wakaba |
1.60 |
} |
278 |
|
|
}, |
279 |
|
|
); |
280 |
|
|
|
281 |
|
|
our $ElementDefault = { |
282 |
|
|
%AnyChecker, |
283 |
wakaba |
1.70 |
status => FEATURE_ALLOWED, |
284 |
|
|
## NOTE: No "element not defined" error - it is not supported anyway. |
285 |
wakaba |
1.60 |
check_start => sub { |
286 |
|
|
my ($self, $item, $element_state) = @_; |
287 |
wakaba |
1.83 |
$self->{onerror}->(node => $item->{node}, |
288 |
|
|
type => 'unknown element', |
289 |
|
|
level => $self->{level}->{uncertain}); |
290 |
wakaba |
1.60 |
}, |
291 |
wakaba |
1.1 |
}; |
292 |
|
|
|
293 |
wakaba |
1.60 |
our $HTMLEmbeddedContent = { |
294 |
|
|
## NOTE: All embedded content is also phrasing content. |
295 |
|
|
$HTML_NS => { |
296 |
|
|
img => 1, iframe => 1, embed => 1, object => 1, video => 1, audio => 1, |
297 |
|
|
canvas => 1, |
298 |
|
|
}, |
299 |
|
|
q<http://www.w3.org/1998/Math/MathML> => {math => 1}, |
300 |
|
|
q<http://www.w3.org/2000/svg> => {svg => 1}, |
301 |
|
|
## NOTE: Foreign elements with content (but no metadata) are |
302 |
|
|
## embedded content. |
303 |
|
|
}; |
304 |
|
|
|
305 |
wakaba |
1.95 |
our $IsInHTMLInteractiveContent = sub { |
306 |
|
|
my ($el, $nsuri, $ln) = @_; |
307 |
|
|
|
308 |
|
|
## NOTE: This CODE returns whether an element that is conditionally |
309 |
|
|
## categorizzed as an interactive content is currently in that |
310 |
|
|
## condition or not. See $HTMLInteractiveContent list defined in |
311 |
|
|
## Whatpm::ContentChecler::HTML for the list of all (conditionally |
312 |
|
|
## or permanently) interactive content. |
313 |
|
|
|
314 |
|
|
if ($nsuri eq $HTML_NS and ($ln eq 'video' or $ln eq 'audio')) { |
315 |
|
|
return $el->has_attribute ('controls'); |
316 |
|
|
} elsif ($nsuri eq $HTML_NS and $ln eq 'menu') { |
317 |
|
|
my $value = $el->get_attribute ('type'); |
318 |
|
|
$value =~ tr/A-Z/a-z/; # ASCII case-insensitive |
319 |
|
|
return ($value eq 'toolbar'); |
320 |
|
|
} else { |
321 |
|
|
return 1; |
322 |
|
|
} |
323 |
|
|
}; # $IsInHTMLInteractiveContent |
324 |
|
|
|
325 |
wakaba |
1.7 |
my $HTMLTransparentElements = { |
326 |
wakaba |
1.90 |
$HTML_NS => {qw/ins 1 del 1 font 1 noscript 1 canvas 1 a 1/}, |
327 |
wakaba |
1.29 |
## NOTE: |html:noscript| is transparent if scripting is disabled |
328 |
|
|
## and not in |head|. |
329 |
wakaba |
1.7 |
}; |
330 |
|
|
|
331 |
wakaba |
1.61 |
my $HTMLSemiTransparentElements = { |
332 |
|
|
$HTML_NS => {object => 1, video => 1, audio => 1}, |
333 |
|
|
}; |
334 |
wakaba |
1.57 |
|
335 |
wakaba |
1.42 |
our $Element = {}; |
336 |
wakaba |
1.7 |
|
337 |
wakaba |
1.73 |
$Element->{q<http://www.w3.org/1999/02/22-rdf-syntax-ns#>}->{RDF} = { |
338 |
|
|
%AnyChecker, |
339 |
|
|
status => FEATURE_STATUS_REC | FEATURE_ALLOWED, |
340 |
|
|
is_root => 1, ## ISSUE: Not explicitly allowed for non application/rdf+xml |
341 |
|
|
check_start => sub { |
342 |
|
|
my ($self, $item, $element_state) = @_; |
343 |
|
|
my $triple = []; |
344 |
|
|
push @{$self->{return}->{rdf}}, [$item->{node}, $triple]; |
345 |
|
|
require Whatpm::RDFXML; |
346 |
|
|
my $rdf = Whatpm::RDFXML->new; |
347 |
wakaba |
1.75 |
## TODO: Should we make bnodeid unique in a document? |
348 |
wakaba |
1.73 |
$rdf->{onerror} = $self->{onerror}; |
349 |
wakaba |
1.84 |
$rdf->{level} = $self->{level}; |
350 |
wakaba |
1.73 |
$rdf->{ontriple} = sub { |
351 |
|
|
my %opt = @_; |
352 |
|
|
push @$triple, |
353 |
|
|
[$opt{node}, $opt{subject}, $opt{predicate}, $opt{object}]; |
354 |
wakaba |
1.74 |
if (defined $opt{id}) { |
355 |
|
|
push @$triple, |
356 |
|
|
[$opt{node}, |
357 |
|
|
$opt{id}, |
358 |
|
|
{uri => q<http://www.w3.org/1999/02/22-rdf-syntax-ns#subject>}, |
359 |
|
|
$opt{subject}]; |
360 |
|
|
push @$triple, |
361 |
|
|
[$opt{node}, |
362 |
|
|
$opt{id}, |
363 |
|
|
{uri => q<http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate>}, |
364 |
|
|
$opt{predicate}]; |
365 |
|
|
push @$triple, |
366 |
|
|
[$opt{node}, |
367 |
|
|
$opt{id}, |
368 |
|
|
{uri => q<http://www.w3.org/1999/02/22-rdf-syntax-ns#object>}, |
369 |
|
|
$opt{object}]; |
370 |
|
|
push @$triple, |
371 |
|
|
[$opt{node}, |
372 |
|
|
$opt{id}, |
373 |
|
|
{uri => q<http://www.w3.org/1999/02/22-rdf-syntax-ns#type>}, |
374 |
|
|
{uri => q<http://www.w3.org/1999/02/22-rdf-syntax-ns#Statement>}]; |
375 |
|
|
} |
376 |
wakaba |
1.73 |
}; |
377 |
|
|
$rdf->convert_rdf_element ($item->{node}); |
378 |
|
|
}, |
379 |
|
|
}; |
380 |
|
|
|
381 |
wakaba |
1.83 |
my $default_error_level = { |
382 |
|
|
must => 'm', |
383 |
|
|
should => 's', |
384 |
|
|
warn => 'w', |
385 |
|
|
good => 'w', |
386 |
wakaba |
1.93 |
undefined => 'w', |
387 |
wakaba |
1.83 |
info => 'i', |
388 |
wakaba |
1.85 |
|
389 |
wakaba |
1.83 |
uncertain => 'u', |
390 |
|
|
|
391 |
wakaba |
1.84 |
html4_fact => 'm', |
392 |
wakaba |
1.89 |
html5_no_may => 'm', |
393 |
|
|
|
394 |
wakaba |
1.83 |
xml_error => 'm', ## TODO: correct? |
395 |
wakaba |
1.88 |
xml_id_error => 'm', ## TODO: ? |
396 |
wakaba |
1.83 |
nc => 'm', ## XML Namespace Constraints ## TODO: correct? |
397 |
wakaba |
1.84 |
|
398 |
wakaba |
1.91 |
## |Whatpm::URIChecker| |
399 |
wakaba |
1.85 |
uri_syntax => 'm', |
400 |
|
|
uri_fact => 'm', |
401 |
|
|
uri_lc_must => 'm', |
402 |
|
|
uri_lc_should => 'w', |
403 |
|
|
|
404 |
wakaba |
1.91 |
## |Whatpm::IMTChecker| |
405 |
wakaba |
1.87 |
mime_must => 'm', # lowercase "must" |
406 |
|
|
mime_fact => 'm', |
407 |
|
|
mime_strongly_discouraged => 'w', |
408 |
|
|
mime_discouraged => 'w', |
409 |
|
|
|
410 |
wakaba |
1.91 |
## |Whatpm::LangTag| |
411 |
wakaba |
1.85 |
langtag_fact => 'm', |
412 |
|
|
|
413 |
wakaba |
1.91 |
## |Whatpm::RDFXML| |
414 |
wakaba |
1.84 |
rdf_fact => 'm', |
415 |
|
|
rdf_grammer => 'm', |
416 |
|
|
rdf_lc_must => 'm', |
417 |
wakaba |
1.91 |
|
418 |
|
|
## |Message::Charset::Info| and |Whatpm::Charset::DecodeHandle| |
419 |
|
|
charset_variant => 'm', |
420 |
|
|
## An error caused by use of a variant charset that is not conforming |
421 |
|
|
## to the original charset (e.g. use of 0x80 in an ISO-8859-1 document |
422 |
|
|
## which is interpreted as a Windows-1252 document instead). |
423 |
|
|
charset_fact => 'm', |
424 |
|
|
iso_shall => 'm', |
425 |
wakaba |
1.83 |
}; |
426 |
|
|
|
427 |
wakaba |
1.56 |
sub check_document ($$$;$) { |
428 |
|
|
my ($self, $doc, $onerror, $onsubdoc) = @_; |
429 |
wakaba |
1.42 |
$self = bless {}, $self unless ref $self; |
430 |
|
|
$self->{onerror} = $onerror; |
431 |
wakaba |
1.56 |
$self->{onsubdoc} = $onsubdoc || sub { |
432 |
|
|
warn "A subdocument is not conformance-checked"; |
433 |
|
|
}; |
434 |
wakaba |
1.1 |
|
435 |
wakaba |
1.83 |
$self->{level} ||= $default_error_level; |
436 |
wakaba |
1.48 |
|
437 |
wakaba |
1.73 |
## TODO: If application/rdf+xml, RDF/XML mode should be invoked. |
438 |
|
|
|
439 |
wakaba |
1.42 |
my $docel = $doc->document_element; |
440 |
|
|
unless (defined $docel) { |
441 |
|
|
## ISSUE: Should we check content of Document node? |
442 |
wakaba |
1.83 |
$onerror->(node => $doc, type => 'no document element', |
443 |
|
|
level => $self->{level}->{must}); |
444 |
wakaba |
1.42 |
## ISSUE: Is this non-conforming (to what spec)? Or just a warning? |
445 |
|
|
return { |
446 |
|
|
class => {}, |
447 |
|
|
id => {}, table => [], term => {}, |
448 |
|
|
}; |
449 |
wakaba |
1.1 |
} |
450 |
|
|
|
451 |
wakaba |
1.42 |
## ISSUE: Unexpanded entity references and HTML5 conformance |
452 |
wakaba |
1.1 |
|
453 |
wakaba |
1.42 |
my $docel_nsuri = $docel->namespace_uri; |
454 |
wakaba |
1.92 |
if (defined $docel_nsuri) { |
455 |
|
|
load_ns_module ($docel_nsuri); |
456 |
|
|
} else { |
457 |
|
|
$docel_nsuri = ''; |
458 |
|
|
} |
459 |
wakaba |
1.42 |
my $docel_def = $Element->{$docel_nsuri}->{$docel->manakai_local_name} || |
460 |
|
|
$Element->{$docel_nsuri}->{''} || |
461 |
|
|
$ElementDefault; |
462 |
|
|
if ($docel_def->{is_root}) { |
463 |
|
|
# |
464 |
wakaba |
1.50 |
} elsif ($docel_def->{is_xml_root}) { |
465 |
|
|
unless ($doc->manakai_is_html) { |
466 |
|
|
# |
467 |
|
|
} else { |
468 |
wakaba |
1.83 |
$onerror->(node => $docel, type => 'element not allowed:root:xml', |
469 |
|
|
level => $self->{level}->{must}); |
470 |
wakaba |
1.50 |
} |
471 |
wakaba |
1.42 |
} else { |
472 |
wakaba |
1.83 |
$onerror->(node => $docel, type => 'element not allowed:root', |
473 |
|
|
level => $self->{level}->{must}); |
474 |
wakaba |
1.1 |
} |
475 |
|
|
|
476 |
wakaba |
1.42 |
## TODO: Check for other items other than document element |
477 |
|
|
## (second (errorous) element, text nodes, PI nodes, doctype nodes) |
478 |
wakaba |
1.2 |
|
479 |
wakaba |
1.56 |
my $return = $self->check_element ($docel, $onerror, $onsubdoc); |
480 |
wakaba |
1.51 |
|
481 |
wakaba |
1.52 |
## TODO: Test for these checks are necessary. |
482 |
wakaba |
1.51 |
my $charset_name = $doc->input_encoding; |
483 |
|
|
if (defined $charset_name) { |
484 |
|
|
require Message::Charset::Info; |
485 |
|
|
my $charset = $Message::Charset::Info::IANACharset->{$charset_name}; |
486 |
|
|
|
487 |
wakaba |
1.71 |
if ($doc->manakai_is_html) { |
488 |
|
|
if (not $doc->manakai_has_bom and |
489 |
|
|
not defined $doc->manakai_charset) { |
490 |
|
|
unless ($charset->{is_html_ascii_superset}) { |
491 |
wakaba |
1.86 |
$onerror->(node => $doc, |
492 |
|
|
level => $self->{level}->{must}, |
493 |
wakaba |
1.83 |
type => 'non ascii superset', |
494 |
|
|
text => $charset_name); |
495 |
wakaba |
1.71 |
} |
496 |
|
|
|
497 |
|
|
if (not $self->{has_charset} and ## TODO: This does not work now. |
498 |
|
|
not $charset->{iana_names}->{'us-ascii'}) { |
499 |
wakaba |
1.86 |
$onerror->(node => $doc, |
500 |
|
|
level => $self->{level}->{must}, |
501 |
wakaba |
1.83 |
type => 'no character encoding declaration', |
502 |
|
|
text => $charset_name); |
503 |
wakaba |
1.71 |
} |
504 |
wakaba |
1.51 |
} |
505 |
wakaba |
1.71 |
|
506 |
|
|
if ($charset->{iana_names}->{'utf-8'}) { |
507 |
|
|
# |
508 |
|
|
} elsif ($charset->{iana_names}->{'jis_x0212-1990'} or |
509 |
|
|
$charset->{iana_names}->{'x-jis0208'} or |
510 |
|
|
$charset->{iana_names}->{'utf-32'} or ## ISSUE: UTF-32BE? UTF-32LE? |
511 |
wakaba |
1.91 |
($charset->{category} & Message::Charset::Info::CHARSET_CATEGORY_EBCDIC ())) { |
512 |
wakaba |
1.71 |
$onerror->(node => $doc, |
513 |
wakaba |
1.83 |
type => 'bad character encoding', |
514 |
|
|
text => $charset_name, |
515 |
|
|
level => $self->{level}->{should}, |
516 |
|
|
layer => 'encode'); |
517 |
wakaba |
1.71 |
} elsif ($charset->{iana_names}->{'cesu-8'} or |
518 |
|
|
$charset->{iana_names}->{'utf-8'} or ## ISSUE: UNICODE-1-1-UTF-7? |
519 |
|
|
$charset->{iana_names}->{'bocu-1'} or |
520 |
|
|
$charset->{iana_names}->{'scsu'}) { |
521 |
|
|
$onerror->(node => $doc, |
522 |
wakaba |
1.83 |
type => 'disallowed character encoding', |
523 |
|
|
text => $charset_name, |
524 |
|
|
level => $self->{level}->{must}, |
525 |
|
|
layer => 'encode'); |
526 |
wakaba |
1.71 |
} else { |
527 |
|
|
$onerror->(node => $doc, |
528 |
wakaba |
1.83 |
type => 'non-utf-8 character encoding', |
529 |
|
|
text => $charset_name, |
530 |
|
|
level => $self->{level}->{good}, |
531 |
|
|
layer => 'encode'); |
532 |
wakaba |
1.51 |
} |
533 |
|
|
} |
534 |
wakaba |
1.52 |
} elsif ($doc->manakai_is_html) { |
535 |
|
|
## NOTE: MUST and SHOULD requirements above cannot be tested, |
536 |
|
|
## since the document has no input charset encoding information. |
537 |
|
|
$onerror->(node => $doc, |
538 |
wakaba |
1.83 |
type => 'character encoding unchecked', |
539 |
|
|
level => $self->{level}->{info}, |
540 |
|
|
layer => 'encode'); |
541 |
wakaba |
1.51 |
} |
542 |
|
|
|
543 |
|
|
return $return; |
544 |
wakaba |
1.42 |
} # check_document |
545 |
wakaba |
1.1 |
|
546 |
wakaba |
1.81 |
## Check an element. The element is checked as if it is an orphan node (i.e. |
547 |
|
|
## an element without a parent node). |
548 |
wakaba |
1.56 |
sub check_element ($$$;$) { |
549 |
|
|
my ($self, $el, $onerror, $onsubdoc) = @_; |
550 |
wakaba |
1.42 |
$self = bless {}, $self unless ref $self; |
551 |
|
|
$self->{onerror} = $onerror; |
552 |
wakaba |
1.56 |
$self->{onsubdoc} = $onsubdoc || sub { |
553 |
|
|
warn "A subdocument is not conformance-checked"; |
554 |
|
|
}; |
555 |
wakaba |
1.2 |
|
556 |
wakaba |
1.83 |
$self->{level} ||= $default_error_level; |
557 |
wakaba |
1.48 |
|
558 |
wakaba |
1.61 |
$self->{plus_elements} = {}; |
559 |
|
|
$self->{minus_elements} = {}; |
560 |
wakaba |
1.42 |
$self->{id} = {}; |
561 |
wakaba |
1.97 |
$self->{form} = {}; |
562 |
wakaba |
1.42 |
$self->{term} = {}; |
563 |
|
|
$self->{usemap} = []; |
564 |
wakaba |
1.78 |
$self->{ref} = []; # datetemplate data references |
565 |
|
|
$self->{template} = []; # datatemplate template references |
566 |
wakaba |
1.42 |
$self->{contextmenu} = []; |
567 |
|
|
$self->{map} = {}; |
568 |
|
|
$self->{menu} = {}; |
569 |
|
|
$self->{has_link_type} = {}; |
570 |
wakaba |
1.60 |
$self->{flag} = {}; |
571 |
wakaba |
1.46 |
#$self->{has_uri_attr}; |
572 |
|
|
#$self->{has_hyperlink_element}; |
573 |
wakaba |
1.51 |
#$self->{has_charset}; |
574 |
wakaba |
1.57 |
#$self->{has_base}; |
575 |
wakaba |
1.42 |
$self->{return} = { |
576 |
|
|
class => {}, |
577 |
wakaba |
1.80 |
id => $self->{id}, |
578 |
|
|
table => [], # table objects returned by Whatpm::HTMLTable |
579 |
|
|
term => $self->{term}, |
580 |
wakaba |
1.76 |
uri => {}, # URIs other than those in RDF triples |
581 |
|
|
## TODO: xmlns="", SYSTEM "", atom:* src="", xml:base="" |
582 |
wakaba |
1.73 |
rdf => [], |
583 |
wakaba |
1.42 |
}; |
584 |
wakaba |
1.4 |
|
585 |
wakaba |
1.60 |
my @item = ({type => 'element', node => $el, parent_state => {}}); |
586 |
wakaba |
1.66 |
$item[-1]->{real_parent_state} = $item[-1]->{parent_state}; |
587 |
wakaba |
1.60 |
while (@item) { |
588 |
|
|
my $item = shift @item; |
589 |
|
|
if (ref $item eq 'ARRAY') { |
590 |
|
|
my $code = shift @$item; |
591 |
|
|
next unless $code;## TODO: temp. |
592 |
|
|
$code->(@$item); |
593 |
|
|
} elsif ($item->{type} eq 'element') { |
594 |
|
|
my $el_nsuri = $item->{node}->namespace_uri; |
595 |
wakaba |
1.92 |
if (defined $el_nsuri) { |
596 |
|
|
load_ns_module ($el_nsuri); |
597 |
|
|
} else { |
598 |
|
|
$el_nsuri = ''; |
599 |
|
|
} |
600 |
wakaba |
1.60 |
my $el_ln = $item->{node}->manakai_local_name; |
601 |
wakaba |
1.92 |
|
602 |
wakaba |
1.63 |
my $element_state = {}; |
603 |
wakaba |
1.60 |
my $eldef = $Element->{$el_nsuri}->{$el_ln} || |
604 |
|
|
$Element->{$el_nsuri}->{''} || |
605 |
wakaba |
1.42 |
$ElementDefault; |
606 |
wakaba |
1.61 |
my $content_def = $item->{transparent} |
607 |
|
|
? $item->{parent_def} || $eldef : $eldef; |
608 |
wakaba |
1.63 |
my $content_state = $item->{transparent} |
609 |
wakaba |
1.65 |
? $item->{parent_def} |
610 |
|
|
? $item->{parent_state} || $element_state : $element_state |
611 |
|
|
: $element_state; |
612 |
wakaba |
1.60 |
|
613 |
wakaba |
1.67 |
unless ($eldef->{status} & FEATURE_STATUS_REC) { |
614 |
|
|
my $status = $eldef->{status} & FEATURE_STATUS_CR ? 'cr' : |
615 |
|
|
$eldef->{status} & FEATURE_STATUS_LC ? 'lc' : |
616 |
|
|
$eldef->{status} & FEATURE_STATUS_WD ? 'wd' : 'non-standard'; |
617 |
|
|
$self->{onerror}->(node => $item->{node}, |
618 |
|
|
type => 'status:'.$status.':element', |
619 |
wakaba |
1.83 |
level => $self->{level}->{info}); |
620 |
wakaba |
1.67 |
} |
621 |
wakaba |
1.70 |
if (not ($eldef->{status} & FEATURE_ALLOWED)) { |
622 |
|
|
$self->{onerror}->(node => $item->{node}, |
623 |
|
|
type => 'element not defined', |
624 |
wakaba |
1.83 |
level => $self->{level}->{must}); |
625 |
wakaba |
1.70 |
} elsif ($eldef->{status} & FEATURE_DEPRECATED_SHOULD) { |
626 |
|
|
$self->{onerror}->(node => $item->{node}, |
627 |
|
|
type => 'deprecated:element', |
628 |
wakaba |
1.83 |
level => $self->{level}->{should}); |
629 |
wakaba |
1.70 |
} elsif ($eldef->{status} & FEATURE_DEPRECATED_INFO) { |
630 |
|
|
$self->{onerror}->(node => $item->{node}, |
631 |
|
|
type => 'deprecated:element', |
632 |
wakaba |
1.83 |
level => $self->{level}->{info}); |
633 |
wakaba |
1.70 |
} |
634 |
wakaba |
1.67 |
|
635 |
wakaba |
1.60 |
my @new_item; |
636 |
|
|
push @new_item, [$eldef->{check_start}, $self, $item, $element_state]; |
637 |
|
|
push @new_item, [$eldef->{check_attrs}, $self, $item, $element_state]; |
638 |
wakaba |
1.61 |
|
639 |
wakaba |
1.60 |
my @child = @{$item->{node}->child_nodes}; |
640 |
|
|
while (@child) { |
641 |
|
|
my $child = shift @child; |
642 |
|
|
my $child_nt = $child->node_type; |
643 |
|
|
if ($child_nt == 1) { # ELEMENT_NODE |
644 |
|
|
my $child_nsuri = $child->namespace_uri; |
645 |
|
|
$child_nsuri = '' unless defined $child_nsuri; |
646 |
|
|
my $child_ln = $child->manakai_local_name; |
647 |
|
|
if ($HTMLTransparentElements->{$child_nsuri}->{$child_ln} and |
648 |
|
|
not (($self->{flag}->{in_head} or |
649 |
wakaba |
1.61 |
($el_nsuri eq $HTML_NS and $el_ln eq 'head')) and |
650 |
|
|
$child_nsuri eq $HTML_NS and $child_ln eq 'noscript')) { |
651 |
wakaba |
1.60 |
push @new_item, [$content_def->{check_child_element}, |
652 |
|
|
$self, $item, $child, |
653 |
wakaba |
1.66 |
$child_nsuri, $child_ln, 1, |
654 |
|
|
$content_state, $element_state]; |
655 |
wakaba |
1.60 |
push @new_item, {type => 'element', node => $child, |
656 |
wakaba |
1.65 |
parent_state => $content_state, |
657 |
wakaba |
1.61 |
parent_def => $content_def, |
658 |
wakaba |
1.66 |
real_parent_state => $element_state, |
659 |
wakaba |
1.60 |
transparent => 1}; |
660 |
|
|
} else { |
661 |
wakaba |
1.65 |
if ($item->{parent_def} and # has parent |
662 |
|
|
$el_nsuri eq $HTML_NS) { ## $HTMLSemiTransparentElements |
663 |
wakaba |
1.61 |
if ($el_ln eq 'object') { |
664 |
|
|
if ($self->{plus_elements}->{$child_nsuri}->{$child_ln}) { |
665 |
|
|
# |
666 |
|
|
} elsif ($child_nsuri eq $HTML_NS and $child_ln eq 'param') { |
667 |
|
|
# |
668 |
|
|
} else { |
669 |
wakaba |
1.62 |
$content_def = $item->{parent_def} || $content_def; |
670 |
wakaba |
1.63 |
$content_state = $item->{parent_state} || $content_state; |
671 |
wakaba |
1.62 |
} |
672 |
|
|
} elsif ($el_ln eq 'video' or $el_ln eq 'audio') { |
673 |
|
|
if ($self->{plus_elements}->{$child_nsuri}->{$child_ln}) { |
674 |
|
|
# |
675 |
|
|
} elsif ($child_nsuri eq $HTML_NS and $child_ln eq 'source') { |
676 |
|
|
$element_state->{has_source} = 1; |
677 |
|
|
} else { |
678 |
|
|
$content_def = $item->{parent_def} || $content_def; |
679 |
wakaba |
1.63 |
$content_state = $item->{parent_state} || $content_state; |
680 |
wakaba |
1.61 |
} |
681 |
|
|
} |
682 |
|
|
} |
683 |
|
|
|
684 |
wakaba |
1.60 |
push @new_item, [$content_def->{check_child_element}, |
685 |
|
|
$self, $item, $child, |
686 |
wakaba |
1.64 |
$child_nsuri, $child_ln, |
687 |
|
|
$HTMLSemiTransparentElements |
688 |
|
|
->{$child_nsuri}->{$child_ln}, |
689 |
wakaba |
1.66 |
$content_state, $element_state]; |
690 |
wakaba |
1.60 |
push @new_item, {type => 'element', node => $child, |
691 |
wakaba |
1.65 |
parent_def => $content_def, |
692 |
wakaba |
1.66 |
real_parent_state => $element_state, |
693 |
wakaba |
1.65 |
parent_state => $content_state}; |
694 |
wakaba |
1.60 |
} |
695 |
|
|
|
696 |
|
|
if ($HTMLEmbeddedContent->{$child_nsuri}->{$child_ln}) { |
697 |
|
|
$element_state->{has_significant} = 1; |
698 |
|
|
} |
699 |
|
|
} elsif ($child_nt == 3 or # TEXT_NODE |
700 |
|
|
$child_nt == 4) { # CDATA_SECTION_NODE |
701 |
wakaba |
1.96 |
my $has_significant = ($child->data =~ /[^\x09\x0A\x0C\x0D\x20]/); |
702 |
wakaba |
1.60 |
push @new_item, [$content_def->{check_child_text}, |
703 |
|
|
$self, $item, $child, $has_significant, |
704 |
wakaba |
1.66 |
$content_state, $element_state]; |
705 |
|
|
$element_state->{has_significant} ||= $has_significant; |
706 |
wakaba |
1.61 |
if ($has_significant and |
707 |
|
|
$HTMLSemiTransparentElements->{$el_nsuri}->{$el_ln}) { |
708 |
|
|
$content_def = $item->{parent_def} || $content_def; |
709 |
|
|
} |
710 |
wakaba |
1.60 |
} elsif ($child_nt == 5) { # ENTITY_REFERENCE_NODE |
711 |
|
|
push @child, @{$child->child_nodes}; |
712 |
wakaba |
1.1 |
} |
713 |
wakaba |
1.60 |
## TODO: PI_NODE |
714 |
|
|
## TODO: Unknown node type |
715 |
wakaba |
1.1 |
} |
716 |
wakaba |
1.60 |
|
717 |
|
|
push @new_item, [$eldef->{check_end}, $self, $item, $element_state]; |
718 |
|
|
|
719 |
|
|
unshift @item, @new_item; |
720 |
wakaba |
1.30 |
} else { |
721 |
wakaba |
1.60 |
die "$0: Internal error: Unsupported checking action type |$item->{type}|"; |
722 |
wakaba |
1.4 |
} |
723 |
wakaba |
1.1 |
} |
724 |
wakaba |
1.17 |
|
725 |
wakaba |
1.78 |
for (@{$self->{template}}) { |
726 |
|
|
## TODO: If the document is an XML document, ... |
727 |
|
|
## NOTE: If the document is an HTML document: |
728 |
|
|
## ISSUE: We need to percent-decode? |
729 |
|
|
F: { |
730 |
|
|
if ($self->{id}->{$_->[0]}) { |
731 |
|
|
my $el = $self->{id}->{$_->[0]}->[0]->owner_element; |
732 |
|
|
if ($el->node_type == 1 and # ELEMENT_NODE |
733 |
|
|
$el->manakai_local_name eq 'datatemplate') { |
734 |
|
|
my $nsuri = $el->namespace_uri; |
735 |
|
|
if (defined $nsuri and $nsuri eq $HTML_NS) { |
736 |
|
|
if ($el eq $_->[1]->owner_element) { |
737 |
|
|
$self->{onerror}->(node => $_->[1], |
738 |
|
|
type => 'fragment points itself', |
739 |
wakaba |
1.83 |
level => $self->{level}->{must}); |
740 |
wakaba |
1.78 |
} |
741 |
|
|
|
742 |
|
|
last F; |
743 |
|
|
} |
744 |
|
|
} |
745 |
|
|
} |
746 |
|
|
## TODO: Should we raise a "fragment points nothing" error instead |
747 |
|
|
## if the fragment identifier identifies no element? |
748 |
|
|
|
749 |
|
|
$self->{onerror}->(node => $_->[1], type => 'template:not template', |
750 |
wakaba |
1.83 |
level => $self->{level}->{must}); |
751 |
wakaba |
1.78 |
} # F |
752 |
|
|
} |
753 |
|
|
|
754 |
|
|
for (@{$self->{ref}}) { |
755 |
|
|
## TOOD: If XML |
756 |
|
|
## NOTE: If it is an HTML document: |
757 |
|
|
if ($_->[0] eq '') { |
758 |
|
|
## NOTE: It points the top of the document. |
759 |
|
|
} elsif ($self->{id}->{$_->[0]}) { |
760 |
|
|
if ($self->{id}->{$_->[0]}->[0]->owner_element |
761 |
|
|
eq $_->[1]->owner_element) { |
762 |
|
|
$self->{onerror}->(node => $_->[1], type => 'fragment points itself', |
763 |
wakaba |
1.83 |
level => $self->{level}->{must}); |
764 |
wakaba |
1.78 |
} |
765 |
|
|
} else { |
766 |
|
|
$self->{onerror}->(node => $_->[1], type => 'fragment points nothing', |
767 |
wakaba |
1.83 |
level => $self->{level}->{must}); |
768 |
wakaba |
1.78 |
} |
769 |
|
|
} |
770 |
|
|
|
771 |
|
|
## TODO: Maybe we should have $document->manakai_get_by_fragment or something |
772 |
|
|
|
773 |
wakaba |
1.17 |
for (@{$self->{usemap}}) { |
774 |
|
|
unless ($self->{map}->{$_->[0]}) { |
775 |
wakaba |
1.83 |
$self->{onerror}->(node => $_->[1], type => 'no referenced map', |
776 |
|
|
level => $self->{level}->{must}); |
777 |
wakaba |
1.17 |
} |
778 |
|
|
} |
779 |
|
|
|
780 |
wakaba |
1.32 |
for (@{$self->{contextmenu}}) { |
781 |
|
|
unless ($self->{menu}->{$_->[0]}) { |
782 |
wakaba |
1.83 |
$self->{onerror}->(node => $_->[1], type => 'no referenced menu', |
783 |
|
|
level => $self->{level}->{must}); |
784 |
wakaba |
1.32 |
} |
785 |
|
|
} |
786 |
|
|
|
787 |
wakaba |
1.61 |
delete $self->{plus_elements}; |
788 |
|
|
delete $self->{minus_elements}; |
789 |
wakaba |
1.17 |
delete $self->{onerror}; |
790 |
|
|
delete $self->{id}; |
791 |
wakaba |
1.97 |
delete $self->{form}; |
792 |
wakaba |
1.17 |
delete $self->{usemap}; |
793 |
wakaba |
1.78 |
delete $self->{ref}; |
794 |
|
|
delete $self->{template}; |
795 |
wakaba |
1.17 |
delete $self->{map}; |
796 |
wakaba |
1.33 |
return $self->{return}; |
797 |
wakaba |
1.1 |
} # check_element |
798 |
|
|
|
799 |
wakaba |
1.60 |
sub _add_minus_elements ($$@) { |
800 |
|
|
my $self = shift; |
801 |
|
|
my $element_state = shift; |
802 |
|
|
for my $elements (@_) { |
803 |
|
|
for my $nsuri (keys %$elements) { |
804 |
|
|
for my $ln (keys %{$elements->{$nsuri}}) { |
805 |
|
|
unless ($self->{minus_elements}->{$nsuri}->{$ln}) { |
806 |
|
|
$element_state->{minus_elements_original}->{$nsuri}->{$ln} = 0; |
807 |
|
|
$self->{minus_elements}->{$nsuri}->{$ln} = 1; |
808 |
|
|
} |
809 |
|
|
} |
810 |
|
|
} |
811 |
|
|
} |
812 |
|
|
} # _add_minus_elements |
813 |
|
|
|
814 |
|
|
sub _remove_minus_elements ($$) { |
815 |
|
|
my $self = shift; |
816 |
|
|
my $element_state = shift; |
817 |
|
|
for my $nsuri (keys %{$element_state->{minus_elements_original}}) { |
818 |
|
|
for my $ln (keys %{$element_state->{minus_elements_original}->{$nsuri}}) { |
819 |
|
|
delete $self->{minus_elements}->{$nsuri}->{$ln}; |
820 |
|
|
} |
821 |
|
|
} |
822 |
|
|
} # _remove_minus_elements |
823 |
|
|
|
824 |
|
|
sub _add_plus_elements ($$@) { |
825 |
|
|
my $self = shift; |
826 |
|
|
my $element_state = shift; |
827 |
|
|
for my $elements (@_) { |
828 |
|
|
for my $nsuri (keys %$elements) { |
829 |
|
|
for my $ln (keys %{$elements->{$nsuri}}) { |
830 |
|
|
unless ($self->{plus_elements}->{$nsuri}->{$ln}) { |
831 |
|
|
$element_state->{plus_elements_original}->{$nsuri}->{$ln} = 0; |
832 |
|
|
$self->{plus_elements}->{$nsuri}->{$ln} = 1; |
833 |
|
|
} |
834 |
|
|
} |
835 |
|
|
} |
836 |
|
|
} |
837 |
|
|
} # _add_plus_elements |
838 |
|
|
|
839 |
|
|
sub _remove_plus_elements ($$) { |
840 |
|
|
my $self = shift; |
841 |
|
|
my $element_state = shift; |
842 |
|
|
for my $nsuri (keys %{$element_state->{plus_elements_original}}) { |
843 |
|
|
for my $ln (keys %{$element_state->{plus_elements_original}->{$nsuri}}) { |
844 |
|
|
delete $self->{plus_elements}->{$nsuri}->{$ln}; |
845 |
|
|
} |
846 |
|
|
} |
847 |
|
|
} # _remove_plus_elements |
848 |
|
|
|
849 |
wakaba |
1.68 |
sub _attr_status_info ($$$) { |
850 |
|
|
my ($self, $attr, $status_code) = @_; |
851 |
wakaba |
1.70 |
|
852 |
|
|
if (not ($status_code & FEATURE_ALLOWED)) { |
853 |
|
|
$self->{onerror}->(node => $attr, |
854 |
|
|
type => 'attribute not defined', |
855 |
wakaba |
1.83 |
level => $self->{level}->{must}); |
856 |
wakaba |
1.70 |
} elsif ($status_code & FEATURE_DEPRECATED_SHOULD) { |
857 |
|
|
$self->{onerror}->(node => $attr, |
858 |
|
|
type => 'deprecated:attr', |
859 |
wakaba |
1.83 |
level => $self->{level}->{should}); |
860 |
wakaba |
1.70 |
} elsif ($status_code & FEATURE_DEPRECATED_INFO) { |
861 |
|
|
$self->{onerror}->(node => $attr, |
862 |
|
|
type => 'deprecated:attr', |
863 |
wakaba |
1.83 |
level => $self->{level}->{info}); |
864 |
wakaba |
1.70 |
} |
865 |
|
|
|
866 |
wakaba |
1.68 |
my $status; |
867 |
|
|
if ($status_code & FEATURE_STATUS_REC) { |
868 |
|
|
return; |
869 |
|
|
} elsif ($status_code & FEATURE_STATUS_CR) { |
870 |
|
|
$status = 'cr'; |
871 |
|
|
} elsif ($status_code & FEATURE_STATUS_LC) { |
872 |
|
|
$status = 'lc'; |
873 |
|
|
} elsif ($status_code & FEATURE_STATUS_WD) { |
874 |
|
|
$status = 'wd'; |
875 |
|
|
} else { |
876 |
|
|
$status = 'non-standard'; |
877 |
|
|
} |
878 |
|
|
$self->{onerror}->(node => $attr, |
879 |
|
|
type => 'status:'.$status.':attr', |
880 |
wakaba |
1.83 |
level => $self->{level}->{info}); |
881 |
wakaba |
1.68 |
} # _attr_status_info |
882 |
|
|
|
883 |
wakaba |
1.2 |
sub _add_minuses ($@) { |
884 |
|
|
my $self = shift; |
885 |
|
|
my $r = {}; |
886 |
|
|
for my $list (@_) { |
887 |
|
|
for my $ns (keys %$list) { |
888 |
|
|
for my $ln (keys %{$list->{$ns}}) { |
889 |
|
|
unless ($self->{minuses}->{$ns}->{$ln}) { |
890 |
|
|
$self->{minuses}->{$ns}->{$ln} = 1; |
891 |
|
|
$r->{$ns}->{$ln} = 1; |
892 |
|
|
} |
893 |
|
|
} |
894 |
|
|
} |
895 |
|
|
} |
896 |
wakaba |
1.4 |
return {type => 'plus', list => $r}; |
897 |
wakaba |
1.2 |
} # _add_minuses |
898 |
|
|
|
899 |
wakaba |
1.50 |
sub _add_pluses ($@) { |
900 |
|
|
my $self = shift; |
901 |
|
|
my $r = {}; |
902 |
|
|
for my $list (@_) { |
903 |
|
|
for my $ns (keys %$list) { |
904 |
|
|
for my $ln (keys %{$list->{$ns}}) { |
905 |
|
|
unless ($self->{pluses}->{$ns}->{$ln}) { |
906 |
|
|
$self->{pluses}->{$ns}->{$ln} = 1; |
907 |
|
|
$r->{$ns}->{$ln} = 1; |
908 |
|
|
} |
909 |
|
|
} |
910 |
|
|
} |
911 |
|
|
} |
912 |
|
|
return {type => 'minus', list => $r}; |
913 |
|
|
} # _add_pluses |
914 |
|
|
|
915 |
wakaba |
1.2 |
sub _remove_minuses ($$) { |
916 |
wakaba |
1.4 |
my ($self, $todo) = @_; |
917 |
wakaba |
1.50 |
if ($todo->{type} eq 'minus') { |
918 |
|
|
for my $ns (keys %{$todo->{list}}) { |
919 |
|
|
for my $ln (keys %{$todo->{list}->{$ns}}) { |
920 |
|
|
delete $self->{pluses}->{$ns}->{$ln} if $todo->{list}->{$ns}->{$ln}; |
921 |
|
|
} |
922 |
wakaba |
1.2 |
} |
923 |
wakaba |
1.50 |
} elsif ($todo->{type} eq 'plus') { |
924 |
|
|
for my $ns (keys %{$todo->{list}}) { |
925 |
|
|
for my $ln (keys %{$todo->{list}->{$ns}}) { |
926 |
|
|
delete $self->{minuses}->{$ns}->{$ln} if $todo->{list}->{$ns}->{$ln}; |
927 |
|
|
} |
928 |
|
|
} |
929 |
|
|
} else { |
930 |
|
|
die "$0: Unknown +- type: $todo->{type}"; |
931 |
wakaba |
1.2 |
} |
932 |
|
|
1; |
933 |
|
|
} # _remove_minuses |
934 |
|
|
|
935 |
wakaba |
1.50 |
## NOTE: Priority for "minuses" and "pluses" are currently left |
936 |
|
|
## undefined and implemented inconsistently; it is not a problem for |
937 |
|
|
## now, since no element belongs to both lists. |
938 |
|
|
|
939 |
wakaba |
1.30 |
sub _check_get_children ($$$) { |
940 |
|
|
my ($self, $node, $parent_todo) = @_; |
941 |
wakaba |
1.4 |
my $new_todos = []; |
942 |
wakaba |
1.2 |
my $sib = []; |
943 |
|
|
TP: { |
944 |
|
|
my $node_ns = $node->namespace_uri; |
945 |
|
|
$node_ns = '' unless defined $node_ns; |
946 |
|
|
my $node_ln = $node->manakai_local_name; |
947 |
wakaba |
1.45 |
if ($HTMLTransparentElements->{$node_ns}->{$node_ln}) { |
948 |
|
|
if ($node_ns eq $HTML_NS and $node_ln eq 'noscript') { |
949 |
|
|
if ($parent_todo->{flag}->{in_head}) { |
950 |
|
|
# |
951 |
|
|
} else { |
952 |
|
|
my $end = $self->_add_minuses ({$HTML_NS, {noscript => 1}}); |
953 |
|
|
push @$sib, $end; |
954 |
|
|
|
955 |
|
|
unshift @$sib, @{$node->child_nodes}; |
956 |
|
|
push @$new_todos, {type => 'element-attributes', node => $node}; |
957 |
|
|
last TP; |
958 |
|
|
} |
959 |
wakaba |
1.58 |
} elsif ($node_ns eq $HTML_NS and $node_ln eq 'del') { |
960 |
|
|
my $sig_flag = $parent_todo->{flag}->{has_descendant}->{significant}; |
961 |
|
|
unshift @$sib, @{$node->child_nodes}; |
962 |
|
|
push @$new_todos, {type => 'element-attributes', node => $node}; |
963 |
|
|
push @$new_todos, |
964 |
|
|
{type => 'code', |
965 |
|
|
code => sub { |
966 |
|
|
$parent_todo->{flag}->{has_descendant}->{significant} = 0 |
967 |
|
|
if not $sig_flag; |
968 |
|
|
}}; |
969 |
|
|
last TP; |
970 |
wakaba |
1.45 |
} else { |
971 |
|
|
unshift @$sib, @{$node->child_nodes}; |
972 |
|
|
push @$new_todos, {type => 'element-attributes', node => $node}; |
973 |
|
|
last TP; |
974 |
wakaba |
1.2 |
} |
975 |
|
|
} |
976 |
wakaba |
1.8 |
if ($node_ns eq $HTML_NS and ($node_ln eq 'video' or $node_ln eq 'audio')) { |
977 |
wakaba |
1.2 |
if ($node->has_attribute_ns (undef, 'src')) { |
978 |
|
|
unshift @$sib, @{$node->child_nodes}; |
979 |
wakaba |
1.9 |
push @$new_todos, {type => 'element-attributes', node => $node}; |
980 |
wakaba |
1.2 |
last TP; |
981 |
|
|
} else { |
982 |
|
|
my @cn = @{$node->child_nodes}; |
983 |
|
|
CN: while (@cn) { |
984 |
|
|
my $cn = shift @cn; |
985 |
|
|
my $cnt = $cn->node_type; |
986 |
|
|
if ($cnt == 1) { |
987 |
wakaba |
1.8 |
my $cn_nsuri = $cn->namespace_uri; |
988 |
|
|
$cn_nsuri = '' unless defined $cn_nsuri; |
989 |
|
|
if ($cn_nsuri eq $HTML_NS and $cn->manakai_local_name eq 'source') { |
990 |
wakaba |
1.2 |
# |
991 |
|
|
} else { |
992 |
|
|
last CN; |
993 |
|
|
} |
994 |
|
|
} elsif ($cnt == 3 or $cnt == 4) { |
995 |
wakaba |
1.96 |
if ($cn->data =~ /[^\x09\x0A\x0C\x0D\x20]/) { |
996 |
wakaba |
1.2 |
last CN; |
997 |
|
|
} |
998 |
|
|
} |
999 |
|
|
} # CN |
1000 |
|
|
unshift @$sib, @cn; |
1001 |
|
|
} |
1002 |
wakaba |
1.57 |
} elsif ($node_ns eq $HTML_NS and $node_ln eq 'object') { |
1003 |
|
|
my @cn = @{$node->child_nodes}; |
1004 |
|
|
CN: while (@cn) { |
1005 |
|
|
my $cn = shift @cn; |
1006 |
|
|
my $cnt = $cn->node_type; |
1007 |
|
|
if ($cnt == 1) { |
1008 |
|
|
my $cn_nsuri = $cn->namespace_uri; |
1009 |
|
|
$cn_nsuri = '' unless defined $cn_nsuri; |
1010 |
|
|
if ($cn_nsuri eq $HTML_NS and $cn->manakai_local_name eq 'param') { |
1011 |
|
|
# |
1012 |
|
|
} else { |
1013 |
|
|
last CN; |
1014 |
|
|
} |
1015 |
|
|
} elsif ($cnt == 3 or $cnt == 4) { |
1016 |
wakaba |
1.96 |
if ($cn->data =~ /[^\x09\x0A\x0C\x0D\x20]/) { |
1017 |
wakaba |
1.57 |
last CN; |
1018 |
|
|
} |
1019 |
|
|
} |
1020 |
|
|
} # CN |
1021 |
|
|
unshift @$sib, @cn; |
1022 |
wakaba |
1.2 |
} |
1023 |
wakaba |
1.4 |
push @$new_todos, {type => 'element', node => $node}; |
1024 |
wakaba |
1.2 |
} # TP |
1025 |
wakaba |
1.30 |
|
1026 |
|
|
for my $new_todo (@$new_todos) { |
1027 |
|
|
$new_todo->{flag} = {%{$parent_todo->{flag} or {}}}; |
1028 |
|
|
} |
1029 |
|
|
|
1030 |
wakaba |
1.4 |
return ($sib, $new_todos); |
1031 |
wakaba |
1.2 |
} # _check_get_children |
1032 |
|
|
|
1033 |
wakaba |
1.44 |
=head1 LICENSE |
1034 |
|
|
|
1035 |
wakaba |
1.56 |
Copyright 2007-2008 Wakaba <w@suika.fam.cx> |
1036 |
wakaba |
1.44 |
|
1037 |
|
|
This library is free software; you can redistribute it |
1038 |
|
|
and/or modify it under the same terms as Perl itself. |
1039 |
|
|
|
1040 |
|
|
=cut |
1041 |
|
|
|
1042 |
wakaba |
1.1 |
1; |
1043 |
wakaba |
1.97 |
# $Date: 2008/09/20 11:25:56 $ |