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

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24