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

Legend:
Removed from v.1.261  
changed lines
  Added in v.1.278

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24