1 |
|
2008-09-14 Wakaba <wakaba@suika.fam.cx> |
2 |
|
|
3 |
|
* HTML.pm.src: Change |{getc_until}| to |{read_until}| |
4 |
|
and |manakai_getc_until| to |manakai_read_until| to |
5 |
|
reduce the number of string copies. |
6 |
|
|
7 |
|
2008-09-14 Wakaba <wakaba@suika.fam.cx> |
8 |
|
|
9 |
|
* HTML.pm.src (parse_char_string): Use newly created |
10 |
|
|Whatpm::Charset::DecodeHandle::CharString| instead of Perl's |
11 |
|
standard feature to |open| a string as a filehandle, |
12 |
|
since Perl's string filehandle seems not supporting |ungetc| |
13 |
|
method correctly. |
14 |
|
(parse_char_stream): Define |{getc_until}| method. |
15 |
|
(DATA_STATE): Experimental support for |getc_until| feature. |
16 |
|
|
17 |
|
2008-09-13 Wakaba <wakaba@suika.fam.cx> |
18 |
|
|
19 |
|
* HTML.pm.src: Check points added to newly added branches. |
20 |
|
|
21 |
|
2008-09-13 Wakaba <wakaba@suika.fam.cx> |
22 |
|
|
23 |
|
* HTML.pm.src: Remove |{char}|, which is no longer used. |
24 |
|
Remove |{entity_in_attr}| and |{last_attribute_value_state}| |
25 |
|
and replaced by |{prev_state}|. |
26 |
|
|
27 |
|
* mkhtmlparser.pl: Remove |{char}| feature. |
28 |
|
Remove |!!!back-next-input-character;| macro. |
29 |
|
|
30 |
|
2008-09-13 Wakaba <wakaba@suika.fam.cx> |
31 |
|
|
32 |
|
* HTML.pm.src: Finally we get rid of all the inner loops. Remove |
33 |
|
entity related tokenizer states in favor of new states |
34 |
|
implementing the consume character reference algorithm. |
35 |
|
|
36 |
|
2008-09-13 Wakaba <wakaba@suika.fam.cx> |
37 |
|
|
38 |
|
* HTML.pm.src: "Consume a character reference" algorithm is |
39 |
|
now implemented as a tokenizer's state, rather than |
40 |
|
a method, with minimum changes (more changes will |
41 |
|
be made, in due course). "Bogus comment state"'s inner |
42 |
|
loop gets removed. |
43 |
|
|
44 |
|
2008-09-13 Wakaba <wakaba@suika.fam.cx> |
45 |
|
|
46 |
|
* HTML.pm.src: Make |PUBLIC| and |SYSTEM| keyword tokenizing |
47 |
|
into their own tokenizer states. |
48 |
|
|
49 |
|
2008-09-13 Wakaba <wakaba@suika.fam.cx> |
50 |
|
|
51 |
|
* HTML.pm.src: |CDATA_SECTION_STATE| (formally |CDATA_BLOCK_STATE| |
52 |
|
is split into three states. |
53 |
|
|
54 |
|
2008-09-13 Wakaba <wakaba@suika.fam.cx> |
55 |
|
|
56 |
|
* HTML.pm.src: |CLOSE_TAG_OPEN_STATE| is broken into |
57 |
|
itself and new |CDATA_PCDATA_CLOSE_TAG_STATE| so that |
58 |
|
no longer does the tokenizer have to push back next input |
59 |
|
characters in those states. |
60 |
|
|
61 |
|
2008-09-13 Wakaba <wakaba@suika.fam.cx> |
62 |
|
|
63 |
|
* HTML.pm.src: |MARKUP_DECLARATION_OPEN_STATE| broken |
64 |
|
into four states so that no longer does the tokenizer have to push |
65 |
|
back next input characters in that state. |
66 |
|
|
67 |
|
2008-09-11 Wakaba <wakaba@suika.fam.cx> |
68 |
|
|
69 |
|
* HTML.pm.src: Methods now accept additional parameter, $get_wrapper, |
70 |
|
which can be used to insert some wrapper between the character |
71 |
|
stream handle and the tokenizer. (It is currently not supported |
72 |
|
for |set_inner_html| for |Element|s). |
73 |
|
|
74 |
|
2008-09-10 Wakaba <wakaba@suika.fam.cx> |
75 |
|
|
76 |
|
* HTML.pm.src: Ignore punctuations in charset names. |
77 |
|
|
78 |
|
2008-09-10 Wakaba <wakaba@suika.fam.cx> |
79 |
|
|
80 |
|
* ContentChecker.pm: Support for charset-layer error levels. |
81 |
|
|
82 |
|
* HTML.pm.src: Don't specify |text| argument for the |
83 |
|
|chardecode:fallback| error, since it is not the encoding |
84 |
|
being used alternatively. |
85 |
|
|
86 |
|
2008-09-06 Wakaba <wakaba@suika.fam.cx> |
87 |
|
|
88 |
|
* HTML.pm.src: Support for |XSLT-compat| (HTML5 revision 2141). |
89 |
|
|
90 |
|
2008-08-31 Wakaba <wakaba@suika.fam.cx> |
91 |
|
|
92 |
|
* CacheManifest.pm: Support for extensibility (HTML5 revision 2051). |
93 |
|
|
94 |
|
2008-08-31 Wakaba <wakaba@suika.fam.cx> |
95 |
|
|
96 |
|
* HTML.pm.src: Bug fix and sync with the spec with regard |
97 |
|
to after after frameset insertion mode processing (HTML5 |
98 |
|
revision 1909). Note that the implementation was wrong |
99 |
|
per the old spec before the r1909 changes. |
100 |
|
|
101 |
|
2008-08-30 Wakaba <wakaba@suika.fam.cx> |
102 |
|
|
103 |
|
* HTMLTable.pm: scope=auto algorithm fix synced with the |
104 |
|
spec (HTML5 revision 2093). |
105 |
|
($process_row): Algorithm step numbers synced with the |
106 |
|
spec (HTML5 revision 2092). |
107 |
|
|
108 |
|
2008-08-30 Wakaba <wakaba@suika.fam.cx> |
109 |
|
|
110 |
|
* HTMLTable.pm: Zs is not what we want; we want White_Space! (HTML5 |
111 |
|
revision 2094). |
112 |
|
|
113 |
|
2008-08-30 Wakaba <wakaba@suika.fam.cx> |
114 |
|
|
115 |
|
* ContentType.pm: Support for image/svg+xml (HTML5 revision 2096). |
116 |
|
|
117 |
|
2008-08-30 Wakaba <wakaba@suika.fam.cx> |
118 |
|
|
119 |
|
* HTML.pm.src: '"' and "'" at the end of attribute |
120 |
|
name (after another attribute) now raise parse error (HTML5 |
121 |
|
revision 2123). Empty unquoted attribute values are no |
122 |
|
longer allowed (HTML5 revision 2122). |
123 |
|
|
124 |
|
2008-08-30 Wakaba <wakaba@suika.fam.cx> |
125 |
|
|
126 |
|
* mkhtmlparser.pl: Support for MathML |definitionURL| attribute (HTML5 |
127 |
|
revision 2130). |
128 |
|
|
129 |
|
2008-08-30 Wakaba <wakaba@suika.fam.cx> |
130 |
|
|
131 |
|
* ContentChecker.pm: |xml:lang| attribute value must be same |
132 |
|
as |lang| attribute value for HTML elements (HTML5 revision 2062 |
133 |
|
and so on). |
134 |
|
|
135 |
|
2008-08-30 Wakaba <wakaba@suika.fam.cx> |
136 |
|
|
137 |
|
* ContentChecker.pm: Error level definition for |xml_id_error| |
138 |
|
was missing. |
139 |
|
|
140 |
|
* URIChecker.pm: The end of the URL should be marked as the |
141 |
|
error location for an empty path error. The position |
142 |
|
between the userinfo and the port components should be |
143 |
|
marked as the error location for an empty host error. |
144 |
|
|
145 |
|
2008-08-30 Wakaba <wakaba@suika.fam.cx> |
146 |
|
|
147 |
|
* URIChecker.pm: Set parameters representing where in the |
148 |
|
value the error occurs for errors. Report unknown |
149 |
|
address format error in warning level, since address |
150 |
|
formats are rarely added. Path segments starting with "/.." |
151 |
|
were misinterpreted as a dot-segment. |
152 |
|
|
153 |
|
2008-08-30 Wakaba <wakaba@suika.fam.cx> |
154 |
|
|
155 |
|
* URIChecker.pm (check_iri_reference): Requires |
156 |
|
|Message::DOM::DOMImplementation|. |
157 |
|
|
158 |
|
2008-08-29 Wakaba <wakaba@suika.fam.cx> |
159 |
|
|
160 |
|
* IMTChecker.pm: Updated for the new error reporting architecture. |
161 |
|
|
162 |
|
* ContentChecker.pm: Error levels for IMTs are added. |
163 |
|
|
164 |
|
2008-08-17 Wakaba <wakaba@suika.fam.cx> |
165 |
|
|
166 |
|
* H2H.pm (_shift_token): Support for unquoted HTML attribute |
167 |
|
values. |
168 |
|
|
169 |
|
2008-08-16 Wakaba <wakaba@suika.fam.cx> |
170 |
|
|
171 |
|
* CacheManifest.pm: Support for new style of error |
172 |
|
reports. |
173 |
|
|
174 |
|
* HTML.pm.src: Set line=1, column=1 to the document node. |
175 |
|
|
176 |
|
2008-08-16 Wakaba <wakaba@suika.fam.cx> |
177 |
|
|
178 |
|
* ContentChecker.pm, RDFXML.pm: Pass {level} object to language tag |
179 |
|
and URL checkers. Support for more error levels for bogus |
180 |
|
langauge tag and URL "standards". |
181 |
|
|
182 |
|
* LangTag.pm, URIChecker.pm: Support for new style error |
183 |
|
level reporting. |
184 |
|
|
185 |
|
2008-08-15 Wakaba <wakaba@suika.fam.cx> |
186 |
|
|
187 |
|
* ContentChecker.pm: Support for RDF/XML error levels. |
188 |
|
|
189 |
|
* HTMLTable.pm, RDFXML.pm: Support for new style of error level |
190 |
|
specifying. Error types are revised. |
191 |
|
|
192 |
|
2008-08-15 Wakaba <wakaba@suika.fam.cx> |
193 |
|
|
194 |
|
* ContentChecker.pm: All error reporting method calls are |
195 |
|
renewed. |
196 |
|
|
197 |
|
2008-08-15 Wakaba <wakaba@suika.fam.cx> |
198 |
|
|
199 |
|
* HTML.pm.src: All error type names and "text" parameters |
200 |
|
are revised. Use new style for "level" specification. |
201 |
|
|
202 |
|
* mkhtmlparser.pl: Use new style for "level" specification. |
203 |
|
|
204 |
|
2008-08-03 Wakaba <wakaba@suika.fam.cx> |
205 |
|
|
206 |
|
* WebIDL.pm (parse_char_string): Simplified error |
207 |
|
reporting process for broken ignored valuetype definition. |
208 |
|
(Valuetype idl_text): Support for special "DOMString" name. |
209 |
|
|
210 |
|
2008-08-03 Wakaba <wakaba@suika.fam.cx> |
211 |
|
|
212 |
|
* WebIDL.pm ($get_scoped_name): Append "::::" if the last |
213 |
|
terminal of the ScopedName is "DOMString", such that whether |
214 |
|
the last part of the scoped name is "DOMString" or "_DOMString" |
215 |
|
later. It is necessary to determine whether a |typedef| |
216 |
|
definition should be ignored or not. |
217 |
|
(parse_char_string): Unescape the identifier of |
218 |
|
exception members. |
219 |
|
($resolve): Return undef for builtin types and sequence<T> |
220 |
|
types (we might not have to do this, however...). |
221 |
|
(check): Support checking for Exceptions, Valuetypes, |
222 |
|
and Typedefs. |
223 |
|
($serialize_type): Support for "DOMString::::" syntax. |
224 |
|
(Typedef idl_text): Output Type as "DOMString" if it |
225 |
|
is really "DOMString" (i.e. its internal representation |
226 |
|
is "::DOMString::"). |
227 |
|
|
228 |
|
2008-08-03 Wakaba <wakaba@suika.fam.cx> |
229 |
|
|
230 |
|
* WebIDL.pm ($resolve): New code, based on resolve code |
231 |
|
for constant types in the |check| method. |
232 |
|
(check): Support for checking of attributes, operations, and |
233 |
|
arguments. |
234 |
|
(Attribute/Operation idl_text): Exception names in getraises, |
235 |
|
setraises, and raises clauses is serizlied by |$serialize_type| |
236 |
|
code. |
237 |
|
|
238 |
|
2008-08-02 Wakaba <wakaba@suika.fam.cx> |
239 |
|
|
240 |
|
* WebIDL.pm ($integer): Order of selections are changed to match |
241 |
|
hexadecimal numbers (the original pattern, taken from the spec, |
242 |
|
was not work for hexadecimal numbers, because the "0" prefix |
243 |
|
matches to the [0-7]* part (as an empty string) and therefore |
244 |
|
it does not match with remaining "x..." part of a "0x..." integer |
245 |
|
literal. |
246 |
|
($get_type): It now returns a string, not an array reference, |
247 |
|
for regular types and |sequence| types (i.e. it in any case |
248 |
|
returns a string). |
249 |
|
($get_next_token): The second item in the array that represents |
250 |
|
a integer or float token is now a Perl number value, not the |
251 |
|
original string representation of the number. |
252 |
|
(check): Support for const value consistency checking. |
253 |
|
No extended attribute is defined for constants. |
254 |
|
(Node subclasses): Use simple strings rather than array references |
255 |
|
for default data type values. |
256 |
|
($serialize_type): Type values are now simple strings. |
257 |
|
(value): If the new attribute value is a false value, then |
258 |
|
a FALSE value is set to the attribute. |
259 |
|
|
260 |
|
2008-08-02 Wakaba <wakaba@suika.fam.cx> |
261 |
|
|
262 |
|
* WebIDL.pm ($get_scoped_name): Now scoped names are stored |
263 |
|
in its stringified format ("scoped name" as defined in the |
264 |
|
spec). Note that future version of this module should not use |
265 |
|
array references for type values and the |type_text| attribute |
266 |
|
should be made obsolete. |
267 |
|
(parse_char_string): Unescape attribute names. |
268 |
|
(check): Support for checking of whether inherited interfaces |
269 |
|
are actually defined or not. Support for checking of whether |
270 |
|
interface member identifiers are duplicated or not. |
271 |
|
($serialize_type): Scoped names are returned as is. A future |
272 |
|
version of this code should escape identifiers other than "DOMString", |
273 |
|
otherwise the idl_text would be non-conforming. |
274 |
|
|
275 |
|
2008-08-02 Wakaba <wakaba@suika.fam.cx> |
276 |
|
|
277 |
|
* WebIDL.pm (parse_char_string): Set line/column numbers |
278 |
|
to generated nodes. Unescape identifiers. Extended attributes |
279 |
|
for Definition's were ignored. |
280 |
|
(append_child): Set |parent_node| attribute. |
281 |
|
(parent_node): New attribute. |
282 |
|
(check): Support interface/exception members. Support |
283 |
|
extended attributes. Support definition identifier uniqueness |
284 |
|
constraint. |
285 |
|
(qualified_name): New attribute. |
286 |
|
(Interface/Exception idl_text): Extended attributes were |
287 |
|
not prepended to the returned text. |
288 |
|
|
289 |
|
2008-08-02 Wakaba <wakaba@suika.fam.cx> |
290 |
|
|
291 |
|
* WebIDL.pm (parse_char_string): Set line/column numbers |
292 |
|
to interface object experimentally. s/shift/pop/g, shift |
293 |
|
would make things wrong. Support for interface forward |
294 |
|
declarations was missing. Broken interface declarations |
295 |
|
with no block were not ignored entirely. |
296 |
|
(Whatpm::WebIDL::Node): New abstract class. This class |
297 |
|
makes things easier. |
298 |
|
(child_nodes): New attribute. Unlike DOM's attribute with |
299 |
|
same name, this attribute returns a dead list of nodes for |
300 |
|
simplicity. |
301 |
|
(get_user_data, set_user_data): New methods. |
302 |
|
(Module idl_text): A SPACE character should be inserted |
303 |
|
before the |{| character. |
304 |
|
(Interface idl_text): Support for interface forward declarations. |
305 |
|
(is_forward_declaration): New attribute. |
306 |
|
|
307 |
|
2008-07-19 Wakaba <wakaba@suika.fam.cx> |
308 |
|
|
309 |
|
* WebIDL.pm (type_text): Better serializer. |
310 |
|
|
311 |
|
2008-07-19 Wakaba <wakaba@suika.fam.cx> |
312 |
|
|
313 |
|
* WebIDL.pm: Revise forward-compatible parsing so that |
314 |
|
it now can handle broken extended attributes and as such. |
315 |
|
|
316 |
|
2008-07-19 Wakaba <wakaba@suika.fam.cx> |
317 |
|
|
318 |
|
* WebIDL.pm: Real support for extended attributes. |
319 |
|
Support for extended attributes with arguments. |
320 |
|
|
321 |
|
2008-07-19 Wakaba <wakaba@suika.fam.cx> |
322 |
|
|
323 |
|
* WebIDL.pm: Support for |exception| syntax. |
324 |
|
(Interface->idl_text): Tentative support for inheritances. |
325 |
|
|
326 |
|
2008-07-19 Wakaba <wakaba@suika.fam.cx> |
327 |
|
|
328 |
|
* WebIDL.pm: Hierarchical scoped name support was broken. |
329 |
|
Support for raises, setraises, and getraises syntaxes. |
330 |
|
|
331 |
|
2008-07-18 Wakaba <wakaba@suika.fam.cx> |
332 |
|
|
333 |
|
* WebIDL.pm: Support for |idl_text| attribute, version 1 (no |
334 |
|
proper support for types, extended attributes, and exceptions yet). |
335 |
|
WebIDL parser, version 1 (no support for exceptions yet, |
336 |
|
no proper support for extended attributes yet). |
337 |
|
|
338 |
|
2008-07-09 Wakaba <wakaba@suika.fam.cx> |
339 |
|
|
340 |
|
* WebIDL.pm (parse_char_string): Support for basic attribute syntax. |
341 |
|
|
342 |
|
2008-06-29 Wakaba <wakaba@suika.fam.cx> |
343 |
|
|
344 |
|
* WebIDL.pm: Support for valuetype and const. |
345 |
|
|
346 |
|
2008-06-29 Wakaba <wakaba@suika.fam.cx> |
347 |
|
|
348 |
|
* WebIDL.pm: New module. |
349 |
|
|
350 |
|
2008-06-15 Wakaba <wakaba@suika.fam.cx> |
351 |
|
|
352 |
|
* Makefile (Entities.html): URI changed. |
353 |
|
|
354 |
|
2008-06-08 Wakaba <wakaba@suika.fam.cx> |
355 |
|
|
356 |
|
* HTML.pm.src: Support for ruby parsing (HTML5 revision 1704). |
357 |
|
|
358 |
|
2008-06-01 Wakaba <wakaba@suika.fam.cx> |
359 |
|
|
360 |
|
* HTML.pm.src (_get_next_token): A parse error was missing. |
361 |
|
|
362 |
|
2008-06-01 Wakaba <wakaba@suika.fam.cx> |
363 |
|
|
364 |
|
* mklinktypelist.pl: rel=contact is no longer part of the HTML5 |
365 |
|
spec (commented out). (HTML5 revision 1711). |
366 |
|
|
367 |
|
2008-05-25 Wakaba <wakaba@suika.fam.cx> |
368 |
|
|
369 |
|
* ContentType.pm: Drop support for UTF-32 (HTML5 revision 1701). |
370 |
|
|
371 |
|
* HTML.pm.src: UTF-16BE and UTF-16LE should be considered |
372 |
|
as UTF-16 (HTML5 revision 1701). |
373 |
|
|
374 |
|
2008-05-25 Wakaba <wakaba@suika.fam.cx> |
375 |
|
|
376 |
|
* HTML.pm.src: Support for <noframes> in <head> (HTML5 revision |
377 |
|
1692). |
378 |
|
|
379 |
|
2008-05-25 Wakaba <wakaba@suika.fam.cx> |
380 |
|
|
381 |
|
* HTML.pm.src: The secondary insertion mode used when switching |
382 |
|
to foreign content is the "in body" insertion mode (HTML5 revision |
383 |
|
1696). |
384 |
|
|
385 |
|
2008-05-25 Wakaba <wakaba@suika.fam.cx> |
386 |
|
|
387 |
|
* HTML.pm.src: Don't raise parse error for <isindex/> (HTML5 |
388 |
|
revision 1697). |
389 |
|
|
390 |
|
2008-05-24 Wakaba <wakaba@suika.fam.cx> |
391 |
|
|
392 |
|
* HTML.pm.src: Support for end-of-file token in foreign content |
393 |
|
insertion mode (HTML5 revision 1693). Update SVG camelCase |
394 |
|
attribute list (HTML5 revision 1700). <textarea> closes |
395 |
|
</select> (HTML5 revision 1699). More start tags close in |
396 |
|
foreign content insertion mode (HTML5 revision 1698). |
397 |
|
|
398 |
|
2008-05-24 Wakaba <wakaba@suika.fam.cx> |
399 |
|
|
400 |
|
* HTML.pm.src: ";" is not part of charset name (HTML5 revision 1665). |
401 |
|
|
402 |
|
2008-05-24 Wakaba <wakaba@suika.fam.cx> |
403 |
|
|
404 |
|
* HTML.pm.src: More robust charset parameter detection (HTML5 |
405 |
|
revision 1674). |
406 |
|
|
407 |
|
2008-05-24 Wakaba <wakaba@suika.fam.cx> |
408 |
|
|
409 |
|
* ContentType.pm: Support for image/vnd.microsoft.icon (HTML5 |
410 |
|
revision 1676). |
411 |
|
|
412 |
|
2008-05-24 Wakaba <wakaba@suika.fam.cx> |
413 |
|
|
414 |
|
* HTML.pm.src: Ignore language part of public identifiers for |
415 |
|
quriks mode detection (HTML5 revision 1679). |
416 |
|
|
417 |
|
2008-05-24 Wakaba <wakaba@suika.fam.cx> |
418 |
|
|
419 |
|
* HTML.pm.src: Reduce the number of errors in truncated doctypes (HTML5 |
420 |
|
revision 1685). |
421 |
|
|
422 |
|
2008-05-24 Wakaba <wakaba@suika.fam.cx> |
423 |
|
|
424 |
|
* HTML.pm.src: Support for EOF in new states for tags (HTML5 |
425 |
|
revision 1684). |
426 |
|
|
427 |
|
2008-05-24 Wakaba <wakaba@suika.fam.cx> |
428 |
|
|
429 |
|
* HTML.pm.src (_reset_insertion_mode): Make <td>.innerHTML |
430 |
|
work (HTML5 revision 1690). |
431 |
|
|
432 |
|
2008-05-24 Wakaba <wakaba@suika.fam.cx> |
433 |
|
|
434 |
|
* HTML.pm.src (_tree_construction_main): Change handling of |
435 |
|
end tags in head insertion modes (HTML5 revision 1686). |
436 |
|
(parse_char_string): Bug fix for non-utf8 character string handlings. |
437 |
|
(parse_char_stream): |ungetc| does not work well for this context. |
438 |
|
|
439 |
|
2008-05-18 Wakaba <wakaba@suika.fam.cx> |
440 |
|
|
441 |
|
* HTML.pm.src (parse_byte_string): Redefined to invoke |
442 |
|
|parse_byte_stream|. |
443 |
|
(parse_byte_stream): New method. |
444 |
|
|
445 |
|
2008-05-18 Wakaba <wakaba@suika.fam.cx> |
446 |
|
|
447 |
|
* HTML.pm.src (parse_byte_string): Fix the column number reported |
448 |
|
by encoding layer error reporter. |
449 |
|
|
450 |
|
2008-05-17 Wakaba <wakaba@suika.fam.cx> |
451 |
|
|
452 |
|
* HTML.pm.src (parse_byte_string): Use streaming decoder |
453 |
|
rather than converting the whole byte string and then parsing. |
454 |
|
Propagate errors in character encoding layer. |
455 |
|
(get_next_token): Precise error reporting for |bare stago| error. |
456 |
|
|
457 |
|
2008-05-17 Wakaba <wakaba@suika.fam.cx> |
458 |
|
|
459 |
|
* HTML.pm.src (parse_char_stream): New method. |
460 |
|
(parse_char_string): This method is now defined as an invocation |
461 |
|
of the |parse_char_stream| method. |
462 |
|
|
463 |
|
2008-05-17 Wakaba <wakaba@suika.fam.cx> |
464 |
|
|
465 |
|
* HTML.pm.src (parse_byte_string): Report various status |
466 |
|
of the sniffing as info-level errors. Support for new |
467 |
|
decoding framework in parser resestting. |
468 |
|
(new): Various default error levels were not set. |
469 |
|
|
470 |
|
2008-05-17 Wakaba <wakaba@suika.fam.cx> |
471 |
|
|
472 |
|
* HTML.pm.src (parse_byte_string): HTML5 encoding siniffing |
473 |
|
algorithm, except for the actual sniffing, is implemented |
474 |
|
with new framework with Message::Charset::Info. |
475 |
|
|
476 |
|
2008-05-16 Wakaba <wakaba@suika.fam.cx> |
477 |
|
|
478 |
|
* CacheManifest.pm (_parse): Drop fragment identifiers from |
479 |
|
URIs in fallback section (HTML5 revision 1596). |
480 |
|
|
481 |
|
2008-05-10 Wakaba <wakaba@suika.fam.cx> |
482 |
|
|
483 |
|
* Makefile (Entities.html): URI has changed. |
484 |
|
|
485 |
|
2008-05-10 Wakaba <wakaba@suika.fam.cx> |
486 |
|
|
487 |
|
* CacheManifest.pm: Don't replace U+0000 NULL (HTML5 revision |
488 |
|
1553). |
489 |
|
|
490 |
|
2008-05-06 Wakaba <wakaba@suika.fam.cx> |
491 |
|
|
492 |
|
* ContentChecker.pm: Noted that those returned in |table| are |
493 |
|
no longer table elements, but table objects returned |
494 |
|
by Whatpm::HTMLTable. |
495 |
|
|
496 |
|
* HTMLTable.pm (form_table): Return table element node |
497 |
|
as |$table->{element}|. |
498 |
|
(assign_header): Support for the |headers=""| attribute. |
499 |
|
|
500 |
|
2008-05-06 Wakaba <wakaba@suika.fam.cx> |
501 |
|
|
502 |
|
* HTMLTable.pm (assign_header): New function; first version |
503 |
|
with no support for headers="". |
504 |
|
(form_table): Include table width and height to the returned |
505 |
|
table object for covenience. Indexing in column assignement was wrong. |
506 |
|
Set whether a data cell is empty or not for convenience. |
507 |
|
|
508 |
|
2008-05-05 Wakaba <wakaba@suika.fam.cx> |
509 |
|
|
510 |
|
* HTMLTable.pm: Robuster caption support (HTML5 revision 1393). |
511 |
|
|
512 |
|
2008-05-05 Wakaba <wakaba@suika.fam.cx> |
513 |
|
|
514 |
|
* HTMLTable.pm: How table model errors are detected is |
515 |
|
changed (HTML5 revision 1387). |
516 |
|
|
517 |
|
2008-05-05 Wakaba <wakaba@suika.fam.cx> |
518 |
|
|
519 |
|
* HTMLTable.pm: The algorithm now moves |tfoot| elements |
520 |
|
to the end of the table (HTML5 revision 1380). |
521 |
|
|
522 |
|
2008-05-05 Wakaba <wakaba@suika.fam.cx> |
523 |
|
|
524 |
|
* HTMLTable.pm: The algorithm is now 0-based indexing, instead |
525 |
|
of 1-based (HTML5 revision 1376). |
526 |
|
|
527 |
|
2008-05-05 Wakaba <wakaba@suika.fam.cx> |
528 |
|
|
529 |
|
* ContentType.pm: "Content-Type: text/plain; charset=UTF-8" |
530 |
|
and "Content-Encoding" no longer prevent sniffing (HTML5 |
531 |
|
revision 1288). |
532 |
|
|
533 |
|
2008-05-05 Wakaba <wakaba@suika.fam.cx> |
534 |
|
|
535 |
|
* ContentType.pm: Skip BOMs n feed or HTML algorithm (HTML5 revision |
536 |
|
1282). |
537 |
|
|
538 |
|
2008-05-03 Wakaba <wakaba@suika.fam.cx> |
539 |
|
|
540 |
|
* ContentChecker.pm: Support for global attributes. |
541 |
|
Status of XML specs are added. |
542 |
|
|
543 |
|
2008-05-03 Wakaba <wakaba@suika.fam.cx> |
544 |
|
|
545 |
|
* ContentChecker.pm (check_element): Support for |template=""| |
546 |
|
and |ref=""| attribute (referent element type checking). |
547 |
|
|
548 |
|
2008-04-29 Wakaba <wakaba@suika.fam.cx> |
549 |
|
|
550 |
|
* CacheManifest.pm (_parse): New same origin definition (HTML5 revision |
551 |
|
1500) is implemented (except for IDNA part and URI-scheme-specific |
552 |
|
knowledge). Line number counting was wrong for LF-only |
553 |
|
documents. |
554 |
|
|
555 |
|
2008-04-13 Wakaba <wakaba@suika.fam.cx> |
556 |
|
|
557 |
|
* HTML.pm.src: Raise an parse error for any disallowed |
558 |
|
character (HTML5 revision 1263). |
559 |
|
|
560 |
|
2008-04-13 Wakaba <wakaba@suika.fam.cx> |
561 |
|
|
562 |
|
* mkentitylist.pl: Support for new HTML5 entity table format (the |
563 |
|
definition for |AElig;| was missing). |
564 |
|
|
565 |
|
2008-04-13 Wakaba <wakaba@suika.fam.cx> |
566 |
|
|
567 |
|
* HTML.pm.src, mkhtmlparser.pl: Support for element/attribute |
568 |
|
name/namespace fixup (HTML5 revisions 1413, 1415, 1416, and 1417). |
569 |
|
|
570 |
|
2008-04-13 Wakaba <wakaba@suika.fam.cx> |
571 |
|
|
572 |
|
* HTML.pm.src: List of element names that close foreign content |
573 |
|
insertion mode is added (HTML5 revisions 1412 and 1418). |
574 |
|
|
575 |
|
2008-04-13 Wakaba <wakaba@suika.fam.cx> |
576 |
|
|
577 |
|
* HTML.pm.src: Support for |mglyph| and |malignmark| |
578 |
|
elements (HTML5 revision 1410). |
579 |
|
|
580 |
|
2008-04-13 Wakaba <wakaba@suika.fam.cx> |
581 |
|
|
582 |
|
* HTML.pm.src: Support for new long MathML entities (HTML5 |
583 |
|
revision 1406). |
584 |
|
|
585 |
|
2008-04-13 Wakaba <wakaba@suika.fam.cx> |
586 |
|
|
587 |
|
* HTML.pm.src: CDATA section support for MathML and SVG |
588 |
|
elements (HTML5 revision 1404 and 1420). |
589 |
|
|
590 |
|
2008-04-12 Wakaba <wakaba@suika.fam.cx> |
591 |
|
|
592 |
|
* HTML.pm.src, mkhtmlparser.pl: Support for MathML and SVG |
593 |
|
elements (HTML5 revision 1404). Unused !!!macro definitions |
594 |
|
are removed. |
595 |
|
|
596 |
|
2008-04-12 Wakaba <wakaba@suika.fam.cx> |
597 |
|
|
598 |
|
* HTML.pm.src, mkhtmlparser.pl: The way permitted slash errors |
599 |
|
are raised is changed (HTML5 revision 1404). |
600 |
|
|
601 |
|
2008-04-06 Wakaba <wakaba@suika.fam.cx> |
602 |
|
|
603 |
|
* HTML.pm.src: Category sets that are no longer used are removed. |
604 |
|
|
605 |
|
2008-04-06 Wakaba <wakaba@suika.fam.cx> |
606 |
|
|
607 |
|
* HTML.pm.src: The ->[1] property of stack entries are now |
608 |
|
replaced by constants representing element category. |
609 |
|
|
610 |
|
2008-04-06 Wakaba <wakaba@suika.fam.cx> |
611 |
|
|
612 |
|
* HTML.pm.src: Don't use local name stored in stack (i.e. ->[1]) |
613 |
|
for error reporting. (This is a preparation for using constant |
614 |
|
value for ->[1].) |
615 |
|
|
616 |
|
2008-03-22 Wakaba <wakaba@suika.fam.cx> |
617 |
|
|
618 |
|
* RDFXML.pm: Typo fixed. |
619 |
|
|
620 |
|
2008-03-22 Wakaba <wakaba@suika.fam.cx> |
621 |
|
|
622 |
|
* ContentChecker.pm: |fact_level| is now treated |
623 |
|
as same as |must_level|, i.e. level = |m|. |
624 |
|
(check_element): Make list of URIs in the DOM. |
625 |
|
|
626 |
|
2008-03-21 Wakaba <wakaba@suika.fam.cx> |
627 |
|
|
628 |
|
* RDFXML.pm: Language accessor implemented. |
629 |
|
Local (null-namespace) attribute support. |
630 |
|
|
631 |
|
2008-03-21 Wakaba <wakaba@suika.fam.cx> |
632 |
|
|
633 |
|
* RDFXML.pm: Factored out ID checking code. |
634 |
|
|
635 |
|
2008-03-21 Wakaba <wakaba@suika.fam.cx> |
636 |
|
|
637 |
|
* RDFXML.pm: TODO items noted. Validation of ID |
638 |
|
and URI attributes is implemented. Warn if unknown |
639 |
|
value is used in rdf:parseType="" attribute. |
640 |
|
|
641 |
|
* URIChecker.pm (check_rdf_uri_reference): New function. |
642 |
|
|
643 |
|
2008-03-21 Wakaba <wakaba@suika.fam.cx> |
644 |
|
|
645 |
|
* RDFXML.pm: bnodeid implemented. Relative references |
646 |
|
are now resolved. |
647 |
|
|
648 |
|
2008-03-21 Wakaba <wakaba@suika.fam.cx> |
649 |
|
|
650 |
|
* ContentChecker.pm: RDF reification implemented. |
651 |
|
|
652 |
|
* RDFXML.pm: undef vs false bug fixed. |
653 |
|
Reification implemented. |
654 |
|
|
655 |
|
2008-03-21 Wakaba <wakaba@suika.fam.cx> |
656 |
|
|
657 |
|
* RDFXML.pm: s/id/ID/ for attribute name. |
658 |
|
The |node| arguments are added for |ontriple| calls. |
659 |
|
Too many "attribute not allowed" errors were raised. |
660 |
|
|
661 |
|
* ContentChecker.pm: Initial experimental support for rdf:RDF |
662 |
|
element. |
663 |
|
|
664 |
|
2008-03-21 Wakaba <wakaba@suika.fam.cx> |
665 |
|
|
666 |
|
* RDFXML.pm: New module. |
667 |
|
|
668 |
|
2008-03-20 Wakaba <wakaba@suika.fam.cx> |
669 |
|
|
670 |
|
* HTML.pm.src (set_inner_html): Line/column number |
671 |
|
code was old one yet. |
672 |
|
|
673 |
|
2008-03-20 Wakaba <wakaba@suika.fam.cx> |
674 |
|
|
675 |
|
* HTML.pm.src: Better line/column reporting for "duplicate attribute" |
676 |
|
errors. Line/column markings for DOCTYPE, comment, and |
677 |
|
character tokens are reintroduced; otherwise, |
678 |
|
error location for "not HTML5" error and errors |
679 |
|
for implied elements are not attached. |
680 |
|
|
681 |
|
2008-03-20 Wakaba <wakaba@suika.fam.cx> |
682 |
|
|
683 |
|
* HTML.pm.src: Set line/column numbers to attributes. |
684 |
|
|
685 |
|
* NanoDOM.pm (create_attribute_ns, set_attribute_node_ns): Added. |
686 |
|
(value): Setter implemented. |
687 |
|
|
688 |
|
* mkhtmlparser.pl: Set line/column numbers to Attr nodes. |
689 |
|
|
690 |
|
2008-03-20 Wakaba <wakaba@suika.fam.cx> |
691 |
|
|
692 |
|
* HTML.pm.src: Unused line/column markings are removed. |
693 |
|
|
694 |
|
2008-03-20 Wakaba <wakaba@suika.fam.cx> |
695 |
|
|
696 |
|
* HTML.pm.src (_get_next_token): Remove |first_start_tag| |
697 |
|
flag, which is no longer used. |
698 |
|
|
699 |
|
2008-03-17 Wakaba <wakaba@suika.fam.cx> |
700 |
|
|
701 |
|
* HTML.pm.src: Set line/column information to element nodes. |
702 |
|
|
703 |
|
* mkhtmlparser.pl (!!!create-element, !!!insert-element, |
704 |
|
and !!!insert-element-t): Set line/column information to |
705 |
|
element nodes. |
706 |
|
|
707 |
|
2008-03-17 Wakaba <wakaba@suika.fam.cx> |
708 |
|
|
709 |
|
* HTML.pm.src (_get_next_token): The first "<" character |
710 |
|
in "<?", "<>", or "</>" should be the error point. |
711 |
|
|
712 |
|
2008-03-16 Wakaba <wakaba@suika.fam.cx> |
713 |
|
|
714 |
|
* HTML.pm.src: Some more fixes on error position reporting. |
715 |
|
|
716 |
|
2008-03-16 Wakaba <wakaba@suika.fam.cx> |
717 |
|
|
718 |
|
* HTML.pm.src: Token-level precious error reporting. |
719 |
|
|
720 |
|
2008-03-16 Wakaba <wakaba@suika.fam.cx> |
721 |
|
|
722 |
|
* HTML.pm.src: Preparation for more precious error point |
723 |
|
reporting. |
724 |
|
|
725 |
|
2008-03-11 Wakaba <wakaba@suika.fam.cx> |
726 |
|
|
727 |
|
* HTML.pm.src: Error type revised. |
728 |
|
|
729 |
|
2008-03-11 Wakaba <wakaba@suika.fam.cx> |
730 |
|
|
731 |
|
* HTML.pm.src: Similar codes are merged together, again. |
732 |
|
|
733 |
|
2008-03-11 Wakaba <wakaba@suika.fam.cx> |
734 |
|
|
735 |
|
* HTML.pm.src: Similar codes are merged together. |
736 |
|
|
737 |
|
2008-03-10 Wakaba <wakaba@suika.fam.cx> |
738 |
|
|
739 |
|
* mkhtmlparser.pl: Set "level" parameter to parse errors. |
740 |
|
|
741 |
|
* HTML.pm.src: Code refined. |
742 |
|
|
743 |
|
2008-03-09 Wakaba <wakaba@suika.fam.cx> |
744 |
|
|
745 |
|
* HTML.pm.src: |</body>| treatement has been changed (HTML5 |
746 |
|
revision 1348). Note that I really don't know this makes |
747 |
|
any difference in the black-box behavior of the parser. |
748 |
|
|
749 |
|
2008-03-09 Wakaba <wakaba@suika.fam.cx> |
750 |
|
|
751 |
|
* HTML.pm.src: New end-of-file token implementation (HTML5 |
752 |
|
revision 1348). |
753 |
|
|
754 |
|
2008-03-09 Wakaba <wakaba@suika.fam.cx> |
755 |
|
|
756 |
|
* HTML.pm.src: |applet| support (HTML5 revision 1347). |
757 |
|
|
758 |
|
2008-03-09 Wakaba <wakaba@suika.fam.cx> |
759 |
|
|
760 |
|
* HTML.pm.src: Foster parenting in AAA (HTML5 revision 1343). |
761 |
|
|
762 |
|
2008-03-09 Wakaba <wakaba@suika.fam.cx> |
763 |
|
|
764 |
|
* HTML.pm.src: Support for |<input>| in the "in select" insertion |
765 |
|
mode and support for the "in select in table" insertion mode (HTML5 |
766 |
|
revision 1342). |
767 |
|
|
768 |
|
2008-03-09 Wakaba <wakaba@suika.fam.cx> |
769 |
|
|
770 |
|
* HTML.pm.src: No foster parenting for <script> and <script> |
771 |
|
in non-tainted <table>s (HTML5 revision 1336). |
772 |
|
|
773 |
|
2008-03-09 Wakaba <wakaba@suika.fam.cx> |
774 |
|
|
775 |
|
* HTML.pm.src: Ignore white space characters between <html> |
776 |
|
and <head> (HTML5 revision 1332). |
777 |
|
|
778 |
|
2008-03-09 Wakaba <wakaba@suika.fam.cx> |
779 |
|
|
780 |
|
* HTML.pm.src: Treat <input type=hidden> as if it were a |
781 |
|
white space (HTML5 revision 1331). |
782 |
|
|
783 |
|
2008-03-08 Wakaba <wakaba@suika.fam.cx> |
784 |
|
|
785 |
|
* HTML.pm.src: Ignore U+000A at the beginning of a |listing| |
786 |
|
element (HTML5 revision 1330). |
787 |
|
|
788 |
|
2008-03-08 Wakaba <wakaba@suika.fam.cx> |
789 |
|
|
790 |
|
* HTML.pm.src: <title> is always appended to the current |
791 |
|
element (HTML5 revision 1328). |
792 |
|
|
793 |
|
2008-03-08 Wakaba <wakaba@suika.fam.cx> |
794 |
|
|
795 |
|
* HTML.pm.src: White space in tainted tables are moved |
796 |
|
into foster parents (HTML5 revision 1326). |
797 |
|
|
798 |
|
2008-03-08 Wakaba <wakaba@suika.fam.cx> |
799 |
|
|
800 |
|
* HTML.pm.src: Reduce errors from foster parenting cases (HTML5 |
801 |
|
revision 1321). |
802 |
|
|
803 |
|
2008-03-08 Wakaba <wakaba@suika.fam.cx> |
804 |
|
|
805 |
|
* HTML.pm.src: |</h/n/>| case code rearranged to align with |
806 |
|
the spec (HTML5 revision 1320). Note that we finally complete |
807 |
|
all of HTML5 revision 1320 changes. |
808 |
|
|
809 |
|
2008-03-08 Wakaba <wakaba@suika.fam.cx> |
810 |
|
|
811 |
|
* HTML.pm.src: |</form>| now works similar to |</div>| for unclosed |
812 |
|
tags (HTML5 revision 1320). |
813 |
|
|
814 |
|
2008-03-08 Wakaba <wakaba@suika.fam.cx> |
815 |
|
|
816 |
|
* HTML.pm.src: |</p>| case rearranged with no actual change in fact. |
817 |
|
|
818 |
|
2008-03-08 Wakaba <wakaba@suika.fam.cx> |
819 |
|
|
820 |
|
* HTML.pm.src: A "generate implied end tags" code (t409.1) |
821 |
|
could not be reached so that it is now removed (HTML5 revision |
822 |
|
1320). |
823 |
|
|
824 |
|
2008-03-08 Wakaba <wakaba@suika.fam.cx> |
825 |
|
|
826 |
|
* HTML.pm.src: Code for the case of |</div>| and so on are revised |
827 |
|
to align with new spec text (HTML5 revision 1320). |
828 |
|
|
829 |
|
2008-03-08 Wakaba <wakaba@suika.fam.cx> |
830 |
|
|
831 |
|
* HTML.pm.src: Remove strange |if| condition; however, it should |
832 |
|
have had no harm in theory. |
833 |
|
|
834 |
|
2008-03-08 Wakaba <wakaba@suika.fam.cx> |
835 |
|
|
836 |
|
* HTML.pm.src (_tree_construction_main): '</p>' in body |
837 |
|
case is split from other end tags for the preparation |
838 |
|
of implementing HTML revision 1320. |
839 |
|
|
840 |
|
2008-03-07 Wakaba <wakaba@suika.fam.cx> |
841 |
|
|
842 |
|
* HTML.pm.src: Simplified "generate implied end tag" (HTML5 |
843 |
|
revision 1320). |
844 |
|
|
845 |
|
2008-03-07 Wakaba <wakaba@suika.fam.cx> |
846 |
|
|
847 |
|
* HTML.pm.src (_tree_construction_main): Merge rules for "h1" |
848 |
|
and "div" (HTML5 revision 1318). Add comments to where |
849 |
|
|form| pointer association codes should be inserted (HTML5 revision |
850 |
|
1319). |
851 |
|
|
852 |
|
2008-03-06 Wakaba <wakaba@suika.fam.cx> |
853 |
|
|
854 |
|
* HTML.pm.src: <html> treatement refined (HTML5 revision 1314). |
855 |
|
|
856 |
|
2008-03-05 Wakaba <wakaba@suika.fam.cx> |
857 |
|
|
858 |
|
* HTML.pm.src: Since the case t268 should never be reached (no |
859 |
|
other token type, there are), it is replaced by a |die| statement. |
860 |
|
|
861 |
|
2008-03-05 Wakaba <wakaba@suika.fam.cx> |
862 |
|
|
863 |
|
* HTML.pm.src: Typo fixed. |
864 |
|
|
865 |
|
2008-03-04 Wakaba <wakaba@suika.fam.cx> |
866 |
|
|
867 |
|
* HTML.pm.src (_tree_construction_initial): Some limited quirks |
868 |
|
doctypes were not uppercased for comparison. |
869 |
|
|
870 |
|
2008-03-03 Wakaba <wakaba@suika.fam.cx> |
871 |
|
|
872 |
|
* HTML.pm.src (tree construction and set_inner_html): Checkpoints |
873 |
|
are added. |
874 |
|
|
875 |
|
2008-03-03 Wakaba <wakaba@suika.fam.cx> |
876 |
|
|
877 |
|
* HTML.pm.src (_tokenize_attempt_to_consume_an_entity): Checkpoints |
878 |
|
are set. Cases that are unlikely reached are noted as so. |
879 |
|
|
880 |
|
2008-03-03 Wakaba <wakaba@suika.fam.cx> |
881 |
|
|
882 |
|
* HTML.pm.src: Checkpoints for debugging are added. |
883 |
|
|
884 |
|
* mkhtmlparser.pl: Support for |!!!cp| syntax. |
885 |
|
|
886 |
|
2008-03-03 Wakaba <wakaba@suika.fam.cx> |
887 |
|
|
888 |
|
* HTML.pm.src, mkhtmlparser.pl: s/_input_character/_char/g |
889 |
|
for simplicity. |
890 |
|
|
891 |
|
2008-03-03 Wakaba <wakaba@suika.fam.cx> |
892 |
|
|
893 |
|
* HTML.pm.src: Flag name changed: s/correct/force-quirks/g (HTML5 |
894 |
|
revision 1307). |
895 |
|
|
896 |
|
2008-03-03 Wakaba <wakaba@suika.fam.cx> |
897 |
|
|
898 |
|
* HTML.pm.src (_get_next_token): Where the /incorrect/ flag |
899 |
|
is set are changed (HTML5 revision 1305). |
900 |
|
|
901 |
|
2008-03-02 Wakaba <wakaba@suika.fam.cx> |
902 |
|
|
903 |
|
* HTML.pm.src: Raise a parse error for |<span ===>| (HTML5 revision |
904 |
|
1292). Entities are not parsed in comment-like part in RCDATA |
905 |
|
elements (HTML5 revision 1294). Allow bare & at the end |
906 |
|
of attribute value literals (HTML5 revision 1296). More |
907 |
|
quirks mode doctypes (HTML5 revision 1302). Requires spaces |
908 |
|
between attributes and ban attribute names or unquoted |
909 |
|
attribute values containing single or double quotes (HTML5 |
910 |
|
revision 1303). |
911 |
|
|
912 |
|
2008-03-02 Wakaba <wakaba@suika.fam.cx> |
913 |
|
|
914 |
|
* ContentChecker.pm: Typo fixed. Don't raise "character encoding" |
915 |
|
and related errors unless it is an HTML document (though the spec |
916 |
|
is unclear on whether it is applied to XHTML document). |
917 |
|
|
918 |
|
* HTML.pm (%HTMLAttrStatus): WF2 repetition model attributes |
919 |
|
are added. |
920 |
|
|
921 |
|
2008-03-02 Wakaba <wakaba@suika.fam.cx> |
922 |
|
|
923 |
|
* HTML.pm.src: s/local_name/manakai_local_name/g. |
924 |
|
|
925 |
|
2008-03-01 Wakaba <wakaba@suika.fam.cx> |
926 |
|
|
927 |
|
* _NamedEntityList.pm: Updated (HTML5 revision 1286). |
928 |
|
|
929 |
|
* HTML.pm.src: |charset| in |content| attribute is |
930 |
|
case-insensitive (HTML5 revision 1270). |
931 |
|
|
932 |
|
2008-02-26 Wakaba <wakaba@suika.fam.cx> |
933 |
|
|
934 |
|
* ContentChecker.pm: New status constants are added. |
935 |
|
($ElementDefault): |status| added. |
936 |
|
(check_element): Err for non-standard or deprecated elements. |
937 |
|
(_attr_status_info): For non-standard or deprecated attributes. |
938 |
|
|
939 |
|
2008-02-24 Wakaba <wakaba@suika.fam.cx> |
940 |
|
|
941 |
|
* ContentChecker.pm (_attr_status_info): New internal method. |
942 |
|
|
943 |
|
2008-02-24 Wakaba <wakaba@suika.fam.cx> |
944 |
|
|
945 |
|
* ContentChecker.pm (check_element): Element standardized |
946 |
|
status information is now dispatched. |
947 |
|
|
948 |
|
2008-02-24 Wakaba <wakaba@suika.fam.cx> |
949 |
|
|
950 |
|
* ContentChecker.pm (check_element): Fix |del|-and-significant |
951 |
|
problem by adding some more arguments. |
952 |
|
|
953 |
|
2008-02-24 Wakaba <wakaba@suika.fam.cx> |
954 |
|
|
955 |
|
* ContentChecker.pm (check_element): Use context of |
956 |
|
container-for-the-purpose-of-content-model element (not transparent |
957 |
|
element) for |check_child_element| calling and significant |
958 |
|
text flag marking. This reintroduces |<del>|-and-significant |
959 |
|
problem again. |
960 |
|
|
961 |
|
2008-02-24 Wakaba <wakaba@suika.fam.cx> |
962 |
|
|
963 |
|
* ContentChecker.pm (check_element): Make semi-transparent |
964 |
|
elements ignored for the purpose of phase changes in |
965 |
|
content model checking. |
966 |
|
|
967 |
|
2008-02-23 Wakaba <wakaba@suika.fam.cx> |
968 |
|
|
969 |
|
* ContentChecker.pm (check_element): In-element state |
970 |
|
was not properly managed for transparent cases. |
971 |
|
|
972 |
|
2008-02-23 Wakaba <wakaba@suika.fam.cx> |
973 |
|
|
974 |
|
* ContentChecker.pm (check_element): Support for |video| |
975 |
|
and |audio| as semi-transparent elements. |
976 |
|
|
977 |
|
2008-02-23 Wakaba <wakaba@suika.fam.cx> |
978 |
|
|
979 |
|
* ContentChecker.pm ($HTMLSemiTransparentElements): New. |
980 |
|
(check_element): s/minuses/minus_elements/, s/pluses/plus_elements/. |
981 |
|
Support for |html:object| as a semi-transparent element. |
982 |
|
|
983 |
|
2008-02-23 Wakaba <wakaba@suika.fam.cx> |
984 |
|
|
985 |
|
* ContentChecker.pm (check_element): The way to traverse |
986 |
|
the tree is entirely revised to make it easier to track |
987 |
|
the state of ancestors/descendants. As a result of this |
988 |
|
revision (which rewrites almost all of Whatpm::ContentChecker::HTML), |
989 |
|
support for content model checking for HTML elements |figure|, |
990 |
|
|object|, |video|, and |audio| and checking for XML elements (and |
991 |
|
some XMLNS checkings) are dropped for now. They will be |
992 |
|
reimplemented in due cource. |
993 |
|
|
994 |
|
2008-02-17 Wakaba <wakaba@suika.fam.cx> |
995 |
|
|
996 |
|
* HTML.pm.src: |>| in public or system literal closes the DOCTYPE |
997 |
|
token (HTML5 revision 1225). |
998 |
|
|
999 |
|
2008-02-17 Wakaba <wakaba@suika.fam.cx> |
1000 |
|
|
1001 |
|
* ContentChecker.pm ({unsupported_level}): New value. |
1002 |
|
|
1003 |
|
* HTML.pm.src: Save whether |meta| |content| attribute |
1004 |
|
contains character references or not. |
1005 |
|
|
1006 |
|
2008-02-17 Wakaba <wakaba@suika.fam.cx> |
1007 |
|
|
1008 |
|
* ContentChecker.pm (_get_children): (Incompleted) attempt to |
1009 |
|
imlement significant content checking for contents |
1010 |
|
with |del| elements. |
1011 |
|
|
1012 |
|
2008-02-17 Wakaba <wakaba@suika.fam.cx> |
1013 |
|
|
1014 |
|
* ContenteChecker.pm ($HTMLTransparentElements): More |
1015 |
|
elements are added. |
1016 |
|
(_get_children): HTML |object| elements are now semi-transparent. |
1017 |
|
|
1018 |
|
* NanoDOM.pm (manakai_html, manakai_head): New methods. |
1019 |
|
|
1020 |
|
2008-02-16 Wakaba <wakaba@suika.fam.cx> |
1021 |
|
|
1022 |
|
* CacheManifest.pm: HTML5 revision 1211 implemented. |
1023 |
|
|
1024 |
|
* CacheManifest.pod: Updated. |
1025 |
|
|
1026 |
|
2008-02-10 Wakaba <wakaba@suika.fam.cx> |
1027 |
|
|
1028 |
|
* ContentChecker.pm (check_document, check_element): Support |
1029 |
|
for second argument ($onsubdoc). |
1030 |
|
(_get_css_parser): Removed (now it is part of WDCC). |
1031 |
|
|
1032 |
|
2008-02-09 Wakaba <wakaba@suika.fam.cx> |
1033 |
|
|
1034 |
|
* ContentChecker.pm (_get_css_parser): New. |
1035 |
|
|
1036 |
|
2007-11-25 Wakaba <wakaba@suika.fam.cx> |
1037 |
|
|
1038 |
|
* ContentChecker.pm ($AnyChecker): Old way to add child elements |
1039 |
|
for checking had been used. |
1040 |
|
|
1041 |
|
2007-11-25 Wakaba <wakaba@suika.fam.cx> |
1042 |
|
|
1043 |
|
* ContentChecker.pm (check_element): New todo item type |descendant|. |
1044 |
|
|
1045 |
|
2007-11-23 Wakaba <wakaba@suika.fam.cx> |
1046 |
|
|
1047 |
|
* IMTChecker.pm: Revised to raise errors and warnings as (poorly) |
1048 |
|
specced in RFC 2046 and RFC 4288. |
1049 |
|
(application/atom+xml): Definition added. |
1050 |
|
|
1051 |
|
2007-11-23 Wakaba <wakaba@suika.fam.cx> |
1052 |
|
|
1053 |
|
* URIChecker.pm: Make RFC 3986 should-level errors |
1054 |
|
warnings (rather than SHOULD-level errors). |
1055 |
|
|
1056 |
|
2007-11-23 Wakaba <wakaba@suika.fam.cx> |
1057 |
|
|
1058 |
|
* NanoDOM.pm (get_user_data, set_user_data): New methods. |
1059 |
|
|
1060 |
|
* HTML.pm.src: A flag for character references in attribute |
1061 |
|
values are added. Set |manakai_has_reference| user data |
1062 |
|
to |charset| attribute. |
1063 |
|
|
1064 |
|
2007-11-23 Wakaba <wakaba@suika.fam.cx> |
1065 |
|
|
1066 |
|
* NanoDOM.pm (input_encoding, manakai_charset, manakai_has_bom): New |
1067 |
|
attributes. |
1068 |
|
|
1069 |
|
* ContentChecker.pm (check_document): Warn if charset requirements |
1070 |
|
cannot be tested. |
1071 |
|
|
1072 |
|
2007-11-19 Wakaba <wakaba@suika.fam.cx> |
1073 |
|
|
1074 |
|
* HTML.pm.src (parse_byte_string): Detect charset |
1075 |
|
by universalchardet if charset parameter is not specified. |
1076 |
|
|
1077 |
|
* Makefile (Charset-all, Charset-clean): New rules. |
1078 |
|
|
1079 |
|
2007-11-18 Wakaba <wakaba@suika.fam.cx> |
1080 |
|
|
1081 |
|
* ContentChecker.pm (check_document): Check the existence |
1082 |
|
of character encoding declaration and selection of encoding |
1083 |
|
for HTML document. |
1084 |
|
|
1085 |
|
2007-11-18 Wakaba <wakaba@suika.fam.cx> |
1086 |
|
|
1087 |
|
* ContentType.pm (get_sniffed_type): Return also the official |
1088 |
|
type in list context. |
1089 |
|
|
1090 |
|
2007-11-18 Wakaba <wakaba@suika.fam.cx> |
1091 |
|
|
1092 |
|
* ContentType.pm: Sniffing with leading white space |
1093 |
|
ignoring (HTML5 revisions 1013 and 1016). |
1094 |
|
|
1095 |
|
2007-11-18 Wakaba <wakaba@suika.fam.cx> |
1096 |
|
|
1097 |
|
* ContentType.pm: HTML5 revision 1013 changes, except for leading |
1098 |
|
white spaces, are implemented. |
1099 |
|
|
1100 |
|
2007-11-11 Wakaba <wakaba@suika.fam.cx> |
1101 |
|
|
1102 |
|
* HTML.pm.src (parse_char_string): Set |inner_encoding| |
1103 |
|
attribute if possible. |
1104 |
|
|
1105 |
|
2007-11-11 Wakaba <wakaba@suika.fam.cx> |
1106 |
|
|
1107 |
|
* HTML.pm.src (parse_byte_string): New method. |
1108 |
|
(parse_char_string): New alias for |parse_string|. |
1109 |
|
(main phase): Invoking "change the encoding" algorithm if desired. |
1110 |
|
|
1111 |
|
* HTML.pod: Updated. |
1112 |
|
|
1113 |
|
2007-11-11 Wakaba <wakaba@suika.fam.cx> |
1114 |
|
|
1115 |
|
* HTML.pod (get_inner_html): Removed. |
1116 |
|
|
1117 |
|
* Makefile (HTML-all, HTML-clean): New. |
1118 |
|
|
1119 |
|
2007-11-11 Wakaba <wakaba@suika.fam.cx> |
1120 |
|
|
1121 |
|
* HTML.pm.src (get_inner_html): Removed (moved to HTML/Serializer.pm). |
1122 |
|
|
1123 |
|
2007-11-08 Wakaba <wakaba@suika.fam.cx> |
1124 |
|
|
1125 |
|
* mklinktypelist.pl: s/noreferer/noreferrer/ (HTML5 revision 1132). |
1126 |
|
|
1127 |
|
2007-11-04 Wakaba <wakaba@suika.fam.cx> |
1128 |
|
|
1129 |
|
* Makefile: |CacheManifest.html| is added. |
1130 |
|
|
1131 |
|
* CacheManifest.pod: New file. |
1132 |
|
|
1133 |
|
2007-11-04 Wakaba <wakaba@suika.fam.cx> |
1134 |
|
|
1135 |
|
* CacheManifest.pm: New module. |
1136 |
|
|
1137 |
|
2007-11-04 Wakaba <wakaba@suika.fam.cx> |
1138 |
|
|
1139 |
|
* HTML.pm.src: Support for application cache selection algorithm |
1140 |
|
callback. |
1141 |
|
|
1142 |
|
2007-11-04 Wakaba <wakaba@suika.fam.cx> |
1143 |
|
|
1144 |
|
* mklinktypelist.pl: Support for rel=noreferer (HTML5 revision 1118). |
1145 |
|
|
1146 |
|
2007-10-17 Wakaba <wakaba@suika.fam.cx> |
1147 |
|
|
1148 |
|
* Makefile (clean): New rule. |
1149 |
|
|
1150 |
|
* NanoDOM.pm (public_id, system_id): New attributes. |
1151 |
|
|
1152 |
|
2007-10-17 Wakaba <wakaba@suika.fam.cx> |
1153 |
|
|
1154 |
|
* Makefile (CSS-all, CSS-clean, clean): New rules. |
1155 |
|
|
1156 |
|
2007-10-14 Wakaba <wakaba@suika.fam.cx> |
1157 |
|
|
1158 |
|
* ContentChecker.pm (check_document): Support for |
1159 |
|
new |is_xml_root| flag. |
1160 |
|
(check_element): Support for new |pluses| state. |
1161 |
|
(_add_pluses): New method. |
1162 |
|
(_remove_minuses): Support for new |minus| item. |
1163 |
|
|
1164 |
|
2007-09-24 Wakaba <wakaba@suika.fam.cx> |
1165 |
|
|
1166 |
|
* ContentChecker.pm: Raise specific error for invalid |
1167 |
|
root element. |
1168 |
|
|
1169 |
|
2007-09-24 Wakaba <wakaba@suika.fam.cx> |
1170 |
|
|
1171 |
|
* ContentChecker.pm: Set level values for later uses. |
1172 |
|
|
1173 |
|
2007-09-09 Wakaba <wakaba@suika.fam.cx> |
1174 |
|
|
1175 |
|
* ContentChecker.pm: Support for language tag validation. |
1176 |
|
|
1177 |
|
2007-09-09 Wakaba <wakaba@suika.fam.cx> |
1178 |
|
|
1179 |
|
* LangTag.pm (check_rfc3066_language_tag): New method. |
1180 |
|
|
1181 |
|
2007-09-09 Wakaba <wakaba@suika.fam.cx> |
1182 |
|
|
1183 |
|
* LangTag.pm: New module. |
1184 |
|
|
1185 |
|
2007-09-04 Wakaba <wakaba@suika.fam.cx> |
1186 |
|
|
1187 |
|
* HTML.pm.src: Some error types were wrong. |
1188 |
|
|
1189 |
|
2007-08-17 Wakaba <wakaba@suika.fam.cx> |
1190 |
|
|
1191 |
|
* CSS/: New directory. |
1192 |
|
|
1193 |
|
2007-08-17 Wakaba <wakaba@suika.fam.cx> |
1194 |
|
|
1195 |
|
* ContentChecker.pm (_check_get_children): Support |
1196 |
|
for |noscript| in |head|. |
1197 |
|
|
1198 |
|
2007-08-12 Wakaba <wakaba@suika.fam.cx> |
1199 |
|
|
1200 |
|
* URI/: New directory. |
1201 |
|
|
1202 |
|
2007-08-11 Wakaba <wakaba@suika.fam.cx> |
1203 |
|
|
1204 |
|
* HTML.pm.src: Tokenizer's states are now represented in |
1205 |
|
number. |
1206 |
|
|
1207 |
|
2007-08-11 Wakaba <wakaba@suika.fam.cx> |
1208 |
|
|
1209 |
|
* HTML.pm.src: |or|s for insertion modes are replaced |
1210 |
|
by |&|s. |
1211 |
|
|
1212 |
|
2007-08-11 Wakaba <wakaba@suika.fam.cx> |
1213 |
|
|
1214 |
|
* HTML.pm.src: Token types are now represented in number. |
1215 |
|
|
1216 |
|
2007-08-11 Wakaba <wakaba@suika.fam.cx> |
1217 |
|
|
1218 |
|
* ContentType.pm (SEE ALSO): Updated. |
1219 |
|
|
1220 |
|
* HTML.pm.src: Insertion modes are now represented in number. |
1221 |
|
|
1222 |
|
2007-08-11 Wakaba <wakaba@suika.fam.cx> |
1223 |
|
|
1224 |
|
* ContentType.pm: Sniffing for bitmap images (HTML5 revision |
1225 |
|
999) is implemented. |
1226 |
|
|
1227 |
|
2007-08-08 Wakaba <wakaba@suika.fam.cx> |
1228 |
|
|
1229 |
|
* ContentType.pm: Sniffing for |<script| (HTML5 revision |
1230 |
|
983) is implemented. |
1231 |
|
|
1232 |
|
2007-08-06 Wakaba <wakaba@suika.fam.cx> |
1233 |
|
|
1234 |
|
* ContentChecker.pod: New documentation. |
1235 |
|
|
1236 |
|
* Makefile: A rule for |ContentChecker.html| is added. |
1237 |
|
|
1238 |
|
* ContentChecker.pm: A pod "LICENSE" section is added. |
1239 |
|
|
1240 |
|
* NanoDOM.pm ($VERSION): New variable. |
1241 |
|
|
1242 |
|
2007-08-05 Wakaba <wakaba@suika.fam.cx> |
1243 |
|
|
1244 |
|
* H2H.pm: |b|, |i|, and |sub| are added to the |
1245 |
|
list of allowed HTML elements. |
1246 |
|
|
1247 |
|
2007-08-05 Wakaba <wakaba@suika.fam.cx> |
1248 |
|
|
1249 |
|
* H2H.pm: |samp| is added to the list of allowed |
1250 |
|
HTML elements. |
1251 |
|
|
1252 |
|
* URIChecker.pm (check_iri): New. |
1253 |
|
(check_iri_reference): Error type for IRI reference |
1254 |
|
syntax error is changed. |
1255 |
|
|
1256 |
|
2007-08-04 Wakaba <wakaba@suika.fam.cx> |
1257 |
|
|
1258 |
|
* ContentChecker.pm: Reference to the |Whatpm::ContentChecker::Atom| |
1259 |
|
is added. |
1260 |
|
(check_document): Load appropriate module before validation. |
1261 |
|
|
1262 |
|
2007-08-04 Wakaba <wakaba@suika.fam.cx> |
1263 |
|
|
1264 |
|
* ContentChecker/: New directory. |
1265 |
|
|
1266 |
|
2007-08-04 Wakaba <wakaba@suika.fam.cx> |
1267 |
|
|
1268 |
|
* ContentChecker.pm: HTML |time| element is implemented. |
1269 |
|
|
1270 |
|
* HTMLTable.pm: Comments are updated as HTML5 is revised. |
1271 |
|
|
1272 |
|
2007-07-21 Wakaba <wakaba@suika.fam.cx> |
1273 |
|
|
1274 |
|
* ContentChecker.pm (check_document): Return value |
1275 |
|
even if no document element is found. |
1276 |
|
|
1277 |
|
2007-07-21 Wakaba <wakaba@suika.fam.cx> |
1278 |
|
|
1279 |
|
* HTML.pm.src: |$in_body| is no longer a function. |
1280 |
|
|
1281 |
|
2007-07-21 Wakaba <wakaba@suika.fam.cx> |
1282 |
|
|
1283 |
|
* HTML.pm.src: The |$in_body| code has been moved down. |
1284 |
|
|
1285 |
|
2007-07-21 Wakaba <wakaba@suika.fam.cx> |
1286 |
|
|
1287 |
|
* HTML.pm.src: The "trailing end" insertion mode |
1288 |
|
is split into "after html body" and "after html frameset" |
1289 |
|
insertion modes. Their codes are merged with "after body" |
1290 |
|
and "after frameset" codes. |$previous_insertion_mode| |
1291 |
|
has been removed. "after frameset" code is |
1292 |
|
merged with "in frameset" code. |
1293 |
|
|
1294 |
|
2007-07-21 Wakaba <wakaba@suika.fam.cx> |
1295 |
|
|
1296 |
|
* HTML.pm.src: The "before head" insertion mode is |
1297 |
|
merged with the "in head" insertion mode. |
1298 |
|
|
1299 |
|
2007-07-21 Wakaba <wakaba@suika.fam.cx> |
1300 |
|
|
1301 |
|
* HTML.pm.src: Cases in "in head" insertion mode are |
1302 |
|
reorganized. |
1303 |
|
|
1304 |
|
2007-07-21 Wakaba <wakaba@suika.fam.cx> |
1305 |
|
|
1306 |
|
* HTML.pm.src: Some cases in "in table" insertion mode |
1307 |
|
are merged. |
1308 |
|
|
1309 |
|
2007-07-21 Wakaba <wakaba@suika.fam.cx> |
1310 |
|
|
1311 |
|
* HTML.pm.src: The "in row" insertion mode is merged |
1312 |
|
with "in table" insertion mode. |
1313 |
|
|
1314 |
2007-07-21 Wakaba <wakaba@suika.fam.cx> |
2007-07-21 Wakaba <wakaba@suika.fam.cx> |
1315 |
|
|
1316 |
* HTML.pm.src: The "in table" and "in table body" insertion |
* HTML.pm.src: The "in table" and "in table body" insertion |