/[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.295 by wakaba, Sat Sep 13 08:21:35 2008 UTC revision 1.372 by wakaba, Thu Jul 2 22:08:36 2009 UTC
# Line 1  Line 1 
1    2009-07-03  Wakaba  <[email protected]>
2    
3            * HTML.pm.src (parse_byte_stream): Don't change to another
4            encoding if the input is UTF-16 (HTML5 revision 3205).
5    
6    2009-06-28  Wakaba  <[email protected]>
7    
8            * HTML.pm.src: |isindex| should no longer generate |p| element
9            node (HTML5 revision 3236).
10    
11    2008-12-12  Wakaba  <[email protected]>
12    
13            * ContentChecker.pm: Introduced new flag |has_autofocus|.  Added
14            support for new |id_type| value of |any|, which means any kind of
15            element is allowed as a referenced element.
16    
17    2008-12-12  Wakaba  <[email protected]>
18    
19            * ContentChecker.pm: Introduced |check_attrs2| method for the ease
20            of defining codes for checking required attribute and as such.
21    
22    2008-12-12  Wakaba  <[email protected]>
23    
24            * IMTChecker.pm: Added more definitions for subtypes.
25    
26    2008-12-11  Wakaba  <[email protected]>
27    
28            * URIChecker.pm: Some of |pos_end| values were wrong.
29    
30    2008-12-06  Wakaba  <[email protected]>
31    
32            * ContentChecker.pm (check_element): Added support for "no
33            referenced datalist" error.
34    
35    2008-12-06  Wakaba  <[email protected]>
36    
37            * URIChecker.pm: Bug fix: It did not work unless
38            Message::DOM::DOMImplementation has been |require|d.
39    
40    2008-12-06  Wakaba  <[email protected]>
41    
42            * NanoDOM.pm (document_uri): New attribute.
43    
44            * ContentChecker.pm: Don't use methods not implemented by NanoDOM.
45    
46    2008-11-07  Wakaba  <[email protected]>
47    
48            * NanoDOM.pm (text_content): Don't create a Text node if the new
49            value is empty.
50    
51    2008-11-06  Wakaba  <[email protected]>
52    
53            * SWML/: New directory.
54    
55    2008-10-20  Wakaba  <[email protected]>
56    
57            * NanoDOM.pm (specified, all_declarations_processed,
58            manakai_attribute_type): New attributes.
59    
60    2008-10-19  Wakaba  <[email protected]>
61    
62            * NanoDOM.pm (Entity->new): Initialize ->child_nodes as an empty
63            array.
64    
65    2008-10-19  Wakaba  <[email protected]>
66    
67            * NanoDOM.pm (notation_name): New attribute.
68    
69    2008-10-18  Wakaba  <[email protected]>
70    
71            * NanoDOM.pm (public_id, system_id): New attributes.a
72    
73    2008-10-18  Wakaba  <[email protected]>
74    
75            * NanoDOM.pm (text_content): Moved to Node from Element.  Setter
76            implemented.
77            (allowed_tokens, default_type, declared_type): Implemented.
78    
79    2008-10-17  Wakaba  <[email protected]>
80    
81            * NanoDOM.pm (node_name): New attribute.
82            (ELEMENT_TYPE_DEFINITION_NODE, ATTRIBUTE_DEFINITION_NODE): New
83            constants.
84            (create_element_type_definition_node, create_attribute_definition,
85            create_notation, create_general_entity,
86            get_element_type_definition_node,
87            set_element_type_definition_node, get_general_entity_node,
88            set_general_entity_node, get_notation_node, set_notation_node,
89            get_attribute_definition_node, set_attribute_definition_node): New
90            methods.
91            (element_types, entities, notations, attribute_definitions): New
92            attributes.
93            (DocumentType): Support for child nodes, entities, notations, and
94            element types.
95            (Entity, Notation, ElementTypeDefinition, AttributeDefinition):
96            New classes.
97    
98            * Dumper.pm: Support for general entities, notations, element type
99            definitions, and attribute definitions.
100    
101    2008-10-15  Wakaba  <[email protected]>
102    
103            * NanoDOM.pm (create_processing_instruction): New method.
104            (xml_version, xml_encoding, xml_standalone): New attributes.
105            (ProcessingInstruction): New class.
106    
107    2008-10-14  Wakaba  <[email protected]>
108    
109            * HTML.pm.src: Handling of end tags in the foreign content
110            insertion mode was partially wrong, because of wrong bit
111            operations.
112    
113    2008-10-14  Wakaba  <[email protected]>
114    
115            * NanoDOM.pm (dom_config): New attribute (do nothing), for
116            Whatpm::XML::Parser support.
117    
118    2008-10-14  Wakaba  <[email protected]>
119    
120            * Makefile: New rule to make HTML/Tokenizer.pm is added.
121    
122            * HTML.pm.src: Tokenizer part moved to another file.
123    
124    2008-10-13  Wakaba  <[email protected]>
125    
126            * HTML.pm.src: Merge |DT_EL| and |DD_EL| as |DTDD_EL|.
127    
128    2008-10-13  Wakaba  <[email protected]>
129    
130            * HTML.pm.src: Element category constants redefined.
131            
132    2008-10-13  Wakaba  <[email protected]>
133    
134            * HTML.pm.src: Steps for CDATA/RCDATA elements in tree
135            construction stage synced with the spec (HTML5 revisions 2139 and
136            2302).
137    
138    2008-10-07  Wakaba  <[email protected]>
139    
140            * ContentChecker.pm: New error level "html5_fact" added, which
141            should be tentatively used until all of requirements are properly
142            specced as RFC 2119 "MUST" in HTML5.
143    
144    2008-10-05  Wakaba  <[email protected]>
145    
146            * ContentChecker.pod: Note on internal flags is added.
147    
148    2008-10-05  Wakaba  <[email protected]>
149    
150            * HTML.pm.src: An AAA bug fixed.
151    
152    2008-10-04  Wakaba  <[email protected]>
153    
154            * HTML.pm.src: If another node is inserted by the parser, don't
155            reuse existing Text node to append a character (HTML5 revision
156            2124).
157    
158    2008-10-04  Wakaba  <[email protected]>
159    
160            * HTML.pm.src: Support for <option> and <optgroup> in body (HTML5
161            revisions 1731 and 2128).
162    
163    2008-10-04  Wakaba  <[email protected]>
164    
165            * HTML.pm.src: Make <foreignObject> scoping (HTML5 revision 1837).
166            Support for end tags of camelCase SVG elements were broken.  A
167            wrong error type text fixed.
168    
169    2008-10-04  Wakaba  <[email protected]>
170    
171            * HTML.pm.src: Drop redundant code (HTML5 revision 1731).
172    
173    2008-10-04  Wakaba  <[email protected]>
174    
175            * HTML.pm.src: Support for new definition of |param| and |source|
176            start tag parsing (HTML5 revision 1731).
177    
178    2008-10-04  Wakaba  <[email protected]>
179    
180            * HTML.pm.src: <p> steps reimplemented (HTML5 revision 1731).
181    
182    2008-10-04  Wakaba  <[email protected]>
183    
184            * HTML.pm.src: <li>, <dt>, and <dd> steps reimplemented (HTML5
185            revisions 1731 and 1831).
186    
187    2008-10-04  Wakaba  <[email protected]>
188    
189            * HTML.pm.src: Support for new flow (but not phrasing) elements (HTML5
190            revisions 1731 and 1778).  Support for the </sarcasm> end tag (HTML5
191            revision 1731).
192    
193    2008-10-04  Wakaba  <[email protected]>
194    
195            * HTML.pm.src: Support for |command| and |eventsource| elements (HTML5
196            revision 1731).  End tags of |option| and |optgroup| elements are
197            now optional (HTML5 revision 1731).
198    
199    2008-10-04  Wakaba  <[email protected]>
200    
201            * HTML.pm.src: New "special" elements added to the list (HTML5
202            revision 1778).  "strile" -> "strike".
203    
204    2008-10-02  Wakaba  <[email protected]>
205    
206            * ContentType.pm (get_sniffed_type): Support for the "better"
207            content sniffing (HTML5 revision 1927).  In a case the official
208            type was not returned when the method is invoked in the list
209            context.
210    
211    2008-09-22  Wakaba  <[email protected]>
212    
213            * HTML.pm.src: Character references for non-space C0 characters,
214            including U+000B VT, DEL character, noncharacter code points, are
215            now converted to the U+FFFD character (cf. HTML5 revision 2138).
216    
217    2008-09-21  Wakaba  <[email protected]>
218    
219            * ContentChecker.pm: |form=""| check support added.
220    
221    2008-09-21  Wakaba  <[email protected]>
222    
223            * ContentChecker.pm: |contextmenu| validness is now checked using
224            |id| and |id_type| properties, and |menu| property is removed.
225    
226    2008-09-21  Wakaba  <[email protected]>
227    
228            * ContentChecker.pm: Prepare for |form| |name| attribute's
229            duplication checking.
230    
231    2008-09-21  Wakaba  <[email protected]>
232    
233            * HTML.pm.src (parse_byte_stream): Support (or non-support) for
234            unsupported charset="" parameter value (HTML5 revision 2131).
235    
236    2008-09-20  Wakaba  <[email protected]>
237    
238            * HTML.pm.src: Reminding places where U+000B is allowed as a space
239            character is fixed (cf. HTML5 revision 1738).
240    
241            * ContentChecker.pm, HTMLTable.pm: U+000B is no longer part of
242            space characters (HTML5 revision 1738).
243    
244    2008-09-20  Wakaba  <[email protected]>
245    
246            * HTML.pm.src: The "anything else" case for the "after after body"
247            insertion mode was not updated to swtich to the "in body"
248            insertion mode.  U+000B is no longer a space character for the
249            purpose of tree construction phase (HTML5 revision 1738).
250    
251    2008-09-20  Wakaba  <[email protected]>
252    
253            * HTML.pm.src: U+000B is no longer a space character (HTML5
254            revision 1738).
255    
256    2008-09-20  Wakaba  <[email protected]>
257    
258            * ContentType.pm: 0x0B is no longer a space character (HTML5
259            revision 1738).
260    
261            * HTML.pm.src: U+000B is no longer a space character for the
262            algorithm for extracting an encoding from a Content-Type (HTML5
263            revision 1738).
264    
265    2008-09-20  Wakaba  <[email protected]>
266    
267            * ContentChecker.pm ($IsInHTMLInteractiveContent): New.
268    
269    2008-09-18  Wakaba  <[email protected]>
270    
271            * LangTag.pm: Add checks for remaining requirements from RFC 4646.
272    
273            * mklangreg.pl: Sort 'Prefix' values by their length, to ease
274            matching.
275    
276    2008-09-18  Wakaba  <[email protected]>
277    
278            * LangTag.pm: Warn for private use language subtags.  Error level
279            typos fixed.  Support for Suppress-Script field.
280    
281            * mklangreg.pl: Support for dumping of nested structure.
282    
283    2008-09-18  Wakaba  <[email protected]>
284    
285            * LangTag.pm (check_rfc4646_langtag): Check if a tag is in the
286            recommended case as per RFC 4646.
287    
288    2008-09-18  Wakaba  <[email protected]>
289    
290            * LangTag.pm (check_rfc4646_langtag): New method.
291    
292    2008-09-18  Wakaba  <[email protected]>
293    
294            * mklangreg.pl: New script.
295    
296            * Makefile: Updated for creation of the module for language subtag
297            registry.
298            
299    2008-09-16  Wakaba  <[email protected]>
300    
301            * Makefile: WebIDL.html added.
302    
303            * WebIDL.pod: New documentation.
304    
305    2008-09-16  Wakaba  <[email protected]>
306    
307            * WebIDL.pm: Checker's error types are redefined.
308    
309    2008-09-16  Wakaba  <[email protected]>
310    
311            * WebIDL.pm: Parser's error types are redefined.  Some forward
312            compatible parsing bugs are fixed.  Some unreachable codes are
313            commented out.
314    
315    2008-09-16  Wakaba  <[email protected]>
316    
317            * WebIDL.pm: Support for the reminding extended attributes are
318            added.  It does not satisfy the definition that a forward
319            interface declaration has an extended attribute.  It seems that
320            unless explicitly allowed multiple extended attributes with the
321            same name is not allowed, though it is not explicitly mentioned in
322            the spec.
323    
324    2008-09-16  Wakaba  <[email protected]>
325    
326            * WebIDL.pm: Unescapes extended attribute names and extended
327            attribute identifiers.  Preserve whether an extended attribute has
328            an argument list of not.  Support for extended attributes:
329            Constructor, ExceptionConsts, IndexGetter, IndexSetter,
330            NameGetter, NameSetter, and Null.
331            (has_argument_list): New attribute.
332            (idl_text): Stringifies argument lists, if any, even if it is
333            empty.
334    
335    2008-09-15  Wakaba  <[email protected]>
336    
337            * HTML.pm.src: New state |PCDATA_STATE|.  Use an empty string for
338            |{s_kwd}| in DATA_STATE as default.
339    
340    2008-09-15  Wakaba  <[email protected]>
341    
342            * HTML.pm.src, mkhtmlparser.pl: Replace |{prev_char}|
343            by |{s_kwd}| in DATA_STATE.
344    
345    2008-09-15  Wakaba  <[email protected]>
346    
347            * HTML.pm.src: Shorten keys.
348    
349    2008-09-15  Wakaba  <[email protected]>
350    
351            * HTML.pm.src: Remove checking for control character, surrogate
352            pair, or noncharacter code points and non-Unicode code
353            points (they should be handled by Whatpm::Charset::UnicodeChecker).
354            (parse_char_stream): Support for the |$get_wrapper| argument and
355            character stream error handlers.
356    
357    2008-09-15  Wakaba  <[email protected]>
358    
359            * ContentChecker.pm: Don't call |loda_ns_module|
360            for null-namespace elements/attributes.
361    
362            * HTML.pm.src: Fact out $disallowed_control_chars
363            as a hash.
364    
365    2008-09-14  Wakaba  <[email protected]>
366    
367            * HTML.pm.src: Regexp typo fixed.  |{prev_char}|
368            and |{next_char}| initializations are moved to initialization
369            method.  |{read_until}| now supports buffering.  Sync |set_inner_html|
370            with |parse_char_stream|.
371    
372    2008-09-14  Wakaba  <[email protected]>
373    
374            * HTML.pm.src (parse_char_stream): Make |set_next_char|
375            invoke |manakai_read_until|, not only |read|, where
376            possible, to decrease the number of |read| method calls.
377    
378            * mkhtmlparser.pl: Related changes to the aforementioned
379            modification.
380    
381    2008-09-14  Wakaba  <[email protected]>
382    
383            * HTML.pm.src: Use |read| instead of |getc|.  |set_inner_html|
384            would report character error from now.
385    
386    2008-09-14  Wakaba  <[email protected]>
387    
388            * HTML.pm.src: White-space-leaded non-white-space character
389            tokens in "before head insertion mode" was not
390            correctly handled.
391            (set_inner_html): Reimplemented using CharString decodehandle
392            class.  Support for $get_wrapper argument.  Support
393            for |{read_until}| feature.
394    
395    2008-09-14  Wakaba  <[email protected]>
396    
397            * HTML.pm.src: Make a "bare ero" error for unknown
398            entities point the "&" character.
399    
400    2008-09-14  Wakaba  <[email protected]>
401    
402            * HTML.pm.src: It turns out that U+FFFD don't have to
403            be added to the list of excluded characters.
404    
405    2008-09-14  Wakaba  <[email protected]>
406    
407            * HTML.pm.src ($char_onerror): Have character decoder's |line|
408            and |column| a higher priority than the one set by the
409            tokenizer's input handler.
410            ($self->{read_until}): Exclude U+FFFD (but this might
411            not be necessary, since now we do line/column fixup in
412            the character decode handle).
413    
414    2008-09-14  Wakaba  <[email protected]>
415    
416            * HTML.pm.src: Use |{read_until}| where possible.
417    
418    2008-09-14  Wakaba  <[email protected]>
419    
420            * HTML.pm.src: Change |{getc_until}| to |{read_until}|
421            and |manakai_getc_until| to |manakai_read_until| to
422            reduce the number of string copies.
423    
424    2008-09-14  Wakaba  <[email protected]>
425    
426            * HTML.pm.src (parse_char_string): Use newly created
427            |Whatpm::Charset::DecodeHandle::CharString| instead of Perl's
428            standard feature to |open| a string as a filehandle,
429            since Perl's string filehandle seems not supporting |ungetc|
430            method correctly.
431            (parse_char_stream): Define |{getc_until}| method.
432            (DATA_STATE): Experimental support for |getc_until| feature.
433    
434    2008-09-13  Wakaba  <[email protected]>
435    
436            * HTML.pm.src: Check points added to newly added branches.
437    
438    2008-09-13  Wakaba  <[email protected]>
439    
440            * HTML.pm.src: Remove |{char}|, which is no longer used.
441            Remove |{entity_in_attr}| and |{last_attribute_value_state}|
442            and replaced by |{prev_state}|.
443    
444            * mkhtmlparser.pl: Remove |{char}| feature.
445            Remove |!!!back-next-input-character;| macro.
446    
447    2008-09-13  Wakaba  <[email protected]>
448    
449            * HTML.pm.src: Finally we get rid of all the inner loops.  Remove
450            entity related tokenizer states in favor of new states
451            implementing the consume character reference algorithm.
452    
453    2008-09-13  Wakaba  <[email protected]>
454    
455            * HTML.pm.src: "Consume a character reference" algorithm is
456            now implemented as a tokenizer's state, rather than
457            a method, with minimum changes (more changes will
458            be made, in due course).  "Bogus comment state"'s inner
459            loop gets removed.
460    
461  2008-09-13  Wakaba  <[email protected]>  2008-09-13  Wakaba  <[email protected]>
462    
463          * HTML.pm: Make |PUBLIC| and |SYSTEM| keyword tokenizing          * HTML.pm.src: Make |PUBLIC| and |SYSTEM| keyword tokenizing
464          into their own tokenizer states.          into their own tokenizer states.
465    
466  2008-09-13  Wakaba  <[email protected]>  2008-09-13  Wakaba  <[email protected]>

Legend:
Removed from v.1.295  
changed lines
  Added in v.1.372

[email protected]
ViewVC Help
Powered by ViewVC 1.1.24