/[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.267 by wakaba, Sat Aug 2 15:14:23 2008 UTC revision 1.297 by wakaba, Sat Sep 13 10:49:21 2008 UTC
# Line 1  Line 1 
1    2008-09-13  Wakaba  <wakaba@suika.fam.cx>
2    
3            * HTML.pm.src: Finally we get rid of all the inner loops.  Remove
4            entity related tokenizer states in favor of new states
5            implementing the consume character reference algorithm.
6    
7    2008-09-13  Wakaba  <wakaba@suika.fam.cx>
8    
9            * HTML.pm.src: "Consume a character reference" algorithm is
10            now implemented as a tokenizer's state, rather than
11            a method, with minimum changes (more changes will
12            be made, in due course).  "Bogus comment state"'s inner
13            loop gets removed.
14    
15    2008-09-13  Wakaba  <wakaba@suika.fam.cx>
16    
17            * HTML.pm.src: Make |PUBLIC| and |SYSTEM| keyword tokenizing
18            into their own tokenizer states.
19    
20    2008-09-13  Wakaba  <wakaba@suika.fam.cx>
21    
22            * HTML.pm.src: |CDATA_SECTION_STATE| (formally |CDATA_BLOCK_STATE|
23            is split into three states.
24    
25    2008-09-13  Wakaba  <wakaba@suika.fam.cx>
26    
27            * HTML.pm.src: |CLOSE_TAG_OPEN_STATE| is broken into
28            itself and new |CDATA_PCDATA_CLOSE_TAG_STATE| so that
29            no longer does the tokenizer have to push back next input
30            characters in those states.
31    
32    2008-09-13  Wakaba  <wakaba@suika.fam.cx>
33    
34            * HTML.pm.src: |MARKUP_DECLARATION_OPEN_STATE| broken
35            into four states so that no longer does the tokenizer have to push
36            back next input characters in that state.
37    
38    2008-09-11  Wakaba  <wakaba@suika.fam.cx>
39    
40            * HTML.pm.src: Methods now accept additional parameter, $get_wrapper,
41            which can be used to insert some wrapper between the character
42            stream handle and the tokenizer.  (It is currently not supported
43            for |set_inner_html| for |Element|s).
44    
45    2008-09-10  Wakaba  <wakaba@suika.fam.cx>
46    
47            * HTML.pm.src: Ignore punctuations in charset names.
48    
49    2008-09-10  Wakaba  <wakaba@suika.fam.cx>
50    
51            * ContentChecker.pm: Support for charset-layer error levels.
52    
53            * HTML.pm.src: Don't specify |text| argument for the
54            |chardecode:fallback| error, since it is not the encoding
55            being used alternatively.
56    
57    2008-09-06  Wakaba  <wakaba@suika.fam.cx>
58    
59            * HTML.pm.src: Support for |XSLT-compat| (HTML5 revision 2141).
60    
61    2008-08-31  Wakaba  <wakaba@suika.fam.cx>
62    
63            * CacheManifest.pm: Support for extensibility (HTML5 revision 2051).
64    
65    2008-08-31  Wakaba  <wakaba@suika.fam.cx>
66    
67            * HTML.pm.src: Bug fix and sync with the spec with regard
68            to after after frameset insertion mode processing (HTML5
69            revision 1909).  Note that the implementation was wrong
70            per the old spec before the r1909 changes.
71    
72    2008-08-30  Wakaba  <wakaba@suika.fam.cx>
73    
74            * HTMLTable.pm: scope=auto algorithm fix synced with the
75            spec (HTML5 revision 2093).
76            ($process_row): Algorithm step numbers synced with the
77            spec (HTML5 revision 2092).
78    
79    2008-08-30  Wakaba  <wakaba@suika.fam.cx>
80    
81            * HTMLTable.pm: Zs is not what we want; we want White_Space! (HTML5
82            revision 2094).
83    
84    2008-08-30  Wakaba  <wakaba@suika.fam.cx>
85    
86            * ContentType.pm: Support for image/svg+xml (HTML5 revision 2096).
87    
88    2008-08-30  Wakaba  <wakaba@suika.fam.cx>
89    
90            * HTML.pm.src: '"' and "'" at the end of attribute
91            name (after another attribute) now raise parse error (HTML5
92            revision 2123).  Empty unquoted attribute values are no
93            longer allowed (HTML5 revision 2122).
94    
95    2008-08-30  Wakaba  <wakaba@suika.fam.cx>
96    
97            * mkhtmlparser.pl: Support for MathML |definitionURL| attribute (HTML5
98            revision 2130).
99    
100    2008-08-30  Wakaba  <wakaba@suika.fam.cx>
101    
102            * ContentChecker.pm: |xml:lang| attribute value must be same
103            as |lang| attribute value for HTML elements (HTML5 revision 2062
104            and so on).
105    
106    2008-08-30  Wakaba  <wakaba@suika.fam.cx>
107    
108            * ContentChecker.pm: Error level definition for |xml_id_error|
109            was missing.
110    
111            * URIChecker.pm: The end of the URL should be marked as the
112            error location for an empty path error.  The position
113            between the userinfo and the port components should be
114            marked as the error location for an empty host error.
115    
116    2008-08-30  Wakaba  <wakaba@suika.fam.cx>
117    
118            * URIChecker.pm: Set parameters representing where in the
119            value the error occurs for errors.  Report unknown
120            address format error in warning level, since address
121            formats are rarely added.  Path segments starting with "/.."
122            were misinterpreted as a dot-segment.
123    
124    2008-08-30  Wakaba  <wakaba@suika.fam.cx>
125    
126            * URIChecker.pm (check_iri_reference): Requires
127            |Message::DOM::DOMImplementation|.
128    
129    2008-08-29  Wakaba  <wakaba@suika.fam.cx>
130    
131            * IMTChecker.pm: Updated for the new error reporting architecture.
132    
133            * ContentChecker.pm: Error levels for IMTs are added.
134    
135    2008-08-17  Wakaba  <wakaba@suika.fam.cx>
136    
137            * H2H.pm (_shift_token): Support for unquoted HTML attribute
138            values.
139    
140    2008-08-16  Wakaba  <wakaba@suika.fam.cx>
141    
142            * CacheManifest.pm: Support for new style of error
143            reports.
144    
145            * HTML.pm.src: Set line=1, column=1 to the document node.
146    
147    2008-08-16  Wakaba  <wakaba@suika.fam.cx>
148    
149            * ContentChecker.pm, RDFXML.pm: Pass {level} object to language tag
150            and URL checkers.  Support for more error levels for bogus
151            langauge tag and URL "standards".
152    
153            * LangTag.pm, URIChecker.pm: Support for new style error
154            level reporting.
155    
156    2008-08-15  Wakaba  <wakaba@suika.fam.cx>
157    
158            * ContentChecker.pm: Support for RDF/XML error levels.
159    
160            * HTMLTable.pm, RDFXML.pm: Support for new style of error level
161            specifying.  Error types are revised.
162    
163    2008-08-15  Wakaba  <wakaba@suika.fam.cx>
164    
165            * ContentChecker.pm: All error reporting method calls are
166            renewed.
167    
168    2008-08-15  Wakaba  <wakaba@suika.fam.cx>
169    
170            * HTML.pm.src: All error type names and "text" parameters
171            are revised.  Use new style for "level" specification.
172    
173            * mkhtmlparser.pl: Use new style for "level" specification.
174    
175    2008-08-03  Wakaba  <wakaba@suika.fam.cx>
176    
177            * WebIDL.pm (parse_char_string): Simplified error
178            reporting process for broken ignored valuetype definition.
179            (Valuetype idl_text): Support for special "DOMString" name.
180    
181    2008-08-03  Wakaba  <wakaba@suika.fam.cx>
182    
183            * WebIDL.pm ($get_scoped_name): Append "::::" if the last
184            terminal of the ScopedName is "DOMString", such that whether
185            the last part of the scoped name is "DOMString" or "_DOMString"
186            later.  It is necessary to determine whether a |typedef|
187            definition should be ignored or not.
188            (parse_char_string): Unescape the identifier of
189            exception members.
190            ($resolve): Return undef for builtin types and sequence<T>
191            types (we might not have to do this, however...).
192            (check): Support checking for Exceptions, Valuetypes,
193            and Typedefs.
194            ($serialize_type): Support for "DOMString::::" syntax.
195            (Typedef idl_text): Output Type as "DOMString" if it
196            is really "DOMString" (i.e. its internal representation
197            is "::DOMString::").
198    
199    2008-08-03  Wakaba  <wakaba@suika.fam.cx>
200    
201            * WebIDL.pm ($resolve): New code, based on resolve code
202            for constant types in the |check| method.
203            (check): Support for checking of attributes, operations, and
204            arguments.
205            (Attribute/Operation idl_text): Exception names in getraises,
206            setraises, and raises clauses is serizlied by |$serialize_type|
207            code.
208    
209  2008-08-02  Wakaba  <wakaba@suika.fam.cx>  2008-08-02  Wakaba  <wakaba@suika.fam.cx>
210    
211          * WebIDL.pm ($integer): Order of selections are changed to match          * WebIDL.pm ($integer): Order of selections are changed to match

Legend:
Removed from v.1.267  
changed lines
  Added in v.1.297

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24