/[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.223 by wakaba, Sun Jun 17 14:15:38 2007 UTC revision 1.246 by wakaba, Sat Jul 14 10:28:52 2007 UTC
# Line 1  Line 1 
1    2007-07-14  Wakaba  <wakaba@suika.fam.cx>
2    
3            * CDATASection.pm: Removed (merged with |Text.pm|).
4    
5            * Text.pm (Message::DOM::Text::CDATASection): New.
6    
7            * Comment.pm: Removed (merged with |DOMCharacterData.pm|).
8    
9            * DOMCharacterData.pm (Message::DOM::CharacterData::Comment): New.
10    
11    2007-07-14  Wakaba  <wakaba@suika.fam.cx>
12    
13            * DOMConfiguration.pm: Support for |schema-type|
14            and |http://suika.fam.cx/www/2006/dom-config/xml-id|.
15    
16            * NamedNodeMap (TIEHASH): Were missing.
17    
18    2007-07-14  Wakaba  <wakaba@suika.fam.cx>
19    
20            * AttributeDefinition.pm (node_value): Implemented.
21            (create_attribute_definition): Implemented.
22    
23            * DOMConfiguration.pm (%{}, TIEHASH,
24            get_parameter, set_parameter, can_set_parameter,
25            EXISTS, DELETE, parameter_names, FETCH, STORE,
26            FIRSTKEY, LASTKEY): Implemented.
27    
28            * DOMDocument.pm (____new): Set |error-handler| default.
29            (get_elements_by_tag_name, get_elements_by_tag_name_ns): Implemented.
30    
31            * DOMElement.pm (get_elements_by_tag_name, get_elements_by_tag_name_ns):
32            Implemented.
33    
34            * DOMException.pm: Error types for |DOMConfiguration|
35            are added.
36    
37            * DOMStringList.pm (Message::DOM::DOMStringList::StaticList): New
38            class.
39    
40            * DocumentType.pm (get_element_type_definition_node,
41            get_general_entity_node, get_notation_node,
42            set_element_type_definition_node, set_general_entity_node,
43            set_notation_node, create_document_type_definition): Implemented.
44    
45            * ElementTypeDefinition.pm (get_attribute_definition_node,
46            set_attribute_definition_node, create_element_type_definition):
47            Implemented.
48    
49            * Entity.pm (create_general_entity): Implemented.
50    
51            * Node.pm: Constants in |OperationType| definition
52            group are added.
53            (manakai_language): Implemented.
54    
55            * NodeList.pm (Message::DOM::NodeList::GetElementsList): New
56            class.
57    
58            * Notation.pm (create_notation): Implemented.
59    
60    2007-07-14  Wakaba  <wakaba@suika.fam.cx>
61    
62            * TypeInfo.pm: New Perl module.
63    
64            * Attr.pm: Use |manakai_local_name| rather than |local_name|
65            to avoid HTML5 case normalization.
66            (is_id): Implemented.
67            (manakai_name): New attribute.
68            (schema_type_info): Implemented.
69            (create_attribute_ns): Empty string as namespace URI
70            was not supported.
71    
72            * DOMElement.pm (clone_node): Removed since now it is
73            defined in |Node.pm|.
74            (schema_type_info): Implemented.
75            (manakai_tag_name): New attribute.
76            (get_attribute, get_attribute_node, get_attribute_ns,
77            get_attribute_node_ns, has_attribute, has_attribute_ns,
78            remove_attribute, remove_attribute_ns,
79            remove_attribute_node, set_attribute, set_attribute_ns,
80            set_id_attribute, set_id_attribute_node,
81            set_id_attribute_ns): Implemented.
82            (create_element_ns): Empty string as namespace URI
83            was not supported.
84    
85    2007-07-12  Wakaba  <wakaba@suika.fam.cx>
86    
87            * AttributeDefinition.pm (owner_element_type_definition): Implemented.
88    
89            * DocumentType.pm (create_document_type_definition): Initialize
90            |public_id|, |system_id|, and |internal_subset| attributes
91            by empty strings for compatibility with Web browsers.
92            (create_document_type): Initialize |internal_subset|
93            attribute by an empty string for compatibility with
94            Web browsers.
95    
96            * ElementTypeDefinition.pm, Entity.pm,
97            Notation.pm (owner_document_type_definition): Implemented.
98    
99    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
100    
101            * DOMImplementation.pm ($HasFeature): |fe:XDoctypeDeclaration|
102            feature is added for compatibility with |XMLParserTemp.pm|.
103    
104    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
105    
106            * Attr.pm (value, node_value): Now it is defined
107            as |text_content| itself.
108    
109            * AttributeDefinition.pm, ElementTypeDefinition.pm,
110            Node.pm (AUTOLOAD): Unused block is removed.
111    
112            * CDATASection.pm, DocumentFragment.pm (AUTOLOAD): Removed.  Unused.
113    
114            * DocumentType.pm (internal_subset): Implemented.
115    
116            * Entity.pm (is_externally_declared, input_encoding,
117            xml_version): Implemented.
118    
119            * ProcessingInstruction.pm (target, data): Implemented.
120    
121    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
122    
123            * DOMCharacterData.pm (AUTOLOAD): Removed.
124            (data): Reimplemented.
125            (delete_data, insert_data, replace_data, substring_data): There were
126            a number of bugs.
127    
128            * Text.pm (AUTOLOAD): Removed.  Unused.
129    
130    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
131    
132            * StringExtended.pm: New Perl module.
133    
134            * DOMCharacterData.pm (length, append_data, delete_data,
135            insert_data, replace_data, substring_data): Implemented.
136    
137            * DOMException.pm (INDEX_SIZE_ERR): Implemented.
138    
139            * Text.pm (is_element_content_whitespace, whole_text,
140            split_text): Implemented.
141    
142    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
143    
144            * DOMElement.pm (attributes): Implemented.
145    
146            * DOMException.pm (INUSE_DEFINITION_ERR): New error type.
147    
148            * DocumentType.pm (entities, general_entities,
149            notations, element_types): Implemented.
150    
151            * ElementTypeDefinition.pm (attribute_definitions): Implemented.
152    
153            * NamedNodeMap.pm: New Perl module.
154    
155    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
156    
157            * Attr.pm, AttributeDefinition.pm, DOMCharacterData.pm,
158            DOMDocument.pm, DocumentType.pm, ElementTypeDefinition.pm,
159            Node.pm, Notation.pm, ProcessingInstruction.pm (append_child,
160            insert_before, replace_child): Implemented.
161    
162            * DOMException.pm (HIERARCHY_REQUEST_ERR, NOT_FOUND_ERR): Implemented.
163    
164            * Node.pm (remove_child): Implemented.
165    
166    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
167    
168            * Node.pm (==, is_equal_node): Implemented.
169            (is_same_node): Implemented.
170            (get_feature, get_user_data, set_user_data): Implemented.
171            (is_supported): Implemented.
172            
173    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
174    
175            * DOMDocument.pm (get_element_by_id): Implemented.
176            (create_document): Implemented.
177    
178            * DOMException.pm (EXTERNAL_OBJECT_ERR, INUSE_DOCTYPE_ERR): New
179            errors.
180            (QNAME_NULLNS_ERR): New errors.
181    
182            * DocumenType.pm (create_document_type): Implemented.
183    
184    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
185    
186            * CDATASection.pm (is_element_content_whitespace): New.
187    
188            * DOMElement.pm (has_attribute): Alpha version.
189            (create_element, create_element_ns): Implemented.
190    
191            * DocumentType.pm (get_general_entity_node): Alpha version.
192    
193            * EntityReference.pm (create_entity_reference): Implemented.
194    
195            * ProcessingInstruction.pm (create_processing_instruction): Implemented.
196    
197    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
198    
199            * Attr.pm (create_attribute, create_attribute_ns): Implemented.
200    
201            * DOMDocument.pm: Load character classes from |Char::Class::XML|.
202            (compat_mode): Check |defined| not to be warned as "uninitialized"
203            when |{manakai_compat_mode}| is |undef|.
204    
205            * DOMException.pm (INVALID_CHARACTER_ERR, NAMESPACE_ERR): Added.
206    
207            * DOMImplementationRegistry.pm, DOMImplementationSource.pm:
208            Statements to set |$Error::Depth| are removed since they
209            are result in "uninitialized" warnings unless
210            the |Message::DOM::DOMException| module is loaded earlier.
211            Usually methods invoked in these methods does not
212            raise any exception so that it makes no difference.
213    
214    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
215    
216            * DOMDocument.pm (adopt_node): Implemented.
217            (doctype): Implemented.
218    
219            * DOMElement.pm (remove_attribute_node): Alpha version.
220    
221            * DOMException.pm (ADOPT_NODE_TYPE_NOT_SUPPORTED_ERR): New
222            error type.
223    
224            * Node.pm (set_user_data): Implemented.
225    
226    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
227    
228            * DOMImplementation.pm (new): New method name for |____new|.
229            It will be defined in the DOM Perl Binding specification
230            as part of |DOMImplementation| interface.
231            ($HasFeature): Defined for features support.
232            (has_feature, get_feature): Implemented.
233    
234            * DOMStringList.pm: Don't load the |Message::DOM::DOMException|
235            module unless necessary.
236            (___report_error): Removed since it is not used in fact.
237    
238            * DOMImplementationList.pm, DOMImplementationSource.pm,
239            DOMImplementationRegistry.pm: New modules.
240    
241    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
242    
243            * AttributeDefinition.pm (allowed_tokens): Implemented.
244    
245            * DOMStringList.pm: New Perl module.
246    
247    2007-06-26  Wakaba  <wakaba@suika.fam.cx>
248    
249            * DOMElement.pm (clone_node): Alpha version.  It did not work
250            at all.
251    
252    2007-06-24  Wakaba  <wakaba@suika.fam.cx>
253    
254            * ProcessingInstruction.pm (data): Now it is a read-write attribute.
255    
256    2007-06-23  Wakaba  <wakaba@suika.fam.cx>
257    
258            * DOMDocument.pm (compat_mode, manakai_compat_mode): Implemented.
259            (manakai_is_html): Revised.
260            (Document): Now it implements the |HTMLDocument| interface.
261            (adopt_node): Alpha version.
262    
263            * AttributeDefinition.pm (allowed_tokens): |allowed_tokens|,
264            not |allowed_token|!
265    
266            * ElementTypeDefinition.pm (attribute_definitions): Don't
267            return an |undef| even if its |attribute_definitions|
268            list is not created.
269    
270    2007-06-21  Wakaba  <wakaba@suika.fam.cx>
271    
272            * Comment.pm (node_type): Node type was incorrect!
273    
274            * DOMConfiguration.pm (get_parameter): Alpha.
275    
276            * DOMImplementation.pm (create_mc_decode_handler,
277            create_charset_name_from_uri, create_uri_from_charset_name):
278            New autoload configuration.  Note that the Message::Charset::Encode
279            module is subject to change.
280    
281            * XMLParserTemp.pm: Now it can be used with new version
282            of DOM implementation.  Current plan is to replace it by
283            an XML5 parser someday.
284    
285    2007-06-21  Wakaba  <wakaba@suika.fam.cx>
286    
287            * DOMLocator.pm: New module.
288    
289            * DOMError.pm: New module.
290    
291    2007-06-20  Wakaba  <wakaba@suika.fam.cx>
292    
293            * Node.pm (manakai_expanded_uri, manakai_parent_element,
294            clone_node, compare_document_position, has_attributes,
295            has_child_nodes, is_default_namespace, lookup_namespace_uri,
296            lookup_prefix, normalize): Implemented.
297    
298            * DOMElement.pm (remove_attribute, set_attribute): Alpha version.
299    
300            * DOMException.pm (CLONE_NODE_TYPE_NOT_SUPPORTED_ERR): New error.
301    
302  2007-06-17  Wakaba  <wakaba@suika.fam.cx>  2007-06-17  Wakaba  <wakaba@suika.fam.cx>
303    
304          * AttributeDefinition.pm (____new): Set an empty list          * AttributeDefinition.pm (____new): Set an empty list

Legend:
Removed from v.1.223  
changed lines
  Added in v.1.246

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24