/[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.244 by wakaba, Sat May 24 10:56:31 2008 UTC revision 1.267 by wakaba, Sat Aug 2 15:14:23 2008 UTC
# Line 1  Line 1 
1    2008-08-02  Wakaba  <wakaba@suika.fam.cx>
2    
3            * WebIDL.pm ($integer): Order of selections are changed to match
4            hexadecimal numbers (the original pattern, taken from the spec,
5            was not work for hexadecimal numbers, because the "0" prefix
6            matches to the [0-7]* part (as an empty string) and therefore
7            it does not match with remaining "x..." part of a "0x..." integer
8            literal.
9            ($get_type): It now returns a string, not an array reference,
10            for regular types and |sequence| types (i.e. it in any case
11            returns a string).
12            ($get_next_token): The second item in the array that represents
13            a integer or float token is now a Perl number value, not the
14            original string representation of the number.
15            (check): Support for const value consistency checking.
16            No extended attribute is defined for constants.
17            (Node subclasses): Use simple strings rather than array references
18            for default data type values.
19            ($serialize_type): Type values are now simple strings.
20            (value): If the new attribute value is a false value, then
21            a FALSE value is set to the attribute.
22    
23    2008-08-02  Wakaba  <wakaba@suika.fam.cx>
24    
25            * WebIDL.pm ($get_scoped_name): Now scoped names are stored
26            in its stringified format ("scoped name" as defined in the
27            spec).  Note that future version of this module should not use
28            array references for type values and the |type_text| attribute
29            should be made obsolete.
30            (parse_char_string): Unescape attribute names.
31            (check): Support for checking of whether inherited interfaces
32            are actually defined or not.  Support for checking of whether
33            interface member identifiers are duplicated or not.
34            ($serialize_type): Scoped names are returned as is.  A future
35            version of this code should escape identifiers other than "DOMString",
36            otherwise the idl_text would be non-conforming.
37    
38    2008-08-02  Wakaba  <wakaba@suika.fam.cx>
39    
40            * WebIDL.pm (parse_char_string): Set line/column numbers
41            to generated nodes.  Unescape identifiers.  Extended attributes
42            for Definition's were ignored.
43            (append_child): Set |parent_node| attribute.
44            (parent_node): New attribute.
45            (check): Support interface/exception members.  Support
46            extended attributes.  Support definition identifier uniqueness
47            constraint.
48            (qualified_name): New attribute.
49            (Interface/Exception idl_text): Extended attributes were
50            not prepended to the returned text.
51    
52    2008-08-02  Wakaba  <wakaba@suika.fam.cx>
53    
54            * WebIDL.pm (parse_char_string): Set line/column numbers
55            to interface object experimentally.  s/shift/pop/g, shift
56            would make things wrong.  Support for interface forward
57            declarations was missing.  Broken interface declarations
58            with no block were not ignored entirely.
59            (Whatpm::WebIDL::Node): New abstract class.  This class
60            makes things easier.
61            (child_nodes): New attribute.  Unlike DOM's attribute with
62            same name, this attribute returns a dead list of nodes for
63            simplicity.
64            (get_user_data, set_user_data): New methods.
65            (Module idl_text): A SPACE character should be inserted
66            before the |{| character.
67            (Interface idl_text): Support for interface forward declarations.
68            (is_forward_declaration): New attribute.
69    
70    2008-07-19  Wakaba  <wakaba@suika.fam.cx>
71    
72            * WebIDL.pm (type_text): Better serializer.
73    
74    2008-07-19  Wakaba  <wakaba@suika.fam.cx>
75    
76            * WebIDL.pm: Revise forward-compatible parsing so that
77            it now can handle broken extended attributes and as such.
78    
79    2008-07-19  Wakaba  <wakaba@suika.fam.cx>
80    
81            * WebIDL.pm: Real support for extended attributes.
82            Support for extended attributes with arguments.
83    
84    2008-07-19  Wakaba  <wakaba@suika.fam.cx>
85    
86            * WebIDL.pm: Support for |exception| syntax.
87            (Interface->idl_text): Tentative support for inheritances.
88    
89    2008-07-19  Wakaba  <wakaba@suika.fam.cx>
90    
91            * WebIDL.pm: Hierarchical scoped name support was broken.
92            Support for raises, setraises, and getraises syntaxes.
93    
94    2008-07-18  Wakaba  <wakaba@suika.fam.cx>
95    
96            * WebIDL.pm: Support for |idl_text| attribute, version 1 (no
97            proper support for types, extended attributes, and exceptions yet).
98            WebIDL parser, version 1 (no support for exceptions yet,
99            no proper support for extended attributes yet).
100    
101    2008-07-09  Wakaba  <wakaba@suika.fam.cx>
102    
103            * WebIDL.pm (parse_char_string): Support for basic attribute syntax.
104    
105    2008-06-29  Wakaba  <wakaba@suika.fam.cx>
106    
107            * WebIDL.pm: Support for valuetype and const.
108    
109    2008-06-29  Wakaba  <wakaba@suika.fam.cx>
110            
111            * WebIDL.pm: New module.
112    
113    2008-06-15  Wakaba  <wakaba@suika.fam.cx>
114    
115            * Makefile (Entities.html): URI changed.
116    
117    2008-06-08  Wakaba  <wakaba@suika.fam.cx>
118    
119            * HTML.pm.src: Support for ruby parsing (HTML5 revision 1704).
120    
121    2008-06-01  Wakaba  <wakaba@suika.fam.cx>
122    
123            * HTML.pm.src (_get_next_token): A parse error was missing.
124    
125    2008-06-01  Wakaba  <wakaba@suika.fam.cx>
126    
127            * mklinktypelist.pl: rel=contact is no longer part of the HTML5
128            spec (commented out). (HTML5 revision 1711).
129    
130    2008-05-25  Wakaba  <wakaba@suika.fam.cx>
131    
132            * ContentType.pm: Drop support for UTF-32 (HTML5 revision 1701).
133    
134            * HTML.pm.src: UTF-16BE and UTF-16LE should be considered
135            as UTF-16 (HTML5 revision 1701).
136    
137    2008-05-25  Wakaba  <wakaba@suika.fam.cx>
138    
139            * HTML.pm.src: Support for <noframes> in <head> (HTML5 revision
140            1692).
141    
142    2008-05-25  Wakaba  <wakaba@suika.fam.cx>
143    
144            * HTML.pm.src: The secondary insertion mode used when switching
145            to foreign content is the "in body" insertion mode (HTML5 revision
146            1696).
147    
148    2008-05-25  Wakaba  <wakaba@suika.fam.cx>
149    
150            * HTML.pm.src: Don't raise parse error for <isindex/> (HTML5
151            revision 1697).
152    
153    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
154    
155            * HTML.pm.src: Support for end-of-file token in foreign content
156            insertion mode (HTML5 revision 1693).  Update SVG camelCase
157            attribute list (HTML5 revision 1700).  <textarea> closes
158            </select> (HTML5 revision 1699).  More start tags close in
159            foreign content insertion mode (HTML5 revision 1698).
160    
161    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
162    
163            * HTML.pm.src: ";" is not part of charset name (HTML5 revision 1665).
164    
165    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
166    
167            * HTML.pm.src: More robust charset parameter detection (HTML5
168            revision 1674).
169    
170  2008-05-24  Wakaba  <wakaba@suika.fam.cx>  2008-05-24  Wakaba  <wakaba@suika.fam.cx>
171    
172          * ContentType.pm: Support for image/vnd.microsoft.icon (HTML5          * ContentType.pm: Support for image/vnd.microsoft.icon (HTML5

Legend:
Removed from v.1.244  
changed lines
  Added in v.1.267

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24