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

Legend:
Removed from v.1.332  
changed lines
  Added in v.1.363

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24