/[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.184 by wakaba, Tue Mar 11 01:15:38 2008 UTC revision 1.244 by wakaba, Sat May 24 10:56:31 2008 UTC
# Line 1  Line 1 
1    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
2    
3            * ContentType.pm: Support for image/vnd.microsoft.icon (HTML5
4            revision 1676).
5    
6    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
7    
8            * HTML.pm.src: Ignore language part of public identifiers for
9            quriks mode detection (HTML5 revision 1679).
10    
11    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
12    
13            * HTML.pm.src: Reduce the number of errors in truncated doctypes (HTML5
14            revision 1685).
15    
16    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
17    
18            * HTML.pm.src: Support for EOF in new states for tags (HTML5
19            revision 1684).
20    
21    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
22    
23            * HTML.pm.src (_reset_insertion_mode): Make <td>.innerHTML
24            work (HTML5 revision 1690).
25    
26    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
27    
28            * HTML.pm.src (_tree_construction_main): Change handling of
29            end tags in head insertion modes (HTML5 revision 1686).
30            (parse_char_string): Bug fix for non-utf8 character string handlings.
31            (parse_char_stream): |ungetc| does not work well for this context.
32    
33    2008-05-18  Wakaba  <wakaba@suika.fam.cx>
34    
35            * HTML.pm.src (parse_byte_string): Redefined to invoke
36            |parse_byte_stream|.
37            (parse_byte_stream): New method.
38    
39    2008-05-18  Wakaba  <wakaba@suika.fam.cx>
40    
41            * HTML.pm.src (parse_byte_string): Fix the column number reported
42            by encoding layer error reporter.
43    
44    2008-05-17  Wakaba  <wakaba@suika.fam.cx>
45    
46            * HTML.pm.src (parse_byte_string): Use streaming decoder
47            rather than converting the whole byte string and then parsing.
48            Propagate errors in character encoding layer.
49            (get_next_token): Precise error reporting for |bare stago| error.
50    
51    2008-05-17  Wakaba  <wakaba@suika.fam.cx>
52    
53            * HTML.pm.src (parse_char_stream): New method.
54            (parse_char_string): This method is now defined as an invocation
55            of the |parse_char_stream| method.
56    
57    2008-05-17  Wakaba  <wakaba@suika.fam.cx>
58    
59            * HTML.pm.src (parse_byte_string): Report various status
60            of the sniffing as info-level errors.  Support for new
61            decoding framework in parser resestting.
62            (new): Various default error levels were not set.
63    
64    2008-05-17  Wakaba  <wakaba@suika.fam.cx>
65    
66            * HTML.pm.src (parse_byte_string): HTML5 encoding siniffing
67            algorithm, except for the actual sniffing, is implemented
68            with new framework with Message::Charset::Info.
69    
70    2008-05-16  Wakaba  <wakaba@suika.fam.cx>
71    
72            * CacheManifest.pm (_parse): Drop fragment identifiers from
73            URIs in fallback section (HTML5 revision 1596).
74    
75    2008-05-10  Wakaba  <wakaba@suika.fam.cx>
76    
77            * Makefile (Entities.html): URI has changed.
78    
79    2008-05-10  Wakaba  <wakaba@suika.fam.cx>
80    
81            * CacheManifest.pm: Don't replace U+0000 NULL (HTML5 revision
82            1553).
83    
84    2008-05-06  Wakaba  <wakaba@suika.fam.cx>
85    
86            * ContentChecker.pm: Noted that those returned in |table| are
87            no longer table elements, but table objects returned
88            by Whatpm::HTMLTable.
89    
90            * HTMLTable.pm (form_table): Return table element node
91            as |$table->{element}|.
92            (assign_header): Support for the |headers=""| attribute.
93    
94    2008-05-06  Wakaba  <wakaba@suika.fam.cx>
95    
96            * HTMLTable.pm (assign_header): New function; first version
97            with no support for headers="".
98            (form_table): Include table width and height to the returned
99            table object for covenience.  Indexing in column assignement was wrong.
100            Set whether a data cell is empty or not for convenience.
101    
102    2008-05-05  Wakaba  <wakaba@suika.fam.cx>
103    
104            * HTMLTable.pm: Robuster caption support (HTML5 revision 1393).
105    
106    2008-05-05  Wakaba  <wakaba@suika.fam.cx>
107    
108            * HTMLTable.pm: How table model errors are detected is
109            changed (HTML5 revision 1387).
110    
111    2008-05-05  Wakaba  <wakaba@suika.fam.cx>
112    
113            * HTMLTable.pm: The algorithm now moves |tfoot| elements
114            to the end of the table (HTML5 revision 1380).
115    
116    2008-05-05  Wakaba  <wakaba@suika.fam.cx>
117    
118            * HTMLTable.pm: The algorithm is now 0-based indexing, instead
119            of 1-based (HTML5 revision 1376).
120    
121    2008-05-05  Wakaba  <wakaba@suika.fam.cx>
122    
123            * ContentType.pm: "Content-Type: text/plain; charset=UTF-8"
124            and "Content-Encoding" no longer prevent sniffing (HTML5
125            revision 1288).
126    
127    2008-05-05  Wakaba  <wakaba@suika.fam.cx>
128    
129            * ContentType.pm: Skip BOMs n feed or HTML algorithm (HTML5 revision
130            1282).
131    
132    2008-05-03  Wakaba  <wakaba@suika.fam.cx>
133    
134            * ContentChecker.pm: Support for global attributes.
135            Status of XML specs are added.
136    
137    2008-05-03  Wakaba  <wakaba@suika.fam.cx>
138    
139            * ContentChecker.pm (check_element): Support for |template=""|
140            and |ref=""| attribute (referent element type checking).
141    
142    2008-04-29  Wakaba  <wakaba@suika.fam.cx>
143    
144            * CacheManifest.pm (_parse): New same origin definition (HTML5 revision
145            1500) is implemented (except for IDNA part and URI-scheme-specific
146            knowledge).  Line number counting was wrong for LF-only
147            documents.
148    
149    2008-04-13  Wakaba  <wakaba@suika.fam.cx>
150    
151            * HTML.pm.src: Raise an parse error for any disallowed
152            character (HTML5 revision 1263).
153    
154    2008-04-13  Wakaba  <wakaba@suika.fam.cx>
155    
156            * mkentitylist.pl: Support for new HTML5 entity table format (the
157            definition for |AElig;| was missing).
158    
159    2008-04-13  Wakaba  <wakaba@suika.fam.cx>
160    
161            * HTML.pm.src, mkhtmlparser.pl: Support for element/attribute
162            name/namespace fixup (HTML5 revisions 1413, 1415, 1416, and 1417).
163    
164    2008-04-13  Wakaba  <wakaba@suika.fam.cx>
165    
166            * HTML.pm.src: List of element names that close foreign content
167            insertion mode is added (HTML5 revisions 1412 and 1418).
168    
169    2008-04-13  Wakaba  <wakaba@suika.fam.cx>
170    
171            * HTML.pm.src: Support for |mglyph| and |malignmark|
172            elements (HTML5 revision 1410).
173    
174    2008-04-13  Wakaba  <wakaba@suika.fam.cx>
175    
176            * HTML.pm.src: Support for new long MathML entities (HTML5
177            revision 1406).
178    
179    2008-04-13  Wakaba  <wakaba@suika.fam.cx>
180    
181            * HTML.pm.src: CDATA section support for MathML and SVG
182            elements (HTML5 revision 1404 and 1420).
183    
184    2008-04-12  Wakaba  <wakaba@suika.fam.cx>
185    
186            * HTML.pm.src, mkhtmlparser.pl: Support for MathML and SVG
187            elements (HTML5 revision 1404).  Unused !!!macro definitions
188            are removed.
189    
190    2008-04-12  Wakaba  <wakaba@suika.fam.cx>
191    
192            * HTML.pm.src, mkhtmlparser.pl: The way permitted slash errors
193            are raised is changed (HTML5 revision 1404).
194    
195    2008-04-06  Wakaba  <wakaba@suika.fam.cx>
196    
197            * HTML.pm.src: Category sets that are no longer used are removed.
198    
199    2008-04-06  Wakaba  <wakaba@suika.fam.cx>
200    
201            * HTML.pm.src: The ->[1] property of stack entries are now
202            replaced by constants representing element category.
203    
204    2008-04-06  Wakaba  <wakaba@suika.fam.cx>
205    
206            * HTML.pm.src: Don't use local name stored in stack (i.e. ->[1])
207            for error reporting.  (This is a preparation for using constant
208            value for ->[1].)
209    
210    2008-03-22  Wakaba  <wakaba@suika.fam.cx>
211    
212            * RDFXML.pm: Typo fixed.
213    
214    2008-03-22  Wakaba  <wakaba@suika.fam.cx>
215    
216            * ContentChecker.pm: |fact_level| is now treated
217            as same as |must_level|, i.e. level = |m|.
218            (check_element): Make list of URIs in the DOM.
219    
220    2008-03-21  Wakaba  <wakaba@suika.fam.cx>
221    
222            * RDFXML.pm: Language accessor implemented.
223            Local (null-namespace) attribute support.
224    
225    2008-03-21  Wakaba  <wakaba@suika.fam.cx>
226    
227            * RDFXML.pm: Factored out ID checking code.
228    
229    2008-03-21  Wakaba  <wakaba@suika.fam.cx>
230    
231            * RDFXML.pm: TODO items noted.  Validation of ID
232            and URI attributes is implemented.  Warn if unknown
233            value is used in rdf:parseType="" attribute.
234    
235            * URIChecker.pm (check_rdf_uri_reference): New function.
236    
237    2008-03-21  Wakaba  <wakaba@suika.fam.cx>
238    
239            * RDFXML.pm: bnodeid implemented.  Relative references
240            are now resolved.
241    
242    2008-03-21  Wakaba  <wakaba@suika.fam.cx>
243    
244            * ContentChecker.pm: RDF reification implemented.
245    
246            * RDFXML.pm: undef vs false bug fixed.
247            Reification implemented.
248    
249    2008-03-21  Wakaba  <wakaba@suika.fam.cx>
250    
251            * RDFXML.pm: s/id/ID/ for attribute name.
252            The |node| arguments are added for |ontriple| calls.
253            Too many "attribute not allowed" errors were raised.
254    
255            * ContentChecker.pm: Initial experimental support for rdf:RDF
256            element.
257    
258    2008-03-21  Wakaba  <wakaba@suika.fam.cx>
259    
260            * RDFXML.pm: New module.
261    
262    2008-03-20  Wakaba  <wakaba@suika.fam.cx>
263    
264            * HTML.pm.src (set_inner_html): Line/column number
265            code was old one yet.
266    
267    2008-03-20  Wakaba  <wakaba@suika.fam.cx>
268    
269            * HTML.pm.src: Better line/column reporting for "duplicate attribute"
270            errors.  Line/column markings for DOCTYPE, comment, and
271            character tokens are reintroduced; otherwise,
272            error location for "not HTML5" error and errors
273            for implied elements are not attached.
274    
275    2008-03-20  Wakaba  <wakaba@suika.fam.cx>
276    
277            * HTML.pm.src: Set line/column numbers to attributes.
278    
279            * NanoDOM.pm (create_attribute_ns, set_attribute_node_ns): Added.
280            (value): Setter implemented.
281    
282            * mkhtmlparser.pl: Set line/column numbers to Attr nodes.
283    
284    2008-03-20  Wakaba  <wakaba@suika.fam.cx>
285    
286            * HTML.pm.src: Unused line/column markings are removed.
287    
288    2008-03-20  Wakaba  <wakaba@suika.fam.cx>
289    
290            * HTML.pm.src (_get_next_token): Remove |first_start_tag|
291            flag, which is no longer used.
292    
293    2008-03-17  Wakaba  <wakaba@suika.fam.cx>
294    
295            * HTML.pm.src: Set line/column information to element nodes.
296    
297            * mkhtmlparser.pl (!!!create-element, !!!insert-element,
298            and !!!insert-element-t): Set line/column information to
299            element nodes.
300    
301    2008-03-17  Wakaba  <wakaba@suika.fam.cx>
302    
303            * HTML.pm.src (_get_next_token): The first "<" character
304            in "<?", "<>", or "</>" should be the error point.
305    
306    2008-03-16  Wakaba  <wakaba@suika.fam.cx>
307    
308            * HTML.pm.src: Some more fixes on error position reporting.
309    
310    2008-03-16  Wakaba  <wakaba@suika.fam.cx>
311    
312            * HTML.pm.src: Token-level precious error reporting.
313    
314    2008-03-16  Wakaba  <wakaba@suika.fam.cx>
315    
316            * HTML.pm.src: Preparation for more precious error point
317            reporting.
318    
319    2008-03-11  Wakaba  <wakaba@suika.fam.cx>
320    
321            * HTML.pm.src: Error type revised.
322    
323    2008-03-11  Wakaba  <wakaba@suika.fam.cx>
324    
325            * HTML.pm.src: Similar codes are merged together, again.
326    
327  2008-03-11  Wakaba  <wakaba@suika.fam.cx>  2008-03-11  Wakaba  <wakaba@suika.fam.cx>
328    
329          * HTML.pm.src: Similar codes are merged together.          * HTML.pm.src: Similar codes are merged together.

Legend:
Removed from v.1.184  
changed lines
  Added in v.1.244

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24