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