/[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.262 by wakaba, Sat Jul 19 13:11:30 2008 UTC revision 1.282 by wakaba, Sat Aug 30 12:57:05 2008 UTC
# Line 1  Line 1 
1    2008-08-30  Wakaba  <wakaba@suika.fam.cx>
2    
3            * mkhtmlparser.pl: Support for MathML |definitionURL| attribute (HTML5
4            revision 2130).
5    
6    2008-08-30  Wakaba  <wakaba@suika.fam.cx>
7    
8            * ContentChecker.pm: |xml:lang| attribute value must be same
9            as |lang| attribute value for HTML elements (HTML5 revision 2062
10            and so on).
11    
12    2008-08-30  Wakaba  <wakaba@suika.fam.cx>
13    
14            * ContentChecker.pm: Error level definition for |xml_id_error|
15            was missing.
16    
17            * URIChecker.pm: The end of the URL should be marked as the
18            error location for an empty path error.  The position
19            between the userinfo and the port components should be
20            marked as the error location for an empty host error.
21    
22    2008-08-30  Wakaba  <wakaba@suika.fam.cx>
23    
24            * URIChecker.pm: Set parameters representing where in the
25            value the error occurs for errors.  Report unknown
26            address format error in warning level, since address
27            formats are rarely added.  Path segments starting with "/.."
28            were misinterpreted as a dot-segment.
29    
30    2008-08-30  Wakaba  <wakaba@suika.fam.cx>
31    
32            * URIChecker.pm (check_iri_reference): Requires
33            |Message::DOM::DOMImplementation|.
34    
35    2008-08-29  Wakaba  <wakaba@suika.fam.cx>
36    
37            * IMTChecker.pm: Updated for the new error reporting architecture.
38    
39            * ContentChecker.pm: Error levels for IMTs are added.
40    
41    2008-08-17  Wakaba  <wakaba@suika.fam.cx>
42    
43            * H2H.pm (_shift_token): Support for unquoted HTML attribute
44            values.
45    
46    2008-08-16  Wakaba  <wakaba@suika.fam.cx>
47    
48            * CacheManifest.pm: Support for new style of error
49            reports.
50    
51            * HTML.pm.src: Set line=1, column=1 to the document node.
52    
53    2008-08-16  Wakaba  <wakaba@suika.fam.cx>
54    
55            * ContentChecker.pm, RDFXML.pm: Pass {level} object to language tag
56            and URL checkers.  Support for more error levels for bogus
57            langauge tag and URL "standards".
58    
59            * LangTag.pm, URIChecker.pm: Support for new style error
60            level reporting.
61    
62    2008-08-15  Wakaba  <wakaba@suika.fam.cx>
63    
64            * ContentChecker.pm: Support for RDF/XML error levels.
65    
66            * HTMLTable.pm, RDFXML.pm: Support for new style of error level
67            specifying.  Error types are revised.
68    
69    2008-08-15  Wakaba  <wakaba@suika.fam.cx>
70    
71            * ContentChecker.pm: All error reporting method calls are
72            renewed.
73    
74    2008-08-15  Wakaba  <wakaba@suika.fam.cx>
75    
76            * HTML.pm.src: All error type names and "text" parameters
77            are revised.  Use new style for "level" specification.
78    
79            * mkhtmlparser.pl: Use new style for "level" specification.
80    
81    2008-08-03  Wakaba  <wakaba@suika.fam.cx>
82    
83            * WebIDL.pm (parse_char_string): Simplified error
84            reporting process for broken ignored valuetype definition.
85            (Valuetype idl_text): Support for special "DOMString" name.
86    
87    2008-08-03  Wakaba  <wakaba@suika.fam.cx>
88    
89            * WebIDL.pm ($get_scoped_name): Append "::::" if the last
90            terminal of the ScopedName is "DOMString", such that whether
91            the last part of the scoped name is "DOMString" or "_DOMString"
92            later.  It is necessary to determine whether a |typedef|
93            definition should be ignored or not.
94            (parse_char_string): Unescape the identifier of
95            exception members.
96            ($resolve): Return undef for builtin types and sequence<T>
97            types (we might not have to do this, however...).
98            (check): Support checking for Exceptions, Valuetypes,
99            and Typedefs.
100            ($serialize_type): Support for "DOMString::::" syntax.
101            (Typedef idl_text): Output Type as "DOMString" if it
102            is really "DOMString" (i.e. its internal representation
103            is "::DOMString::").
104    
105    2008-08-03  Wakaba  <wakaba@suika.fam.cx>
106    
107            * WebIDL.pm ($resolve): New code, based on resolve code
108            for constant types in the |check| method.
109            (check): Support for checking of attributes, operations, and
110            arguments.
111            (Attribute/Operation idl_text): Exception names in getraises,
112            setraises, and raises clauses is serizlied by |$serialize_type|
113            code.
114    
115    2008-08-02  Wakaba  <wakaba@suika.fam.cx>
116    
117            * WebIDL.pm ($integer): Order of selections are changed to match
118            hexadecimal numbers (the original pattern, taken from the spec,
119            was not work for hexadecimal numbers, because the "0" prefix
120            matches to the [0-7]* part (as an empty string) and therefore
121            it does not match with remaining "x..." part of a "0x..." integer
122            literal.
123            ($get_type): It now returns a string, not an array reference,
124            for regular types and |sequence| types (i.e. it in any case
125            returns a string).
126            ($get_next_token): The second item in the array that represents
127            a integer or float token is now a Perl number value, not the
128            original string representation of the number.
129            (check): Support for const value consistency checking.
130            No extended attribute is defined for constants.
131            (Node subclasses): Use simple strings rather than array references
132            for default data type values.
133            ($serialize_type): Type values are now simple strings.
134            (value): If the new attribute value is a false value, then
135            a FALSE value is set to the attribute.
136    
137    2008-08-02  Wakaba  <wakaba@suika.fam.cx>
138    
139            * WebIDL.pm ($get_scoped_name): Now scoped names are stored
140            in its stringified format ("scoped name" as defined in the
141            spec).  Note that future version of this module should not use
142            array references for type values and the |type_text| attribute
143            should be made obsolete.
144            (parse_char_string): Unescape attribute names.
145            (check): Support for checking of whether inherited interfaces
146            are actually defined or not.  Support for checking of whether
147            interface member identifiers are duplicated or not.
148            ($serialize_type): Scoped names are returned as is.  A future
149            version of this code should escape identifiers other than "DOMString",
150            otherwise the idl_text would be non-conforming.
151    
152    2008-08-02  Wakaba  <wakaba@suika.fam.cx>
153    
154            * WebIDL.pm (parse_char_string): Set line/column numbers
155            to generated nodes.  Unescape identifiers.  Extended attributes
156            for Definition's were ignored.
157            (append_child): Set |parent_node| attribute.
158            (parent_node): New attribute.
159            (check): Support interface/exception members.  Support
160            extended attributes.  Support definition identifier uniqueness
161            constraint.
162            (qualified_name): New attribute.
163            (Interface/Exception idl_text): Extended attributes were
164            not prepended to the returned text.
165    
166    2008-08-02  Wakaba  <wakaba@suika.fam.cx>
167    
168            * WebIDL.pm (parse_char_string): Set line/column numbers
169            to interface object experimentally.  s/shift/pop/g, shift
170            would make things wrong.  Support for interface forward
171            declarations was missing.  Broken interface declarations
172            with no block were not ignored entirely.
173            (Whatpm::WebIDL::Node): New abstract class.  This class
174            makes things easier.
175            (child_nodes): New attribute.  Unlike DOM's attribute with
176            same name, this attribute returns a dead list of nodes for
177            simplicity.
178            (get_user_data, set_user_data): New methods.
179            (Module idl_text): A SPACE character should be inserted
180            before the |{| character.
181            (Interface idl_text): Support for interface forward declarations.
182            (is_forward_declaration): New attribute.
183    
184    2008-07-19  Wakaba  <wakaba@suika.fam.cx>
185    
186            * WebIDL.pm (type_text): Better serializer.
187    
188  2008-07-19  Wakaba  <wakaba@suika.fam.cx>  2008-07-19  Wakaba  <wakaba@suika.fam.cx>
189    
190          * WebIDL.pm: Revise forward-compatible parsing so that          * WebIDL.pm: Revise forward-compatible parsing so that

Legend:
Removed from v.1.262  
changed lines
  Added in v.1.282

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24