/[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.237 by wakaba, Sun May 18 03:46:26 2008 UTC revision 1.273 by wakaba, Fri Aug 15 14:13:42 2008 UTC
# Line 1  Line 1 
1    2008-08-15  Wakaba  <wakaba@suika.fam.cx>
2    
3            * ContentChecker.pm: Support for RDF/XML error levels.
4    
5            * HTMLTable.pm, RDFXML.pm: Support for new style of error level
6            specifying.  Error types are revised.
7    
8    2008-08-15  Wakaba  <wakaba@suika.fam.cx>
9    
10            * ContentChecker.pm: All error reporting method calls are
11            renewed.
12    
13    2008-08-15  Wakaba  <wakaba@suika.fam.cx>
14    
15            * HTML.pm.src: All error type names and "text" parameters
16            are revised.  Use new style for "level" specification.
17    
18            * mkhtmlparser.pl: Use new style for "level" specification.
19    
20    2008-08-03  Wakaba  <wakaba@suika.fam.cx>
21    
22            * WebIDL.pm (parse_char_string): Simplified error
23            reporting process for broken ignored valuetype definition.
24            (Valuetype idl_text): Support for special "DOMString" name.
25    
26    2008-08-03  Wakaba  <wakaba@suika.fam.cx>
27    
28            * WebIDL.pm ($get_scoped_name): Append "::::" if the last
29            terminal of the ScopedName is "DOMString", such that whether
30            the last part of the scoped name is "DOMString" or "_DOMString"
31            later.  It is necessary to determine whether a |typedef|
32            definition should be ignored or not.
33            (parse_char_string): Unescape the identifier of
34            exception members.
35            ($resolve): Return undef for builtin types and sequence<T>
36            types (we might not have to do this, however...).
37            (check): Support checking for Exceptions, Valuetypes,
38            and Typedefs.
39            ($serialize_type): Support for "DOMString::::" syntax.
40            (Typedef idl_text): Output Type as "DOMString" if it
41            is really "DOMString" (i.e. its internal representation
42            is "::DOMString::").
43    
44    2008-08-03  Wakaba  <wakaba@suika.fam.cx>
45    
46            * WebIDL.pm ($resolve): New code, based on resolve code
47            for constant types in the |check| method.
48            (check): Support for checking of attributes, operations, and
49            arguments.
50            (Attribute/Operation idl_text): Exception names in getraises,
51            setraises, and raises clauses is serizlied by |$serialize_type|
52            code.
53    
54    2008-08-02  Wakaba  <wakaba@suika.fam.cx>
55    
56            * WebIDL.pm ($integer): Order of selections are changed to match
57            hexadecimal numbers (the original pattern, taken from the spec,
58            was not work for hexadecimal numbers, because the "0" prefix
59            matches to the [0-7]* part (as an empty string) and therefore
60            it does not match with remaining "x..." part of a "0x..." integer
61            literal.
62            ($get_type): It now returns a string, not an array reference,
63            for regular types and |sequence| types (i.e. it in any case
64            returns a string).
65            ($get_next_token): The second item in the array that represents
66            a integer or float token is now a Perl number value, not the
67            original string representation of the number.
68            (check): Support for const value consistency checking.
69            No extended attribute is defined for constants.
70            (Node subclasses): Use simple strings rather than array references
71            for default data type values.
72            ($serialize_type): Type values are now simple strings.
73            (value): If the new attribute value is a false value, then
74            a FALSE value is set to the attribute.
75    
76    2008-08-02  Wakaba  <wakaba@suika.fam.cx>
77    
78            * WebIDL.pm ($get_scoped_name): Now scoped names are stored
79            in its stringified format ("scoped name" as defined in the
80            spec).  Note that future version of this module should not use
81            array references for type values and the |type_text| attribute
82            should be made obsolete.
83            (parse_char_string): Unescape attribute names.
84            (check): Support for checking of whether inherited interfaces
85            are actually defined or not.  Support for checking of whether
86            interface member identifiers are duplicated or not.
87            ($serialize_type): Scoped names are returned as is.  A future
88            version of this code should escape identifiers other than "DOMString",
89            otherwise the idl_text would be non-conforming.
90    
91    2008-08-02  Wakaba  <wakaba@suika.fam.cx>
92    
93            * WebIDL.pm (parse_char_string): Set line/column numbers
94            to generated nodes.  Unescape identifiers.  Extended attributes
95            for Definition's were ignored.
96            (append_child): Set |parent_node| attribute.
97            (parent_node): New attribute.
98            (check): Support interface/exception members.  Support
99            extended attributes.  Support definition identifier uniqueness
100            constraint.
101            (qualified_name): New attribute.
102            (Interface/Exception idl_text): Extended attributes were
103            not prepended to the returned text.
104    
105    2008-08-02  Wakaba  <wakaba@suika.fam.cx>
106    
107            * WebIDL.pm (parse_char_string): Set line/column numbers
108            to interface object experimentally.  s/shift/pop/g, shift
109            would make things wrong.  Support for interface forward
110            declarations was missing.  Broken interface declarations
111            with no block were not ignored entirely.
112            (Whatpm::WebIDL::Node): New abstract class.  This class
113            makes things easier.
114            (child_nodes): New attribute.  Unlike DOM's attribute with
115            same name, this attribute returns a dead list of nodes for
116            simplicity.
117            (get_user_data, set_user_data): New methods.
118            (Module idl_text): A SPACE character should be inserted
119            before the |{| character.
120            (Interface idl_text): Support for interface forward declarations.
121            (is_forward_declaration): New attribute.
122    
123    2008-07-19  Wakaba  <wakaba@suika.fam.cx>
124    
125            * WebIDL.pm (type_text): Better serializer.
126    
127    2008-07-19  Wakaba  <wakaba@suika.fam.cx>
128    
129            * WebIDL.pm: Revise forward-compatible parsing so that
130            it now can handle broken extended attributes and as such.
131    
132    2008-07-19  Wakaba  <wakaba@suika.fam.cx>
133    
134            * WebIDL.pm: Real support for extended attributes.
135            Support for extended attributes with arguments.
136    
137    2008-07-19  Wakaba  <wakaba@suika.fam.cx>
138    
139            * WebIDL.pm: Support for |exception| syntax.
140            (Interface->idl_text): Tentative support for inheritances.
141    
142    2008-07-19  Wakaba  <wakaba@suika.fam.cx>
143    
144            * WebIDL.pm: Hierarchical scoped name support was broken.
145            Support for raises, setraises, and getraises syntaxes.
146    
147    2008-07-18  Wakaba  <wakaba@suika.fam.cx>
148    
149            * WebIDL.pm: Support for |idl_text| attribute, version 1 (no
150            proper support for types, extended attributes, and exceptions yet).
151            WebIDL parser, version 1 (no support for exceptions yet,
152            no proper support for extended attributes yet).
153    
154    2008-07-09  Wakaba  <wakaba@suika.fam.cx>
155    
156            * WebIDL.pm (parse_char_string): Support for basic attribute syntax.
157    
158    2008-06-29  Wakaba  <wakaba@suika.fam.cx>
159    
160            * WebIDL.pm: Support for valuetype and const.
161    
162    2008-06-29  Wakaba  <wakaba@suika.fam.cx>
163            
164            * WebIDL.pm: New module.
165    
166    2008-06-15  Wakaba  <wakaba@suika.fam.cx>
167    
168            * Makefile (Entities.html): URI changed.
169    
170    2008-06-08  Wakaba  <wakaba@suika.fam.cx>
171    
172            * HTML.pm.src: Support for ruby parsing (HTML5 revision 1704).
173    
174    2008-06-01  Wakaba  <wakaba@suika.fam.cx>
175    
176            * HTML.pm.src (_get_next_token): A parse error was missing.
177    
178    2008-06-01  Wakaba  <wakaba@suika.fam.cx>
179    
180            * mklinktypelist.pl: rel=contact is no longer part of the HTML5
181            spec (commented out). (HTML5 revision 1711).
182    
183    2008-05-25  Wakaba  <wakaba@suika.fam.cx>
184    
185            * ContentType.pm: Drop support for UTF-32 (HTML5 revision 1701).
186    
187            * HTML.pm.src: UTF-16BE and UTF-16LE should be considered
188            as UTF-16 (HTML5 revision 1701).
189    
190    2008-05-25  Wakaba  <wakaba@suika.fam.cx>
191    
192            * HTML.pm.src: Support for <noframes> in <head> (HTML5 revision
193            1692).
194    
195    2008-05-25  Wakaba  <wakaba@suika.fam.cx>
196    
197            * HTML.pm.src: The secondary insertion mode used when switching
198            to foreign content is the "in body" insertion mode (HTML5 revision
199            1696).
200    
201    2008-05-25  Wakaba  <wakaba@suika.fam.cx>
202    
203            * HTML.pm.src: Don't raise parse error for <isindex/> (HTML5
204            revision 1697).
205    
206    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
207    
208            * HTML.pm.src: Support for end-of-file token in foreign content
209            insertion mode (HTML5 revision 1693).  Update SVG camelCase
210            attribute list (HTML5 revision 1700).  <textarea> closes
211            </select> (HTML5 revision 1699).  More start tags close in
212            foreign content insertion mode (HTML5 revision 1698).
213    
214    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
215    
216            * HTML.pm.src: ";" is not part of charset name (HTML5 revision 1665).
217    
218    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
219    
220            * HTML.pm.src: More robust charset parameter detection (HTML5
221            revision 1674).
222    
223    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
224    
225            * ContentType.pm: Support for image/vnd.microsoft.icon (HTML5
226            revision 1676).
227    
228    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
229    
230            * HTML.pm.src: Ignore language part of public identifiers for
231            quriks mode detection (HTML5 revision 1679).
232    
233    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
234    
235            * HTML.pm.src: Reduce the number of errors in truncated doctypes (HTML5
236            revision 1685).
237    
238    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
239    
240            * HTML.pm.src: Support for EOF in new states for tags (HTML5
241            revision 1684).
242    
243    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
244    
245            * HTML.pm.src (_reset_insertion_mode): Make <td>.innerHTML
246            work (HTML5 revision 1690).
247    
248    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
249    
250            * HTML.pm.src (_tree_construction_main): Change handling of
251            end tags in head insertion modes (HTML5 revision 1686).
252            (parse_char_string): Bug fix for non-utf8 character string handlings.
253            (parse_char_stream): |ungetc| does not work well for this context.
254    
255    2008-05-18  Wakaba  <wakaba@suika.fam.cx>
256    
257            * HTML.pm.src (parse_byte_string): Redefined to invoke
258            |parse_byte_stream|.
259            (parse_byte_stream): New method.
260    
261  2008-05-18  Wakaba  <wakaba@suika.fam.cx>  2008-05-18  Wakaba  <wakaba@suika.fam.cx>
262    
263          * HTML.pm.src (parse_byte_string): Fix the column number reported          * HTML.pm.src (parse_byte_string): Fix the column number reported

Legend:
Removed from v.1.237  
changed lines
  Added in v.1.273

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24