/[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.336 by wakaba, Sat Oct 4 04:06:32 2008 UTC revision 1.368 by wakaba, Fri Dec 12 05:05:20 2008 UTC
# Line 1  Line 1 
1    2008-12-12  Wakaba  <wakaba@suika.fam.cx>
2    
3            * IMTChecker.pm: Added more definitions for subtypes.
4    
5    2008-12-11  Wakaba  <wakaba@suika.fam.cx>
6    
7            * URIChecker.pm: Some of |pos_end| values were wrong.
8    
9    2008-12-06  Wakaba  <wakaba@suika.fam.cx>
10    
11            * ContentChecker.pm (check_element): Added support for "no
12            referenced datalist" error.
13    
14    2008-12-06  Wakaba  <wakaba@suika.fam.cx>
15    
16            * URIChecker.pm: Bug fix: It did not work unless
17            Message::DOM::DOMImplementation has been |require|d.
18    
19    2008-12-06  Wakaba  <wakaba@suika.fam.cx>
20    
21            * NanoDOM.pm (document_uri): New attribute.
22    
23            * ContentChecker.pm: Don't use methods not implemented by NanoDOM.
24    
25    2008-11-07  Wakaba  <wakaba@suika.fam.cx>
26    
27            * NanoDOM.pm (text_content): Don't create a Text node if the new
28            value is empty.
29    
30    2008-11-06  Wakaba  <wakaba@suika.fam.cx>
31    
32            * SWML/: New directory.
33    
34    2008-10-20  Wakaba  <wakaba@suika.fam.cx>
35    
36            * NanoDOM.pm (specified, all_declarations_processed,
37            manakai_attribute_type): New attributes.
38    
39    2008-10-19  Wakaba  <wakaba@suika.fam.cx>
40    
41            * NanoDOM.pm (Entity->new): Initialize ->child_nodes as an empty
42            array.
43    
44    2008-10-19  Wakaba  <wakaba@suika.fam.cx>
45    
46            * NanoDOM.pm (notation_name): New attribute.
47    
48    2008-10-18  Wakaba  <wakaba@suika.fam.cx>
49    
50            * NanoDOM.pm (public_id, system_id): New attributes.a
51    
52    2008-10-18  Wakaba  <wakaba@suika.fam.cx>
53    
54            * NanoDOM.pm (text_content): Moved to Node from Element.  Setter
55            implemented.
56            (allowed_tokens, default_type, declared_type): Implemented.
57    
58    2008-10-17  Wakaba  <wakaba@suika.fam.cx>
59    
60            * NanoDOM.pm (node_name): New attribute.
61            (ELEMENT_TYPE_DEFINITION_NODE, ATTRIBUTE_DEFINITION_NODE): New
62            constants.
63            (create_element_type_definition_node, create_attribute_definition,
64            create_notation, create_general_entity,
65            get_element_type_definition_node,
66            set_element_type_definition_node, get_general_entity_node,
67            set_general_entity_node, get_notation_node, set_notation_node,
68            get_attribute_definition_node, set_attribute_definition_node): New
69            methods.
70            (element_types, entities, notations, attribute_definitions): New
71            attributes.
72            (DocumentType): Support for child nodes, entities, notations, and
73            element types.
74            (Entity, Notation, ElementTypeDefinition, AttributeDefinition):
75            New classes.
76    
77            * Dumper.pm: Support for general entities, notations, element type
78            definitions, and attribute definitions.
79    
80    2008-10-15  Wakaba  <wakaba@suika.fam.cx>
81    
82            * NanoDOM.pm (create_processing_instruction): New method.
83            (xml_version, xml_encoding, xml_standalone): New attributes.
84            (ProcessingInstruction): New class.
85    
86    2008-10-14  Wakaba  <wakaba@suika.fam.cx>
87    
88            * HTML.pm.src: Handling of end tags in the foreign content
89            insertion mode was partially wrong, because of wrong bit
90            operations.
91    
92    2008-10-14  Wakaba  <wakaba@suika.fam.cx>
93    
94            * NanoDOM.pm (dom_config): New attribute (do nothing), for
95            Whatpm::XML::Parser support.
96    
97    2008-10-14  Wakaba  <wakaba@suika.fam.cx>
98    
99            * Makefile: New rule to make HTML/Tokenizer.pm is added.
100    
101            * HTML.pm.src: Tokenizer part moved to another file.
102    
103    2008-10-13  Wakaba  <wakaba@suika.fam.cx>
104    
105            * HTML.pm.src: Merge |DT_EL| and |DD_EL| as |DTDD_EL|.
106    
107    2008-10-13  Wakaba  <wakaba@suika.fam.cx>
108    
109            * HTML.pm.src: Element category constants redefined.
110            
111    2008-10-13  Wakaba  <wakaba@suika.fam.cx>
112    
113            * HTML.pm.src: Steps for CDATA/RCDATA elements in tree
114            construction stage synced with the spec (HTML5 revisions 2139 and
115            2302).
116    
117    2008-10-07  Wakaba  <wakaba@suika.fam.cx>
118    
119            * ContentChecker.pm: New error level "html5_fact" added, which
120            should be tentatively used until all of requirements are properly
121            specced as RFC 2119 "MUST" in HTML5.
122    
123    2008-10-05  Wakaba  <wakaba@suika.fam.cx>
124    
125            * ContentChecker.pod: Note on internal flags is added.
126    
127    2008-10-05  Wakaba  <wakaba@suika.fam.cx>
128    
129            * HTML.pm.src: An AAA bug fixed.
130    
131    2008-10-04  Wakaba  <wakaba@suika.fam.cx>
132    
133            * HTML.pm.src: If another node is inserted by the parser, don't
134            reuse existing Text node to append a character (HTML5 revision
135            2124).
136    
137    2008-10-04  Wakaba  <wakaba@suika.fam.cx>
138    
139            * HTML.pm.src: Support for <option> and <optgroup> in body (HTML5
140            revisions 1731 and 2128).
141    
142    2008-10-04  Wakaba  <wakaba@suika.fam.cx>
143    
144            * HTML.pm.src: Make <foreignObject> scoping (HTML5 revision 1837).
145            Support for end tags of camelCase SVG elements were broken.  A
146            wrong error type text fixed.
147    
148    2008-10-04  Wakaba  <wakaba@suika.fam.cx>
149    
150            * HTML.pm.src: Drop redundant code (HTML5 revision 1731).
151    
152    2008-10-04  Wakaba  <wakaba@suika.fam.cx>
153    
154            * HTML.pm.src: Support for new definition of |param| and |source|
155            start tag parsing (HTML5 revision 1731).
156    
157    2008-10-04  Wakaba  <wakaba@suika.fam.cx>
158    
159            * HTML.pm.src: <p> steps reimplemented (HTML5 revision 1731).
160    
161    2008-10-04  Wakaba  <wakaba@suika.fam.cx>
162    
163            * HTML.pm.src: <li>, <dt>, and <dd> steps reimplemented (HTML5
164            revisions 1731 and 1831).
165    
166    2008-10-04  Wakaba  <wakaba@suika.fam.cx>
167    
168            * HTML.pm.src: Support for new flow (but not phrasing) elements (HTML5
169            revisions 1731 and 1778).  Support for the </sarcasm> end tag (HTML5
170            revision 1731).
171    
172    2008-10-04  Wakaba  <wakaba@suika.fam.cx>
173    
174            * HTML.pm.src: Support for |command| and |eventsource| elements (HTML5
175            revision 1731).  End tags of |option| and |optgroup| elements are
176            now optional (HTML5 revision 1731).
177    
178  2008-10-04  Wakaba  <wakaba@suika.fam.cx>  2008-10-04  Wakaba  <wakaba@suika.fam.cx>
179    
180          * HTML.pm.src: New "special" elements added to the list (HTML5          * HTML.pm.src: New "special" elements added to the list (HTML5

Legend:
Removed from v.1.336  
changed lines
  Added in v.1.368

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24