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

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24