/[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.237 by wakaba, Sun May 18 03:46:26 2008 UTC revision 1.330 by wakaba, Sun Sep 21 05:08:15 2008 UTC
# Line 1  Line 1 
1    2008-09-21  Wakaba  <wakaba@suika.fam.cx>
2    
3            * HTML.pm.src (parse_byte_stream): Support (or non-support) for
4            unsupported charset="" parameter value (HTML5 revision 2131).
5    
6    2008-09-20  Wakaba  <wakaba@suika.fam.cx>
7    
8            * HTML.pm.src: Reminding places where U+000B is allowed as a space
9            character is fixed (cf. HTML5 revision 1738).
10    
11            * ContentChecker.pm, HTMLTable.pm: U+000B is no longer part of
12            space characters (HTML5 revision 1738).
13    
14    2008-09-20  Wakaba  <wakaba@suika.fam.cx>
15    
16            * HTML.pm.src: The "anything else" case for the "after after body"
17            insertion mode was not updated to swtich to the "in body"
18            insertion mode.  U+000B is no longer a space character for the
19            purpose of tree construction phase (HTML5 revision 1738).
20    
21    2008-09-20  Wakaba  <wakaba@suika.fam.cx>
22    
23            * HTML.pm.src: U+000B is no longer a space character (HTML5
24            revision 1738).
25    
26    2008-09-20  Wakaba  <wakaba@suika.fam.cx>
27    
28            * ContentType.pm: 0x0B is no longer a space character (HTML5
29            revision 1738).
30    
31            * HTML.pm.src: U+000B is no longer a space character for the
32            algorithm for extracting an encoding from a Content-Type (HTML5
33            revision 1738).
34    
35    2008-09-20  Wakaba  <wakaba@suika.fam.cx>
36    
37            * ContentChecker.pm ($IsInHTMLInteractiveContent): New.
38    
39    2008-09-18  Wakaba  <wakaba@suika.fam.cx>
40    
41            * LangTag.pm: Add checks for remaining requirements from RFC 4646.
42    
43            * mklangreg.pl: Sort 'Prefix' values by their length, to ease
44            matching.
45    
46    2008-09-18  Wakaba  <wakaba@suika.fam.cx>
47    
48            * LangTag.pm: Warn for private use language subtags.  Error level
49            typos fixed.  Support for Suppress-Script field.
50    
51            * mklangreg.pl: Support for dumping of nested structure.
52    
53    2008-09-18  Wakaba  <wakaba@suika.fam.cx>
54    
55            * LangTag.pm (check_rfc4646_langtag): Check if a tag is in the
56            recommended case as per RFC 4646.
57    
58    2008-09-18  Wakaba  <wakaba@suika.fam.cx>
59    
60            * LangTag.pm (check_rfc4646_langtag): New method.
61    
62    2008-09-18  Wakaba  <wakaba@suika.fam.cx>
63    
64            * mklangreg.pl: New script.
65    
66            * Makefile: Updated for creation of the module for language subtag
67            registry.
68            
69    2008-09-16  Wakaba  <wakaba@suika.fam.cx>
70    
71            * Makefile: WebIDL.html added.
72    
73            * WebIDL.pod: New documentation.
74    
75    2008-09-16  Wakaba  <wakaba@suika.fam.cx>
76    
77            * WebIDL.pm: Checker's error types are redefined.
78    
79    2008-09-16  Wakaba  <wakaba@suika.fam.cx>
80    
81            * WebIDL.pm: Parser's error types are redefined.  Some forward
82            compatible parsing bugs are fixed.  Some unreachable codes are
83            commented out.
84    
85    2008-09-16  Wakaba  <wakaba@suika.fam.cx>
86    
87            * WebIDL.pm: Support for the reminding extended attributes are
88            added.  It does not satisfy the definition that a forward
89            interface declaration has an extended attribute.  It seems that
90            unless explicitly allowed multiple extended attributes with the
91            same name is not allowed, though it is not explicitly mentioned in
92            the spec.
93    
94    2008-09-16  Wakaba  <wakaba@suika.fam.cx>
95    
96            * WebIDL.pm: Unescapes extended attribute names and extended
97            attribute identifiers.  Preserve whether an extended attribute has
98            an argument list of not.  Support for extended attributes:
99            Constructor, ExceptionConsts, IndexGetter, IndexSetter,
100            NameGetter, NameSetter, and Null.
101            (has_argument_list): New attribute.
102            (idl_text): Stringifies argument lists, if any, even if it is
103            empty.
104    
105    2008-09-15  Wakaba  <wakaba@suika.fam.cx>
106    
107            * HTML.pm.src: New state |PCDATA_STATE|.  Use an empty string for
108            |{s_kwd}| in DATA_STATE as default.
109    
110    2008-09-15  Wakaba  <wakaba@suika.fam.cx>
111    
112            * HTML.pm.src, mkhtmlparser.pl: Replace |{prev_char}|
113            by |{s_kwd}| in DATA_STATE.
114    
115    2008-09-15  Wakaba  <wakaba@suika.fam.cx>
116    
117            * HTML.pm.src: Shorten keys.
118    
119    2008-09-15  Wakaba  <wakaba@suika.fam.cx>
120    
121            * HTML.pm.src: Remove checking for control character, surrogate
122            pair, or noncharacter code points and non-Unicode code
123            points (they should be handled by Whatpm::Charset::UnicodeChecker).
124            (parse_char_stream): Support for the |$get_wrapper| argument and
125            character stream error handlers.
126    
127    2008-09-15  Wakaba  <wakaba@suika.fam.cx>
128    
129            * ContentChecker.pm: Don't call |loda_ns_module|
130            for null-namespace elements/attributes.
131    
132            * HTML.pm.src: Fact out $disallowed_control_chars
133            as a hash.
134    
135    2008-09-14  Wakaba  <wakaba@suika.fam.cx>
136    
137            * HTML.pm.src: Regexp typo fixed.  |{prev_char}|
138            and |{next_char}| initializations are moved to initialization
139            method.  |{read_until}| now supports buffering.  Sync |set_inner_html|
140            with |parse_char_stream|.
141    
142    2008-09-14  Wakaba  <wakaba@suika.fam.cx>
143    
144            * HTML.pm.src (parse_char_stream): Make |set_next_char|
145            invoke |manakai_read_until|, not only |read|, where
146            possible, to decrease the number of |read| method calls.
147    
148            * mkhtmlparser.pl: Related changes to the aforementioned
149            modification.
150    
151    2008-09-14  Wakaba  <wakaba@suika.fam.cx>
152    
153            * HTML.pm.src: Use |read| instead of |getc|.  |set_inner_html|
154            would report character error from now.
155    
156    2008-09-14  Wakaba  <wakaba@suika.fam.cx>
157    
158            * HTML.pm.src: White-space-leaded non-white-space character
159            tokens in "before head insertion mode" was not
160            correctly handled.
161            (set_inner_html): Reimplemented using CharString decodehandle
162            class.  Support for $get_wrapper argument.  Support
163            for |{read_until}| feature.
164    
165    2008-09-14  Wakaba  <wakaba@suika.fam.cx>
166    
167            * HTML.pm.src: Make a "bare ero" error for unknown
168            entities point the "&" character.
169    
170    2008-09-14  Wakaba  <wakaba@suika.fam.cx>
171    
172            * HTML.pm.src: It turns out that U+FFFD don't have to
173            be added to the list of excluded characters.
174    
175    2008-09-14  Wakaba  <wakaba@suika.fam.cx>
176    
177            * HTML.pm.src ($char_onerror): Have character decoder's |line|
178            and |column| a higher priority than the one set by the
179            tokenizer's input handler.
180            ($self->{read_until}): Exclude U+FFFD (but this might
181            not be necessary, since now we do line/column fixup in
182            the character decode handle).
183    
184    2008-09-14  Wakaba  <wakaba@suika.fam.cx>
185    
186            * HTML.pm.src: Use |{read_until}| where possible.
187    
188    2008-09-14  Wakaba  <wakaba@suika.fam.cx>
189    
190            * HTML.pm.src: Change |{getc_until}| to |{read_until}|
191            and |manakai_getc_until| to |manakai_read_until| to
192            reduce the number of string copies.
193    
194    2008-09-14  Wakaba  <wakaba@suika.fam.cx>
195    
196            * HTML.pm.src (parse_char_string): Use newly created
197            |Whatpm::Charset::DecodeHandle::CharString| instead of Perl's
198            standard feature to |open| a string as a filehandle,
199            since Perl's string filehandle seems not supporting |ungetc|
200            method correctly.
201            (parse_char_stream): Define |{getc_until}| method.
202            (DATA_STATE): Experimental support for |getc_until| feature.
203    
204    2008-09-13  Wakaba  <wakaba@suika.fam.cx>
205    
206            * HTML.pm.src: Check points added to newly added branches.
207    
208    2008-09-13  Wakaba  <wakaba@suika.fam.cx>
209    
210            * HTML.pm.src: Remove |{char}|, which is no longer used.
211            Remove |{entity_in_attr}| and |{last_attribute_value_state}|
212            and replaced by |{prev_state}|.
213    
214            * mkhtmlparser.pl: Remove |{char}| feature.
215            Remove |!!!back-next-input-character;| macro.
216    
217    2008-09-13  Wakaba  <wakaba@suika.fam.cx>
218    
219            * HTML.pm.src: Finally we get rid of all the inner loops.  Remove
220            entity related tokenizer states in favor of new states
221            implementing the consume character reference algorithm.
222    
223    2008-09-13  Wakaba  <wakaba@suika.fam.cx>
224    
225            * HTML.pm.src: "Consume a character reference" algorithm is
226            now implemented as a tokenizer's state, rather than
227            a method, with minimum changes (more changes will
228            be made, in due course).  "Bogus comment state"'s inner
229            loop gets removed.
230    
231    2008-09-13  Wakaba  <wakaba@suika.fam.cx>
232    
233            * HTML.pm.src: Make |PUBLIC| and |SYSTEM| keyword tokenizing
234            into their own tokenizer states.
235    
236    2008-09-13  Wakaba  <wakaba@suika.fam.cx>
237    
238            * HTML.pm.src: |CDATA_SECTION_STATE| (formally |CDATA_BLOCK_STATE|
239            is split into three states.
240    
241    2008-09-13  Wakaba  <wakaba@suika.fam.cx>
242    
243            * HTML.pm.src: |CLOSE_TAG_OPEN_STATE| is broken into
244            itself and new |CDATA_PCDATA_CLOSE_TAG_STATE| so that
245            no longer does the tokenizer have to push back next input
246            characters in those states.
247    
248    2008-09-13  Wakaba  <wakaba@suika.fam.cx>
249    
250            * HTML.pm.src: |MARKUP_DECLARATION_OPEN_STATE| broken
251            into four states so that no longer does the tokenizer have to push
252            back next input characters in that state.
253    
254    2008-09-11  Wakaba  <wakaba@suika.fam.cx>
255    
256            * HTML.pm.src: Methods now accept additional parameter, $get_wrapper,
257            which can be used to insert some wrapper between the character
258            stream handle and the tokenizer.  (It is currently not supported
259            for |set_inner_html| for |Element|s).
260    
261    2008-09-10  Wakaba  <wakaba@suika.fam.cx>
262    
263            * HTML.pm.src: Ignore punctuations in charset names.
264    
265    2008-09-10  Wakaba  <wakaba@suika.fam.cx>
266    
267            * ContentChecker.pm: Support for charset-layer error levels.
268    
269            * HTML.pm.src: Don't specify |text| argument for the
270            |chardecode:fallback| error, since it is not the encoding
271            being used alternatively.
272    
273    2008-09-06  Wakaba  <wakaba@suika.fam.cx>
274    
275            * HTML.pm.src: Support for |XSLT-compat| (HTML5 revision 2141).
276    
277    2008-08-31  Wakaba  <wakaba@suika.fam.cx>
278    
279            * CacheManifest.pm: Support for extensibility (HTML5 revision 2051).
280    
281    2008-08-31  Wakaba  <wakaba@suika.fam.cx>
282    
283            * HTML.pm.src: Bug fix and sync with the spec with regard
284            to after after frameset insertion mode processing (HTML5
285            revision 1909).  Note that the implementation was wrong
286            per the old spec before the r1909 changes.
287    
288    2008-08-30  Wakaba  <wakaba@suika.fam.cx>
289    
290            * HTMLTable.pm: scope=auto algorithm fix synced with the
291            spec (HTML5 revision 2093).
292            ($process_row): Algorithm step numbers synced with the
293            spec (HTML5 revision 2092).
294    
295    2008-08-30  Wakaba  <wakaba@suika.fam.cx>
296    
297            * HTMLTable.pm: Zs is not what we want; we want White_Space! (HTML5
298            revision 2094).
299    
300    2008-08-30  Wakaba  <wakaba@suika.fam.cx>
301    
302            * ContentType.pm: Support for image/svg+xml (HTML5 revision 2096).
303    
304    2008-08-30  Wakaba  <wakaba@suika.fam.cx>
305    
306            * HTML.pm.src: '"' and "'" at the end of attribute
307            name (after another attribute) now raise parse error (HTML5
308            revision 2123).  Empty unquoted attribute values are no
309            longer allowed (HTML5 revision 2122).
310    
311    2008-08-30  Wakaba  <wakaba@suika.fam.cx>
312    
313            * mkhtmlparser.pl: Support for MathML |definitionURL| attribute (HTML5
314            revision 2130).
315    
316    2008-08-30  Wakaba  <wakaba@suika.fam.cx>
317    
318            * ContentChecker.pm: |xml:lang| attribute value must be same
319            as |lang| attribute value for HTML elements (HTML5 revision 2062
320            and so on).
321    
322    2008-08-30  Wakaba  <wakaba@suika.fam.cx>
323    
324            * ContentChecker.pm: Error level definition for |xml_id_error|
325            was missing.
326    
327            * URIChecker.pm: The end of the URL should be marked as the
328            error location for an empty path error.  The position
329            between the userinfo and the port components should be
330            marked as the error location for an empty host error.
331    
332    2008-08-30  Wakaba  <wakaba@suika.fam.cx>
333    
334            * URIChecker.pm: Set parameters representing where in the
335            value the error occurs for errors.  Report unknown
336            address format error in warning level, since address
337            formats are rarely added.  Path segments starting with "/.."
338            were misinterpreted as a dot-segment.
339    
340    2008-08-30  Wakaba  <wakaba@suika.fam.cx>
341    
342            * URIChecker.pm (check_iri_reference): Requires
343            |Message::DOM::DOMImplementation|.
344    
345    2008-08-29  Wakaba  <wakaba@suika.fam.cx>
346    
347            * IMTChecker.pm: Updated for the new error reporting architecture.
348    
349            * ContentChecker.pm: Error levels for IMTs are added.
350    
351    2008-08-17  Wakaba  <wakaba@suika.fam.cx>
352    
353            * H2H.pm (_shift_token): Support for unquoted HTML attribute
354            values.
355    
356    2008-08-16  Wakaba  <wakaba@suika.fam.cx>
357    
358            * CacheManifest.pm: Support for new style of error
359            reports.
360    
361            * HTML.pm.src: Set line=1, column=1 to the document node.
362    
363    2008-08-16  Wakaba  <wakaba@suika.fam.cx>
364    
365            * ContentChecker.pm, RDFXML.pm: Pass {level} object to language tag
366            and URL checkers.  Support for more error levels for bogus
367            langauge tag and URL "standards".
368    
369            * LangTag.pm, URIChecker.pm: Support for new style error
370            level reporting.
371    
372    2008-08-15  Wakaba  <wakaba@suika.fam.cx>
373    
374            * ContentChecker.pm: Support for RDF/XML error levels.
375    
376            * HTMLTable.pm, RDFXML.pm: Support for new style of error level
377            specifying.  Error types are revised.
378    
379    2008-08-15  Wakaba  <wakaba@suika.fam.cx>
380    
381            * ContentChecker.pm: All error reporting method calls are
382            renewed.
383    
384    2008-08-15  Wakaba  <wakaba@suika.fam.cx>
385    
386            * HTML.pm.src: All error type names and "text" parameters
387            are revised.  Use new style for "level" specification.
388    
389            * mkhtmlparser.pl: Use new style for "level" specification.
390    
391    2008-08-03  Wakaba  <wakaba@suika.fam.cx>
392    
393            * WebIDL.pm (parse_char_string): Simplified error
394            reporting process for broken ignored valuetype definition.
395            (Valuetype idl_text): Support for special "DOMString" name.
396    
397    2008-08-03  Wakaba  <wakaba@suika.fam.cx>
398    
399            * WebIDL.pm ($get_scoped_name): Append "::::" if the last
400            terminal of the ScopedName is "DOMString", such that whether
401            the last part of the scoped name is "DOMString" or "_DOMString"
402            later.  It is necessary to determine whether a |typedef|
403            definition should be ignored or not.
404            (parse_char_string): Unescape the identifier of
405            exception members.
406            ($resolve): Return undef for builtin types and sequence<T>
407            types (we might not have to do this, however...).
408            (check): Support checking for Exceptions, Valuetypes,
409            and Typedefs.
410            ($serialize_type): Support for "DOMString::::" syntax.
411            (Typedef idl_text): Output Type as "DOMString" if it
412            is really "DOMString" (i.e. its internal representation
413            is "::DOMString::").
414    
415    2008-08-03  Wakaba  <wakaba@suika.fam.cx>
416    
417            * WebIDL.pm ($resolve): New code, based on resolve code
418            for constant types in the |check| method.
419            (check): Support for checking of attributes, operations, and
420            arguments.
421            (Attribute/Operation idl_text): Exception names in getraises,
422            setraises, and raises clauses is serizlied by |$serialize_type|
423            code.
424    
425    2008-08-02  Wakaba  <wakaba@suika.fam.cx>
426    
427            * WebIDL.pm ($integer): Order of selections are changed to match
428            hexadecimal numbers (the original pattern, taken from the spec,
429            was not work for hexadecimal numbers, because the "0" prefix
430            matches to the [0-7]* part (as an empty string) and therefore
431            it does not match with remaining "x..." part of a "0x..." integer
432            literal.
433            ($get_type): It now returns a string, not an array reference,
434            for regular types and |sequence| types (i.e. it in any case
435            returns a string).
436            ($get_next_token): The second item in the array that represents
437            a integer or float token is now a Perl number value, not the
438            original string representation of the number.
439            (check): Support for const value consistency checking.
440            No extended attribute is defined for constants.
441            (Node subclasses): Use simple strings rather than array references
442            for default data type values.
443            ($serialize_type): Type values are now simple strings.
444            (value): If the new attribute value is a false value, then
445            a FALSE value is set to the attribute.
446    
447    2008-08-02  Wakaba  <wakaba@suika.fam.cx>
448    
449            * WebIDL.pm ($get_scoped_name): Now scoped names are stored
450            in its stringified format ("scoped name" as defined in the
451            spec).  Note that future version of this module should not use
452            array references for type values and the |type_text| attribute
453            should be made obsolete.
454            (parse_char_string): Unescape attribute names.
455            (check): Support for checking of whether inherited interfaces
456            are actually defined or not.  Support for checking of whether
457            interface member identifiers are duplicated or not.
458            ($serialize_type): Scoped names are returned as is.  A future
459            version of this code should escape identifiers other than "DOMString",
460            otherwise the idl_text would be non-conforming.
461    
462    2008-08-02  Wakaba  <wakaba@suika.fam.cx>
463    
464            * WebIDL.pm (parse_char_string): Set line/column numbers
465            to generated nodes.  Unescape identifiers.  Extended attributes
466            for Definition's were ignored.
467            (append_child): Set |parent_node| attribute.
468            (parent_node): New attribute.
469            (check): Support interface/exception members.  Support
470            extended attributes.  Support definition identifier uniqueness
471            constraint.
472            (qualified_name): New attribute.
473            (Interface/Exception idl_text): Extended attributes were
474            not prepended to the returned text.
475    
476    2008-08-02  Wakaba  <wakaba@suika.fam.cx>
477    
478            * WebIDL.pm (parse_char_string): Set line/column numbers
479            to interface object experimentally.  s/shift/pop/g, shift
480            would make things wrong.  Support for interface forward
481            declarations was missing.  Broken interface declarations
482            with no block were not ignored entirely.
483            (Whatpm::WebIDL::Node): New abstract class.  This class
484            makes things easier.
485            (child_nodes): New attribute.  Unlike DOM's attribute with
486            same name, this attribute returns a dead list of nodes for
487            simplicity.
488            (get_user_data, set_user_data): New methods.
489            (Module idl_text): A SPACE character should be inserted
490            before the |{| character.
491            (Interface idl_text): Support for interface forward declarations.
492            (is_forward_declaration): New attribute.
493    
494    2008-07-19  Wakaba  <wakaba@suika.fam.cx>
495    
496            * WebIDL.pm (type_text): Better serializer.
497    
498    2008-07-19  Wakaba  <wakaba@suika.fam.cx>
499    
500            * WebIDL.pm: Revise forward-compatible parsing so that
501            it now can handle broken extended attributes and as such.
502    
503    2008-07-19  Wakaba  <wakaba@suika.fam.cx>
504    
505            * WebIDL.pm: Real support for extended attributes.
506            Support for extended attributes with arguments.
507    
508    2008-07-19  Wakaba  <wakaba@suika.fam.cx>
509    
510            * WebIDL.pm: Support for |exception| syntax.
511            (Interface->idl_text): Tentative support for inheritances.
512    
513    2008-07-19  Wakaba  <wakaba@suika.fam.cx>
514    
515            * WebIDL.pm: Hierarchical scoped name support was broken.
516            Support for raises, setraises, and getraises syntaxes.
517    
518    2008-07-18  Wakaba  <wakaba@suika.fam.cx>
519    
520            * WebIDL.pm: Support for |idl_text| attribute, version 1 (no
521            proper support for types, extended attributes, and exceptions yet).
522            WebIDL parser, version 1 (no support for exceptions yet,
523            no proper support for extended attributes yet).
524    
525    2008-07-09  Wakaba  <wakaba@suika.fam.cx>
526    
527            * WebIDL.pm (parse_char_string): Support for basic attribute syntax.
528    
529    2008-06-29  Wakaba  <wakaba@suika.fam.cx>
530    
531            * WebIDL.pm: Support for valuetype and const.
532    
533    2008-06-29  Wakaba  <wakaba@suika.fam.cx>
534            
535            * WebIDL.pm: New module.
536    
537    2008-06-15  Wakaba  <wakaba@suika.fam.cx>
538    
539            * Makefile (Entities.html): URI changed.
540    
541    2008-06-08  Wakaba  <wakaba@suika.fam.cx>
542    
543            * HTML.pm.src: Support for ruby parsing (HTML5 revision 1704).
544    
545    2008-06-01  Wakaba  <wakaba@suika.fam.cx>
546    
547            * HTML.pm.src (_get_next_token): A parse error was missing.
548    
549    2008-06-01  Wakaba  <wakaba@suika.fam.cx>
550    
551            * mklinktypelist.pl: rel=contact is no longer part of the HTML5
552            spec (commented out). (HTML5 revision 1711).
553    
554    2008-05-25  Wakaba  <wakaba@suika.fam.cx>
555    
556            * ContentType.pm: Drop support for UTF-32 (HTML5 revision 1701).
557    
558            * HTML.pm.src: UTF-16BE and UTF-16LE should be considered
559            as UTF-16 (HTML5 revision 1701).
560    
561    2008-05-25  Wakaba  <wakaba@suika.fam.cx>
562    
563            * HTML.pm.src: Support for <noframes> in <head> (HTML5 revision
564            1692).
565    
566    2008-05-25  Wakaba  <wakaba@suika.fam.cx>
567    
568            * HTML.pm.src: The secondary insertion mode used when switching
569            to foreign content is the "in body" insertion mode (HTML5 revision
570            1696).
571    
572    2008-05-25  Wakaba  <wakaba@suika.fam.cx>
573    
574            * HTML.pm.src: Don't raise parse error for <isindex/> (HTML5
575            revision 1697).
576    
577    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
578    
579            * HTML.pm.src: Support for end-of-file token in foreign content
580            insertion mode (HTML5 revision 1693).  Update SVG camelCase
581            attribute list (HTML5 revision 1700).  <textarea> closes
582            </select> (HTML5 revision 1699).  More start tags close in
583            foreign content insertion mode (HTML5 revision 1698).
584    
585    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
586    
587            * HTML.pm.src: ";" is not part of charset name (HTML5 revision 1665).
588    
589    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
590    
591            * HTML.pm.src: More robust charset parameter detection (HTML5
592            revision 1674).
593    
594    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
595    
596            * ContentType.pm: Support for image/vnd.microsoft.icon (HTML5
597            revision 1676).
598    
599    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
600    
601            * HTML.pm.src: Ignore language part of public identifiers for
602            quriks mode detection (HTML5 revision 1679).
603    
604    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
605    
606            * HTML.pm.src: Reduce the number of errors in truncated doctypes (HTML5
607            revision 1685).
608    
609    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
610    
611            * HTML.pm.src: Support for EOF in new states for tags (HTML5
612            revision 1684).
613    
614    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
615    
616            * HTML.pm.src (_reset_insertion_mode): Make <td>.innerHTML
617            work (HTML5 revision 1690).
618    
619    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
620    
621            * HTML.pm.src (_tree_construction_main): Change handling of
622            end tags in head insertion modes (HTML5 revision 1686).
623            (parse_char_string): Bug fix for non-utf8 character string handlings.
624            (parse_char_stream): |ungetc| does not work well for this context.
625    
626    2008-05-18  Wakaba  <wakaba@suika.fam.cx>
627    
628            * HTML.pm.src (parse_byte_string): Redefined to invoke
629            |parse_byte_stream|.
630            (parse_byte_stream): New method.
631    
632  2008-05-18  Wakaba  <wakaba@suika.fam.cx>  2008-05-18  Wakaba  <wakaba@suika.fam.cx>
633    
634          * HTML.pm.src (parse_byte_string): Fix the column number reported          * HTML.pm.src (parse_byte_string): Fix the column number reported

Legend:
Removed from v.1.237  
changed lines
  Added in v.1.330

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24