/[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.196 by wakaba, Thu Mar 20 08:04:58 2008 UTC revision 1.363 by wakaba, Fri Nov 7 08:45:28 2008 UTC
# Line 1  Line 1 
1    2008-11-07  Wakaba  <wakaba@suika.fam.cx>
2    
3            * NanoDOM.pm (text_content): Don't create a Text node if the new
4            value is empty.
5    
6    2008-11-06  Wakaba  <wakaba@suika.fam.cx>
7    
8            * SWML/: New directory.
9    
10    2008-10-20  Wakaba  <wakaba@suika.fam.cx>
11    
12            * NanoDOM.pm (specified, all_declarations_processed,
13            manakai_attribute_type): New attributes.
14    
15    2008-10-19  Wakaba  <wakaba@suika.fam.cx>
16    
17            * NanoDOM.pm (Entity->new): Initialize ->child_nodes as an empty
18            array.
19    
20    2008-10-19  Wakaba  <wakaba@suika.fam.cx>
21    
22            * NanoDOM.pm (notation_name): New attribute.
23    
24    2008-10-18  Wakaba  <wakaba@suika.fam.cx>
25    
26            * NanoDOM.pm (public_id, system_id): New attributes.a
27    
28    2008-10-18  Wakaba  <wakaba@suika.fam.cx>
29    
30            * NanoDOM.pm (text_content): Moved to Node from Element.  Setter
31            implemented.
32            (allowed_tokens, default_type, declared_type): Implemented.
33    
34    2008-10-17  Wakaba  <wakaba@suika.fam.cx>
35    
36            * NanoDOM.pm (node_name): New attribute.
37            (ELEMENT_TYPE_DEFINITION_NODE, ATTRIBUTE_DEFINITION_NODE): New
38            constants.
39            (create_element_type_definition_node, create_attribute_definition,
40            create_notation, create_general_entity,
41            get_element_type_definition_node,
42            set_element_type_definition_node, get_general_entity_node,
43            set_general_entity_node, get_notation_node, set_notation_node,
44            get_attribute_definition_node, set_attribute_definition_node): New
45            methods.
46            (element_types, entities, notations, attribute_definitions): New
47            attributes.
48            (DocumentType): Support for child nodes, entities, notations, and
49            element types.
50            (Entity, Notation, ElementTypeDefinition, AttributeDefinition):
51            New classes.
52    
53            * Dumper.pm: Support for general entities, notations, element type
54            definitions, and attribute definitions.
55    
56    2008-10-15  Wakaba  <wakaba@suika.fam.cx>
57    
58            * NanoDOM.pm (create_processing_instruction): New method.
59            (xml_version, xml_encoding, xml_standalone): New attributes.
60            (ProcessingInstruction): New class.
61    
62    2008-10-14  Wakaba  <wakaba@suika.fam.cx>
63    
64            * HTML.pm.src: Handling of end tags in the foreign content
65            insertion mode was partially wrong, because of wrong bit
66            operations.
67    
68    2008-10-14  Wakaba  <wakaba@suika.fam.cx>
69    
70            * NanoDOM.pm (dom_config): New attribute (do nothing), for
71            Whatpm::XML::Parser support.
72    
73    2008-10-14  Wakaba  <wakaba@suika.fam.cx>
74    
75            * Makefile: New rule to make HTML/Tokenizer.pm is added.
76    
77            * HTML.pm.src: Tokenizer part moved to another file.
78    
79    2008-10-13  Wakaba  <wakaba@suika.fam.cx>
80    
81            * HTML.pm.src: Merge |DT_EL| and |DD_EL| as |DTDD_EL|.
82    
83    2008-10-13  Wakaba  <wakaba@suika.fam.cx>
84    
85            * HTML.pm.src: Element category constants redefined.
86            
87    2008-10-13  Wakaba  <wakaba@suika.fam.cx>
88    
89            * HTML.pm.src: Steps for CDATA/RCDATA elements in tree
90            construction stage synced with the spec (HTML5 revisions 2139 and
91            2302).
92    
93    2008-10-07  Wakaba  <wakaba@suika.fam.cx>
94    
95            * ContentChecker.pm: New error level "html5_fact" added, which
96            should be tentatively used until all of requirements are properly
97            specced as RFC 2119 "MUST" in HTML5.
98    
99    2008-10-05  Wakaba  <wakaba@suika.fam.cx>
100    
101            * ContentChecker.pod: Note on internal flags is added.
102    
103    2008-10-05  Wakaba  <wakaba@suika.fam.cx>
104    
105            * HTML.pm.src: An AAA bug fixed.
106    
107    2008-10-04  Wakaba  <wakaba@suika.fam.cx>
108    
109            * HTML.pm.src: If another node is inserted by the parser, don't
110            reuse existing Text node to append a character (HTML5 revision
111            2124).
112    
113    2008-10-04  Wakaba  <wakaba@suika.fam.cx>
114    
115            * HTML.pm.src: Support for <option> and <optgroup> in body (HTML5
116            revisions 1731 and 2128).
117    
118    2008-10-04  Wakaba  <wakaba@suika.fam.cx>
119    
120            * HTML.pm.src: Make <foreignObject> scoping (HTML5 revision 1837).
121            Support for end tags of camelCase SVG elements were broken.  A
122            wrong error type text fixed.
123    
124    2008-10-04  Wakaba  <wakaba@suika.fam.cx>
125    
126            * HTML.pm.src: Drop redundant code (HTML5 revision 1731).
127    
128    2008-10-04  Wakaba  <wakaba@suika.fam.cx>
129    
130            * HTML.pm.src: Support for new definition of |param| and |source|
131            start tag parsing (HTML5 revision 1731).
132    
133    2008-10-04  Wakaba  <wakaba@suika.fam.cx>
134    
135            * HTML.pm.src: <p> steps reimplemented (HTML5 revision 1731).
136    
137    2008-10-04  Wakaba  <wakaba@suika.fam.cx>
138    
139            * HTML.pm.src: <li>, <dt>, and <dd> steps reimplemented (HTML5
140            revisions 1731 and 1831).
141    
142    2008-10-04  Wakaba  <wakaba@suika.fam.cx>
143    
144            * HTML.pm.src: Support for new flow (but not phrasing) elements (HTML5
145            revisions 1731 and 1778).  Support for the </sarcasm> end tag (HTML5
146            revision 1731).
147    
148    2008-10-04  Wakaba  <wakaba@suika.fam.cx>
149    
150            * HTML.pm.src: Support for |command| and |eventsource| elements (HTML5
151            revision 1731).  End tags of |option| and |optgroup| elements are
152            now optional (HTML5 revision 1731).
153    
154    2008-10-04  Wakaba  <wakaba@suika.fam.cx>
155    
156            * HTML.pm.src: New "special" elements added to the list (HTML5
157            revision 1778).  "strile" -> "strike".
158    
159    2008-10-02  Wakaba  <wakaba@suika.fam.cx>
160    
161            * ContentType.pm (get_sniffed_type): Support for the "better"
162            content sniffing (HTML5 revision 1927).  In a case the official
163            type was not returned when the method is invoked in the list
164            context.
165    
166    2008-09-22  Wakaba  <wakaba@suika.fam.cx>
167    
168            * HTML.pm.src: Character references for non-space C0 characters,
169            including U+000B VT, DEL character, noncharacter code points, are
170            now converted to the U+FFFD character (cf. HTML5 revision 2138).
171    
172    2008-09-21  Wakaba  <wakaba@suika.fam.cx>
173    
174            * ContentChecker.pm: |form=""| check support added.
175    
176    2008-09-21  Wakaba  <wakaba@suika.fam.cx>
177    
178            * ContentChecker.pm: |contextmenu| validness is now checked using
179            |id| and |id_type| properties, and |menu| property is removed.
180    
181    2008-09-21  Wakaba  <wakaba@suika.fam.cx>
182    
183            * ContentChecker.pm: Prepare for |form| |name| attribute's
184            duplication checking.
185    
186    2008-09-21  Wakaba  <wakaba@suika.fam.cx>
187    
188            * HTML.pm.src (parse_byte_stream): Support (or non-support) for
189            unsupported charset="" parameter value (HTML5 revision 2131).
190    
191    2008-09-20  Wakaba  <wakaba@suika.fam.cx>
192    
193            * HTML.pm.src: Reminding places where U+000B is allowed as a space
194            character is fixed (cf. HTML5 revision 1738).
195    
196            * ContentChecker.pm, HTMLTable.pm: U+000B is no longer part of
197            space characters (HTML5 revision 1738).
198    
199    2008-09-20  Wakaba  <wakaba@suika.fam.cx>
200    
201            * HTML.pm.src: The "anything else" case for the "after after body"
202            insertion mode was not updated to swtich to the "in body"
203            insertion mode.  U+000B is no longer a space character for the
204            purpose of tree construction phase (HTML5 revision 1738).
205    
206    2008-09-20  Wakaba  <wakaba@suika.fam.cx>
207    
208            * HTML.pm.src: U+000B is no longer a space character (HTML5
209            revision 1738).
210    
211    2008-09-20  Wakaba  <wakaba@suika.fam.cx>
212    
213            * ContentType.pm: 0x0B is no longer a space character (HTML5
214            revision 1738).
215    
216            * HTML.pm.src: U+000B is no longer a space character for the
217            algorithm for extracting an encoding from a Content-Type (HTML5
218            revision 1738).
219    
220    2008-09-20  Wakaba  <wakaba@suika.fam.cx>
221    
222            * ContentChecker.pm ($IsInHTMLInteractiveContent): New.
223    
224    2008-09-18  Wakaba  <wakaba@suika.fam.cx>
225    
226            * LangTag.pm: Add checks for remaining requirements from RFC 4646.
227    
228            * mklangreg.pl: Sort 'Prefix' values by their length, to ease
229            matching.
230    
231    2008-09-18  Wakaba  <wakaba@suika.fam.cx>
232    
233            * LangTag.pm: Warn for private use language subtags.  Error level
234            typos fixed.  Support for Suppress-Script field.
235    
236            * mklangreg.pl: Support for dumping of nested structure.
237    
238    2008-09-18  Wakaba  <wakaba@suika.fam.cx>
239    
240            * LangTag.pm (check_rfc4646_langtag): Check if a tag is in the
241            recommended case as per RFC 4646.
242    
243    2008-09-18  Wakaba  <wakaba@suika.fam.cx>
244    
245            * LangTag.pm (check_rfc4646_langtag): New method.
246    
247    2008-09-18  Wakaba  <wakaba@suika.fam.cx>
248    
249            * mklangreg.pl: New script.
250    
251            * Makefile: Updated for creation of the module for language subtag
252            registry.
253            
254    2008-09-16  Wakaba  <wakaba@suika.fam.cx>
255    
256            * Makefile: WebIDL.html added.
257    
258            * WebIDL.pod: New documentation.
259    
260    2008-09-16  Wakaba  <wakaba@suika.fam.cx>
261    
262            * WebIDL.pm: Checker's error types are redefined.
263    
264    2008-09-16  Wakaba  <wakaba@suika.fam.cx>
265    
266            * WebIDL.pm: Parser's error types are redefined.  Some forward
267            compatible parsing bugs are fixed.  Some unreachable codes are
268            commented out.
269    
270    2008-09-16  Wakaba  <wakaba@suika.fam.cx>
271    
272            * WebIDL.pm: Support for the reminding extended attributes are
273            added.  It does not satisfy the definition that a forward
274            interface declaration has an extended attribute.  It seems that
275            unless explicitly allowed multiple extended attributes with the
276            same name is not allowed, though it is not explicitly mentioned in
277            the spec.
278    
279    2008-09-16  Wakaba  <wakaba@suika.fam.cx>
280    
281            * WebIDL.pm: Unescapes extended attribute names and extended
282            attribute identifiers.  Preserve whether an extended attribute has
283            an argument list of not.  Support for extended attributes:
284            Constructor, ExceptionConsts, IndexGetter, IndexSetter,
285            NameGetter, NameSetter, and Null.
286            (has_argument_list): New attribute.
287            (idl_text): Stringifies argument lists, if any, even if it is
288            empty.
289    
290    2008-09-15  Wakaba  <wakaba@suika.fam.cx>
291    
292            * HTML.pm.src: New state |PCDATA_STATE|.  Use an empty string for
293            |{s_kwd}| in DATA_STATE as default.
294    
295    2008-09-15  Wakaba  <wakaba@suika.fam.cx>
296    
297            * HTML.pm.src, mkhtmlparser.pl: Replace |{prev_char}|
298            by |{s_kwd}| in DATA_STATE.
299    
300    2008-09-15  Wakaba  <wakaba@suika.fam.cx>
301    
302            * HTML.pm.src: Shorten keys.
303    
304    2008-09-15  Wakaba  <wakaba@suika.fam.cx>
305    
306            * HTML.pm.src: Remove checking for control character, surrogate
307            pair, or noncharacter code points and non-Unicode code
308            points (they should be handled by Whatpm::Charset::UnicodeChecker).
309            (parse_char_stream): Support for the |$get_wrapper| argument and
310            character stream error handlers.
311    
312    2008-09-15  Wakaba  <wakaba@suika.fam.cx>
313    
314            * ContentChecker.pm: Don't call |loda_ns_module|
315            for null-namespace elements/attributes.
316    
317            * HTML.pm.src: Fact out $disallowed_control_chars
318            as a hash.
319    
320    2008-09-14  Wakaba  <wakaba@suika.fam.cx>
321    
322            * HTML.pm.src: Regexp typo fixed.  |{prev_char}|
323            and |{next_char}| initializations are moved to initialization
324            method.  |{read_until}| now supports buffering.  Sync |set_inner_html|
325            with |parse_char_stream|.
326    
327    2008-09-14  Wakaba  <wakaba@suika.fam.cx>
328    
329            * HTML.pm.src (parse_char_stream): Make |set_next_char|
330            invoke |manakai_read_until|, not only |read|, where
331            possible, to decrease the number of |read| method calls.
332    
333            * mkhtmlparser.pl: Related changes to the aforementioned
334            modification.
335    
336    2008-09-14  Wakaba  <wakaba@suika.fam.cx>
337    
338            * HTML.pm.src: Use |read| instead of |getc|.  |set_inner_html|
339            would report character error from now.
340    
341    2008-09-14  Wakaba  <wakaba@suika.fam.cx>
342    
343            * HTML.pm.src: White-space-leaded non-white-space character
344            tokens in "before head insertion mode" was not
345            correctly handled.
346            (set_inner_html): Reimplemented using CharString decodehandle
347            class.  Support for $get_wrapper argument.  Support
348            for |{read_until}| feature.
349    
350    2008-09-14  Wakaba  <wakaba@suika.fam.cx>
351    
352            * HTML.pm.src: Make a "bare ero" error for unknown
353            entities point the "&" character.
354    
355    2008-09-14  Wakaba  <wakaba@suika.fam.cx>
356    
357            * HTML.pm.src: It turns out that U+FFFD don't have to
358            be added to the list of excluded characters.
359    
360    2008-09-14  Wakaba  <wakaba@suika.fam.cx>
361    
362            * HTML.pm.src ($char_onerror): Have character decoder's |line|
363            and |column| a higher priority than the one set by the
364            tokenizer's input handler.
365            ($self->{read_until}): Exclude U+FFFD (but this might
366            not be necessary, since now we do line/column fixup in
367            the character decode handle).
368    
369    2008-09-14  Wakaba  <wakaba@suika.fam.cx>
370    
371            * HTML.pm.src: Use |{read_until}| where possible.
372    
373    2008-09-14  Wakaba  <wakaba@suika.fam.cx>
374    
375            * HTML.pm.src: Change |{getc_until}| to |{read_until}|
376            and |manakai_getc_until| to |manakai_read_until| to
377            reduce the number of string copies.
378    
379    2008-09-14  Wakaba  <wakaba@suika.fam.cx>
380    
381            * HTML.pm.src (parse_char_string): Use newly created
382            |Whatpm::Charset::DecodeHandle::CharString| instead of Perl's
383            standard feature to |open| a string as a filehandle,
384            since Perl's string filehandle seems not supporting |ungetc|
385            method correctly.
386            (parse_char_stream): Define |{getc_until}| method.
387            (DATA_STATE): Experimental support for |getc_until| feature.
388    
389    2008-09-13  Wakaba  <wakaba@suika.fam.cx>
390    
391            * HTML.pm.src: Check points added to newly added branches.
392    
393    2008-09-13  Wakaba  <wakaba@suika.fam.cx>
394    
395            * HTML.pm.src: Remove |{char}|, which is no longer used.
396            Remove |{entity_in_attr}| and |{last_attribute_value_state}|
397            and replaced by |{prev_state}|.
398    
399            * mkhtmlparser.pl: Remove |{char}| feature.
400            Remove |!!!back-next-input-character;| macro.
401    
402    2008-09-13  Wakaba  <wakaba@suika.fam.cx>
403    
404            * HTML.pm.src: Finally we get rid of all the inner loops.  Remove
405            entity related tokenizer states in favor of new states
406            implementing the consume character reference algorithm.
407    
408    2008-09-13  Wakaba  <wakaba@suika.fam.cx>
409    
410            * HTML.pm.src: "Consume a character reference" algorithm is
411            now implemented as a tokenizer's state, rather than
412            a method, with minimum changes (more changes will
413            be made, in due course).  "Bogus comment state"'s inner
414            loop gets removed.
415    
416    2008-09-13  Wakaba  <wakaba@suika.fam.cx>
417    
418            * HTML.pm.src: Make |PUBLIC| and |SYSTEM| keyword tokenizing
419            into their own tokenizer states.
420    
421    2008-09-13  Wakaba  <wakaba@suika.fam.cx>
422    
423            * HTML.pm.src: |CDATA_SECTION_STATE| (formally |CDATA_BLOCK_STATE|
424            is split into three states.
425    
426    2008-09-13  Wakaba  <wakaba@suika.fam.cx>
427    
428            * HTML.pm.src: |CLOSE_TAG_OPEN_STATE| is broken into
429            itself and new |CDATA_PCDATA_CLOSE_TAG_STATE| so that
430            no longer does the tokenizer have to push back next input
431            characters in those states.
432    
433    2008-09-13  Wakaba  <wakaba@suika.fam.cx>
434    
435            * HTML.pm.src: |MARKUP_DECLARATION_OPEN_STATE| broken
436            into four states so that no longer does the tokenizer have to push
437            back next input characters in that state.
438    
439    2008-09-11  Wakaba  <wakaba@suika.fam.cx>
440    
441            * HTML.pm.src: Methods now accept additional parameter, $get_wrapper,
442            which can be used to insert some wrapper between the character
443            stream handle and the tokenizer.  (It is currently not supported
444            for |set_inner_html| for |Element|s).
445    
446    2008-09-10  Wakaba  <wakaba@suika.fam.cx>
447    
448            * HTML.pm.src: Ignore punctuations in charset names.
449    
450    2008-09-10  Wakaba  <wakaba@suika.fam.cx>
451    
452            * ContentChecker.pm: Support for charset-layer error levels.
453    
454            * HTML.pm.src: Don't specify |text| argument for the
455            |chardecode:fallback| error, since it is not the encoding
456            being used alternatively.
457    
458    2008-09-06  Wakaba  <wakaba@suika.fam.cx>
459    
460            * HTML.pm.src: Support for |XSLT-compat| (HTML5 revision 2141).
461    
462    2008-08-31  Wakaba  <wakaba@suika.fam.cx>
463    
464            * CacheManifest.pm: Support for extensibility (HTML5 revision 2051).
465    
466    2008-08-31  Wakaba  <wakaba@suika.fam.cx>
467    
468            * HTML.pm.src: Bug fix and sync with the spec with regard
469            to after after frameset insertion mode processing (HTML5
470            revision 1909).  Note that the implementation was wrong
471            per the old spec before the r1909 changes.
472    
473    2008-08-30  Wakaba  <wakaba@suika.fam.cx>
474    
475            * HTMLTable.pm: scope=auto algorithm fix synced with the
476            spec (HTML5 revision 2093).
477            ($process_row): Algorithm step numbers synced with the
478            spec (HTML5 revision 2092).
479    
480    2008-08-30  Wakaba  <wakaba@suika.fam.cx>
481    
482            * HTMLTable.pm: Zs is not what we want; we want White_Space! (HTML5
483            revision 2094).
484    
485    2008-08-30  Wakaba  <wakaba@suika.fam.cx>
486    
487            * ContentType.pm: Support for image/svg+xml (HTML5 revision 2096).
488    
489    2008-08-30  Wakaba  <wakaba@suika.fam.cx>
490    
491            * HTML.pm.src: '"' and "'" at the end of attribute
492            name (after another attribute) now raise parse error (HTML5
493            revision 2123).  Empty unquoted attribute values are no
494            longer allowed (HTML5 revision 2122).
495    
496    2008-08-30  Wakaba  <wakaba@suika.fam.cx>
497    
498            * mkhtmlparser.pl: Support for MathML |definitionURL| attribute (HTML5
499            revision 2130).
500    
501    2008-08-30  Wakaba  <wakaba@suika.fam.cx>
502    
503            * ContentChecker.pm: |xml:lang| attribute value must be same
504            as |lang| attribute value for HTML elements (HTML5 revision 2062
505            and so on).
506    
507    2008-08-30  Wakaba  <wakaba@suika.fam.cx>
508    
509            * ContentChecker.pm: Error level definition for |xml_id_error|
510            was missing.
511    
512            * URIChecker.pm: The end of the URL should be marked as the
513            error location for an empty path error.  The position
514            between the userinfo and the port components should be
515            marked as the error location for an empty host error.
516    
517    2008-08-30  Wakaba  <wakaba@suika.fam.cx>
518    
519            * URIChecker.pm: Set parameters representing where in the
520            value the error occurs for errors.  Report unknown
521            address format error in warning level, since address
522            formats are rarely added.  Path segments starting with "/.."
523            were misinterpreted as a dot-segment.
524    
525    2008-08-30  Wakaba  <wakaba@suika.fam.cx>
526    
527            * URIChecker.pm (check_iri_reference): Requires
528            |Message::DOM::DOMImplementation|.
529    
530    2008-08-29  Wakaba  <wakaba@suika.fam.cx>
531    
532            * IMTChecker.pm: Updated for the new error reporting architecture.
533    
534            * ContentChecker.pm: Error levels for IMTs are added.
535    
536    2008-08-17  Wakaba  <wakaba@suika.fam.cx>
537    
538            * H2H.pm (_shift_token): Support for unquoted HTML attribute
539            values.
540    
541    2008-08-16  Wakaba  <wakaba@suika.fam.cx>
542    
543            * CacheManifest.pm: Support for new style of error
544            reports.
545    
546            * HTML.pm.src: Set line=1, column=1 to the document node.
547    
548    2008-08-16  Wakaba  <wakaba@suika.fam.cx>
549    
550            * ContentChecker.pm, RDFXML.pm: Pass {level} object to language tag
551            and URL checkers.  Support for more error levels for bogus
552            langauge tag and URL "standards".
553    
554            * LangTag.pm, URIChecker.pm: Support for new style error
555            level reporting.
556    
557    2008-08-15  Wakaba  <wakaba@suika.fam.cx>
558    
559            * ContentChecker.pm: Support for RDF/XML error levels.
560    
561            * HTMLTable.pm, RDFXML.pm: Support for new style of error level
562            specifying.  Error types are revised.
563    
564    2008-08-15  Wakaba  <wakaba@suika.fam.cx>
565    
566            * ContentChecker.pm: All error reporting method calls are
567            renewed.
568    
569    2008-08-15  Wakaba  <wakaba@suika.fam.cx>
570    
571            * HTML.pm.src: All error type names and "text" parameters
572            are revised.  Use new style for "level" specification.
573    
574            * mkhtmlparser.pl: Use new style for "level" specification.
575    
576    2008-08-03  Wakaba  <wakaba@suika.fam.cx>
577    
578            * WebIDL.pm (parse_char_string): Simplified error
579            reporting process for broken ignored valuetype definition.
580            (Valuetype idl_text): Support for special "DOMString" name.
581    
582    2008-08-03  Wakaba  <wakaba@suika.fam.cx>
583    
584            * WebIDL.pm ($get_scoped_name): Append "::::" if the last
585            terminal of the ScopedName is "DOMString", such that whether
586            the last part of the scoped name is "DOMString" or "_DOMString"
587            later.  It is necessary to determine whether a |typedef|
588            definition should be ignored or not.
589            (parse_char_string): Unescape the identifier of
590            exception members.
591            ($resolve): Return undef for builtin types and sequence<T>
592            types (we might not have to do this, however...).
593            (check): Support checking for Exceptions, Valuetypes,
594            and Typedefs.
595            ($serialize_type): Support for "DOMString::::" syntax.
596            (Typedef idl_text): Output Type as "DOMString" if it
597            is really "DOMString" (i.e. its internal representation
598            is "::DOMString::").
599    
600    2008-08-03  Wakaba  <wakaba@suika.fam.cx>
601    
602            * WebIDL.pm ($resolve): New code, based on resolve code
603            for constant types in the |check| method.
604            (check): Support for checking of attributes, operations, and
605            arguments.
606            (Attribute/Operation idl_text): Exception names in getraises,
607            setraises, and raises clauses is serizlied by |$serialize_type|
608            code.
609    
610    2008-08-02  Wakaba  <wakaba@suika.fam.cx>
611    
612            * WebIDL.pm ($integer): Order of selections are changed to match
613            hexadecimal numbers (the original pattern, taken from the spec,
614            was not work for hexadecimal numbers, because the "0" prefix
615            matches to the [0-7]* part (as an empty string) and therefore
616            it does not match with remaining "x..." part of a "0x..." integer
617            literal.
618            ($get_type): It now returns a string, not an array reference,
619            for regular types and |sequence| types (i.e. it in any case
620            returns a string).
621            ($get_next_token): The second item in the array that represents
622            a integer or float token is now a Perl number value, not the
623            original string representation of the number.
624            (check): Support for const value consistency checking.
625            No extended attribute is defined for constants.
626            (Node subclasses): Use simple strings rather than array references
627            for default data type values.
628            ($serialize_type): Type values are now simple strings.
629            (value): If the new attribute value is a false value, then
630            a FALSE value is set to the attribute.
631    
632    2008-08-02  Wakaba  <wakaba@suika.fam.cx>
633    
634            * WebIDL.pm ($get_scoped_name): Now scoped names are stored
635            in its stringified format ("scoped name" as defined in the
636            spec).  Note that future version of this module should not use
637            array references for type values and the |type_text| attribute
638            should be made obsolete.
639            (parse_char_string): Unescape attribute names.
640            (check): Support for checking of whether inherited interfaces
641            are actually defined or not.  Support for checking of whether
642            interface member identifiers are duplicated or not.
643            ($serialize_type): Scoped names are returned as is.  A future
644            version of this code should escape identifiers other than "DOMString",
645            otherwise the idl_text would be non-conforming.
646    
647    2008-08-02  Wakaba  <wakaba@suika.fam.cx>
648    
649            * WebIDL.pm (parse_char_string): Set line/column numbers
650            to generated nodes.  Unescape identifiers.  Extended attributes
651            for Definition's were ignored.
652            (append_child): Set |parent_node| attribute.
653            (parent_node): New attribute.
654            (check): Support interface/exception members.  Support
655            extended attributes.  Support definition identifier uniqueness
656            constraint.
657            (qualified_name): New attribute.
658            (Interface/Exception idl_text): Extended attributes were
659            not prepended to the returned text.
660    
661    2008-08-02  Wakaba  <wakaba@suika.fam.cx>
662    
663            * WebIDL.pm (parse_char_string): Set line/column numbers
664            to interface object experimentally.  s/shift/pop/g, shift
665            would make things wrong.  Support for interface forward
666            declarations was missing.  Broken interface declarations
667            with no block were not ignored entirely.
668            (Whatpm::WebIDL::Node): New abstract class.  This class
669            makes things easier.
670            (child_nodes): New attribute.  Unlike DOM's attribute with
671            same name, this attribute returns a dead list of nodes for
672            simplicity.
673            (get_user_data, set_user_data): New methods.
674            (Module idl_text): A SPACE character should be inserted
675            before the |{| character.
676            (Interface idl_text): Support for interface forward declarations.
677            (is_forward_declaration): New attribute.
678    
679    2008-07-19  Wakaba  <wakaba@suika.fam.cx>
680    
681            * WebIDL.pm (type_text): Better serializer.
682    
683    2008-07-19  Wakaba  <wakaba@suika.fam.cx>
684    
685            * WebIDL.pm: Revise forward-compatible parsing so that
686            it now can handle broken extended attributes and as such.
687    
688    2008-07-19  Wakaba  <wakaba@suika.fam.cx>
689    
690            * WebIDL.pm: Real support for extended attributes.
691            Support for extended attributes with arguments.
692    
693    2008-07-19  Wakaba  <wakaba@suika.fam.cx>
694    
695            * WebIDL.pm: Support for |exception| syntax.
696            (Interface->idl_text): Tentative support for inheritances.
697    
698    2008-07-19  Wakaba  <wakaba@suika.fam.cx>
699    
700            * WebIDL.pm: Hierarchical scoped name support was broken.
701            Support for raises, setraises, and getraises syntaxes.
702    
703    2008-07-18  Wakaba  <wakaba@suika.fam.cx>
704    
705            * WebIDL.pm: Support for |idl_text| attribute, version 1 (no
706            proper support for types, extended attributes, and exceptions yet).
707            WebIDL parser, version 1 (no support for exceptions yet,
708            no proper support for extended attributes yet).
709    
710    2008-07-09  Wakaba  <wakaba@suika.fam.cx>
711    
712            * WebIDL.pm (parse_char_string): Support for basic attribute syntax.
713    
714    2008-06-29  Wakaba  <wakaba@suika.fam.cx>
715    
716            * WebIDL.pm: Support for valuetype and const.
717    
718    2008-06-29  Wakaba  <wakaba@suika.fam.cx>
719            
720            * WebIDL.pm: New module.
721    
722    2008-06-15  Wakaba  <wakaba@suika.fam.cx>
723    
724            * Makefile (Entities.html): URI changed.
725    
726    2008-06-08  Wakaba  <wakaba@suika.fam.cx>
727    
728            * HTML.pm.src: Support for ruby parsing (HTML5 revision 1704).
729    
730    2008-06-01  Wakaba  <wakaba@suika.fam.cx>
731    
732            * HTML.pm.src (_get_next_token): A parse error was missing.
733    
734    2008-06-01  Wakaba  <wakaba@suika.fam.cx>
735    
736            * mklinktypelist.pl: rel=contact is no longer part of the HTML5
737            spec (commented out). (HTML5 revision 1711).
738    
739    2008-05-25  Wakaba  <wakaba@suika.fam.cx>
740    
741            * ContentType.pm: Drop support for UTF-32 (HTML5 revision 1701).
742    
743            * HTML.pm.src: UTF-16BE and UTF-16LE should be considered
744            as UTF-16 (HTML5 revision 1701).
745    
746    2008-05-25  Wakaba  <wakaba@suika.fam.cx>
747    
748            * HTML.pm.src: Support for <noframes> in <head> (HTML5 revision
749            1692).
750    
751    2008-05-25  Wakaba  <wakaba@suika.fam.cx>
752    
753            * HTML.pm.src: The secondary insertion mode used when switching
754            to foreign content is the "in body" insertion mode (HTML5 revision
755            1696).
756    
757    2008-05-25  Wakaba  <wakaba@suika.fam.cx>
758    
759            * HTML.pm.src: Don't raise parse error for <isindex/> (HTML5
760            revision 1697).
761    
762    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
763    
764            * HTML.pm.src: Support for end-of-file token in foreign content
765            insertion mode (HTML5 revision 1693).  Update SVG camelCase
766            attribute list (HTML5 revision 1700).  <textarea> closes
767            </select> (HTML5 revision 1699).  More start tags close in
768            foreign content insertion mode (HTML5 revision 1698).
769    
770    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
771    
772            * HTML.pm.src: ";" is not part of charset name (HTML5 revision 1665).
773    
774    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
775    
776            * HTML.pm.src: More robust charset parameter detection (HTML5
777            revision 1674).
778    
779    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
780    
781            * ContentType.pm: Support for image/vnd.microsoft.icon (HTML5
782            revision 1676).
783    
784    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
785    
786            * HTML.pm.src: Ignore language part of public identifiers for
787            quriks mode detection (HTML5 revision 1679).
788    
789    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
790    
791            * HTML.pm.src: Reduce the number of errors in truncated doctypes (HTML5
792            revision 1685).
793    
794    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
795    
796            * HTML.pm.src: Support for EOF in new states for tags (HTML5
797            revision 1684).
798    
799    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
800    
801            * HTML.pm.src (_reset_insertion_mode): Make <td>.innerHTML
802            work (HTML5 revision 1690).
803    
804    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
805    
806            * HTML.pm.src (_tree_construction_main): Change handling of
807            end tags in head insertion modes (HTML5 revision 1686).
808            (parse_char_string): Bug fix for non-utf8 character string handlings.
809            (parse_char_stream): |ungetc| does not work well for this context.
810    
811    2008-05-18  Wakaba  <wakaba@suika.fam.cx>
812    
813            * HTML.pm.src (parse_byte_string): Redefined to invoke
814            |parse_byte_stream|.
815            (parse_byte_stream): New method.
816    
817    2008-05-18  Wakaba  <wakaba@suika.fam.cx>
818    
819            * HTML.pm.src (parse_byte_string): Fix the column number reported
820            by encoding layer error reporter.
821    
822    2008-05-17  Wakaba  <wakaba@suika.fam.cx>
823    
824            * HTML.pm.src (parse_byte_string): Use streaming decoder
825            rather than converting the whole byte string and then parsing.
826            Propagate errors in character encoding layer.
827            (get_next_token): Precise error reporting for |bare stago| error.
828    
829    2008-05-17  Wakaba  <wakaba@suika.fam.cx>
830    
831            * HTML.pm.src (parse_char_stream): New method.
832            (parse_char_string): This method is now defined as an invocation
833            of the |parse_char_stream| method.
834    
835    2008-05-17  Wakaba  <wakaba@suika.fam.cx>
836    
837            * HTML.pm.src (parse_byte_string): Report various status
838            of the sniffing as info-level errors.  Support for new
839            decoding framework in parser resestting.
840            (new): Various default error levels were not set.
841    
842    2008-05-17  Wakaba  <wakaba@suika.fam.cx>
843    
844            * HTML.pm.src (parse_byte_string): HTML5 encoding siniffing
845            algorithm, except for the actual sniffing, is implemented
846            with new framework with Message::Charset::Info.
847    
848    2008-05-16  Wakaba  <wakaba@suika.fam.cx>
849    
850            * CacheManifest.pm (_parse): Drop fragment identifiers from
851            URIs in fallback section (HTML5 revision 1596).
852    
853    2008-05-10  Wakaba  <wakaba@suika.fam.cx>
854    
855            * Makefile (Entities.html): URI has changed.
856    
857    2008-05-10  Wakaba  <wakaba@suika.fam.cx>
858    
859            * CacheManifest.pm: Don't replace U+0000 NULL (HTML5 revision
860            1553).
861    
862    2008-05-06  Wakaba  <wakaba@suika.fam.cx>
863    
864            * ContentChecker.pm: Noted that those returned in |table| are
865            no longer table elements, but table objects returned
866            by Whatpm::HTMLTable.
867    
868            * HTMLTable.pm (form_table): Return table element node
869            as |$table->{element}|.
870            (assign_header): Support for the |headers=""| attribute.
871    
872    2008-05-06  Wakaba  <wakaba@suika.fam.cx>
873    
874            * HTMLTable.pm (assign_header): New function; first version
875            with no support for headers="".
876            (form_table): Include table width and height to the returned
877            table object for covenience.  Indexing in column assignement was wrong.
878            Set whether a data cell is empty or not for convenience.
879    
880    2008-05-05  Wakaba  <wakaba@suika.fam.cx>
881    
882            * HTMLTable.pm: Robuster caption support (HTML5 revision 1393).
883    
884    2008-05-05  Wakaba  <wakaba@suika.fam.cx>
885    
886            * HTMLTable.pm: How table model errors are detected is
887            changed (HTML5 revision 1387).
888    
889    2008-05-05  Wakaba  <wakaba@suika.fam.cx>
890    
891            * HTMLTable.pm: The algorithm now moves |tfoot| elements
892            to the end of the table (HTML5 revision 1380).
893    
894    2008-05-05  Wakaba  <wakaba@suika.fam.cx>
895    
896            * HTMLTable.pm: The algorithm is now 0-based indexing, instead
897            of 1-based (HTML5 revision 1376).
898    
899    2008-05-05  Wakaba  <wakaba@suika.fam.cx>
900    
901            * ContentType.pm: "Content-Type: text/plain; charset=UTF-8"
902            and "Content-Encoding" no longer prevent sniffing (HTML5
903            revision 1288).
904    
905    2008-05-05  Wakaba  <wakaba@suika.fam.cx>
906    
907            * ContentType.pm: Skip BOMs n feed or HTML algorithm (HTML5 revision
908            1282).
909    
910    2008-05-03  Wakaba  <wakaba@suika.fam.cx>
911    
912            * ContentChecker.pm: Support for global attributes.
913            Status of XML specs are added.
914    
915    2008-05-03  Wakaba  <wakaba@suika.fam.cx>
916    
917            * ContentChecker.pm (check_element): Support for |template=""|
918            and |ref=""| attribute (referent element type checking).
919    
920    2008-04-29  Wakaba  <wakaba@suika.fam.cx>
921    
922            * CacheManifest.pm (_parse): New same origin definition (HTML5 revision
923            1500) is implemented (except for IDNA part and URI-scheme-specific
924            knowledge).  Line number counting was wrong for LF-only
925            documents.
926    
927    2008-04-13  Wakaba  <wakaba@suika.fam.cx>
928    
929            * HTML.pm.src: Raise an parse error for any disallowed
930            character (HTML5 revision 1263).
931    
932    2008-04-13  Wakaba  <wakaba@suika.fam.cx>
933    
934            * mkentitylist.pl: Support for new HTML5 entity table format (the
935            definition for |AElig;| was missing).
936    
937    2008-04-13  Wakaba  <wakaba@suika.fam.cx>
938    
939            * HTML.pm.src, mkhtmlparser.pl: Support for element/attribute
940            name/namespace fixup (HTML5 revisions 1413, 1415, 1416, and 1417).
941    
942    2008-04-13  Wakaba  <wakaba@suika.fam.cx>
943    
944            * HTML.pm.src: List of element names that close foreign content
945            insertion mode is added (HTML5 revisions 1412 and 1418).
946    
947    2008-04-13  Wakaba  <wakaba@suika.fam.cx>
948    
949            * HTML.pm.src: Support for |mglyph| and |malignmark|
950            elements (HTML5 revision 1410).
951    
952    2008-04-13  Wakaba  <wakaba@suika.fam.cx>
953    
954            * HTML.pm.src: Support for new long MathML entities (HTML5
955            revision 1406).
956    
957    2008-04-13  Wakaba  <wakaba@suika.fam.cx>
958    
959            * HTML.pm.src: CDATA section support for MathML and SVG
960            elements (HTML5 revision 1404 and 1420).
961    
962    2008-04-12  Wakaba  <wakaba@suika.fam.cx>
963    
964            * HTML.pm.src, mkhtmlparser.pl: Support for MathML and SVG
965            elements (HTML5 revision 1404).  Unused !!!macro definitions
966            are removed.
967    
968    2008-04-12  Wakaba  <wakaba@suika.fam.cx>
969    
970            * HTML.pm.src, mkhtmlparser.pl: The way permitted slash errors
971            are raised is changed (HTML5 revision 1404).
972    
973    2008-04-06  Wakaba  <wakaba@suika.fam.cx>
974    
975            * HTML.pm.src: Category sets that are no longer used are removed.
976    
977    2008-04-06  Wakaba  <wakaba@suika.fam.cx>
978    
979            * HTML.pm.src: The ->[1] property of stack entries are now
980            replaced by constants representing element category.
981    
982    2008-04-06  Wakaba  <wakaba@suika.fam.cx>
983    
984            * HTML.pm.src: Don't use local name stored in stack (i.e. ->[1])
985            for error reporting.  (This is a preparation for using constant
986            value for ->[1].)
987    
988    2008-03-22  Wakaba  <wakaba@suika.fam.cx>
989    
990            * RDFXML.pm: Typo fixed.
991    
992    2008-03-22  Wakaba  <wakaba@suika.fam.cx>
993    
994            * ContentChecker.pm: |fact_level| is now treated
995            as same as |must_level|, i.e. level = |m|.
996            (check_element): Make list of URIs in the DOM.
997    
998    2008-03-21  Wakaba  <wakaba@suika.fam.cx>
999    
1000            * RDFXML.pm: Language accessor implemented.
1001            Local (null-namespace) attribute support.
1002    
1003    2008-03-21  Wakaba  <wakaba@suika.fam.cx>
1004    
1005            * RDFXML.pm: Factored out ID checking code.
1006    
1007    2008-03-21  Wakaba  <wakaba@suika.fam.cx>
1008    
1009            * RDFXML.pm: TODO items noted.  Validation of ID
1010            and URI attributes is implemented.  Warn if unknown
1011            value is used in rdf:parseType="" attribute.
1012    
1013            * URIChecker.pm (check_rdf_uri_reference): New function.
1014    
1015    2008-03-21  Wakaba  <wakaba@suika.fam.cx>
1016    
1017            * RDFXML.pm: bnodeid implemented.  Relative references
1018            are now resolved.
1019    
1020    2008-03-21  Wakaba  <wakaba@suika.fam.cx>
1021    
1022            * ContentChecker.pm: RDF reification implemented.
1023    
1024            * RDFXML.pm: undef vs false bug fixed.
1025            Reification implemented.
1026    
1027    2008-03-21  Wakaba  <wakaba@suika.fam.cx>
1028    
1029            * RDFXML.pm: s/id/ID/ for attribute name.
1030            The |node| arguments are added for |ontriple| calls.
1031            Too many "attribute not allowed" errors were raised.
1032    
1033            * ContentChecker.pm: Initial experimental support for rdf:RDF
1034            element.
1035    
1036    2008-03-21  Wakaba  <wakaba@suika.fam.cx>
1037    
1038            * RDFXML.pm: New module.
1039    
1040  2008-03-20  Wakaba  <wakaba@suika.fam.cx>  2008-03-20  Wakaba  <wakaba@suika.fam.cx>
1041    
1042          * HTML.pm.src (set_inner_html): Line/column number          * HTML.pm.src (set_inner_html): Line/column number

Legend:
Removed from v.1.196  
changed lines
  Added in v.1.363

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24