1 |
2008-02-26 Wakaba <wakaba@suika.fam.cx> |
2 |
|
3 |
* HTML.pm: Make |figure| caption optional (HTML5 revision 1240). |
4 |
Add |reversed| to |ol| (HTML5 revision 1248). |
5 |
|
6 |
2008-02-24 Wakaba <wakaba@suika.fam.cx> |
7 |
|
8 |
* HTML.pm: Most of Web Forms 1.0 attributes are implemented. |
9 |
|
10 |
2008-02-24 Wakaba <wakaba@suika.fam.cx> |
11 |
|
12 |
* HTML.pm: |big|, |tt|, |s|, |strike|, and |u| are implemented. |
13 |
Raise not-part-of-HTML5 error for |acronym|. |
14 |
|
15 |
2008-02-24 Wakaba <wakaba@suika.fam.cx> |
16 |
|
17 |
* HTML.pm: HTML5 attribute status added. |
18 |
|
19 |
2008-02-24 Wakaba <wakaba@suika.fam.cx> |
20 |
|
21 |
* HTML.pm: Standardized status for attributes are added (HTML5 |
22 |
info are not added yet). Make element or attribute not defined |
23 |
by HTML5 spec as a conformance error (though it is not clearly |
24 |
defined by HTML5 spec as non-conforming). Note that more work |
25 |
is needed for non-standard attribute thing, since the current |
26 |
implementation prevents non-standard attribute from being |
27 |
syntactically checked (otherwise it is treated as if a |
28 |
standard attribute). |
29 |
|
30 |
2008-02-24 Wakaba <wakaba@suika.fam.cx> |
31 |
|
32 |
* HTML.pm: Standardized status attributes are added. |
33 |
|
34 |
2008-02-24 Wakaba <wakaba@suika.fam.cx> |
35 |
|
36 |
* HTML.pm: Invalid |meta| in |noscript| should be erred |
37 |
as usual. |
38 |
|
39 |
2008-02-24 Wakaba <wakaba@suika.fam.cx> |
40 |
|
41 |
* HTML.pm: Updated for |del|-and-significant problem. |
42 |
|
43 |
2008-02-24 Wakaba <wakaba@suika.fam.cx> |
44 |
|
45 |
* HTML.pm (datagrid): Condition was incorrect. |
46 |
|
47 |
2008-02-23 Wakaba <wakaba@suika.fam.cx> |
48 |
|
49 |
* HTML.pm (%HTMLProseContentChecker, details, figure): Don't |
50 |
change state when a transparent element is encountered. |
51 |
(details check): Reimplemented. |
52 |
|
53 |
2008-02-23 Wakaba <wakaba@suika.fam.cx> |
54 |
|
55 |
* HTML.pm (object check_end): Don't check significant content |
56 |
if the element is used as a transparent element. |
57 |
(video check): Reimplemented. |
58 |
|
59 |
2008-02-23 Wakaba <wakaba@suika.fam.cx> |
60 |
|
61 |
* HTML.pm: |figure| content checker reimplemented. |object| |
62 |
content checker for root element case reimplemented. |
63 |
|
64 |
2008-02-23 Wakaba <wakaba@suika.fam.cx> |
65 |
|
66 |
* HTML.pm: Revised. |
67 |
|
68 |
2008-02-18 Wakaba <wakaba@suika.fam.cx> |
69 |
|
70 |
* HTML.pm (object): Implemented (with some bug on transparentness |
71 |
handling). |
72 |
|
73 |
2008-02-18 Wakaba <wakaba@suika.fam.cx> |
74 |
|
75 |
* HTML.pm: s/m/mark/g (HTML5 revision 1232). |
76 |
|
77 |
2008-02-18 Wakaba <wakaba@suika.fam.cx> |
78 |
|
79 |
* HTML.pm (img): |alt| is a SHOULD-level requirement now (since |
80 |
the conformance checker cannot examine the semantics of the |
81 |
image). |
82 |
|
83 |
2008-02-17 Wakaba <wakaba@suika.fam.cx> |
84 |
|
85 |
* HTML.pm: Useless old stuff are removed. |datagrid| |
86 |
was missing from |$HTMLInteractiveContent|. |
87 |
(a): Use new |$HTMLInteractiveContent| in place |
88 |
of |$HTMLIntetractiveElements|. |
89 |
(caption): Use new |$HTMLPhrasingContentChecker| in place |
90 |
of |$HTMLStrictlyInlineChecker|. |
91 |
|
92 |
2008-02-17 Wakaba <wakaba@suika.fam.cx> |
93 |
|
94 |
* HTML.pm (figure): Implemented. |
95 |
(video, audio): In no-parent-element case with |src| attribute, |
96 |
the content model is now prose content. |
97 |
|
98 |
2008-02-17 Wakaba <wakaba@suika.fam.cx> |
99 |
|
100 |
* HTML.pm (noscript): Reimplemented. |
101 |
|
102 |
2008-02-17 Wakaba <wakaba@suika.fam.cx> |
103 |
|
104 |
* HTML.pm: |<meta http-equiv=Content-Type| support (HTML5 revision |
105 |
1180). |
106 |
|
107 |
2008-02-17 Wakaba <wakaba@suika.fam.cx> |
108 |
|
109 |
* HTML.pm (th): |th| now requires phrasing content. |div| |
110 |
now requires prose content. |
111 |
|
112 |
2008-02-17 Wakaba <wakaba@suika.fam.cx> |
113 |
|
114 |
* HTML.pm: Error messages revised. |
115 |
|
116 |
2008-02-17 Wakaba <wakaba@suika.fam.cx> |
117 |
|
118 |
* HTML.pm: Most part of December 2007 Content Model is implemented. |
119 |
|
120 |
2008-02-10 Wakaba <wakaba@suika.fam.cx> |
121 |
|
122 |
* HTML.pm (<style>): CSS validation code removed; instead, |
123 |
it does invoke subdoc callback to ask to the callee to validate |
124 |
the style sheet separately. |
125 |
|
126 |
2008-02-09 Wakaba <wakaba@suika.fam.cx> |
127 |
|
128 |
* HTML.pm (<style>): Initial version of CSS validation support. |
129 |
|
130 |
2007-11-25 Wakaba <wakaba@suika.fam.cx> |
131 |
|
132 |
* HTML.pm ($HTMLSignificantContentErrors): New. |
133 |
|
134 |
2007-11-25 Wakaba <wakaba@suika.fam.cx> |
135 |
|
136 |
* HTML.pm: Support for checking for significant content (HTML5 |
137 |
revision 1114). Note that the current implementation has |
138 |
an issue on treatment for transparent or semi-transparent |
139 |
elements. |
140 |
|
141 |
* Atom.pm: Support for significant content checking (for composed |
142 |
HTML-Atom documents). |
143 |
|
144 |
2007-11-25 Wakaba <wakaba@suika.fam.cx> |
145 |
|
146 |
* HTML.pm (header): Descendant constraint is redefined by |
147 |
new todo item type |descendant|. |
148 |
|
149 |
2007-11-24 Wakaba <wakaba@suika.fam.cx> |
150 |
|
151 |
* HTML.pm (nest/@filter, rule/@condition): Implemented. |
152 |
(nest/@mode): Definition was wrong. |
153 |
($HTMLSelectorsAttrChecker): New. |
154 |
|
155 |
2007-11-23 Wakaba <wakaba@suika.fam.cx> |
156 |
|
157 |
* HTML.pm (meta): Character references in |charset| attribute |
158 |
values are now erred. |
159 |
|
160 |
2007-11-23 Wakaba <wakaba@suika.fam.cx> |
161 |
|
162 |
* HTML.pm (meta): |charset| value tests implemented. |
163 |
|
164 |
2007-11-11 Wakaba <wakaba@suika.fam.cx> |
165 |
|
166 |
* HTML.pm: Raise bad-context error for proposed link types. |
167 |
|
168 |
2007-11-07 Wakaba <wakaba@suika.fam.cx> |
169 |
|
170 |
* HTML.pm: Specialized error for old charset syntax. |
171 |
|
172 |
2007-11-07 Wakaba <wakaba@suika.fam.cx> |
173 |
|
174 |
* HTML.pm: Make |rel="up up"| conforming (HTML5 revision 1130). |
175 |
|
176 |
2007-11-04 Wakaba <wakaba@suika.fam.cx> |
177 |
|
178 |
* HTML.pm: Allow <html manifest=URI>. |
179 |
|
180 |
2007-11-04 Wakaba <wakaba@suika.fam.cx> |
181 |
|
182 |
* HTML.pm: Don't allow <a><img ismap></a> (<a> w/o href="") (HTML5 |
183 |
revision 1115). |
184 |
|
185 |
2007-11-04 Wakaba <wakaba@suika.fam.cx> |
186 |
|
187 |
* HTML.pm: <base> w/o @target and @href is non-conforming (HTML5 |
188 |
revision 1115). |
189 |
|
190 |
2007-11-04 Wakaba <wakaba@suika.fam.cx> |
191 |
|
192 |
* HTML.pm: "Significant" has been gone (HTML5 revision 1114). |
193 |
|
194 |
2007-10-26 Wakaba <wakaba@suika.fam.cx> |
195 |
|
196 |
* HTML.pm: Support for |poster| attribute (HTML5 revision 1097). |
197 |
|
198 |
2007-10-23 Wakaba <wakaba@suika.fam.cx> |
199 |
|
200 |
* HTML.pm: Make <script async defer> conforming (HTML5 |
201 |
revision 1085). |
202 |
|
203 |
2007-10-14 Wakaba <wakaba@suika.fam.cx> |
204 |
|
205 |
* Atom.pm, HTML.pm: Support for |html:nest|, |html:datatemplate|, |
206 |
and |html:rule| elements. |
207 |
|
208 |
2007-09-24 Wakaba <wakaba@suika.fam.cx> |
209 |
|
210 |
* Atom.pm (atom:link@title): Definition was missing. |
211 |
|
212 |
2007-09-24 Wakaba <wakaba@suika.fam.cx> |
213 |
|
214 |
* Atom.pm (hreflang): Checker is implemented. |
215 |
(AtomDateConstruct): Checking for content is implemented. |
216 |
|
217 |
2007-09-09 Wakaba <wakaba@suika.fam.cx> |
218 |
|
219 |
* HTML.pm: Support for language tag validation. |
220 |
|
221 |
2007-08-25 Wakaba <wakaba@suika.fam.cx> |
222 |
|
223 |
* HTML.pm (head, noscript): Treatement for invalid |meta| |
224 |
elenments are changed as per HTML5 revision 1018. |
225 |
|
226 |
2007-08-17 Wakaba <wakaba@suika.fam.cx> |
227 |
|
228 |
* HTML.pm: Raise new errors if |base| is following |
229 |
URI attributes or hyperlink attributes. |
230 |
|
231 |
2007-08-17 Wakaba <wakaba@suika.fam.cx> |
232 |
|
233 |
* HTML.pm: Support for |noscript| in |head|. Make an |
234 |
error for |noscript| in XML document. |
235 |
|
236 |
2007-08-08 Wakaba <wakaba@suika.fam.cx> |
237 |
|
238 |
* HTML.pm ($HTMLURIsAttrChecker): Syntax of error |type| |
239 |
value are changed for the ease of error message catalog |
240 |
lookup. |
241 |
|
242 |
2007-08-05 Wakaba <wakaba@suika.fam.cx> |
243 |
|
244 |
* Atom.pm: |link|-related checks are added; |type| |
245 |
media type checks are added. |hreflang| now warns |
246 |
as unimplemented. |
247 |
|
248 |
2007-08-05 Wakaba <wakaba@suika.fam.cx> |
249 |
|
250 |
* Atom.pm: Checker for all elements are defined (with |
251 |
a number of "TODO"s). |
252 |
|
253 |
2007-08-05 Wakaba <wakaba@suika.fam.cx> |
254 |
|
255 |
* Atom.pm: New Perl module. |
256 |
|
257 |
2007-08-04 Wakaba <wakaba@suika.fam.cx> |
258 |
|
259 |
* HTML.pm: New Perl module, split from |Whatpm/ContentChecker.pm|. |
260 |
|
261 |
* ChangeLog: New file. |