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> |
2008-08-02 Wakaba <wakaba@suika.fam.cx> |
117 |
|
|
118 |
* WebIDL.pm ($get_scoped_name): Now scoped names are stored |
* WebIDL.pm ($get_scoped_name): Now scoped names are stored |