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

Legend:
Removed from v.1.231  
changed lines
  Added in v.1.320

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24