/[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.252 by wakaba, Sun Jun 1 06:47:08 2008 UTC revision 1.272 by wakaba, Fri Aug 15 12:46:44 2008 UTC
# Line 1  Line 1 
1    2008-08-15  Wakaba  <[email protected]>
2    
3            * ContentChecker.pm: All error reporting method calls are
4            renewed.
5    
6    2008-08-15  Wakaba  <[email protected]>
7    
8            * HTML.pm.src: All error type names and "text" parameters
9            are revised.  Use new style for "level" specification.
10    
11            * mkhtmlparser.pl: Use new style for "level" specification.
12    
13    2008-08-03  Wakaba  <[email protected]>
14    
15            * WebIDL.pm (parse_char_string): Simplified error
16            reporting process for broken ignored valuetype definition.
17            (Valuetype idl_text): Support for special "DOMString" name.
18    
19    2008-08-03  Wakaba  <[email protected]>
20    
21            * WebIDL.pm ($get_scoped_name): Append "::::" if the last
22            terminal of the ScopedName is "DOMString", such that whether
23            the last part of the scoped name is "DOMString" or "_DOMString"
24            later.  It is necessary to determine whether a |typedef|
25            definition should be ignored or not.
26            (parse_char_string): Unescape the identifier of
27            exception members.
28            ($resolve): Return undef for builtin types and sequence<T>
29            types (we might not have to do this, however...).
30            (check): Support checking for Exceptions, Valuetypes,
31            and Typedefs.
32            ($serialize_type): Support for "DOMString::::" syntax.
33            (Typedef idl_text): Output Type as "DOMString" if it
34            is really "DOMString" (i.e. its internal representation
35            is "::DOMString::").
36    
37    2008-08-03  Wakaba  <[email protected]>
38    
39            * WebIDL.pm ($resolve): New code, based on resolve code
40            for constant types in the |check| method.
41            (check): Support for checking of attributes, operations, and
42            arguments.
43            (Attribute/Operation idl_text): Exception names in getraises,
44            setraises, and raises clauses is serizlied by |$serialize_type|
45            code.
46    
47    2008-08-02  Wakaba  <[email protected]>
48    
49            * WebIDL.pm ($integer): Order of selections are changed to match
50            hexadecimal numbers (the original pattern, taken from the spec,
51            was not work for hexadecimal numbers, because the "0" prefix
52            matches to the [0-7]* part (as an empty string) and therefore
53            it does not match with remaining "x..." part of a "0x..." integer
54            literal.
55            ($get_type): It now returns a string, not an array reference,
56            for regular types and |sequence| types (i.e. it in any case
57            returns a string).
58            ($get_next_token): The second item in the array that represents
59            a integer or float token is now a Perl number value, not the
60            original string representation of the number.
61            (check): Support for const value consistency checking.
62            No extended attribute is defined for constants.
63            (Node subclasses): Use simple strings rather than array references
64            for default data type values.
65            ($serialize_type): Type values are now simple strings.
66            (value): If the new attribute value is a false value, then
67            a FALSE value is set to the attribute.
68    
69    2008-08-02  Wakaba  <[email protected]>
70    
71            * WebIDL.pm ($get_scoped_name): Now scoped names are stored
72            in its stringified format ("scoped name" as defined in the
73            spec).  Note that future version of this module should not use
74            array references for type values and the |type_text| attribute
75            should be made obsolete.
76            (parse_char_string): Unescape attribute names.
77            (check): Support for checking of whether inherited interfaces
78            are actually defined or not.  Support for checking of whether
79            interface member identifiers are duplicated or not.
80            ($serialize_type): Scoped names are returned as is.  A future
81            version of this code should escape identifiers other than "DOMString",
82            otherwise the idl_text would be non-conforming.
83    
84    2008-08-02  Wakaba  <[email protected]>
85    
86            * WebIDL.pm (parse_char_string): Set line/column numbers
87            to generated nodes.  Unescape identifiers.  Extended attributes
88            for Definition's were ignored.
89            (append_child): Set |parent_node| attribute.
90            (parent_node): New attribute.
91            (check): Support interface/exception members.  Support
92            extended attributes.  Support definition identifier uniqueness
93            constraint.
94            (qualified_name): New attribute.
95            (Interface/Exception idl_text): Extended attributes were
96            not prepended to the returned text.
97    
98    2008-08-02  Wakaba  <[email protected]>
99    
100            * WebIDL.pm (parse_char_string): Set line/column numbers
101            to interface object experimentally.  s/shift/pop/g, shift
102            would make things wrong.  Support for interface forward
103            declarations was missing.  Broken interface declarations
104            with no block were not ignored entirely.
105            (Whatpm::WebIDL::Node): New abstract class.  This class
106            makes things easier.
107            (child_nodes): New attribute.  Unlike DOM's attribute with
108            same name, this attribute returns a dead list of nodes for
109            simplicity.
110            (get_user_data, set_user_data): New methods.
111            (Module idl_text): A SPACE character should be inserted
112            before the |{| character.
113            (Interface idl_text): Support for interface forward declarations.
114            (is_forward_declaration): New attribute.
115    
116    2008-07-19  Wakaba  <[email protected]>
117    
118            * WebIDL.pm (type_text): Better serializer.
119    
120    2008-07-19  Wakaba  <[email protected]>
121    
122            * WebIDL.pm: Revise forward-compatible parsing so that
123            it now can handle broken extended attributes and as such.
124    
125    2008-07-19  Wakaba  <[email protected]>
126    
127            * WebIDL.pm: Real support for extended attributes.
128            Support for extended attributes with arguments.
129    
130    2008-07-19  Wakaba  <[email protected]>
131    
132            * WebIDL.pm: Support for |exception| syntax.
133            (Interface->idl_text): Tentative support for inheritances.
134    
135    2008-07-19  Wakaba  <[email protected]>
136    
137            * WebIDL.pm: Hierarchical scoped name support was broken.
138            Support for raises, setraises, and getraises syntaxes.
139    
140    2008-07-18  Wakaba  <[email protected]>
141    
142            * WebIDL.pm: Support for |idl_text| attribute, version 1 (no
143            proper support for types, extended attributes, and exceptions yet).
144            WebIDL parser, version 1 (no support for exceptions yet,
145            no proper support for extended attributes yet).
146    
147    2008-07-09  Wakaba  <[email protected]>
148    
149            * WebIDL.pm (parse_char_string): Support for basic attribute syntax.
150    
151    2008-06-29  Wakaba  <[email protected]>
152    
153            * WebIDL.pm: Support for valuetype and const.
154    
155    2008-06-29  Wakaba  <[email protected]>
156            
157            * WebIDL.pm: New module.
158    
159    2008-06-15  Wakaba  <[email protected]>
160    
161            * Makefile (Entities.html): URI changed.
162    
163    2008-06-08  Wakaba  <[email protected]>
164    
165            * HTML.pm.src: Support for ruby parsing (HTML5 revision 1704).
166    
167  2008-06-01  Wakaba  <[email protected]>  2008-06-01  Wakaba  <[email protected]>
168    
169          * HTML.pm.src (_get_next_token): A parse error was missing.          * HTML.pm.src (_get_next_token): A parse error was missing.

Legend:
Removed from v.1.252  
changed lines
  Added in v.1.272

[email protected]
ViewVC Help
Powered by ViewVC 1.1.24