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

Legend:
Removed from v.1.260  
changed lines
  Added in v.1.279

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24