/[suikacvs]/markup/html/whatpm/Whatpm/ChangeLog
Suika

Diff of /markup/html/whatpm/Whatpm/ChangeLog

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

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

Legend:
Removed from v.1.17  
changed lines
  Added in v.1.280

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24