/[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.220 by wakaba, Sat Jun 16 08:49:00 2007 UTC revision 1.235 by wakaba, Sat Jul 7 15:05:01 2007 UTC
# Line 1  Line 1 
1    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
2    
3            * Node.pm (==, is_equal_node): Implemented.
4            (is_same_node): Implemented.
5            (get_feature, get_user_data, set_user_data): Implemented.
6            (is_supported): Implemented.
7            
8    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
9    
10            * DOMDocument.pm (get_element_by_id): Implemented.
11            (create_document): Implemented.
12    
13            * DOMException.pm (EXTERNAL_OBJECT_ERR, INUSE_DOCTYPE_ERR): New
14            errors.
15            (QNAME_NULLNS_ERR): New errors.
16    
17            * DocumenType.pm (create_document_type): Implemented.
18    
19    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
20    
21            * CDATASection.pm (is_element_content_whitespace): New.
22    
23            * DOMElement.pm (has_attribute): Alpha version.
24            (create_element, create_element_ns): Implemented.
25    
26            * DocumentType.pm (get_general_entity_node): Alpha version.
27    
28            * EntityReference.pm (create_entity_reference): Implemented.
29    
30            * ProcessingInstruction.pm (create_processing_instruction): Implemented.
31    
32    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
33    
34            * Attr.pm (create_attribute, create_attribute_ns): Implemented.
35    
36            * DOMDocument.pm: Load character classes from |Char::Class::XML|.
37            (compat_mode): Check |defined| not to be warned as "uninitialized"
38            when |{manakai_compat_mode}| is |undef|.
39    
40            * DOMException.pm (INVALID_CHARACTER_ERR, NAMESPACE_ERR): Added.
41    
42            * DOMImplementationRegistry.pm, DOMImplementationSource.pm:
43            Statements to set |$Error::Depth| are removed since they
44            are result in "uninitialized" warnings unless
45            the |Message::DOM::DOMException| module is loaded earlier.
46            Usually methods invoked in these methods does not
47            raise any exception so that it makes no difference.
48    
49    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
50    
51            * DOMDocument.pm (adopt_node): Implemented.
52            (doctype): Implemented.
53    
54            * DOMElement.pm (remove_attribute_node): Alpha version.
55    
56            * DOMException.pm (ADOPT_NODE_TYPE_NOT_SUPPORTED_ERR): New
57            error type.
58    
59            * Node.pm (set_user_data): Implemented.
60    
61    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
62    
63            * DOMImplementation.pm (new): New method name for |____new|.
64            It will be defined in the DOM Perl Binding specification
65            as part of |DOMImplementation| interface.
66            ($HasFeature): Defined for features support.
67            (has_feature, get_feature): Implemented.
68    
69            * DOMStringList.pm: Don't load the |Message::DOM::DOMException|
70            module unless necessary.
71            (___report_error): Removed since it is not used in fact.
72    
73            * DOMImplementationList.pm, DOMImplementationSource.pm,
74            DOMImplementationRegistry.pm: New modules.
75    
76    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
77    
78            * AttributeDefinition.pm (allowed_tokens): Implemented.
79    
80            * DOMStringList.pm: New Perl module.
81    
82    2007-06-26  Wakaba  <wakaba@suika.fam.cx>
83    
84            * DOMElement.pm (clone_node): Alpha version.  It did not work
85            at all.
86    
87    2007-06-24  Wakaba  <wakaba@suika.fam.cx>
88    
89            * ProcessingInstruction.pm (data): Now it is a read-write attribute.
90    
91    2007-06-23  Wakaba  <wakaba@suika.fam.cx>
92    
93            * DOMDocument.pm (compat_mode, manakai_compat_mode): Implemented.
94            (manakai_is_html): Revised.
95            (Document): Now it implements the |HTMLDocument| interface.
96            (adopt_node): Alpha version.
97    
98            * AttributeDefinition.pm (allowed_tokens): |allowed_tokens|,
99            not |allowed_token|!
100    
101            * ElementTypeDefinition.pm (attribute_definitions): Don't
102            return an |undef| even if its |attribute_definitions|
103            list is not created.
104    
105    2007-06-21  Wakaba  <wakaba@suika.fam.cx>
106    
107            * Comment.pm (node_type): Node type was incorrect!
108    
109            * DOMConfiguration.pm (get_parameter): Alpha.
110    
111            * DOMImplementation.pm (create_mc_decode_handler,
112            create_charset_name_from_uri, create_uri_from_charset_name):
113            New autoload configuration.  Note that the Message::Charset::Encode
114            module is subject to change.
115    
116            * XMLParserTemp.pm: Now it can be used with new version
117            of DOM implementation.  Current plan is to replace it by
118            an XML5 parser someday.
119    
120    2007-06-21  Wakaba  <wakaba@suika.fam.cx>
121    
122            * DOMLocator.pm: New module.
123    
124            * DOMError.pm: New module.
125    
126    2007-06-20  Wakaba  <wakaba@suika.fam.cx>
127    
128            * Node.pm (manakai_expanded_uri, manakai_parent_element,
129            clone_node, compare_document_position, has_attributes,
130            has_child_nodes, is_default_namespace, lookup_namespace_uri,
131            lookup_prefix, normalize): Implemented.
132    
133            * DOMElement.pm (remove_attribute, set_attribute): Alpha version.
134    
135            * DOMException.pm (CLONE_NODE_TYPE_NOT_SUPPORTED_ERR): New error.
136    
137    2007-06-17  Wakaba  <wakaba@suika.fam.cx>
138    
139            * AttributeDefinition.pm (____new): Set an empty list
140            to the |allowed_tokens| attribute.
141            (allowed_token): Alpha version.
142    
143            * DocumentType.pm (get_element_type_definition_node,
144            get_notation_node): ALpha version.
145    
146            * ElementTypeDefinition.pm (attribute_definitions): Alpha 2
147            version.
148    
149            * Entity.pm (notation_name): Implemented.
150    
151    2007-06-17  Wakaba  <wakaba@suika.fam.cx>
152    
153            * Attr.pm (____new): Initialize |specified| as 1.
154            (base_uri, manakai_attribute_type, specified): Implemented.
155            (prefix): Don't check read-only flag unless |strict_error_checking|.
156            (value): Call |text_content| for now.
157    
158            * AttributeDefinition.pm (DeclaredValueType, DefaultValueType): Added.
159            (declared_type, default_type): Implemented.
160    
161            * CharacterData.pm (____new): Allow a scalar reference
162            as an input for the |data| attribute.
163            (base_uri, manakai_append_text): Implemented.
164    
165            * DOMConfiguration.pm (set_parameter): Resetting implemented.
166    
167            * DOMDocument.pm (____new): Set default values to
168            configuration parameter whose default is true.
169            (document_uri, input_encoding): Implemented.
170            (all_declarations_processed, manakai_is_html): Implemented.
171            (base_uri, manakai_append_text,
172            manakai_entity_base_uri, strict_error_checking,
173            xml_encoding, xml_version, xml_standalone): Implemented.
174    
175            * DOMElement.pm (manakai_base_uri, base_uri): Implemented.
176            (get_attribute, get_attribute_node): Alpha version.
177            (set_attribute_node, set_attribute_node_ns): Implemented.
178            (set_attribute_ns): Accept non-ARRAY qualified name.
179    
180            * DOMException.pm (___error_def): |WRONG_DOCUMENT_ERR|,
181            |NOT_SUPPORTED_ERR|, and |INUSE_ATTRIBUTE_ERR| are added.
182    
183            * DocumentType.pm (public_id, system_id): Implemented.
184            (base_uri, declaration_base_uri, manakai_declaration_base_uri,
185            manakai_append_text): Implemented.
186            (element_types, general_entities, notations,
187            set_element_type_definition_node, set_general_entity_node,
188            set_notation_node): Alpha version.
189    
190            * ElementTypeDefinition.pm (manakai_append_text): Implemented.
191            (attribute_definitions, set_attribute_definition_node): Alpha version.
192    
193            * Entity.pm (has_replacement_tree, public_id, system_id,
194            manakai_declaration_base_uri, manakai_entity_base_uri,
195            manakai_entity_uri): Implemented.
196    
197            * EntityReference.pm (manakai_expanded, manakai_external): Implemented.
198            (base_uri, manakai_entity_base_uri): Implemented.
199    
200            * Node.pm (base_uri): Implemented.
201            (text_content): Don't check read-only or not
202            unless |strict_error_checking|.
203            (manakai_append_text): Implemented.
204            (get_feature): Alpha.
205            (manakai_set_read_only): Implemented.
206    
207            * Notation.pm (public_id, system_id, manakai_append_text,
208            manakai_declaration_base_uri): Implemented.
209    
210            * ProcessingInstruction.pm (manakai_base_uri,
211            base_uri, manakai_append_text): Implemented.
212    
213    2007-06-16  Wakaba  <wakaba@suika.fam.cx>
214    
215            * DOMConfiguration.pm: New module.
216    
217            * Attr.pm (trivial accessor for read-write attributes): Throw
218            an exception if the node is read-only.  Delete the property
219            if undef is specified.
220            (prefix): Implemented.
221    
222            * DOMElement.pm (trivial accessor for read-write attributes): Throw
223            an exception if the node is read-only.  Delete the property
224            if undef is specified.
225            (prefix): Implemented.
226            (text_content, manakai_append_text): Old implementations are removed.
227    
228            * DOMCharacterData.pm (text_content): Implemented.
229    
230            * DOMDocument.pm (____new): Initialize the strict-document-children
231            parameter by true.
232            (text_content): Reimplemented.
233            (dom_config): New.
234    
235            * DOMException.pm (READ_ONLY_NODE_ERR): New subtype.
236    
237            * DocumentType.pm (text_content): Implemented.
238    
239            * ElementTypeDefinition.pm (text_content): Implemented.
240    
241            * Node.pm (___report_error): New method.
242            (text_content): Implemented.
243            (manakai_append_text): Copied from |DOMElement.pm|.
244    
245            * Notation.pm (text_content): Implemented.
246    
247            * ProcessingInstruction.pm (text_content): Implemented.
248    
249            * Text.pm (is_element_content_whitespace): Alpha version.
250    
251  2007-06-16  Wakaba  <wakaba@suika.fam.cx>  2007-06-16  Wakaba  <wakaba@suika.fam.cx>
252    
253          * DOMException.pm (Message::IF::DOMException): Extends          * DOMException.pm (Message::IF::DOMException): Extends

Legend:
Removed from v.1.220  
changed lines
  Added in v.1.235

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24