/[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.260 by wakaba, Sat Jul 19 07:41:22 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>  2008-07-19  Wakaba  <wakaba@suika.fam.cx>
694    
695          * WebIDL.pm: Support for |exception| syntax.          * WebIDL.pm: Support for |exception| syntax.

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

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24