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

Legend:
Removed from v.1.180  
changed lines
  Added in v.1.282

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24