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

Legend:
Removed from v.1.216  
changed lines
  Added in v.1.234

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24