/[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.163 by wakaba, Thu Mar 6 15:56:52 2008 UTC revision 1.284 by wakaba, Sat Aug 30 14:37:46 2008 UTC
# Line 1  Line 1 
1    2008-08-30  Wakaba  <wakaba@suika.fam.cx>
2    
3            * HTMLTable.pm: Zs is not what we want; we want White_Space! (HTML5
4            revision 2094).
5    
6    2008-08-30  Wakaba  <wakaba@suika.fam.cx>
7    
8            * ContentType.pm: Support for image/svg+xml (HTML5 revision 2096).
9    
10    2008-08-30  Wakaba  <wakaba@suika.fam.cx>
11    
12            * HTML.pm.src: '"' and "'" at the end of attribute
13            name (after another attribute) now raise parse error (HTML5
14            revision 2123).  Empty unquoted attribute values are no
15            longer allowed (HTML5 revision 2122).
16    
17    2008-08-30  Wakaba  <wakaba@suika.fam.cx>
18    
19            * mkhtmlparser.pl: Support for MathML |definitionURL| attribute (HTML5
20            revision 2130).
21    
22    2008-08-30  Wakaba  <wakaba@suika.fam.cx>
23    
24            * ContentChecker.pm: |xml:lang| attribute value must be same
25            as |lang| attribute value for HTML elements (HTML5 revision 2062
26            and so on).
27    
28    2008-08-30  Wakaba  <wakaba@suika.fam.cx>
29    
30            * ContentChecker.pm: Error level definition for |xml_id_error|
31            was missing.
32    
33            * URIChecker.pm: The end of the URL should be marked as the
34            error location for an empty path error.  The position
35            between the userinfo and the port components should be
36            marked as the error location for an empty host error.
37    
38    2008-08-30  Wakaba  <wakaba@suika.fam.cx>
39    
40            * URIChecker.pm: Set parameters representing where in the
41            value the error occurs for errors.  Report unknown
42            address format error in warning level, since address
43            formats are rarely added.  Path segments starting with "/.."
44            were misinterpreted as a dot-segment.
45    
46    2008-08-30  Wakaba  <wakaba@suika.fam.cx>
47    
48            * URIChecker.pm (check_iri_reference): Requires
49            |Message::DOM::DOMImplementation|.
50    
51    2008-08-29  Wakaba  <wakaba@suika.fam.cx>
52    
53            * IMTChecker.pm: Updated for the new error reporting architecture.
54    
55            * ContentChecker.pm: Error levels for IMTs are added.
56    
57    2008-08-17  Wakaba  <wakaba@suika.fam.cx>
58    
59            * H2H.pm (_shift_token): Support for unquoted HTML attribute
60            values.
61    
62    2008-08-16  Wakaba  <wakaba@suika.fam.cx>
63    
64            * CacheManifest.pm: Support for new style of error
65            reports.
66    
67            * HTML.pm.src: Set line=1, column=1 to the document node.
68    
69    2008-08-16  Wakaba  <wakaba@suika.fam.cx>
70    
71            * ContentChecker.pm, RDFXML.pm: Pass {level} object to language tag
72            and URL checkers.  Support for more error levels for bogus
73            langauge tag and URL "standards".
74    
75            * LangTag.pm, URIChecker.pm: Support for new style error
76            level reporting.
77    
78    2008-08-15  Wakaba  <wakaba@suika.fam.cx>
79    
80            * ContentChecker.pm: Support for RDF/XML error levels.
81    
82            * HTMLTable.pm, RDFXML.pm: Support for new style of error level
83            specifying.  Error types are revised.
84    
85    2008-08-15  Wakaba  <wakaba@suika.fam.cx>
86    
87            * ContentChecker.pm: All error reporting method calls are
88            renewed.
89    
90    2008-08-15  Wakaba  <wakaba@suika.fam.cx>
91    
92            * HTML.pm.src: All error type names and "text" parameters
93            are revised.  Use new style for "level" specification.
94    
95            * mkhtmlparser.pl: Use new style for "level" specification.
96    
97    2008-08-03  Wakaba  <wakaba@suika.fam.cx>
98    
99            * WebIDL.pm (parse_char_string): Simplified error
100            reporting process for broken ignored valuetype definition.
101            (Valuetype idl_text): Support for special "DOMString" name.
102    
103    2008-08-03  Wakaba  <wakaba@suika.fam.cx>
104    
105            * WebIDL.pm ($get_scoped_name): Append "::::" if the last
106            terminal of the ScopedName is "DOMString", such that whether
107            the last part of the scoped name is "DOMString" or "_DOMString"
108            later.  It is necessary to determine whether a |typedef|
109            definition should be ignored or not.
110            (parse_char_string): Unescape the identifier of
111            exception members.
112            ($resolve): Return undef for builtin types and sequence<T>
113            types (we might not have to do this, however...).
114            (check): Support checking for Exceptions, Valuetypes,
115            and Typedefs.
116            ($serialize_type): Support for "DOMString::::" syntax.
117            (Typedef idl_text): Output Type as "DOMString" if it
118            is really "DOMString" (i.e. its internal representation
119            is "::DOMString::").
120    
121    2008-08-03  Wakaba  <wakaba@suika.fam.cx>
122    
123            * WebIDL.pm ($resolve): New code, based on resolve code
124            for constant types in the |check| method.
125            (check): Support for checking of attributes, operations, and
126            arguments.
127            (Attribute/Operation idl_text): Exception names in getraises,
128            setraises, and raises clauses is serizlied by |$serialize_type|
129            code.
130    
131    2008-08-02  Wakaba  <wakaba@suika.fam.cx>
132    
133            * WebIDL.pm ($integer): Order of selections are changed to match
134            hexadecimal numbers (the original pattern, taken from the spec,
135            was not work for hexadecimal numbers, because the "0" prefix
136            matches to the [0-7]* part (as an empty string) and therefore
137            it does not match with remaining "x..." part of a "0x..." integer
138            literal.
139            ($get_type): It now returns a string, not an array reference,
140            for regular types and |sequence| types (i.e. it in any case
141            returns a string).
142            ($get_next_token): The second item in the array that represents
143            a integer or float token is now a Perl number value, not the
144            original string representation of the number.
145            (check): Support for const value consistency checking.
146            No extended attribute is defined for constants.
147            (Node subclasses): Use simple strings rather than array references
148            for default data type values.
149            ($serialize_type): Type values are now simple strings.
150            (value): If the new attribute value is a false value, then
151            a FALSE value is set to the attribute.
152    
153    2008-08-02  Wakaba  <wakaba@suika.fam.cx>
154    
155            * WebIDL.pm ($get_scoped_name): Now scoped names are stored
156            in its stringified format ("scoped name" as defined in the
157            spec).  Note that future version of this module should not use
158            array references for type values and the |type_text| attribute
159            should be made obsolete.
160            (parse_char_string): Unescape attribute names.
161            (check): Support for checking of whether inherited interfaces
162            are actually defined or not.  Support for checking of whether
163            interface member identifiers are duplicated or not.
164            ($serialize_type): Scoped names are returned as is.  A future
165            version of this code should escape identifiers other than "DOMString",
166            otherwise the idl_text would be non-conforming.
167    
168    2008-08-02  Wakaba  <wakaba@suika.fam.cx>
169    
170            * WebIDL.pm (parse_char_string): Set line/column numbers
171            to generated nodes.  Unescape identifiers.  Extended attributes
172            for Definition's were ignored.
173            (append_child): Set |parent_node| attribute.
174            (parent_node): New attribute.
175            (check): Support interface/exception members.  Support
176            extended attributes.  Support definition identifier uniqueness
177            constraint.
178            (qualified_name): New attribute.
179            (Interface/Exception idl_text): Extended attributes were
180            not prepended to the returned text.
181    
182    2008-08-02  Wakaba  <wakaba@suika.fam.cx>
183    
184            * WebIDL.pm (parse_char_string): Set line/column numbers
185            to interface object experimentally.  s/shift/pop/g, shift
186            would make things wrong.  Support for interface forward
187            declarations was missing.  Broken interface declarations
188            with no block were not ignored entirely.
189            (Whatpm::WebIDL::Node): New abstract class.  This class
190            makes things easier.
191            (child_nodes): New attribute.  Unlike DOM's attribute with
192            same name, this attribute returns a dead list of nodes for
193            simplicity.
194            (get_user_data, set_user_data): New methods.
195            (Module idl_text): A SPACE character should be inserted
196            before the |{| character.
197            (Interface idl_text): Support for interface forward declarations.
198            (is_forward_declaration): New attribute.
199    
200    2008-07-19  Wakaba  <wakaba@suika.fam.cx>
201    
202            * WebIDL.pm (type_text): Better serializer.
203    
204    2008-07-19  Wakaba  <wakaba@suika.fam.cx>
205    
206            * WebIDL.pm: Revise forward-compatible parsing so that
207            it now can handle broken extended attributes and as such.
208    
209    2008-07-19  Wakaba  <wakaba@suika.fam.cx>
210    
211            * WebIDL.pm: Real support for extended attributes.
212            Support for extended attributes with arguments.
213    
214    2008-07-19  Wakaba  <wakaba@suika.fam.cx>
215    
216            * WebIDL.pm: Support for |exception| syntax.
217            (Interface->idl_text): Tentative support for inheritances.
218    
219    2008-07-19  Wakaba  <wakaba@suika.fam.cx>
220    
221            * WebIDL.pm: Hierarchical scoped name support was broken.
222            Support for raises, setraises, and getraises syntaxes.
223    
224    2008-07-18  Wakaba  <wakaba@suika.fam.cx>
225    
226            * WebIDL.pm: Support for |idl_text| attribute, version 1 (no
227            proper support for types, extended attributes, and exceptions yet).
228            WebIDL parser, version 1 (no support for exceptions yet,
229            no proper support for extended attributes yet).
230    
231    2008-07-09  Wakaba  <wakaba@suika.fam.cx>
232    
233            * WebIDL.pm (parse_char_string): Support for basic attribute syntax.
234    
235    2008-06-29  Wakaba  <wakaba@suika.fam.cx>
236    
237            * WebIDL.pm: Support for valuetype and const.
238    
239    2008-06-29  Wakaba  <wakaba@suika.fam.cx>
240            
241            * WebIDL.pm: New module.
242    
243    2008-06-15  Wakaba  <wakaba@suika.fam.cx>
244    
245            * Makefile (Entities.html): URI changed.
246    
247    2008-06-08  Wakaba  <wakaba@suika.fam.cx>
248    
249            * HTML.pm.src: Support for ruby parsing (HTML5 revision 1704).
250    
251    2008-06-01  Wakaba  <wakaba@suika.fam.cx>
252    
253            * HTML.pm.src (_get_next_token): A parse error was missing.
254    
255    2008-06-01  Wakaba  <wakaba@suika.fam.cx>
256    
257            * mklinktypelist.pl: rel=contact is no longer part of the HTML5
258            spec (commented out). (HTML5 revision 1711).
259    
260    2008-05-25  Wakaba  <wakaba@suika.fam.cx>
261    
262            * ContentType.pm: Drop support for UTF-32 (HTML5 revision 1701).
263    
264            * HTML.pm.src: UTF-16BE and UTF-16LE should be considered
265            as UTF-16 (HTML5 revision 1701).
266    
267    2008-05-25  Wakaba  <wakaba@suika.fam.cx>
268    
269            * HTML.pm.src: Support for <noframes> in <head> (HTML5 revision
270            1692).
271    
272    2008-05-25  Wakaba  <wakaba@suika.fam.cx>
273    
274            * HTML.pm.src: The secondary insertion mode used when switching
275            to foreign content is the "in body" insertion mode (HTML5 revision
276            1696).
277    
278    2008-05-25  Wakaba  <wakaba@suika.fam.cx>
279    
280            * HTML.pm.src: Don't raise parse error for <isindex/> (HTML5
281            revision 1697).
282    
283    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
284    
285            * HTML.pm.src: Support for end-of-file token in foreign content
286            insertion mode (HTML5 revision 1693).  Update SVG camelCase
287            attribute list (HTML5 revision 1700).  <textarea> closes
288            </select> (HTML5 revision 1699).  More start tags close in
289            foreign content insertion mode (HTML5 revision 1698).
290    
291    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
292    
293            * HTML.pm.src: ";" is not part of charset name (HTML5 revision 1665).
294    
295    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
296    
297            * HTML.pm.src: More robust charset parameter detection (HTML5
298            revision 1674).
299    
300    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
301    
302            * ContentType.pm: Support for image/vnd.microsoft.icon (HTML5
303            revision 1676).
304    
305    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
306    
307            * HTML.pm.src: Ignore language part of public identifiers for
308            quriks mode detection (HTML5 revision 1679).
309    
310    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
311    
312            * HTML.pm.src: Reduce the number of errors in truncated doctypes (HTML5
313            revision 1685).
314    
315    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
316    
317            * HTML.pm.src: Support for EOF in new states for tags (HTML5
318            revision 1684).
319    
320    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
321    
322            * HTML.pm.src (_reset_insertion_mode): Make <td>.innerHTML
323            work (HTML5 revision 1690).
324    
325    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
326    
327            * HTML.pm.src (_tree_construction_main): Change handling of
328            end tags in head insertion modes (HTML5 revision 1686).
329            (parse_char_string): Bug fix for non-utf8 character string handlings.
330            (parse_char_stream): |ungetc| does not work well for this context.
331    
332    2008-05-18  Wakaba  <wakaba@suika.fam.cx>
333    
334            * HTML.pm.src (parse_byte_string): Redefined to invoke
335            |parse_byte_stream|.
336            (parse_byte_stream): New method.
337    
338    2008-05-18  Wakaba  <wakaba@suika.fam.cx>
339    
340            * HTML.pm.src (parse_byte_string): Fix the column number reported
341            by encoding layer error reporter.
342    
343    2008-05-17  Wakaba  <wakaba@suika.fam.cx>
344    
345            * HTML.pm.src (parse_byte_string): Use streaming decoder
346            rather than converting the whole byte string and then parsing.
347            Propagate errors in character encoding layer.
348            (get_next_token): Precise error reporting for |bare stago| error.
349    
350    2008-05-17  Wakaba  <wakaba@suika.fam.cx>
351    
352            * HTML.pm.src (parse_char_stream): New method.
353            (parse_char_string): This method is now defined as an invocation
354            of the |parse_char_stream| method.
355    
356    2008-05-17  Wakaba  <wakaba@suika.fam.cx>
357    
358            * HTML.pm.src (parse_byte_string): Report various status
359            of the sniffing as info-level errors.  Support for new
360            decoding framework in parser resestting.
361            (new): Various default error levels were not set.
362    
363    2008-05-17  Wakaba  <wakaba@suika.fam.cx>
364    
365            * HTML.pm.src (parse_byte_string): HTML5 encoding siniffing
366            algorithm, except for the actual sniffing, is implemented
367            with new framework with Message::Charset::Info.
368    
369    2008-05-16  Wakaba  <wakaba@suika.fam.cx>
370    
371            * CacheManifest.pm (_parse): Drop fragment identifiers from
372            URIs in fallback section (HTML5 revision 1596).
373    
374    2008-05-10  Wakaba  <wakaba@suika.fam.cx>
375    
376            * Makefile (Entities.html): URI has changed.
377    
378    2008-05-10  Wakaba  <wakaba@suika.fam.cx>
379    
380            * CacheManifest.pm: Don't replace U+0000 NULL (HTML5 revision
381            1553).
382    
383    2008-05-06  Wakaba  <wakaba@suika.fam.cx>
384    
385            * ContentChecker.pm: Noted that those returned in |table| are
386            no longer table elements, but table objects returned
387            by Whatpm::HTMLTable.
388    
389            * HTMLTable.pm (form_table): Return table element node
390            as |$table->{element}|.
391            (assign_header): Support for the |headers=""| attribute.
392    
393    2008-05-06  Wakaba  <wakaba@suika.fam.cx>
394    
395            * HTMLTable.pm (assign_header): New function; first version
396            with no support for headers="".
397            (form_table): Include table width and height to the returned
398            table object for covenience.  Indexing in column assignement was wrong.
399            Set whether a data cell is empty or not for convenience.
400    
401    2008-05-05  Wakaba  <wakaba@suika.fam.cx>
402    
403            * HTMLTable.pm: Robuster caption support (HTML5 revision 1393).
404    
405    2008-05-05  Wakaba  <wakaba@suika.fam.cx>
406    
407            * HTMLTable.pm: How table model errors are detected is
408            changed (HTML5 revision 1387).
409    
410    2008-05-05  Wakaba  <wakaba@suika.fam.cx>
411    
412            * HTMLTable.pm: The algorithm now moves |tfoot| elements
413            to the end of the table (HTML5 revision 1380).
414    
415    2008-05-05  Wakaba  <wakaba@suika.fam.cx>
416    
417            * HTMLTable.pm: The algorithm is now 0-based indexing, instead
418            of 1-based (HTML5 revision 1376).
419    
420    2008-05-05  Wakaba  <wakaba@suika.fam.cx>
421    
422            * ContentType.pm: "Content-Type: text/plain; charset=UTF-8"
423            and "Content-Encoding" no longer prevent sniffing (HTML5
424            revision 1288).
425    
426    2008-05-05  Wakaba  <wakaba@suika.fam.cx>
427    
428            * ContentType.pm: Skip BOMs n feed or HTML algorithm (HTML5 revision
429            1282).
430    
431    2008-05-03  Wakaba  <wakaba@suika.fam.cx>
432    
433            * ContentChecker.pm: Support for global attributes.
434            Status of XML specs are added.
435    
436    2008-05-03  Wakaba  <wakaba@suika.fam.cx>
437    
438            * ContentChecker.pm (check_element): Support for |template=""|
439            and |ref=""| attribute (referent element type checking).
440    
441    2008-04-29  Wakaba  <wakaba@suika.fam.cx>
442    
443            * CacheManifest.pm (_parse): New same origin definition (HTML5 revision
444            1500) is implemented (except for IDNA part and URI-scheme-specific
445            knowledge).  Line number counting was wrong for LF-only
446            documents.
447    
448    2008-04-13  Wakaba  <wakaba@suika.fam.cx>
449    
450            * HTML.pm.src: Raise an parse error for any disallowed
451            character (HTML5 revision 1263).
452    
453    2008-04-13  Wakaba  <wakaba@suika.fam.cx>
454    
455            * mkentitylist.pl: Support for new HTML5 entity table format (the
456            definition for |AElig;| was missing).
457    
458    2008-04-13  Wakaba  <wakaba@suika.fam.cx>
459    
460            * HTML.pm.src, mkhtmlparser.pl: Support for element/attribute
461            name/namespace fixup (HTML5 revisions 1413, 1415, 1416, and 1417).
462    
463    2008-04-13  Wakaba  <wakaba@suika.fam.cx>
464    
465            * HTML.pm.src: List of element names that close foreign content
466            insertion mode is added (HTML5 revisions 1412 and 1418).
467    
468    2008-04-13  Wakaba  <wakaba@suika.fam.cx>
469    
470            * HTML.pm.src: Support for |mglyph| and |malignmark|
471            elements (HTML5 revision 1410).
472    
473    2008-04-13  Wakaba  <wakaba@suika.fam.cx>
474    
475            * HTML.pm.src: Support for new long MathML entities (HTML5
476            revision 1406).
477    
478    2008-04-13  Wakaba  <wakaba@suika.fam.cx>
479    
480            * HTML.pm.src: CDATA section support for MathML and SVG
481            elements (HTML5 revision 1404 and 1420).
482    
483    2008-04-12  Wakaba  <wakaba@suika.fam.cx>
484    
485            * HTML.pm.src, mkhtmlparser.pl: Support for MathML and SVG
486            elements (HTML5 revision 1404).  Unused !!!macro definitions
487            are removed.
488    
489    2008-04-12  Wakaba  <wakaba@suika.fam.cx>
490    
491            * HTML.pm.src, mkhtmlparser.pl: The way permitted slash errors
492            are raised is changed (HTML5 revision 1404).
493    
494    2008-04-06  Wakaba  <wakaba@suika.fam.cx>
495    
496            * HTML.pm.src: Category sets that are no longer used are removed.
497    
498    2008-04-06  Wakaba  <wakaba@suika.fam.cx>
499    
500            * HTML.pm.src: The ->[1] property of stack entries are now
501            replaced by constants representing element category.
502    
503    2008-04-06  Wakaba  <wakaba@suika.fam.cx>
504    
505            * HTML.pm.src: Don't use local name stored in stack (i.e. ->[1])
506            for error reporting.  (This is a preparation for using constant
507            value for ->[1].)
508    
509    2008-03-22  Wakaba  <wakaba@suika.fam.cx>
510    
511            * RDFXML.pm: Typo fixed.
512    
513    2008-03-22  Wakaba  <wakaba@suika.fam.cx>
514    
515            * ContentChecker.pm: |fact_level| is now treated
516            as same as |must_level|, i.e. level = |m|.
517            (check_element): Make list of URIs in the DOM.
518    
519    2008-03-21  Wakaba  <wakaba@suika.fam.cx>
520    
521            * RDFXML.pm: Language accessor implemented.
522            Local (null-namespace) attribute support.
523    
524    2008-03-21  Wakaba  <wakaba@suika.fam.cx>
525    
526            * RDFXML.pm: Factored out ID checking code.
527    
528    2008-03-21  Wakaba  <wakaba@suika.fam.cx>
529    
530            * RDFXML.pm: TODO items noted.  Validation of ID
531            and URI attributes is implemented.  Warn if unknown
532            value is used in rdf:parseType="" attribute.
533    
534            * URIChecker.pm (check_rdf_uri_reference): New function.
535    
536    2008-03-21  Wakaba  <wakaba@suika.fam.cx>
537    
538            * RDFXML.pm: bnodeid implemented.  Relative references
539            are now resolved.
540    
541    2008-03-21  Wakaba  <wakaba@suika.fam.cx>
542    
543            * ContentChecker.pm: RDF reification implemented.
544    
545            * RDFXML.pm: undef vs false bug fixed.
546            Reification implemented.
547    
548    2008-03-21  Wakaba  <wakaba@suika.fam.cx>
549    
550            * RDFXML.pm: s/id/ID/ for attribute name.
551            The |node| arguments are added for |ontriple| calls.
552            Too many "attribute not allowed" errors were raised.
553    
554            * ContentChecker.pm: Initial experimental support for rdf:RDF
555            element.
556    
557    2008-03-21  Wakaba  <wakaba@suika.fam.cx>
558    
559            * RDFXML.pm: New module.
560    
561    2008-03-20  Wakaba  <wakaba@suika.fam.cx>
562    
563            * HTML.pm.src (set_inner_html): Line/column number
564            code was old one yet.
565    
566    2008-03-20  Wakaba  <wakaba@suika.fam.cx>
567    
568            * HTML.pm.src: Better line/column reporting for "duplicate attribute"
569            errors.  Line/column markings for DOCTYPE, comment, and
570            character tokens are reintroduced; otherwise,
571            error location for "not HTML5" error and errors
572            for implied elements are not attached.
573    
574    2008-03-20  Wakaba  <wakaba@suika.fam.cx>
575    
576            * HTML.pm.src: Set line/column numbers to attributes.
577    
578            * NanoDOM.pm (create_attribute_ns, set_attribute_node_ns): Added.
579            (value): Setter implemented.
580    
581            * mkhtmlparser.pl: Set line/column numbers to Attr nodes.
582    
583    2008-03-20  Wakaba  <wakaba@suika.fam.cx>
584    
585            * HTML.pm.src: Unused line/column markings are removed.
586    
587    2008-03-20  Wakaba  <wakaba@suika.fam.cx>
588    
589            * HTML.pm.src (_get_next_token): Remove |first_start_tag|
590            flag, which is no longer used.
591    
592    2008-03-17  Wakaba  <wakaba@suika.fam.cx>
593    
594            * HTML.pm.src: Set line/column information to element nodes.
595    
596            * mkhtmlparser.pl (!!!create-element, !!!insert-element,
597            and !!!insert-element-t): Set line/column information to
598            element nodes.
599    
600    2008-03-17  Wakaba  <wakaba@suika.fam.cx>
601    
602            * HTML.pm.src (_get_next_token): The first "<" character
603            in "<?", "<>", or "</>" should be the error point.
604    
605    2008-03-16  Wakaba  <wakaba@suika.fam.cx>
606    
607            * HTML.pm.src: Some more fixes on error position reporting.
608    
609    2008-03-16  Wakaba  <wakaba@suika.fam.cx>
610    
611            * HTML.pm.src: Token-level precious error reporting.
612    
613    2008-03-16  Wakaba  <wakaba@suika.fam.cx>
614    
615            * HTML.pm.src: Preparation for more precious error point
616            reporting.
617    
618    2008-03-11  Wakaba  <wakaba@suika.fam.cx>
619    
620            * HTML.pm.src: Error type revised.
621    
622    2008-03-11  Wakaba  <wakaba@suika.fam.cx>
623    
624            * HTML.pm.src: Similar codes are merged together, again.
625    
626    2008-03-11  Wakaba  <wakaba@suika.fam.cx>
627    
628            * HTML.pm.src: Similar codes are merged together.
629    
630    2008-03-10  Wakaba  <wakaba@suika.fam.cx>
631    
632            * mkhtmlparser.pl: Set "level" parameter to parse errors.
633    
634            * HTML.pm.src: Code refined.
635    
636    2008-03-09  Wakaba  <wakaba@suika.fam.cx>
637    
638            * HTML.pm.src: |</body>| treatement has been changed (HTML5
639            revision 1348).  Note that I really don't know this makes
640            any difference in the black-box behavior of the parser.
641    
642    2008-03-09  Wakaba  <wakaba@suika.fam.cx>
643    
644            * HTML.pm.src: New end-of-file token implementation (HTML5
645            revision 1348).
646    
647    2008-03-09  Wakaba  <wakaba@suika.fam.cx>
648    
649            * HTML.pm.src: |applet| support (HTML5 revision 1347).
650    
651    2008-03-09  Wakaba  <wakaba@suika.fam.cx>
652    
653            * HTML.pm.src: Foster parenting in AAA (HTML5 revision 1343).
654    
655    2008-03-09  Wakaba  <wakaba@suika.fam.cx>
656    
657            * HTML.pm.src: Support for |<input>| in the "in select" insertion
658            mode and support for the "in select in table" insertion mode (HTML5
659            revision 1342).
660    
661    2008-03-09  Wakaba  <wakaba@suika.fam.cx>
662    
663            * HTML.pm.src: No foster parenting for <script> and <script>
664            in non-tainted <table>s (HTML5 revision 1336).
665    
666    2008-03-09  Wakaba  <wakaba@suika.fam.cx>
667    
668            * HTML.pm.src: Ignore white space characters between <html>
669            and <head> (HTML5 revision 1332).
670    
671    2008-03-09  Wakaba  <wakaba@suika.fam.cx>
672    
673            * HTML.pm.src: Treat <input type=hidden> as if it were a
674            white space (HTML5 revision 1331).
675    
676    2008-03-08  Wakaba  <wakaba@suika.fam.cx>
677    
678            * HTML.pm.src: Ignore U+000A at the beginning of a |listing|
679            element (HTML5 revision 1330).
680    
681    2008-03-08  Wakaba  <wakaba@suika.fam.cx>
682    
683            * HTML.pm.src: <title> is always appended to the current
684            element (HTML5 revision 1328).
685    
686    2008-03-08  Wakaba  <wakaba@suika.fam.cx>
687    
688            * HTML.pm.src: White space in tainted tables are moved
689            into foster parents (HTML5 revision 1326).
690    
691    2008-03-08  Wakaba  <wakaba@suika.fam.cx>
692    
693            * HTML.pm.src: Reduce errors from foster parenting cases (HTML5
694            revision 1321).
695    
696    2008-03-08  Wakaba  <wakaba@suika.fam.cx>
697    
698            * HTML.pm.src: |</h/n/>| case code rearranged to align with
699            the spec (HTML5 revision 1320).  Note that we finally complete
700            all of HTML5 revision 1320 changes.
701    
702    2008-03-08  Wakaba  <wakaba@suika.fam.cx>
703    
704            * HTML.pm.src: |</form>| now works similar to |</div>| for unclosed
705            tags (HTML5 revision 1320).
706    
707    2008-03-08  Wakaba  <wakaba@suika.fam.cx>
708    
709            * HTML.pm.src: |</p>| case rearranged with no actual change in fact.
710    
711    2008-03-08  Wakaba  <wakaba@suika.fam.cx>
712    
713            * HTML.pm.src: A "generate implied end tags" code (t409.1)
714            could not be reached so that it is now removed (HTML5 revision
715            1320).
716    
717    2008-03-08  Wakaba  <wakaba@suika.fam.cx>
718    
719            * HTML.pm.src: Code for the case of |</div>| and so on are revised
720            to align with new spec text (HTML5 revision 1320).
721    
722    2008-03-08  Wakaba  <wakaba@suika.fam.cx>
723    
724            * HTML.pm.src: Remove strange |if| condition; however, it should
725            have had no harm in theory.
726    
727    2008-03-08  Wakaba  <wakaba@suika.fam.cx>
728    
729            * HTML.pm.src (_tree_construction_main): '</p>' in body
730            case is split from other end tags for the preparation
731            of implementing HTML revision 1320.
732    
733  2008-03-07  Wakaba  <wakaba@suika.fam.cx>  2008-03-07  Wakaba  <wakaba@suika.fam.cx>
734    
735          * HTML.pm.src: Simplified "generate implied end tag" (HTML5          * HTML.pm.src: Simplified "generate implied end tag" (HTML5

Legend:
Removed from v.1.163  
changed lines
  Added in v.1.284

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24