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> |
2008-08-02 Wakaba <wakaba@suika.fam.cx> |
132 |
|
|
133 |
* WebIDL.pm ($integer): Order of selections are changed to match |
* WebIDL.pm ($integer): Order of selections are changed to match |