/[suikacvs]/markup/html/whatpm/Whatpm/ContentChecker/ChangeLog
Suika

Diff of /markup/html/whatpm/Whatpm/ContentChecker/ChangeLog

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.132 by wakaba, Sat Sep 20 02:19:49 2008 UTC revision 1.181 by wakaba, Sun Jul 26 06:32:13 2009 UTC
# Line 1  Line 1 
1    2009-07-26  Wakaba  <wakaba@suika.fam.cx>
2    
3            * HTML.pm: Disallow |figure|-grandchild |caption| element when
4            |table| is the only child of |figure| element (HTML5 revision
5            2863).
6    
7    2009-07-25  Wakaba  <wakaba@suika.fam.cx>
8    
9            * HTML.pm: The |eventsource| element and the |onmessage| attribute
10            have been dropped (HTML5 revision 2870).
11    
12    2009-07-25  Wakaba  <wakaba@suika.fam.cx>
13    
14            * HTML.pm: Added support for |textarea| element's |placeholder|
15            attribute (HTML5 revision 2921).
16    
17    2009-07-25  Wakaba  <wakaba@suika.fam.cx>
18    
19            * HTML.pm: Implemented dimenstion attributes (|width| and
20            |height|; cf. HTML5 revision 2943).
21    
22    2009-07-06  Wakaba  <wakaba@suika.fam.cx>
23    
24            * HTML.pm: Disallow |header| in |footer| or |address| (HTML5
25            revision 3051).
26    
27    2009-07-05  Wakaba  <wakaba@suika.fam.cx>
28    
29            * HTML.pm: Allow |accesskey| on all elements (HTML5 revision
30            3065).
31    
32    2009-07-05  Wakaba  <wakaba@suika.fam.cx>
33    
34            * HTML.pm: Disallow |default| attribute of the |command| element
35            for now (HTML5 revision 3067).
36    
37    2009-07-05  Wakaba  <wakaba@suika.fam.cx>
38    
39            * HTML.pm: Implemented |pubdate| attribute on the |article|
40            element (HTML5 revision 3116).
41    
42    2009-07-03  Wakaba  <wakaba@suika.fam.cx>
43    
44            * HTML.pm: |datagrid| now allows any flow content (HTML5 revision
45            3164).
46    
47    2009-06-28  Wakaba  <wakaba@suika.fam.cx>
48    
49            * HTML.pm: |rp| now takes normali phrasing content (HTML5 revision
50            3217).
51    
52    2009-06-28  Wakaba  <wakaba@suika.fam.cx>
53    
54            * HTML.pm: |ondataunavailable| has been removed (HTML5 revision
55            3252).
56    
57    2009-06-28  Wakaba  <wakaba@suika.fam.cx>
58    
59            * HTML.pm: Block-level contents in |figure|'s |legend| and
60            |caption| are now allowed (HTML5 revision 3329).
61    
62    2008-12-15  Wakaba  <wakaba@suika.fam.cx>
63    
64            * HTML.pm ($HTMLDatetimeAttrChecker): Removed.
65            ($GetDateTimeAttrChecker): Added.
66            ($GetHTMLFloatingPointNumberAttrChecker): Set |number_value| for
67            later use.
68            (ins/@datetime, del/@datetime): Changed to use newer definitin of
69            "global date and time string".
70            (input's date- and time-related, and type=number and type=range
71            control types): Implemented value="", min="", and max="".
72    
73    2008-12-13  Wakaba  <wakaba@suika.fam.cx>
74    
75            * HTML.pm: Implemented <object form> and <legend form>.
76    
77    2008-12-13  Wakaba  <wakaba@suika.fam.cx>
78    
79            * HTML.pm: Updated definitions for attributes for form submission
80            on |form| and submit buttons (action="", method="", enctype="",
81            target="", and novalidate="").
82    
83    2008-12-12  Wakaba  <wakaba@suika.fam.cx>
84    
85            * HTML.pm: Added checking for the uniqueness of |autofocus=""|
86            attribute.  Implemented |name=""| attribute for form controls.
87            Added U+000C into character class of space characters (it should
88            have been, but was not in some of regular expressions).  Updated
89            definitions for |output| elements.
90            
91    2008-12-12  Wakaba  <wakaba@suika.fam.cx>
92    
93            * HTML.pm: Updated definitions for |datalist|, |optgroup|,
94            |option|, and |textarea| elements.
95    
96    2008-12-12  Wakaba  <wakaba@suika.fam.cx>
97    
98            * HTML.pm: Updated definitions for |select|.
99    
100    2008-12-12  Wakaba  <wakaba@suika.fam.cx>
101    
102            * HTML.pm: Updated definitions for |button|.
103    
104    2008-12-12  Wakaba  <wakaba@suika.fam.cx>
105    
106            * HTML.pm: Implemented <input accept> and <form accept>.  Raise a
107            SHOULD-level error if @pattern but no @title.
108    
109    2008-12-11  Wakaba  <wakaba@suika.fam.cx>
110    
111            * HTML.pm: Added support for |pattern| attributes.
112    
113    2008-12-06  Wakaba  <wakaba@suika.fam.cx>
114    
115            * HTML.pm: Implemented <input type=file multiple> and <input
116            placeholder>.
117    
118    2008-12-06  Wakaba  <wakaba@suika.fam.cx>
119    
120            * HTML.pm: Implemented <input list>.
121    
122    2008-12-06  Wakaba  <wakaba@suika.fam.cx>
123    
124            * HTML.pm: Implemented <input type=color>.
125    
126    2008-12-06  Wakaba  <wakaba@suika.fam.cx>
127    
128            * HTML.pm: Implemented <input multiple>, <input type=search>.
129            Implemented <input value> validation for |type|s |text|, |search|,
130            |email|, |url|, and |password|.
131    
132    2008-12-06  Wakaba  <wakaba@suika.fam.cx>
133    
134            * HTML.pm: Use |Message::URL| for relative URL resolution.  Don't
135            use attributes not supported by NanoDOM.
136    
137    2008-10-27  Wakaba  <wakaba@suika.fam.cx>
138    
139            * HTML.pm: HTML5 spec status updated, except for
140            datatemplate-related features, once again.  Status for RDFa and
141            XHTML Basic 1.1 updated.
142    
143    2008-10-27  Wakaba  <wakaba@suika.fam.cx>
144    
145            * HTML.pm: HTML5 spec status updated, except for
146            datatemplate-related features.
147    
148    2008-10-07  Wakaba  <wakaba@suika.fam.cx>
149    
150            * HTML.pm: Quoted-strings in media type specifications were not
151            properly decoded.  Fixed support for <li value> with non-<ol>
152            parent (or with no parent).
153    
154    2008-10-07  Wakaba  <wakaba@suika.fam.cx>
155    
156            * HTML.pm: <input usemap> support.
157    
158    2008-10-07  Wakaba  <wakaba@suika.fam.cx>
159    
160            * HTML.pm: Mark <input inputmode> as dropped.  <input accesskey>
161            support fixed.  <input align> support.  Tentative support for
162            <input inputmode>.  Support for <input replace>.  Status of
163            <button template> fixed.
164    
165    2008-10-06  Wakaba  <wakaba@suika.fam.cx>
166    
167            * HTML.pm: Place checkers for obsolete attributes appropriately.
168    
169    2008-10-06  Wakaba  <wakaba@suika.fam.cx>
170    
171            * HTML.pm: <input step> implemented.
172    
173    2008-10-06  Wakaba  <wakaba@suika.fam.cx>
174    
175            * HTML.pm: The checker code for the Password state merged with the
176            code for the Text state.  The |maxlength| attribute checker
177            implemented.  The |size| attribute whose value is zero is not
178            allowed.
179    
180    2008-10-06  Wakaba  <wakaba@suika.fam.cx>
181    
182            * HTML.pm: Support for |required| attribute of the |input|
183            element.
184    
185    2008-10-06  Wakaba  <wakaba@suika.fam.cx>
186    
187            * HTML.pm: Don't use |get_attribute|, for compatibility with
188            NanoDOM.  Support for |readonly|, |autocomplete|, and |size|
189            attributes of the |input| element.
190    
191    2008-10-06  Wakaba  <wakaba@suika.fam.cx>
192    
193            * HTML.pm: Checks of attribute applicablity for remaining <input
194            type> states are implemented.  Some <input type>-dependent
195            attribute checkers implemented.
196    
197    2008-10-06  Wakaba  <wakaba@suika.fam.cx>
198    
199            * HTML.pm: <input type=text>, <input type=email>, <input
200            type=url>, <input type=password>, and <input type=datetime>
201            checkes are implemented.
202    
203    2008-10-06  Wakaba  <wakaba@suika.fam.cx>
204    
205            * HTML.pm: <input type=hidden> checkes implemented.
206    
207    2008-10-06  Wakaba  <wakaba@suika.fam.cx>
208    
209            * HTML.pm: <input type> definition updated according to HTML5
210            definition.  Prepares for tests against <input type> states.
211    
212    2008-10-06  Wakaba  <wakaba@suika.fam.cx>
213    
214            * HTML.pm: |input|'s |check_attrs| method is expanded to support
215            varying requirements for various states of the element.
216    
217    2008-10-05  Wakaba  <wakaba@suika.fam.cx>
218    
219            * HTML.pm: <label> content conformance checking implemented.
220    
221    2008-09-22  Wakaba  <wakaba@suika.fam.cx>
222    
223            * HTML.pm: Support for |for=""| validation.
224    
225    2008-09-22  Wakaba  <wakaba@suika.fam.cx>
226    
227            * HTML.pm: Support for |area| |alt=""| validation (HTML5
228            revision 1932).
229    
230    2008-09-21  Wakaba  <wakaba@suika.fam.cx>
231    
232            * HTML.pm: Support for |form=""| attributes.
233    
234    2008-09-21  Wakaba  <wakaba@suika.fam.cx>
235    
236            * HTML.pm: |id| attribute checkers for the |menu| and |map|
237            elements are removed; the |id| attribute of those elements is now
238            checked by the global |id| attribute.
239    
240    2008-09-21  Wakaba  <wakaba@suika.fam.cx>
241    
242            * HTML.pm: Support for |fieldset| |legend|.
243    
244    2008-09-21  Wakaba  <wakaba@suika.fam.cx>
245    
246            * HTML.pm: |form| element's |name| attribute is implemented.
247    
248    2008-09-20  Wakaba  <wakaba@suika.fam.cx>
249    
250            * HTML.pm: U+000B is no longer part of space characters (HTML5
251            revision 1738).
252    
253    2008-09-20  Wakaba  <wakaba@suika.fam.cx>
254    
255            * HTML.pm, Atom.pm: Interactrive content implementation synced
256            with the spec (HTML5 revision 2018).
257    
258  2008-09-20  Wakaba  <wakaba@suika.fam.cx>  2008-09-20  Wakaba  <wakaba@suika.fam.cx>
259    
260          * HTML.pm ($HTMLCharsetChecker): Support for ASCII-compatibility          * HTML.pm ($HTMLCharsetChecker): Support for ASCII-compatibility

Legend:
Removed from v.1.132  
changed lines
  Added in v.1.181

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24