/[suikacvs]/messaging/manakai/lib/Message/DOM/ChangeLog
Suika

Diff of /messaging/manakai/lib/Message/DOM/ChangeLog

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.238 by wakaba, Sun Jul 8 09:25:17 2007 UTC revision 1.251 by wakaba, Mon Jul 16 11:58:00 2007 UTC
# Line 1  Line 1 
1    2007-07-16  Wakaba  <wakaba@suika.fam.cx>
2    
3            * DOMElement.pm: Incorrect module was referenced.
4    
5            * DOMImplementation.pm: References to
6            the |Message::Charset::Encode| module has been removed.
7    
8    2007-07-15  Wakaba  <wakaba@suika.fam.cx>
9    
10            * XMLParserTemp.pm: Use |Whatpm::Charset::DecodeHandle|
11            instead of |Message::Charset::Encode|.
12    
13    2007-07-15  Wakaba  <wakaba@suika.fam.cx>
14    
15            * DOMDocument.pm (inner_html): New attribute (beta).
16    
17            * DOMElement.pm (inner_html): New attribute (beta).
18    
19    2007-07-15  Wakaba  <wakaba@suika.fam.cx>
20    
21            * DOMConfiguration.pm: Configuration parameter |create-child-element|
22            implemented.
23    
24            * DOMElement.pm (create_element_ns): Support for Atom
25            subclasses.
26    
27            * DOMImplementation.pm (DOMImplementation): Now
28            implements the |AtomDOMImplementation| interface.
29            ($HasFeature): Features |atom| and |atomthreading| are added.
30    
31            * NodeList.pm (StaticNodeList): Implemented.
32    
33    2007-07-15  Wakaba  <wakaba@suika.fam.cx>
34    
35            * Atom/: New directory.
36    
37    2007-07-15  Wakaba  <wakaba@suika.fam.cx>
38    
39            * TreeWalker.pm, SerialWalker.pm: New Perl modules.
40    
41            * Text.pm (whole_text): Parameter index number has
42            been changed to support new |NodeFilter| Perl binding
43            definition.
44    
45    2007-07-14  Wakaba  <wakaba@suika.fam.cx>
46    
47            * AttributeDefinition.pm, DOMElement.pm, DocumentType.pm,
48            ElementTypeDefinition.pm, Entity.pm, EntityReference.pm,
49            Notation.pm, ProcessingInstruction.pm (AUTOLOAD): Don't croak even if an attempt is made to modify a read-only attribute.
50    
51            * DOMConfiguration.pm (can_set_parameter,
52            set_parameter): Don't allow to set the value
53            to a string other than <http://www.w3.org/TR/REC-xml> (XML 1.0 DTD).
54    
55            * DOMDocument.pm (Message::IF::DocumentTraversal): New interface.
56            (create_tree_walker, manakai_create_serial_walker): References
57            and prototypes are added.
58    
59            * DOMException.pm (NULLPO_ERR): New error type:-).
60    
61            * DOMImplementation.pm ($HasFeature): Feature |Traversal|,
62            version |2.0|, is added.
63    
64    2007-07-14  Wakaba  <wakaba@suika.fam.cx>
65    
66            * CDATASection.pm: Removed (merged with |Text.pm|).
67    
68            * Text.pm (Message::DOM::Text::CDATASection): New.
69    
70            * Comment.pm: Removed (merged with |DOMCharacterData.pm|).
71    
72            * DOMCharacterData.pm (Message::DOM::CharacterData::Comment): New.
73    
74    2007-07-14  Wakaba  <wakaba@suika.fam.cx>
75    
76            * DOMConfiguration.pm: Support for |schema-type|
77            and |http://suika.fam.cx/www/2006/dom-config/xml-id|.
78    
79            * NamedNodeMap (TIEHASH): Were missing.
80    
81    2007-07-14  Wakaba  <wakaba@suika.fam.cx>
82    
83            * AttributeDefinition.pm (node_value): Implemented.
84            (create_attribute_definition): Implemented.
85    
86            * DOMConfiguration.pm (%{}, TIEHASH,
87            get_parameter, set_parameter, can_set_parameter,
88            EXISTS, DELETE, parameter_names, FETCH, STORE,
89            FIRSTKEY, LASTKEY): Implemented.
90    
91            * DOMDocument.pm (____new): Set |error-handler| default.
92            (get_elements_by_tag_name, get_elements_by_tag_name_ns): Implemented.
93    
94            * DOMElement.pm (get_elements_by_tag_name, get_elements_by_tag_name_ns):
95            Implemented.
96    
97            * DOMException.pm: Error types for |DOMConfiguration|
98            are added.
99    
100            * DOMStringList.pm (Message::DOM::DOMStringList::StaticList): New
101            class.
102    
103            * DocumentType.pm (get_element_type_definition_node,
104            get_general_entity_node, get_notation_node,
105            set_element_type_definition_node, set_general_entity_node,
106            set_notation_node, create_document_type_definition): Implemented.
107    
108            * ElementTypeDefinition.pm (get_attribute_definition_node,
109            set_attribute_definition_node, create_element_type_definition):
110            Implemented.
111    
112            * Entity.pm (create_general_entity): Implemented.
113    
114            * Node.pm: Constants in |OperationType| definition
115            group are added.
116            (manakai_language): Implemented.
117    
118            * NodeList.pm (Message::DOM::NodeList::GetElementsList): New
119            class.
120    
121            * Notation.pm (create_notation): Implemented.
122    
123    2007-07-14  Wakaba  <wakaba@suika.fam.cx>
124    
125            * TypeInfo.pm: New Perl module.
126    
127            * Attr.pm: Use |manakai_local_name| rather than |local_name|
128            to avoid HTML5 case normalization.
129            (is_id): Implemented.
130            (manakai_name): New attribute.
131            (schema_type_info): Implemented.
132            (create_attribute_ns): Empty string as namespace URI
133            was not supported.
134    
135            * DOMElement.pm (clone_node): Removed since now it is
136            defined in |Node.pm|.
137            (schema_type_info): Implemented.
138            (manakai_tag_name): New attribute.
139            (get_attribute, get_attribute_node, get_attribute_ns,
140            get_attribute_node_ns, has_attribute, has_attribute_ns,
141            remove_attribute, remove_attribute_ns,
142            remove_attribute_node, set_attribute, set_attribute_ns,
143            set_id_attribute, set_id_attribute_node,
144            set_id_attribute_ns): Implemented.
145            (create_element_ns): Empty string as namespace URI
146            was not supported.
147    
148    2007-07-12  Wakaba  <wakaba@suika.fam.cx>
149    
150            * AttributeDefinition.pm (owner_element_type_definition): Implemented.
151    
152            * DocumentType.pm (create_document_type_definition): Initialize
153            |public_id|, |system_id|, and |internal_subset| attributes
154            by empty strings for compatibility with Web browsers.
155            (create_document_type): Initialize |internal_subset|
156            attribute by an empty string for compatibility with
157            Web browsers.
158    
159            * ElementTypeDefinition.pm, Entity.pm,
160            Notation.pm (owner_document_type_definition): Implemented.
161    
162    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
163    
164            * DOMImplementation.pm ($HasFeature): |fe:XDoctypeDeclaration|
165            feature is added for compatibility with |XMLParserTemp.pm|.
166    
167    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
168    
169            * Attr.pm (value, node_value): Now it is defined
170            as |text_content| itself.
171    
172            * AttributeDefinition.pm, ElementTypeDefinition.pm,
173            Node.pm (AUTOLOAD): Unused block is removed.
174    
175            * CDATASection.pm, DocumentFragment.pm (AUTOLOAD): Removed.  Unused.
176    
177            * DocumentType.pm (internal_subset): Implemented.
178    
179            * Entity.pm (is_externally_declared, input_encoding,
180            xml_version): Implemented.
181    
182            * ProcessingInstruction.pm (target, data): Implemented.
183    
184    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
185    
186            * DOMCharacterData.pm (AUTOLOAD): Removed.
187            (data): Reimplemented.
188            (delete_data, insert_data, replace_data, substring_data): There were
189            a number of bugs.
190    
191            * Text.pm (AUTOLOAD): Removed.  Unused.
192    
193  2007-07-08  Wakaba  <wakaba@suika.fam.cx>  2007-07-08  Wakaba  <wakaba@suika.fam.cx>
194    
195          * StringExtended.pm: New Perl module.          * StringExtended.pm: New Perl module.

Legend:
Removed from v.1.238  
changed lines
  Added in v.1.251

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24